From 906c7d528b819882f144a139c23ca87c6ca241e5 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 8 Jan 2017 20:35:41 +0000 Subject: [PATCH 01/68] Bugfix: Answers to OStatus posts should never reach Diaspora --- include/notifier.php | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index 84efe7952..6655e4a77 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -220,6 +220,9 @@ function notifier_run(&$argv, &$argc){ $hub = get_config('system','huburl'); + // Should the post be transmitted to Diaspora? + $diaspora_delivery = true; + // If this is a public conversation, notify the feed hub $public_message = true; @@ -240,7 +243,7 @@ function notifier_run(&$argv, &$argc){ $thr_parent = q("SELECT `network`, `author-link`, `owner-link` FROM `item` WHERE `uri` = '%s' AND `uid` = %d", dbesc($target_item["thr-parent"]), intval($target_item["uid"])); - logger('Parent is '.$parent['network'].'. Thread parent is '.$thr_parent[0]['network'], LOGGER_DEBUG); + logger('GUID: '.$target_item["guid"].': Parent is '.$parent['network'].'. Thread parent is '.$thr_parent[0]['network'], LOGGER_DEBUG); // This is IMPORTANT!!!! @@ -396,6 +399,8 @@ function notifier_run(&$argv, &$argc){ // We have not only to look at the parent, since it could be a Friendica thread. if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) { + $diaspora_delivery = false; + logger('Some parent is OStatus for '.$target_item["guid"]." - Author: ".$thr_parent[0]['author-link']." - Owner: ".$thr_parent[0]['owner-link'], LOGGER_DEBUG); // Send a salmon to the parent author @@ -413,7 +418,7 @@ function notifier_run(&$argv, &$argc){ } // Send a salmon to the parent owner - $r = q("SELECT `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''", + $r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''", dbesc(normalise_link($thr_parent[0]['owner-link'])), intval($uid)); if ($r) @@ -443,12 +448,6 @@ function notifier_run(&$argv, &$argc){ $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')"; } else $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."', '".NETWORK_DIASPORA."', '".NETWORK_MAIL."', '".NETWORK_MAIL2."')"; - - $r = q("SELECT * FROM `contact` WHERE `id` IN ($conversant_str) AND NOT `blocked` AND NOT `pending` AND NOT `archive`".$sql_extra); - - if (dbm::is_result($r)) - $contacts = $r; - } else $public_message = false; @@ -479,11 +478,10 @@ function notifier_run(&$argv, &$argc){ if ($relocate) $r = $recipients_relocate; else - $r = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND NOT `blocked` AND NOT `pending` AND NOT `archive`", + $r = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND NOT `blocked` AND NOT `pending` AND NOT `archive`".$sql_extra, dbesc($recip_str) ); - $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval'))); // If we are using the worker we don't need a delivery interval @@ -570,17 +568,20 @@ function notifier_run(&$argv, &$argc){ if($public_message) { - if (!$followup) - $r0 = Diaspora::relay_list(); - else - $r0 = array(); + $r0 = array(); + $r1 = array(); - $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' - AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch` ORDER BY rand()", - dbesc(NETWORK_DIASPORA), - intval($owner['uid']), - intval(CONTACT_IS_SHARING) - ); + if ($diaspora_delivery) { + if (!$followup) + $r0 = Diaspora::relay_list(); + + $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' + AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch` ORDER BY rand()", + dbesc(NETWORK_DIASPORA), + intval($owner['uid']), + intval(CONTACT_IS_SHARING) + ); + } $r2 = q("SELECT `id`, `name`,`network` FROM `contact` WHERE `network` in ( '%s', '%s') AND `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` From fc60e7f5ddb4f5f704f34ce9a11329039f2fb3e0 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 8 Jan 2017 22:29:55 +0000 Subject: [PATCH 02/68] Making Hypolite smile --- include/notifier.php | 189 +++++++++++++++++++++++-------------------- 1 file changed, 102 insertions(+), 87 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index 6655e4a77..a56f1f89f 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -43,11 +43,11 @@ require_once('include/salmon.php'); function notifier_run(&$argv, &$argc){ global $a, $db; - if(is_null($a)){ + if (is_null($a)) { $a = new App; } - if(is_null($db)) { + if (is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); $db = new dba($db_host, $db_user, $db_pass, $db_data); @@ -64,8 +64,9 @@ function notifier_run(&$argv, &$argc){ load_hooks(); - if($argc < 3) + if ($argc < 3) { return; + } $a->set_baseurl(get_config('system','url')); @@ -77,7 +78,7 @@ function notifier_run(&$argv, &$argc){ case 'mail': default: $item_id = intval($argv[2]); - if(! $item_id){ + if (! $item_id) { return; } break; @@ -93,21 +94,20 @@ function notifier_run(&$argv, &$argc){ $normal_mode = true; - if($cmd === 'mail') { + if ($cmd === 'mail') { $normal_mode = false; $mail = true; $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1", intval($item_id) ); - if(! count($message)){ + if (! count($message)) { return; } $uid = $message[0]['uid']; $recipients[] = $message[0]['contact-id']; $item = $message[0]; - } - elseif($cmd === 'expire') { + } elseif ($cmd === 'expire') { $normal_mode = false; $expire = true; $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 @@ -116,22 +116,23 @@ function notifier_run(&$argv, &$argc){ ); $uid = $item_id; $item_id = 0; - if(! count($items)) + if (! count($items)) { return; - } - elseif($cmd === 'suggest') { + } + } elseif ($cmd === 'suggest') { $normal_mode = false; $fsuggest = true; $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1", intval($item_id) ); - if(! count($suggest)) + if (! count($suggest)) { return; + } $uid = $suggest[0]['uid']; $recipients[] = $suggest[0]['cid']; $item = $suggest[0]; - } elseif($cmd === 'removeme') { + } elseif ($cmd === 'removeme') { $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`, `user`.`account-type`, `user`.`guid` @@ -150,15 +151,15 @@ function notifier_run(&$argv, &$argc){ $self = $r[0]; $r = q("SELECT * FROM `contact` WHERE NOT `self` AND `uid` = %d", intval($item_id)); - if(!$r) + if (!$r) { return; - + } require_once('include/Contact.php'); - foreach($r as $contact) { + foreach ($r as $contact) { terminate_friendship($user, $self, $contact); } return; - } elseif($cmd === 'relocate') { + } elseif ($cmd === 'relocate') { $normal_mode = false; $relocate = true; $uid = $item_id; @@ -170,7 +171,7 @@ function notifier_run(&$argv, &$argc){ intval($item_id) ); - if((! dbm::is_result($r)) || (! intval($r[0]['parent']))) { + if ((! dbm::is_result($r)) || (! intval($r[0]['parent']))) { return; } @@ -184,18 +185,18 @@ function notifier_run(&$argv, &$argc){ intval($parent_id) ); - if(! count($items)) { + if (! count($items)) { return; } // avoid race condition with deleting entries - if($items[0]['deleted']) { - foreach($items as $item) + if ($items[0]['deleted']) { + foreach ($items as $item) $item['deleted'] = 1; } - if((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) { + if ((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) { logger('notifier: top level post'); $top_level = true; } @@ -232,7 +233,7 @@ function notifier_run(&$argv, &$argc){ // fill this in with a single salmon slap if applicable $slap = ''; - if(! ($mail || $fsuggest || $relocate)) { + if (! ($mail || $fsuggest || $relocate)) { $slap = ostatus::salmon($target_item,$owner); @@ -267,9 +268,9 @@ function notifier_run(&$argv, &$argc){ $localhost = str_replace('www.','',$a->get_hostname()); - if(strpos($localhost,':')) + if (strpos($localhost,':')) { $localhost = substr($localhost,0,strpos($localhost,':')); - + } /** * * Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes @@ -280,12 +281,12 @@ function notifier_run(&$argv, &$argc){ $relay_to_owner = false; - if(!$top_level && ($parent['wall'] == 0) && !$expire && (stristr($target_item['uri'],$localhost))) { + if (!$top_level && ($parent['wall'] == 0) && !$expire && (stristr($target_item['uri'],$localhost))) { $relay_to_owner = true; } - if(($cmd === 'uplink') && (intval($parent['forum_mode']) == 1) && !$top_level) { + if (($cmd === 'uplink') && (intval($parent['forum_mode']) == 1) && !$top_level) { $relay_to_owner = true; } @@ -293,13 +294,13 @@ function notifier_run(&$argv, &$argc){ // we will just use it as a fallback test // later we will be able to use it as the primary test of whether or not to relay. - if(! $target_item['origin']) + if (! $target_item['origin']) { $relay_to_owner = false; - - if($parent['origin']) + } + if ($parent['origin']) { $relay_to_owner = false; - - if($relay_to_owner) { + } + if ($relay_to_owner) { logger('notifier: followup '.$target_item["guid"], LOGGER_DEBUG); // local followup to remote post $followup = true; @@ -326,7 +327,7 @@ function notifier_run(&$argv, &$argc){ dbesc(NETWORK_DFRN) ); if (dbm::is_result($r)) - foreach($r as $rr) + foreach ($r as $rr) $recipients_followup[] = $rr['id']; } } @@ -338,12 +339,12 @@ function notifier_run(&$argv, &$argc){ // don't send deletions onward for other people's stuff - if($target_item['deleted'] && (! intval($target_item['wall']))) { + if ($target_item['deleted'] && (! intval($target_item['wall']))) { logger('notifier: ignoring delete notification for non-wall item'); return; } - if((strlen($parent['allow_cid'])) + if ((strlen($parent['allow_cid'])) || (strlen($parent['allow_gid'])) || (strlen($parent['deny_cid'])) || (strlen($parent['deny_gid']))) { @@ -358,24 +359,23 @@ function notifier_run(&$argv, &$argc){ // if our parent is a public forum (forum_mode == 1), uplink to the origional author causing // a delivery fork. private groups (forum_mode == 2) do not uplink - if((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) { + if ((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) { proc_run(PRIORITY_HIGH,'include/notifier.php','uplink',$item_id); } $conversants = array(); - foreach($items as $item) { + foreach ($items as $item) { $recipients[] = $item['contact-id']; $conversants[] = $item['contact-id']; // pull out additional tagged people to notify (if public message) - if($public_message && strlen($item['inform'])) { + if ($public_message && strlen($item['inform'])) { $people = explode(',',$item['inform']); - foreach($people as $person) { - if(substr($person,0,4) === 'cid:') { + foreach ($people as $person) { + if (substr($person,0,4) === 'cid:') { $recipients[] = intval(substr($person,4)); $conversants[] = intval(substr($person,4)); - } - else { + } else { $url_recipients[] = substr($person,4); } } @@ -404,13 +404,14 @@ function notifier_run(&$argv, &$argc){ logger('Some parent is OStatus for '.$target_item["guid"]." - Author: ".$thr_parent[0]['author-link']." - Owner: ".$thr_parent[0]['owner-link'], LOGGER_DEBUG); // Send a salmon to the parent author - $r = q("SELECT `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''", + $r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''", dbesc(normalise_link($thr_parent[0]['author-link'])), intval($uid)); - if ($r) + if (dbm::is_result($r)) { $probed_contact = $r[0]; - else + } else { $probed_contact = probe_url($thr_parent[0]['author-link']); + } if ($probed_contact["notify"] != "") { logger('Notify parent author '.$probed_contact["url"].': '.$probed_contact["notify"]); @@ -421,10 +422,12 @@ function notifier_run(&$argv, &$argc){ $r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''", dbesc(normalise_link($thr_parent[0]['owner-link'])), intval($uid)); - if ($r) + if (dbm::is_result($r)) { $probed_contact = $r[0]; - else + } else { $probed_contact = probe_url($thr_parent[0]['owner-link']); + } + if ($probed_contact["notify"] != "") { logger('Notify parent owner '.$probed_contact["url"].': '.$probed_contact["notify"]); $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"]; @@ -432,10 +435,10 @@ function notifier_run(&$argv, &$argc){ // Send a salmon notification to every person we mentioned in the post $arr = explode(',',$target_item['tag']); - foreach($arr as $x) { + foreach ($arr as $x) { //logger('Checking tag '.$x, LOGGER_DEBUG); $matches = null; - if(preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) { + if (preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) { $probed_contact = probe_url($matches[1]); if ($probed_contact["notify"] != "") { logger('Notify mentioned user '.$probed_contact["url"].': '.$probed_contact["notify"]); @@ -446,17 +449,19 @@ function notifier_run(&$argv, &$argc){ // It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')"; - } else + } else { $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."', '".NETWORK_DIASPORA."', '".NETWORK_MAIL."', '".NETWORK_MAIL2."')"; - } else + } + } else { $public_message = false; + } // If this is a public message and pubmail is set on the parent, include all your email contacts $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); - if(! $mail_disabled) { - if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid'])) + if (! $mail_disabled) { + if ((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid'])) && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid'])) && (intval($target_item['pubmail']))) { $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `network` = '%s'", @@ -464,38 +469,40 @@ function notifier_run(&$argv, &$argc){ dbesc(NETWORK_MAIL) ); if (dbm::is_result($r)) { - foreach($r as $rr) + foreach ($r as $rr) { $recipients[] = $rr['id']; + } } } } - if($followup) + if ($followup) { $recip_str = implode(', ', $recipients_followup); - else + } else { $recip_str = implode(', ', $recipients); - - if ($relocate) + } + if ($relocate) { $r = $recipients_relocate; - else + } else { $r = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND NOT `blocked` AND NOT `pending` AND NOT `archive`".$sql_extra, dbesc($recip_str) ); + } $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval'))); // If we are using the worker we don't need a delivery interval - if (get_config("system", "worker")) + if (get_config("system", "worker")) { $interval = false; - + } // delivery loop if (dbm::is_result($r)) { - - foreach($r as $contact) { - if(!$contact['self']) { - if(($contact['network'] === NETWORK_DIASPORA) && ($public_message)) + foreach ($r as $contact) { + if (!$contact['self']) { + if (($contact['network'] === NETWORK_DIASPORA) && ($public_message)) { continue; + } q("INSERT INTO `deliverq` (`cmd`,`item`,`contact`) VALUES ('%s', %d, %d)", dbesc($cmd), intval($item_id), @@ -518,17 +525,18 @@ function notifier_run(&$argv, &$argc){ // When using the workerqueue, we don't need this functionality. $deliveries_per_process = intval(get_config('system','delivery_batch_count')); - if (($deliveries_per_process <= 0) OR get_config("system", "worker")) + if (($deliveries_per_process <= 0) OR get_config("system", "worker")) { $deliveries_per_process = 1; + } $this_batch = array(); - for($x = 0; $x < count($r); $x ++) { + for ($x = 0; $x < count($r); $x ++) { $contact = $r[$x]; - if($contact['self']) + if ($contact['self']) { continue; - + } logger("Deliver ".$target_item["guid"]." to ".$contact['url']." via network ".$contact['network'], LOGGER_DEBUG); // potentially more than one recipient. Start a new process and space them out a bit. @@ -536,26 +544,28 @@ function notifier_run(&$argv, &$argc){ $this_batch[] = $contact['id']; - if(count($this_batch) >= $deliveries_per_process) { + if (count($this_batch) >= $deliveries_per_process) { proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$this_batch); $this_batch = array(); - if($interval) + if ($interval) { @time_sleep_until(microtime(true) + (float) $interval); + } } continue; } // be sure to pick up any stragglers - if(count($this_batch)) + if (count($this_batch)) { proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$this_batch); + } } // send salmon slaps to mentioned remote tags (@foo@example.com) in OStatus posts // They are especially used for notifications to OStatus users that don't follow us. - if($slap && count($url_recipients) && ($public_message || $push_notify) && $normal_mode) { - if(!get_config('system','dfrn_only')) { - foreach($url_recipients as $url) { + if ($slap && count($url_recipients) && ($public_message || $push_notify) && $normal_mode) { + if (!get_config('system','dfrn_only')) { + foreach ($url_recipients as $url) { if ($url) { logger('notifier: urldelivery: ' . $url); $deliver_status = slapper($owner,$url,$slap); @@ -566,14 +576,15 @@ function notifier_run(&$argv, &$argc){ } - if($public_message) { + if ($public_message) { $r0 = array(); $r1 = array(); if ($diaspora_delivery) { - if (!$followup) + if (!$followup) { $r0 = Diaspora::relay_list(); + } $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch` ORDER BY rand()", @@ -600,7 +611,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)) { q("INSERT INTO `deliverq` (`cmd`,`item`,`contact`) VALUES ('%s', %d, %d) ON DUPLICATE KEY UPDATE `cmd` = '%s', `item` = %d, `contact` = %d", dbesc($cmd), intval($item_id), intval($rr['id']), @@ -614,16 +625,17 @@ function notifier_run(&$argv, &$argc){ // except for Diaspora batch jobs // Don't deliver to folks who have already been delivered to - if(($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) { + if (($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) { logger('notifier: already delivered id=' . $rr['id']); continue; } - if((! $mail) && (! $fsuggest) && (! $followup)) { + if ((! $mail) && (! $fsuggest) && (! $followup)) { logger('notifier: delivery agent: '.$rr['name'].' '.$rr['id'].' '.$rr['network'].' '.$target_item["guid"]); proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$rr['id']); - if($interval) + if ($interval) { @time_sleep_until(microtime(true) + (float) $interval); + } } } } @@ -633,13 +645,14 @@ function notifier_run(&$argv, &$argc){ } // Notify PuSH subscribers (Used for OStatus distribution of regular posts) - if($push_notify AND strlen($hub)) { + if ($push_notify AND strlen($hub)) { $hubs = explode(',', $hub); - if(count($hubs)) { - foreach($hubs as $h) { + if (count($hubs)) { + foreach ($hubs as $h) { $h = trim($h); - if(! strlen($h)) + if (! strlen($h)) { continue; + } if ($h === '[internal]') { // Set push flag for PuSH subscribers to this topic, @@ -655,8 +668,9 @@ function notifier_run(&$argv, &$argc){ post_url($h,$params); logger('publish for item '.$item_id.' ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code()); } - if(count($hubs) > 1) + if (count($hubs) > 1) { sleep(7); // try and avoid multiple hubs responding at precisely the same time + } } } @@ -666,8 +680,9 @@ function notifier_run(&$argv, &$argc){ logger('notifier: calling hooks', LOGGER_DEBUG); - if($normal_mode) + if ($normal_mode) { call_hooks('notifier_normal',$target_item); + } call_hooks('notifier_end',$target_item); From 65226778feda4a74b917a9b075cb51584be87d7d Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 9 Jan 2017 06:40:56 +0000 Subject: [PATCH 03/68] More standards --- include/notifier.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index a56f1f89f..7bea239c6 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -192,8 +192,9 @@ function notifier_run(&$argv, &$argc){ // avoid race condition with deleting entries if ($items[0]['deleted']) { - foreach ($items as $item) + foreach ($items as $item) { $item['deleted'] = 1; + } } if ((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) { @@ -326,9 +327,11 @@ function notifier_run(&$argv, &$argc){ intval($uid), dbesc(NETWORK_DFRN) ); - if (dbm::is_result($r)) - foreach ($r as $rr) + if (dbm::is_result($r)) { + foreach ($r as $rr) { $recipients_followup[] = $rr['id']; + } + } } } logger("Notify ".$target_item["guid"]." via PuSH: ".($push_notify?"Yes":"No"), LOGGER_DEBUG); From a2debaa68a0606f6bf4856740b298f3f5cde17d2 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 9 Jan 2017 23:10:32 +0000 Subject: [PATCH 04/68] Download limit for fetching data via "z_fetch_url" --- doc/htconfig.md | 1 + include/network.php | 8 ++- mod/oexchange.php | 19 +++--- mod/uexport.php | 149 +++++++++++++++++++++++--------------------- mod/uimport.php | 87 +++++++++++++------------- 5 files changed, 136 insertions(+), 128 deletions(-) diff --git a/doc/htconfig.md b/doc/htconfig.md index 05a2a7a96..54808aaae 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -25,6 +25,7 @@ Example: To set the directory value please add this line to your .htconfig.php: * **allowed_link_protocols** (Array) - Allowed protocols in links URLs, add at your own risk. http is always allowed. * **birthday_input_format** - Default value is "ymd". * **block_local_dir** (Boolean) - Blocks the access to the directory of the local users. +* **curl_range_bytes** - Maximum number of bytes that should be fetched. Default is 0, which mean "no limit". * **dbclean** (Boolean) - Enable the automatic database cleanup process * **default_service_class** - * **delivery_batch_count** - Number of deliveries per process. Default value is 1. (Disabled when using the worker) diff --git a/include/network.php b/include/network.php index 969f58382..6bec9934e 100644 --- a/include/network.php +++ b/include/network.php @@ -4,6 +4,9 @@ * @file include/network.php */ +use \Friendica\Core\Config; +use \Friendica\Core\PConfig; + require_once("include/xml.php"); require_once('include/Probe.php'); @@ -93,7 +96,10 @@ function z_fetch_url($url,$binary = false, &$redirects = 0, $opts=array()) { @curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent()); - + $range = intval(Config::get('system', 'curl_range_bytes', 0)); + if ($range > 0) { + @curl_setopt($ch, CURLOPT_RANGE, '0-'.$range); + } if(x($opts,'headers')){ @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']); diff --git a/mod/oexchange.php b/mod/oexchange.php index 49c5d01f4..28a9f4a24 100644 --- a/mod/oexchange.php +++ b/mod/oexchange.php @@ -1,17 +1,14 @@ argc > 1) && ($a->argv[1] === 'xrd')) { + if (($a->argc > 1) && ($a->argv[1] === 'xrd')) { $tpl = get_markup_template('oexchange_xrd.tpl'); $o = replace_macros($tpl, array('$base' => App::get_baseurl())); echo $o; killme(); } - - } function oexchange_content(App &$a) { @@ -26,19 +23,20 @@ function oexchange_content(App &$a) { return; } - $url = (((x($_REQUEST,'url')) && strlen($_REQUEST['url'])) + $url = (((x($_REQUEST,'url')) && strlen($_REQUEST['url'])) ? urlencode(notags(trim($_REQUEST['url']))) : ''); - $title = (((x($_REQUEST,'title')) && strlen($_REQUEST['title'])) + $title = (((x($_REQUEST,'title')) && strlen($_REQUEST['title'])) ? '&title=' . urlencode(notags(trim($_REQUEST['title']))) : ''); - $description = (((x($_REQUEST,'description')) && strlen($_REQUEST['description'])) + $description = (((x($_REQUEST,'description')) && strlen($_REQUEST['description'])) ? '&description=' . urlencode(notags(trim($_REQUEST['description']))) : ''); - $tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags'])) + $tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags'])) ? '&tags=' . urlencode(notags(trim($_REQUEST['tags']))) : ''); $s = fetch_url(App::get_baseurl() . '/parse_url?f=&url=' . $url . $title . $description . $tags); - if(! strlen($s)) + if (! strlen($s)) { return; + } require_once('include/html2bbcode.php'); @@ -52,7 +50,4 @@ function oexchange_content(App &$a) { $_REQUEST = $post; require_once('mod/item.php'); item_post($a); - } - - diff --git a/mod/uexport.php b/mod/uexport.php index 1ca046d22..8b487380e 100644 --- a/mod/uexport.php +++ b/mod/uexport.php @@ -12,113 +12,119 @@ function uexport_init(App &$a){ /// @TODO Change space -> tab where wanted function uexport_content(App &$a){ - if ($a->argc > 1) { - header("Content-type: application/json"); - header('Content-Disposition: attachment; filename="'.$a->user['nickname'].'.'.$a->argv[1].'"'); - switch($a->argv[1]) { - case "backup": uexport_all($a); killme(); break; - case "account": uexport_account($a); killme(); break; - default: - killme(); - } - } - - /** - * options shown on "Export personal data" page - * list of array( 'link url', 'link text', 'help text' ) - */ - $options = array( - array('uexport/account',t('Export account'),t('Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.')), - array('uexport/backup',t('Export all'),t('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)')), - ); - call_hooks('uexport_options', $options); - - $tpl = get_markup_template("uexport.tpl"); - return replace_macros($tpl, array( - '$baseurl' => App::get_baseurl(), - '$title' => t('Export personal data'), - '$options' => $options - )); + if ($a->argc > 1) { + header("Content-type: application/json"); + header('Content-Disposition: attachment; filename="'.$a->user['nickname'].'.'.$a->argv[1].'"'); + switch($a->argv[1]) { + case "backup": + uexport_all($a); + killme(); + break; + case "account": + uexport_account($a); + killme(); + break; + default: + killme(); + } + } + /** + * options shown on "Export personal data" page + * list of array( 'link url', 'link text', 'help text' ) + */ + $options = array( + array('uexport/account',t('Export account'),t('Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.')), + array('uexport/backup',t('Export all'),t('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)')), + ); + call_hooks('uexport_options', $options); + $tpl = get_markup_template("uexport.tpl"); + return replace_macros($tpl, array( + '$baseurl' => App::get_baseurl(), + '$title' => t('Export personal data'), + '$options' => $options + )); } function _uexport_multirow($query) { $result = array(); $r = q($query); -// if (dbm::is_result($r)) { - if ($r){ + if (dbm::is_result($r)) { foreach($r as $rr){ - $p = array(); - foreach($rr as $k => $v) + $p = array(); + foreach($rr as $k => $v) { $p[$k] = $v; - $result[] = $p; - } + } + $result[] = $p; + } } - return $result; + return $result; } function _uexport_row($query) { $result = array(); $r = q($query); - if ($r) { - foreach($r as $rr) - foreach($rr as $k => $v) + if (dbm::is_result($r)) { + foreach($r as $rr) { + foreach($rr as $k => $v) { $result[$k] = $v; - + } + } } - return $result; + return $result; } function uexport_account($a){ $user = _uexport_row( - sprintf( "SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval(local_user()) ) + sprintf( "SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval(local_user()) ) ); $contact = _uexport_multirow( - sprintf( "SELECT * FROM `contact` WHERE `uid` = %d ",intval(local_user()) ) + sprintf( "SELECT * FROM `contact` WHERE `uid` = %d ",intval(local_user()) ) ); $profile =_uexport_multirow( - sprintf( "SELECT * FROM `profile` WHERE `uid` = %d ", intval(local_user()) ) + sprintf( "SELECT * FROM `profile` WHERE `uid` = %d ", intval(local_user()) ) ); - $photo = _uexport_multirow( - sprintf( "SELECT * FROM `photo` WHERE uid = %d AND profile = 1", intval(local_user()) ) - ); - foreach ($photo as &$p) $p['data'] = bin2hex($p['data']); + $photo = _uexport_multirow( + sprintf( "SELECT * FROM `photo` WHERE uid = %d AND profile = 1", intval(local_user()) ) + ); + foreach ($photo as &$p) { + $p['data'] = bin2hex($p['data']); + } - $pconfig = _uexport_multirow( - sprintf( "SELECT * FROM `pconfig` WHERE uid = %d",intval(local_user()) ) - ); + $pconfig = _uexport_multirow( + sprintf( "SELECT * FROM `pconfig` WHERE uid = %d",intval(local_user()) ) + ); - $group = _uexport_multirow( - sprintf( "SELECT * FROM `group` WHERE uid = %d",intval(local_user()) ) - ); + $group = _uexport_multirow( + sprintf( "SELECT * FROM `group` WHERE uid = %d",intval(local_user()) ) + ); - $group_member = _uexport_multirow( - sprintf( "SELECT * FROM `group_member` WHERE uid = %d",intval(local_user()) ) - ); + $group_member = _uexport_multirow( + sprintf( "SELECT * FROM `group_member` WHERE uid = %d",intval(local_user()) ) + ); $output = array( - 'version' => FRIENDICA_VERSION, - 'schema' => DB_UPDATE_VERSION, - 'baseurl' => App::get_baseurl(), - 'user' => $user, - 'contact' => $contact, - 'profile' => $profile, - 'photo' => $photo, - 'pconfig' => $pconfig, - 'group' => $group, - 'group_member' => $group_member, - ); + 'version' => FRIENDICA_VERSION, + 'schema' => DB_UPDATE_VERSION, + 'baseurl' => App::get_baseurl(), + 'user' => $user, + 'contact' => $contact, + 'profile' => $profile, + 'photo' => $photo, + 'pconfig' => $pconfig, + 'group' => $group, + 'group_member' => $group_member, + ); - //echo "
"; var_dump(json_encode($output)); killme();
+	//echo "
"; var_dump(json_encode($output)); killme();
 	echo json_encode($output);
-
 }
 
 /**
@@ -132,12 +138,12 @@ function uexport_all(App &$a) {
 	$r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
 		intval(local_user())
 	);
-	if (dbm::is_result($r))
+	if (dbm::is_result($r)) {
 		$total = $r[0]['total'];
-
+	}
 	// chunk the output to avoid exhausting memory
 
-	for($x = 0; $x < $total; $x += 500) {
+	for ($x = 0; $x < $total; $x += 500) {
 		$item = array();
 		$r = q("SELECT * FROM `item` WHERE `uid` = %d LIMIT %d, %d",
 			intval(local_user()),
@@ -153,5 +159,4 @@ function uexport_all(App &$a) {
 		$output = array('item' => $r);
 		echo json_encode($output)."\n";
 	}
-
 }
diff --git a/mod/uimport.php b/mod/uimport.php
index 15bc8322b..55e04c533 100644
--- a/mod/uimport.php
+++ b/mod/uimport.php
@@ -8,67 +8,68 @@ require_once("include/uimport.php");
 
 function uimport_post(App &$a) {
 	switch($a->config['register_policy']) {
-        case REGISTER_OPEN:
-            $blocked = 0;
-            $verified = 1;
-            break;
+	case REGISTER_OPEN:
+		$blocked = 0;
+		$verified = 1;
+		break;
 
-        case REGISTER_APPROVE:
-            $blocked = 1;
-            $verified = 0;
-            break;
+	case REGISTER_APPROVE:
+		$blocked = 1;
+		$verified = 0;
+		break;
 
-        default:
-        case REGISTER_CLOSED:
-            if((! x($_SESSION,'authenticated') && (! x($_SESSION,'administrator')))) {
-                notice( t('Permission denied.') . EOL );
-                return;
-            }
-            $blocked = 1;
-            $verified = 0;
-            break;
+	default:
+	case REGISTER_CLOSED:
+		if ((! x($_SESSION,'authenticated') && (! x($_SESSION,'administrator')))) {
+			notice( t('Permission denied.') . EOL );
+			return;
+		}
+		$blocked = 1;
+		$verified = 0;
+		break;
+	}
+
+	if (x($_FILES,'accountfile')){
+		/// @TODO Pass $blocked / $verified, send email to admin on REGISTER_APPROVE
+		import_account($a, $_FILES['accountfile']);
+		return;
 	}
-    
-    if (x($_FILES,'accountfile')){
-        /// @TODO Pass $blocked / $verified, send email to admin on REGISTER_APPROVE
-        import_account($a, $_FILES['accountfile']);
-        return;
-    }
 }
 
 function uimport_content(App &$a) {
-	
-	if((! local_user()) && ($a->config['register_policy'] == REGISTER_CLOSED)) {
+
+	if ((! local_user()) && ($a->config['register_policy'] == REGISTER_CLOSED)) {
 		notice("Permission denied." . EOL);
 		return;
 	}
 
 	$max_dailies = intval(get_config('system','max_daily_registrations'));
-	if($max_dailies) {
+	if ($max_dailies) {
 		$r = q("select count(*) as total from user where register_date > UTC_TIMESTAMP - INTERVAL 1 day");
-		if($r && $r[0]['total'] >= $max_dailies) {
+		if ($r && $r[0]['total'] >= $max_dailies) {
 			logger('max daily registrations exceeded.');
 			notice( t('This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.') . EOL);
 			return;
 		}
 	}
-	
-	
-	if(x($_SESSION,'theme'))
+
+
+	if (x($_SESSION,'theme')) {
 		unset($_SESSION['theme']);
-	if(x($_SESSION,'mobile-theme'))
+	}
+	if (x($_SESSION,'mobile-theme')) {
 		unset($_SESSION['mobile-theme']);
+	}
 
-
-    $tpl = get_markup_template("uimport.tpl");
-    return replace_macros($tpl, array(
-        '$regbutt' => t('Import'),
-        '$import' => array(
-            'title' => t("Move account"),
-			'intro' => t("You can import an account from another Friendica server."),
-			'instruct' => t("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."),
-			'warn' => t("This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"),
-            'field' => array('accountfile', t('Account file'),'', t('To export your account, go to "Settings->Export your personal data" and select "Export account"')),
-        ),
-    ));
+	$tpl = get_markup_template("uimport.tpl");
+	return replace_macros($tpl, array(
+		'$regbutt' => t('Import'),
+		'$import' => array(
+		'title' => t("Move account"),
+		'intro' => t("You can import an account from another Friendica server."),
+		'instruct' => t("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."),
+		'warn' => t("This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"),
+		'field' => array('accountfile', t('Account file'),'', t('To export your account, go to "Settings->Export your personal data" and select "Export account"')),
+		),
+	));
 }

From fafeea4382e16a16918f8152233ee0a5851cfa95 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Tue, 10 Jan 2017 07:40:57 +0000
Subject: [PATCH 05/68] When commenting too fast, messages weren't delivered to
 Diaspora

---
 include/delivery.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/delivery.php b/include/delivery.php
index e9f426464..23fe859b6 100644
--- a/include/delivery.php
+++ b/include/delivery.php
@@ -46,6 +46,7 @@ function delivery_run(&$argv, &$argc){
 
 		$contact_id = intval($argv[$x]);
 
+		/// @todo When switching completely to the worker we won't need this anymore
 		// Some other process may have delivered this item already.
 
 		$r = q("SELECT * FROM `deliverq` WHERE `cmd` = '%s' AND `item` = %d AND `contact` = %d LIMIT 1",
@@ -170,7 +171,10 @@ function delivery_run(&$argv, &$argc){
 					$item['deleted'] = 1;
 			}
 
-			if ((count($items) == 1) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
+			// When commenting too fast after delivery, a post wasn't recognized as top level post.
+			// The count then showed more than one entry. The additional check should help.
+			// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
+			if ((($items[0]['id'] = $parent_id) OR (count($items) == 1)) AND ($items[0]['uri'] === $items[0]['parent-uri'])) {
 				logger('delivery: top level post');
 				$top_level = true;
 			}

From c44f859edfe4281eb19e4a2ab00745abd4853c41 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Tue, 10 Jan 2017 07:58:17 +0000
Subject: [PATCH 06/68] We should check for the item, not the parent.

---
 include/delivery.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/delivery.php b/include/delivery.php
index 23fe859b6..f1e570764 100644
--- a/include/delivery.php
+++ b/include/delivery.php
@@ -174,7 +174,7 @@ function delivery_run(&$argv, &$argc){
 			// When commenting too fast after delivery, a post wasn't recognized as top level post.
 			// The count then showed more than one entry. The additional check should help.
 			// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
-			if ((($items[0]['id'] = $parent_id) OR (count($items) == 1)) AND ($items[0]['uri'] === $items[0]['parent-uri'])) {
+			if ((($items[0]['id'] = $item_id) OR (count($items) == 1)) AND ($items[0]['uri'] === $items[0]['parent-uri'])) {
 				logger('delivery: top level post');
 				$top_level = true;
 			}

From 3cf1f5e532b5608c7c1b41619eac60176fc59e81 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Tue, 10 Jan 2017 10:23:51 +0000
Subject: [PATCH 07/68] Compare instead of assign ...

---
 include/delivery.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/delivery.php b/include/delivery.php
index f1e570764..06253fba8 100644
--- a/include/delivery.php
+++ b/include/delivery.php
@@ -174,7 +174,7 @@ function delivery_run(&$argv, &$argc){
 			// When commenting too fast after delivery, a post wasn't recognized as top level post.
 			// The count then showed more than one entry. The additional check should help.
 			// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
-			if ((($items[0]['id'] = $item_id) OR (count($items) == 1)) AND ($items[0]['uri'] === $items[0]['parent-uri'])) {
+			if ((($items[0]['id'] == $item_id) OR (count($items) == 1)) AND ($items[0]['uri'] === $items[0]['parent-uri'])) {
 				logger('delivery: top level post');
 				$top_level = true;
 			}

From 84b733e1bf25bdd1074483f19113add7800a6c38 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Tue, 10 Jan 2017 16:11:08 +0000
Subject: [PATCH 08/68] Standards stuff should make Hypolite happy.

---
 include/delivery.php | 116 +++++++++++++++++++++++++------------------
 1 file changed, 68 insertions(+), 48 deletions(-)

diff --git a/include/delivery.php b/include/delivery.php
index 06253fba8..dd7535592 100644
--- a/include/delivery.php
+++ b/include/delivery.php
@@ -10,7 +10,7 @@ require_once("include/dfrn.php");
 function delivery_run(&$argv, &$argc){
 	global $a, $db;
 
-	if (is_null($a)){
+	if (is_null($a)) {
 		$a = new App;
 	}
 
@@ -32,8 +32,9 @@ function delivery_run(&$argv, &$argc){
 
 	load_hooks();
 
-	if ($argc < 3)
+	if ($argc < 3) {
 		return;
+	}
 
 	$a->set_baseurl(get_config('system','url'));
 
@@ -42,7 +43,7 @@ function delivery_run(&$argv, &$argc){
 	$cmd        = $argv[1];
 	$item_id    = intval($argv[2]);
 
-	for($x = 3; $x < $argc; $x ++) {
+	for ($x = 3; $x < $argc; $x ++) {
 
 		$contact_id = intval($argv[$x]);
 
@@ -58,8 +59,9 @@ function delivery_run(&$argv, &$argc){
 			continue;
 		}
 
-		if ($a->maxload_reached())
+		if ($a->maxload_reached()) {
 			return;
+		}
 
 		// It's ours to deliver. Remove it from the queue.
 
@@ -69,8 +71,9 @@ function delivery_run(&$argv, &$argc){
 			dbesc($contact_id)
 		);
 
-		if (!$item_id || !$contact_id)
+		if (!$item_id || !$contact_id) {
 			continue;
+		}
 
 		$expire = false;
 		$mail = false;
@@ -91,14 +94,13 @@ function delivery_run(&$argv, &$argc){
 			$message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
 					intval($item_id)
 			);
-			if (!count($message)){
+			if (!count($message)) {
 				return;
 			}
 			$uid = $message[0]['uid'];
 			$recipients[] = $message[0]['contact-id'];
 			$item = $message[0];
-		}
-		elseif ($cmd === 'expire') {
+		} elseif ($cmd === 'expire') {
 			$normal_mode = false;
 			$expire = true;
 			$items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
@@ -107,18 +109,19 @@ function delivery_run(&$argv, &$argc){
 			);
 			$uid = $item_id;
 			$item_id = 0;
-			if (!count($items))
+			if (!count($items)) {
 				continue;
-		}
-		elseif ($cmd === 'suggest') {
+			}
+		} elseif ($cmd === 'suggest') {
 			$normal_mode = false;
 			$fsuggest = true;
 
 			$suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
 				intval($item_id)
 			);
-			if (!count($suggest))
+			if (!count($suggest)) {
 				return;
+			}
 			$uid = $suggest[0]['uid'];
 			$recipients[] = $suggest[0]['cid'];
 			$item = $suggest[0];
@@ -152,29 +155,33 @@ function delivery_run(&$argv, &$argc){
 
 			$icontacts = null;
 			$contacts_arr = array();
-			foreach($items as $item)
-				if (!in_array($item['contact-id'],$contacts_arr))
+			foreach ($items as $item) {
+				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`
 					WHERE `id` IN ( $str_contacts ) "
 				);
 			}
-			if ( !($icontacts && count($icontacts)))
+			if ( !($icontacts && count($icontacts))) {
 				continue;
+			}
 
 			// avoid race condition with deleting entries
 
 			if ($items[0]['deleted']) {
-				foreach($items as $item)
+				foreach ($items as $item) {
 					$item['deleted'] = 1;
+				}
 			}
 
 			// When commenting too fast after delivery, a post wasn't recognized as top level post.
 			// The count then showed more than one entry. The additional check should help.
 			// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
-			if ((($items[0]['id'] == $item_id) OR (count($items) == 1)) AND ($items[0]['uri'] === $items[0]['parent-uri'])) {
+			if ((($items[0]['id'] == $item_id) || (count($items) == 1)) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
 				logger('delivery: top level post');
 				$top_level = true;
 			}
@@ -188,8 +195,9 @@ function delivery_run(&$argv, &$argc){
 			intval($uid)
 		);
 
-		if (!dbm::is_result($r))
+		if (!dbm::is_result($r)) {
 			continue;
+		}
 
 		$owner = $r[0];
 
@@ -221,9 +229,9 @@ function delivery_run(&$argv, &$argc){
 
 
 			$localhost = $a->get_hostname();
-			if (strpos($localhost,':'))
+			if (strpos($localhost,':')) {
 				$localhost = substr($localhost,0,strpos($localhost,':'));
-
+			}
 			/**
 			 *
 			 * Be VERY CAREFUL if you make any changes to the following line. Seemingly innocuous changes
@@ -258,12 +266,12 @@ function delivery_run(&$argv, &$argc){
 			intval($contact_id)
 		);
 
-		if (dbm::is_result($r))
+		if (dbm::is_result($r)) {
 			$contact = $r[0];
-
-		if ($contact['self'])
+		}
+		if ($contact['self']) {
 			continue;
-
+		}
 		$deliver_status = 0;
 
 		logger("main delivery by delivery: followup=$followup mail=$mail fsuggest=$fsuggest relocate=$relocate - network ".$contact['network']);
@@ -279,13 +287,14 @@ function delivery_run(&$argv, &$argc){
 				} elseif ($fsuggest) {
 					$atom = dfrn::fsuggest($item, $owner);
 					q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1", intval($item['id']));
-				} elseif ($relocate)
+				} elseif ($relocate) {
 					$atom = dfrn::relocate($owner, $uid);
-				elseif ($followup) {
+				} elseif ($followup) {
 					$msgitems = array();
-					foreach($items as $item) {  // there is only one item
-						if (!$item['parent'])
+					foreach ($items as $item) {  // there is only one item
+						if (!$item['parent']) {
 							continue;
+						}
 						if ($item['id'] == $item_id) {
 							logger('followup: item: '. print_r($item,true), LOGGER_DATA);
 							$msgitems[] = $item;
@@ -294,17 +303,20 @@ function delivery_run(&$argv, &$argc){
 					$atom = dfrn::entries($msgitems,$owner);
 				} else {
 					$msgitems = array();
-					foreach($items as $item) {
-						if (!$item['parent'])
+					foreach ($items as $item) {
+						if (!$item['parent']) {
 							continue;
+						}
 
 						// private emails may be in included in public conversations. Filter them.
-						if ($public_message && $item['private'])
+						if ($public_message && $item['private']) {
 							continue;
+						}
 
 						$item_contact = get_item_contact($item,$icontacts);
-						if (!$item_contact)
+						if (!$item_contact) {
 							continue;
+						}
 
 						if ($normal_mode) {
 							if ($item_id == $item['id'] || $item['id'] == $item['parent']) {
@@ -330,10 +342,11 @@ function delivery_run(&$argv, &$argc){
 				if (link_compare($basepath,App::get_baseurl())) {
 
 					$nickname = basename($contact['url']);
-					if ($contact['issued-id'])
+					if ($contact['issued-id']) {
 						$sql_extra = sprintf(" AND `dfrn-id` = '%s' ", dbesc($contact['issued-id']));
-					else
+					} else {
 						$sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($contact['dfrn-id']));
+					}
 
 					$x = q("SELECT	`contact`.*, `contact`.`uid` AS `importer_uid`,
 						`contact`.`pubkey` AS `cpubkey`,
@@ -366,19 +379,20 @@ function delivery_run(&$argv, &$argc){
 
 						// If we are setup as a soapbox we aren't accepting top level posts from this person
 
-						if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level)
+						if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level) {
 							break;
-
+						}
 						logger('mod-delivery: local delivery');
 						dfrn::import($atom, $x[0]);
 						break;
 					}
 				}
 
-				if (!was_recently_delayed($contact['id']))
+				if (!was_recently_delayed($contact['id'])) {
 					$deliver_status = dfrn::deliver($owner,$contact,$atom);
-				else
+				} else {
 					$deliver_status = (-1);
+				}
 
 				logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status);
 
@@ -397,10 +411,12 @@ function delivery_run(&$argv, &$argc){
 
 			case NETWORK_OSTATUS:
 				// Do not send to otatus if we are not configured to send to public networks
-				if ($owner['prvnets'])
+				if ($owner['prvnets']) {
 					break;
-				if (get_config('system','ostatus_disabled') || get_config('system','dfrn_only'))
+				}
+				if (get_config('system','ostatus_disabled') || get_config('system','dfrn_only')) {
 					break;
+				}
 
 				// There is currently no code here to distribute anything to OStatus.
 				// This is done in "notifier.php" (See "url_recipients" and "push_notify")
@@ -409,20 +425,22 @@ function delivery_run(&$argv, &$argc){
 			case NETWORK_MAIL:
 			case NETWORK_MAIL2:
 
-				if (get_config('system','dfrn_only'))
+				if (get_config('system','dfrn_only')) {
 					break;
+				}
 				// WARNING: does not currently convert to RFC2047 header encodings, etc.
 
 				$addr = $contact['addr'];
-				if (!strlen($addr))
+				if (!strlen($addr)) {
 					break;
+				}
 
 				if ($cmd === 'wall-new' || $cmd === 'comment-new') {
 
 					$it = null;
-					if ($cmd === 'wall-new')
+					if ($cmd === 'wall-new') {
 						$it = $items[0];
-					else {
+					} else {
 						$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
 							intval($argv[2]),
 							intval($uid)
@@ -455,10 +473,12 @@ function delivery_run(&$argv, &$argc){
 						if ($reply_to) {
 							$headers  = 'From: '.email_header_encode($local_user[0]['username'],'UTF-8').' <'.$reply_to.'>'."\n";
 							$headers .= 'Sender: '.$local_user[0]['email']."\n";
-						} else
+						} else {
 							$headers  = 'From: '.email_header_encode($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n";
-					} else
+						}
+					} else {
 						$headers  = 'From: '. email_header_encode($local_user[0]['username'],'UTF-8') .' <'. t('noreply') .'@'.$a->get_hostname() .'>'. "\n";
+					}
 
 					//if ($reply_to)
 					//	$headers .= 'Reply-to: '.$reply_to . "\n";
@@ -482,9 +502,9 @@ function delivery_run(&$argv, &$argc){
 								dbesc($it['parent-uri']),
 								intval($uid));
 
-							if (dbm::is_result($r) AND ($r[0]['title'] != ''))
+							if (dbm::is_result($r) AND ($r[0]['title'] != '')) {
 								$subject = $r[0]['title'];
-							else {
+							} else {
 								$r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
 									dbesc($it['parent-uri']),
 									intval($uid));

From fcd0b198f5b11bac14e3163ee9a4ab667da9e369 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Wed, 11 Jan 2017 23:18:51 +0000
Subject: [PATCH 09/68] Correction of commit
 a96eb3428dfd66e132ff834212be408ee64337b2

---
 include/cron.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/cron.php b/include/cron.php
index 5a9054b11..059bcea43 100644
--- a/include/cron.php
+++ b/include/cron.php
@@ -264,8 +264,9 @@ function cron_poll_contacts($argc, $argv) {
 			intval($c['id'])
 		);
 
-		if (dbm::is_result($res))
+		if (!dbm::is_result($res)) {
 			continue;
+		}
 
 		foreach($res as $contact) {
 

From 9183ef43852962d73271af06b3393c1149079afc Mon Sep 17 00:00:00 2001
From: beardyunixer 
Date: Thu, 12 Jan 2017 12:13:13 +0000
Subject: [PATCH 10/68] Update FAQ.md

Grammar - a few sentences that are technically correct, but don't sound quite right to a native speaker.
---
 doc/FAQ.md | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/doc/FAQ.md b/doc/FAQ.md
index 0343833a2..36fe1a8b4 100644
--- a/doc/FAQ.md
+++ b/doc/FAQ.md
@@ -43,29 +43,29 @@ We recommend to talk to the admin(s) of the affected friendica server. (Admins,
 
 ###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).
+You can upload images from your computer 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.
+On that page, you can also upload images directly and choose if your contacts will receive a message about this upload.
 
-Generally, you could attach every kind of file to a post.
+Generally, you can attach any 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). 
+But it's not possible to get a preview for these items.
+Because of this, this upload method is only recommended for office or zipped files. 
+If you want to 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].
 
 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:
+However, 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. 
+1. Add the video or audio link of a hoster (Youtube, Vimeo, Soundcloud and anyone else with oembed/opengraph-support). Videos will be shown with a preview image you can click on to start. SoundCloud directly inserts a player to 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.
+Friendica uses HTML5 for embedding content.
+Therefore, the supported files are dependent 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)).
 
@@ -188,7 +188,7 @@ Admin
 
 ###Can I configure multiple domains with the same code instance?
 
-No, this function is not supported anymore starting from Friendica 3.3.
+No, this function is no longer supported from Friendica 3.3 onwards.
 
 
 
@@ -202,12 +202,12 @@ Addons are listed at [this page](https://github.com/friendica/friendica-addons).
 If you are searching for new themes, you can find them at [Friendica-Themes.com](http://friendica-themes.com/) 
 
 
-###I've changed the my email address now the admin panel is gone?
+###I've changed my email address now the admin panel is gone?
 
 Have a look into your .htconfig.php and fix your email address there.
 
 
-###Can there be more then just one admin for a node?
+###Can there be more then one admin for a node?
 
 Yes. You just have to list more then one email address in the
 .htconfig.php file. The listed emails need to be separated by a comma.

From fd5f151a7232d2b35dd823ec1763420eea97a831 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Fri, 13 Jan 2017 07:46:47 +0000
Subject: [PATCH 11/68] New function to detect heavily used indexes

---
 include/dba.php         | 38 ++++++++++++++++++++++++++++++++++++++
 include/dbstructure.php |  7 ++++---
 include/photos.php      |  5 +++--
 mod/photos.php          |  2 +-
 4 files changed, 46 insertions(+), 6 deletions(-)

diff --git a/include/dba.php b/include/dba.php
index 920027cbc..17acf9432 100644
--- a/include/dba.php
+++ b/include/dba.php
@@ -138,6 +138,38 @@ class dba {
 		return $return;
 	}
 
+	public function log_index($query) {
+		$a = get_app();
+
+		if (($a->config["system"]["db_log_index"] == "") OR ($a->config["system"]["db_log_index_watch"] == "") OR
+			(intval($a->config["system"]["db_loglimit_index"]) == 0)) {
+			return;
+		}
+
+		if (strtolower(substr($query, 0, 7)) == "explain") {
+			return;
+		}
+
+		$r = $this->q("EXPLAIN ".$query);
+		if (!dbm::is_result($r)) {
+			return;
+		}
+
+		$watchlist = explode(',', $a->config["system"]["db_log_index_watch"]);
+
+		foreach ($r AS $row) {
+			if (in_array($row['key'], $watchlist) AND
+				($row['rows'] >= intval($a->config["system"]["db_loglimit_index"]))) {
+				$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
+				@file_put_contents($a->config["system"]["db_log_index"], datetime_convert()."\t".
+						$row['key']."\t".$row['rows']."\t".
+						basename($backtrace[1]["file"])."\t".
+						$backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
+						substr($query, 0, 2000)."\n", FILE_APPEND);
+			}
+		}
+	}
+
 	public function q($sql, $onlyquery = false) {
 		$a = get_app();
 
@@ -375,6 +407,9 @@ function q($sql) {
 		//logger("dba: q: $stmt", LOGGER_ALL);
 		if ($stmt === false)
 			logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
+
+		$db->log_index($stmt);
+
 		return $db->q($stmt);
 	}
 
@@ -408,6 +443,9 @@ function qu($sql) {
 		$stmt = @vsprintf($sql,$args); // Disabled warnings
 		if ($stmt === false)
 			logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
+
+		$db->log_index($stmt);
+
 		$db->q("SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;");
 		$retval = $db->q($stmt);
 		$db->q("SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;");
diff --git a/include/dbstructure.php b/include/dbstructure.php
index 5c89f49fb..535d7c541 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -587,10 +587,10 @@ function db_definition($charset) {
 			"indexes" => array(
 					"PRIMARY" => array("id"),
 					"uid_name" => array("uid", "name"),
-					"uid_self" => array("uid", "self"),
+					"self_uid" => array("self", "uid"),
 					"alias_uid" => array("alias(32)", "uid"),
-					"uid_pending" => array("uid", "pending"),
-					"uid_blocked" => array("uid", "blocked"),
+					"pending_uid" => array("pending", "uid"),
+					"blocked_uid" => array("blocked", "uid"),
 					"uid_rel_network_poll" => array("uid", "rel", "network", "poll(64)", "archive"),
 					"uid_network_batch" => array("uid", "network", "batch(64)"),
 					"addr_uid" => array("addr(32)", "uid"),
@@ -1162,6 +1162,7 @@ function db_definition($charset) {
 					"uid_contactid" => array("uid", "contact-id"),
 					"uid_profile" => array("uid", "profile"),
 					"uid_album_created" => array("uid", "album(32)", "created"),
+					"uid_album_scale_created" => array("uid", "album(32)", "scale", "created"),
 					"uid_album_resource-id_created" => array("uid", "album(32)", "resource-id(64)", "created"),
 					"resource-id" => array("resource-id(64)"),
 					)
diff --git a/include/photos.php b/include/photos.php
index 7cdd14bf6..f3043e44a 100644
--- a/include/photos.php
+++ b/include/photos.php
@@ -49,7 +49,7 @@ function photo_albums($uid, $update = false) {
 			/// @todo This query needs to be renewed. It is really slow
 			// At this time we just store the data in the cache
 			$albums = qu("SELECT COUNT(DISTINCT `resource-id`) AS `total`, `album`
-				FROM `photo` USE INDEX (`uid_album_created`)
+				FROM `photo`
 				WHERE `uid` = %d  AND `album` != '%s' AND `album` != '%s' $sql_extra
 				GROUP BY `album` ORDER BY `created` DESC",
 				intval($uid),
@@ -57,9 +57,10 @@ function photo_albums($uid, $update = false) {
 				dbesc(t('Contact Photos'))
 			);
 		} else {
+// USE INDEX (`uid_album`)
 			// This query doesn't do the count and is much faster
 			$albums = qu("SELECT DISTINCT(`album`), '' AS `total`
-				FROM `photo` USE INDEX (`uid_album_created`)
+				FROM `photo`
 				WHERE `uid` = %d  AND `album` != '%s' AND `album` != '%s' $sql_extra
 				GROUP BY `album` ORDER BY `created` DESC",
 				intval($uid),
diff --git a/mod/photos.php b/mod/photos.php
index 60e5dee64..e23e4fcc9 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -1344,7 +1344,7 @@ function photos_content(App $a) {
 		else
 			$order = 'DESC';
 
-
+		/// @todo This query is totally bad, the whole functionality has to be changed
 		$prvnxt = qu("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
 			$sql_extra ORDER BY `created` $order ",
 			dbesc($ph[0]['album']),

From a9833a395ff129a5fc4978b7ea08f0d2a84f9be6 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Fri, 13 Jan 2017 10:37:39 +0000
Subject: [PATCH 12/68] The relay query now uses a better index

---
 include/diaspora.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/diaspora.php b/include/diaspora.php
index fc88c79bf..fdbc0479f 100644
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -45,13 +45,13 @@ class Diaspora {
 
 		foreach($servers AS $server) {
 			$server = trim($server);
+			$addr = "relay@".str_replace("http://", "", normalise_link($server));
 			$batch = $server."/receive/public";
 
-			$relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
+			$relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' AND `addr` = '%s' AND `nurl` = '%s' LIMIT 1",
+					dbesc($batch), dbesc($addr), dbesc(normalise_link($server)));
 
 			if (!$relais) {
-				$addr = "relay@".str_replace("http://", "", normalise_link($server));
-
 				$r = q("INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`)
 					VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')",
 					datetime_convert(),

From 844fefc9c4eb67b1a161fb86c86edaffd5b18504 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Fri, 13 Jan 2017 13:04:37 +0000
Subject: [PATCH 13/68] Caching the events.

---
 mod/ping.php | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/mod/ping.php b/mod/ping.php
index cde03969f..8b2090cb6 100644
--- a/mod/ping.php
+++ b/mod/ping.php
@@ -5,6 +5,7 @@ require_once('include/ForumManager.php');
 require_once('include/group.php');
 require_once('mod/proxy.php');
 require_once('include/xml.php');
+require_once('include/cache.php');
 
 /**
  * @brief Outputs the counts and the lists of various notifications
@@ -195,15 +196,21 @@ function ping_init(App $a)
 			}
 		}
 
-		$ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event`
-			WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
-			ORDER BY `start` ASC ",
-			intval(local_user()),
-			dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
-			dbesc(datetime_convert('UTC', 'UTC', 'now'))
-		);
+		$cachekey = "ping:events:".local_user();
+		$ev = Cache::get($cachekey);
+		if (is_null($ev)) {
+			$ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event`
+				WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
+				ORDER BY `start` ASC ",
+				intval(local_user()),
+				dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
+				dbesc(datetime_convert('UTC', 'UTC', 'now'))
+			);
+		}
 
 		if (dbm::is_result($ev)) {
+			Cache::set($cachekey, $ev, CACHE_HOUR);
+
 			$all_events = intval($ev[0]['total']);
 
 			if ($all_events) {

From 3af099298c83b45f2f21cb5b81a8c7b6159e7459 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Fri, 13 Jan 2017 17:31:10 +0000
Subject: [PATCH 14/68] Some more caching

---
 include/identity.php | 25 ++++++++++++++++---------
 mod/ping.php         |  7 ++++---
 2 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/include/identity.php b/include/identity.php
index c18bc3a80..d3852b2c2 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -6,6 +6,7 @@
 require_once('include/ForumManager.php');
 require_once('include/bbcode.php');
 require_once("mod/proxy.php");
+require_once('include/cache.php');
 
 /**
  *
@@ -453,15 +454,21 @@ function get_birthdays() {
 	$bd_format = t('g A l F d') ; // 8 AM Friday January 18
 	$bd_short = t('F d');
 
-	$r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
-			INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
-			WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
-			ORDER BY `start` ASC ",
-			intval(local_user()),
-			dbesc(datetime_convert('UTC','UTC','now + 6 days')),
-			dbesc(datetime_convert('UTC','UTC','now'))
-	);
-
+	$cachekey = "get_birthdays:".local_user();
+	$r = Cache::get($cachekey);
+	if (is_null($r)) {
+		$r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
+				INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
+				WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
+				ORDER BY `start` ASC ",
+				intval(local_user()),
+				dbesc(datetime_convert('UTC','UTC','now + 6 days')),
+				dbesc(datetime_convert('UTC','UTC','now'))
+		);
+		if (dbm::is_result($r)) {
+			Cache::set($cachekey, $r, CACHE_HOUR);
+		}
+	}
 	if (dbm::is_result($r)) {
 		$total = 0;
 		$now = strtotime('now');
diff --git a/mod/ping.php b/mod/ping.php
index 8b2090cb6..b5330c7b3 100644
--- a/mod/ping.php
+++ b/mod/ping.php
@@ -196,7 +196,7 @@ function ping_init(App $a)
 			}
 		}
 
-		$cachekey = "ping:events:".local_user();
+		$cachekey = "ping_init:".local_user();
 		$ev = Cache::get($cachekey);
 		if (is_null($ev)) {
 			$ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event`
@@ -206,11 +206,12 @@ function ping_init(App $a)
 				dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
 				dbesc(datetime_convert('UTC', 'UTC', 'now'))
 			);
+			if (dbm::is_result($ev)) {
+				Cache::set($cachekey, $ev, CACHE_HOUR);
+			}
 		}
 
 		if (dbm::is_result($ev)) {
-			Cache::set($cachekey, $ev, CACHE_HOUR);
-
 			$all_events = intval($ev[0]['total']);
 
 			if ($all_events) {

From 29ef8d29cee07d6677134db289f6975586c53913 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Fri, 13 Jan 2017 22:13:52 +0000
Subject: [PATCH 15/68] Better usage of text and mediumtext.

---
 database.sql            | 67 +++++++++++++++++++++--------------------
 include/dbstructure.php | 58 +++++++++++++++++------------------
 2 files changed, 63 insertions(+), 62 deletions(-)

diff --git a/database.sql b/database.sql
index becd14fc7..c07d2ae6d 100644
--- a/database.sql
+++ b/database.sql
@@ -31,10 +31,10 @@ CREATE TABLE IF NOT EXISTS `attach` (
 	`data` longblob NOT NULL,
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	`edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-	`allow_cid` mediumtext,
-	`allow_gid` mediumtext,
-	`deny_cid` mediumtext,
-	`deny_gid` mediumtext,
+	`allow_cid` text,
+	`allow_gid` text,
+	`deny_cid` text,
+	`deny_gid` text,
 	 PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -55,7 +55,7 @@ CREATE TABLE IF NOT EXISTS `auth_codes` (
 --
 CREATE TABLE IF NOT EXISTS `cache` (
 	`k` varbinary(255) NOT NULL,
-	`v` text,
+	`v` mediumtext,
 	`expire_mode` int(11) NOT NULL DEFAULT 0,
 	`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`k`),
@@ -96,7 +96,7 @@ CREATE TABLE IF NOT EXISTS `config` (
 	`id` int(10) unsigned NOT NULL auto_increment,
 	`cat` varbinary(255) NOT NULL DEFAULT '',
 	`k` varbinary(255) NOT NULL DEFAULT '',
-	`v` text,
+	`v` mediumtext,
 	 PRIMARY KEY(`id`),
 	 UNIQUE INDEX `cat_k` (`cat`,`k`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -172,13 +172,13 @@ CREATE TABLE IF NOT EXISTS `contact` (
 	`bd` date NOT NULL DEFAULT '0000-00-00',
 	`notify_new_posts` tinyint(1) NOT NULL DEFAULT 0,
 	`fetch_further_information` tinyint(1) NOT NULL DEFAULT 0,
-	`ffi_keyword_blacklist` mediumtext,
+	`ffi_keyword_blacklist` text,
 	 PRIMARY KEY(`id`),
 	 INDEX `uid_name` (`uid`,`name`),
-	 INDEX `uid_self` (`uid`,`self`),
+	 INDEX `self_uid` (`self`,`uid`),
 	 INDEX `alias_uid` (`alias`(32),`uid`),
-	 INDEX `uid_pending` (`uid`,`pending`),
-	 INDEX `uid_blocked` (`uid`,`blocked`),
+	 INDEX `pending_uid` (`pending`,`uid`),
+	 INDEX `blocked_uid` (`blocked`,`uid`),
 	 INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
 	 INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
 	 INDEX `addr_uid` (`addr`(32),`uid`),
@@ -192,12 +192,12 @@ CREATE TABLE IF NOT EXISTS `contact` (
 CREATE TABLE IF NOT EXISTS `conv` (
 	`id` int(10) unsigned NOT NULL auto_increment,
 	`guid` varchar(64) NOT NULL DEFAULT '',
-	`recips` mediumtext,
+	`recips` text,
 	`uid` int(11) NOT NULL DEFAULT 0,
 	`creator` varchar(255) NOT NULL DEFAULT '',
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-	`subject` mediumtext,
+	`subject` text,
 	 PRIMARY KEY(`id`),
 	 INDEX `uid` (`uid`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -234,10 +234,10 @@ CREATE TABLE IF NOT EXISTS `event` (
 	`nofinish` tinyint(1) NOT NULL DEFAULT 0,
 	`adjust` tinyint(1) NOT NULL DEFAULT 1,
 	`ignore` tinyint(1) unsigned NOT NULL DEFAULT 0,
-	`allow_cid` mediumtext,
-	`allow_gid` mediumtext,
-	`deny_cid` mediumtext,
-	`deny_gid` mediumtext,
+	`allow_cid` text,
+	`allow_gid` text,
+	`deny_cid` text,
+	`deny_gid` text,
 	 PRIMARY KEY(`id`),
 	 INDEX `uid_start` (`uid`,`start`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -394,7 +394,7 @@ CREATE TABLE IF NOT EXISTS `group_member` (
 	`gid` int(10) unsigned NOT NULL DEFAULT 0,
 	`contact-id` int(10) unsigned NOT NULL DEFAULT 0,
 	 PRIMARY KEY(`id`),
-	 INDEX `cid_contactid` (`cid`,`contact-id`),
+	 INDEX `gid_contactid` (`gid`,`contact-id`),
 	 INDEX `uid_contactid` (`uid`,`contact-id`),
 	 UNIQUE INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -688,7 +688,7 @@ CREATE TABLE IF NOT EXISTS `notify-threads` (
 --
 CREATE TABLE IF NOT EXISTS `oembed` (
 	`url` varbinary(255) NOT NULL,
-	`content` text,
+	`content` mediumtext,
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`url`),
 	 INDEX `created` (`created`)
@@ -701,7 +701,7 @@ CREATE TABLE IF NOT EXISTS `parsed_url` (
 	`url` varbinary(255) NOT NULL,
 	`guessing` tinyint(1) NOT NULL DEFAULT 0,
 	`oembed` tinyint(1) NOT NULL DEFAULT 0,
-	`content` text,
+	`content` mediumtext,
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`url`,`guessing`,`oembed`),
 	 INDEX `created` (`created`)
@@ -750,6 +750,7 @@ CREATE TABLE IF NOT EXISTS `photo` (
 	 INDEX `uid_contactid` (`uid`,`contact-id`),
 	 INDEX `uid_profile` (`uid`,`profile`),
 	 INDEX `uid_album_created` (`uid`,`album`(32),`created`),
+	 INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
 	 INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`(64),`created`),
 	 INDEX `resource-id` (`resource-id`(64))
 ) DEFAULT CHARSET=utf8mb4;
@@ -760,16 +761,16 @@ CREATE TABLE IF NOT EXISTS `photo` (
 CREATE TABLE IF NOT EXISTS `poll` (
 	`id` int(11) NOT NULL auto_increment,
 	`uid` int(11) NOT NULL DEFAULT 0,
-	`q0` mediumtext,
-	`q1` mediumtext,
-	`q2` mediumtext,
-	`q3` mediumtext,
-	`q4` mediumtext,
-	`q5` mediumtext,
-	`q6` mediumtext,
-	`q7` mediumtext,
-	`q8` mediumtext,
-	`q9` mediumtext,
+	`q0` text,
+	`q1` text,
+	`q2` text,
+	`q3` text,
+	`q4` text,
+	`q5` text,
+	`q6` text,
+	`q7` text,
+	`q8` text,
+	`q9` text,
 	 PRIMARY KEY(`id`),
 	 INDEX `uid` (`uid`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -1082,10 +1083,10 @@ CREATE TABLE IF NOT EXISTS `user` (
 	`expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	`service_class` varchar(32) NOT NULL DEFAULT '',
 	`def_gid` int(11) NOT NULL DEFAULT 0,
-	`allow_cid` mediumtext,
-	`allow_gid` mediumtext,
-	`deny_cid` mediumtext,
-	`deny_gid` mediumtext,
+	`allow_cid` text,
+	`allow_gid` text,
+	`deny_cid` text,
+	`deny_gid` text,
 	`openidserver` text,
 	 PRIMARY KEY(`uid`),
 	 INDEX `nickname` (`nickname`(32))
diff --git a/include/dbstructure.php b/include/dbstructure.php
index 535d7c541..126da9ce4 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -441,10 +441,10 @@ function db_definition($charset) {
 					"data" => array("type" => "longblob", "not null" => "1"),
 					"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
-					"allow_cid" => array("type" => "mediumtext"),
-					"allow_gid" => array("type" => "mediumtext"),
-					"deny_cid" => array("type" => "mediumtext"),
-					"deny_gid" => array("type" => "mediumtext"),
+					"allow_cid" => array("type" => "text"),
+					"allow_gid" => array("type" => "text"),
+					"deny_cid" => array("type" => "text"),
+					"deny_gid" => array("type" => "text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -465,7 +465,7 @@ function db_definition($charset) {
 	$database["cache"] = array(
 			"fields" => array(
 					"k" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
-					"v" => array("type" => "text"),
+					"v" => array("type" => "mediumtext"),
 					"expire_mode" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
 					"updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					),
@@ -506,7 +506,7 @@ function db_definition($charset) {
 					"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
 					"cat" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
 					"k" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
-					"v" => array("type" => "text"),
+					"v" => array("type" => "mediumtext"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -582,7 +582,7 @@ function db_definition($charset) {
 					"bd" => array("type" => "date", "not null" => "1", "default" => "0000-00-00"),
 					"notify_new_posts" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
 					"fetch_further_information" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
-					"ffi_keyword_blacklist" => array("type" => "mediumtext"),
+					"ffi_keyword_blacklist" => array("type" => "text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -602,12 +602,12 @@ function db_definition($charset) {
 			"fields" => array(
 					"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
 					"guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
-					"recips" => array("type" => "mediumtext"),
+					"recips" => array("type" => "text"),
 					"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
 					"creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
 					"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
-					"subject" => array("type" => "mediumtext"),
+					"subject" => array("type" => "text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -644,10 +644,10 @@ function db_definition($charset) {
 					"nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
 					"adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
 					"ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
-					"allow_cid" => array("type" => "mediumtext"),
-					"allow_gid" => array("type" => "mediumtext"),
-					"deny_cid" => array("type" => "mediumtext"),
-					"deny_gid" => array("type" => "mediumtext"),
+					"allow_cid" => array("type" => "text"),
+					"allow_gid" => array("type" => "text"),
+					"deny_cid" => array("type" => "text"),
+					"deny_gid" => array("type" => "text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -1098,7 +1098,7 @@ function db_definition($charset) {
 	$database["oembed"] = array(
 			"fields" => array(
 					"url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
-					"content" => array("type" => "text"),
+					"content" => array("type" => "mediumtext"),
 					"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					),
 			"indexes" => array(
@@ -1111,7 +1111,7 @@ function db_definition($charset) {
 					"url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
 					"guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
 					"oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
-					"content" => array("type" => "text"),
+					"content" => array("type" => "mediumtext"),
 					"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					),
 			"indexes" => array(
@@ -1171,16 +1171,16 @@ function db_definition($charset) {
 			"fields" => array(
 					"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
 					"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
-					"q0" => array("type" => "mediumtext"),
-					"q1" => array("type" => "mediumtext"),
-					"q2" => array("type" => "mediumtext"),
-					"q3" => array("type" => "mediumtext"),
-					"q4" => array("type" => "mediumtext"),
-					"q5" => array("type" => "mediumtext"),
-					"q6" => array("type" => "mediumtext"),
-					"q7" => array("type" => "mediumtext"),
-					"q8" => array("type" => "mediumtext"),
-					"q9" => array("type" => "mediumtext"),
+					"q0" => array("type" => "text"),
+					"q1" => array("type" => "text"),
+					"q2" => array("type" => "text"),
+					"q3" => array("type" => "text"),
+					"q4" => array("type" => "text"),
+					"q5" => array("type" => "text"),
+					"q6" => array("type" => "text"),
+					"q7" => array("type" => "text"),
+					"q8" => array("type" => "text"),
+					"q9" => array("type" => "text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -1493,10 +1493,10 @@ function db_definition($charset) {
 					"expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
 					"def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
-					"allow_cid" => array("type" => "mediumtext"),
-					"allow_gid" => array("type" => "mediumtext"),
-					"deny_cid" => array("type" => "mediumtext"),
-					"deny_gid" => array("type" => "mediumtext"),
+					"allow_cid" => array("type" => "text"),
+					"allow_gid" => array("type" => "text"),
+					"deny_cid" => array("type" => "text"),
+					"deny_gid" => array("type" => "text"),
 					"openidserver" => array("type" => "text"),
 					),
 			"indexes" => array(

From 85397f3bb9955981cbe5fb356aaf93cd10b54e62 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sat, 14 Jan 2017 00:49:41 +0000
Subject: [PATCH 16/68] Some removed indexes

---
 include/dbstructure.php | 25 ++++---------------------
 1 file changed, 4 insertions(+), 21 deletions(-)

diff --git a/include/dbstructure.php b/include/dbstructure.php
index 126da9ce4..90b6f2d06 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -471,7 +471,6 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("k"),
-					"updated" => array("updated"),
 					"expire_mode_updated" => array("expire_mode", "updated"),
 					)
 			);
@@ -781,7 +780,6 @@ function db_definition($charset) {
 					"PRIMARY" => array("id"),
 					"cid_uid_gcid_zcid" => array("UNIQUE", "cid","uid","gcid","zcid"),
 					"gcid" => array("gcid"),
-					"zcid" => array("zcid"),
 					)
 			);
 	$database["group"] = array(
@@ -807,7 +805,6 @@ function db_definition($charset) {
 			"indexes" => array(
 					"PRIMARY" => array("id"),
 					"gid_contactid" => array("gid", "contact-id"),
-					"uid_contactid" => array("uid", "contact-id"),
 					"uid_gid_contactid" => array("UNIQUE", "uid", "gid", "contact-id"),
 					)
 			);
@@ -944,19 +941,14 @@ function db_definition($charset) {
 					"uid_created" => array("uid","created"),
 					"uid_unseen_contactid" => array("uid","unseen","contact-id"),
 					"uid_network_received" => array("uid","network","received"),
-					"uid_received" => array("uid","received"),
 					"uid_network_commented" => array("uid","network","commented"),
-					"uid_title" => array("uid","title"),
 					"uid_thrparent" => array("uid","thr-parent"),
 					"uid_parenturi" => array("uid","parent-uri"),
-					"uid_contactid_id" => array("uid","contact-id","id"),
 					"uid_contactid_created" => array("uid","contact-id","created"),
 					"authorid_created" => array("author-id","created"),
 					"uid_uri" => array("uid", "uri"),
-					"uid_wall_created" => array("uid","wall","created"),
 					"resource-id" => array("resource-id"),
-					"uid_type" => array("uid","type"),
-					"contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
+					"contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"), //
 					"uid_type_changed" => array("uid","type","changed"),
 					"contactid_verb" => array("contact-id","verb"),
 					"deleted_changed" => array("deleted","changed"),
@@ -1015,7 +1007,6 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"uid" => array("uid"),
 					"uid_seen" => array("uid", "seen"),
 					"convid" => array("convid"),
 					"uri" => array("uri(64)"),
@@ -1050,7 +1041,7 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"uid_mid" => array("uid","mid"),
+					"uid_mid" => array("UNIQUE", "uid","mid"),
 					)
 			);
 	$database["notify"] = array(
@@ -1076,9 +1067,8 @@ function db_definition($charset) {
 			"indexes" => array(
 					"PRIMARY" => array("id"),
 					"uid_hash" => array("uid", "hash"),
-					"uid_seen_date" => array("uid", "seen", "date"),
-					"uid_type_link" => array("uid", "type", "link"),
-					"uid_link" => array("uid", "link"),
+					"seen_uid_date" => array("seen", "uid", "date"),
+					"type_uid_link" => array("type", "uid", "link"),
 					"uid_date" => array("uid", "date"),
 					)
 			);
@@ -1092,7 +1082,6 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"master-parent-item" => array("master-parent-item"),
 					)
 			);
 	$database["oembed"] = array(
@@ -1161,7 +1150,6 @@ function db_definition($charset) {
 					"PRIMARY" => array("id"),
 					"uid_contactid" => array("uid", "contact-id"),
 					"uid_profile" => array("uid", "profile"),
-					"uid_album_created" => array("uid", "album(32)", "created"),
 					"uid_album_scale_created" => array("uid", "album(32)", "scale", "created"),
 					"uid_album_resource-id_created" => array("uid", "album(32)", "resource-id(64)", "created"),
 					"resource-id" => array("resource-id(64)"),
@@ -1392,8 +1380,6 @@ function db_definition($charset) {
 			"indexes" => array(
 					"PRIMARY" => array("tid"),
 					"oid_otype_type_term" => array("oid","otype","type","term"),
-					"uid_term_tid" => array("uid","term(32)","tid"),
-					"type_term" => array("type","term(32)"),
 					"uid_otype_type_term_global_created" => array("uid","otype","type","term(32)","global","created"),
 					"uid_otype_type_url" => array("uid","otype","type","url(64)"),
 					"guid" => array("guid(64)"),
@@ -1430,8 +1416,6 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("iid"),
-					"created" => array("created"),
-					"commented" => array("commented"),
 					"uid_network_commented" => array("uid","network","commented"),
 					"uid_network_created" => array("uid","network","created"),
 					"uid_contactid_commented" => array("uid","contact-id","commented"),
@@ -1525,7 +1509,6 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"created" => array("created"),
 					)
 			);
 

From e16afc0450c812b76a79c4fb71fcf8e5260bca0b Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sat, 14 Jan 2017 21:36:34 +0000
Subject: [PATCH 17/68] Some more changed indexes and improved queries

---
 include/cron.php        | 12 +++++++-----
 include/dba.php         | 27 +++++++++++++++++++++++----
 include/dbstructure.php | 11 +++++++++--
 3 files changed, 39 insertions(+), 11 deletions(-)

diff --git a/include/cron.php b/include/cron.php
index 059bcea43..f7def6121 100644
--- a/include/cron.php
+++ b/include/cron.php
@@ -239,11 +239,13 @@ function cron_poll_contacts($argc, $argv) {
 		: ''
 	);
 
-	$contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
-		WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
-		$sql_extra
-		AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
-		AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
+	$contacts = q("SELECT `contact`.`id` FROM `user`
+			STRAIGHT_JOIN `contact`
+			ON `contact`.`uid` = `user`.`uid` AND `contact`.`rel` IN (%d, %d) AND `contact`.`poll` != ''
+				AND `contact`.`network` IN ('%s', '%s', '%s', '%s', '%s', '%s') $sql_extra
+				AND NOT `contact`.`self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly`
+				AND NOT `contact`.`archive`
+			WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
 		intval(CONTACT_IS_SHARING),
 		intval(CONTACT_IS_FRIEND),
 		dbesc(NETWORK_DFRN),
diff --git a/include/dba.php b/include/dba.php
index 17acf9432..4b76f55ab 100644
--- a/include/dba.php
+++ b/include/dba.php
@@ -141,25 +141,44 @@ class dba {
 	public function log_index($query) {
 		$a = get_app();
 
-		if (($a->config["system"]["db_log_index"] == "") OR ($a->config["system"]["db_log_index_watch"] == "") OR
-			(intval($a->config["system"]["db_loglimit_index"]) == 0)) {
+		if ($a->config["system"]["db_log_index"] == "") {
 			return;
 		}
 
+		// Don't explain an explain statement
 		if (strtolower(substr($query, 0, 7)) == "explain") {
 			return;
 		}
 
+		// Only do the explain on "select", "update" and "delete"
+		if (!in_array(strtolower(substr($query, 0, 6)), array("select", "update", "delete"))) {
+			return;
+		}
+
 		$r = $this->q("EXPLAIN ".$query);
 		if (!dbm::is_result($r)) {
 			return;
 		}
 
 		$watchlist = explode(',', $a->config["system"]["db_log_index_watch"]);
+		$blacklist = explode(',', $a->config["system"]["db_log_index_blacklist"]);
 
 		foreach ($r AS $row) {
-			if (in_array($row['key'], $watchlist) AND
-				($row['rows'] >= intval($a->config["system"]["db_loglimit_index"]))) {
+			if ((intval($a->config["system"]["db_loglimit_index"]) > 0)) {
+				$log = (in_array($row['key'], $watchlist) AND
+					($row['rows'] >= intval($a->config["system"]["db_loglimit_index"])));
+			} else
+				$log = false;
+
+			if ((intval($a->config["system"]["db_loglimit_index_high"]) > 0) AND ($row['rows'] >= intval($a->config["system"]["db_loglimit_index_high"]))) {
+				$log = true;
+			}
+
+			if (in_array($row['key'], $blacklist) OR ($row['key'] == "")) {
+				$log = false;
+			}
+
+			if ($log) {
 				$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
 				@file_put_contents($a->config["system"]["db_log_index"], datetime_convert()."\t".
 						$row['key']."\t".$row['rows']."\t".
diff --git a/include/dbstructure.php b/include/dbstructure.php
index 90b6f2d06..551f254a5 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -595,6 +595,8 @@ function db_definition($charset) {
 					"addr_uid" => array("addr(32)", "uid"),
 					"nurl_uid" => array("nurl(32)", "uid"),
 					"nick_uid" => array("nick(32)", "uid"),
+					"dfrn-id" => array("dfrn-id"),
+					"issued-id" => array("issued-id"),
 					)
 			);
 	$database["conv"] = array(
@@ -676,6 +678,7 @@ function db_definition($charset) {
 			"indexes" => array(
 					"PRIMARY" => array("id"),
 					"addr" => array("addr(32)"),
+					"url" => array("url"),
 					)
 			);
 	$database["ffinder"] = array(
@@ -764,6 +767,7 @@ function db_definition($charset) {
 					"name" => array("name(32)"),
 					"nick" => array("nick(32)"),
 					"addr" => array("addr(32)"),
+					"hide_network_updated" => array("hide", "network", "updated"),
 					"updated" => array("updated"),
 					)
 			);
@@ -804,6 +808,7 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
+					"contactid" => array("contact-id"),
 					"gid_contactid" => array("gid", "contact-id"),
 					"uid_gid_contactid" => array("UNIQUE", "uid", "gid", "contact-id"),
 					)
@@ -953,6 +958,7 @@ function db_definition($charset) {
 					"contactid_verb" => array("contact-id","verb"),
 					"deleted_changed" => array("deleted","changed"),
 					"uid_wall_changed" => array("uid","wall","changed"),
+					"wall_uid_changed" => array("wall","uid","changed"),
 					"uid_eventid" => array("uid","event-id"),
 					"uid_authorlink" => array("uid","author-link"),
 					"uid_ownerlink" => array("uid","owner-link"),
@@ -1066,10 +1072,10 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"uid_hash" => array("uid", "hash"),
+					"hash_uid" => array("hash", "uid"),
 					"seen_uid_date" => array("seen", "uid", "date"),
-					"type_uid_link" => array("type", "uid", "link"),
 					"uid_date" => array("uid", "date"),
+					"uid_type_link" => array("uid", "type", "link"),
 					)
 			);
 	$database["notify-threads"] = array(
@@ -1245,6 +1251,7 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
+					"uid_is-default" => array("uid", "is-default"),
 					)
 			);
 	$database["profile_check"] = array(

From 2362e78c8fe8dd53881cf3803d1e706a3a7f1882 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 09:07:57 +0000
Subject: [PATCH 18/68] Issue 3011 (and others): OStatus: Don't fetch liked
 contents

---
 include/ostatus.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/ostatus.php b/include/ostatus.php
index ba64f493d..2c4b677a5 100644
--- a/include/ostatus.php
+++ b/include/ostatus.php
@@ -523,7 +523,9 @@ class ostatus {
 				$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
 					intval($importer["uid"]), dbesc($item["parent-uri"]));
 
-				if (!$r AND ($related != "")) {
+				// Only fetch missing stuff if it is a comment or reshare.
+				if (in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_SHARE)) AND
+					!dbm::is_result($r) AND ($related != "")) {
 					$reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
 
 					if ($reply_path != $related) {

From 021a4fad714c25c9e031ff4792ba0e2b7377568b Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 12:36:06 +0000
Subject: [PATCH 19/68] Some more database stuff

---
 database.sql            | 45 ++++++++++++++++-------------------------
 include/dba.php         |  2 +-
 include/dbstructure.php |  1 -
 include/dfrn.php        |  2 +-
 include/ostatus.php     |  4 +++-
 include/post_update.php |  2 +-
 include/socgraph.php    |  2 +-
 7 files changed, 24 insertions(+), 34 deletions(-)

diff --git a/database.sql b/database.sql
index c07d2ae6d..9d4d289f2 100644
--- a/database.sql
+++ b/database.sql
@@ -59,7 +59,6 @@ CREATE TABLE IF NOT EXISTS `cache` (
 	`expire_mode` int(11) NOT NULL DEFAULT 0,
 	`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`k`),
-	 INDEX `updated` (`updated`),
 	 INDEX `expire_mode_updated` (`expire_mode`,`updated`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -183,7 +182,9 @@ CREATE TABLE IF NOT EXISTS `contact` (
 	 INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
 	 INDEX `addr_uid` (`addr`(32),`uid`),
 	 INDEX `nurl_uid` (`nurl`(32),`uid`),
-	 INDEX `nick_uid` (`nick`(32),`uid`)
+	 INDEX `nick_uid` (`nick`(32),`uid`),
+	 INDEX `dfrn-id` (`dfrn-id`),
+	 INDEX `issued-id` (`issued-id`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -264,7 +265,8 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
 	`pubkey` text,
 	`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`id`),
-	 INDEX `addr` (`addr`(32))
+	 INDEX `addr` (`addr`(32)),
+	 INDEX `url` (`url`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -353,6 +355,7 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
 	 INDEX `name` (`name`(32)),
 	 INDEX `nick` (`nick`(32)),
 	 INDEX `addr` (`addr`(32)),
+	 INDEX `hide_network_updated` (`hide`,`network`,`updated`),
 	 INDEX `updated` (`updated`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -368,8 +371,7 @@ CREATE TABLE IF NOT EXISTS `glink` (
 	`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`id`),
 	 UNIQUE INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
-	 INDEX `gcid` (`gcid`),
-	 INDEX `zcid` (`zcid`)
+	 INDEX `gcid` (`gcid`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -394,8 +396,8 @@ CREATE TABLE IF NOT EXISTS `group_member` (
 	`gid` int(10) unsigned NOT NULL DEFAULT 0,
 	`contact-id` int(10) unsigned NOT NULL DEFAULT 0,
 	 PRIMARY KEY(`id`),
+	 INDEX `contactid` (`contact-id`),
 	 INDEX `gid_contactid` (`gid`,`contact-id`),
-	 INDEX `uid_contactid` (`uid`,`contact-id`),
 	 UNIQUE INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -532,18 +534,13 @@ CREATE TABLE IF NOT EXISTS `item` (
 	 INDEX `uid_created` (`uid`,`created`),
 	 INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
 	 INDEX `uid_network_received` (`uid`,`network`,`received`),
-	 INDEX `uid_received` (`uid`,`received`),
 	 INDEX `uid_network_commented` (`uid`,`network`,`commented`),
-	 INDEX `uid_title` (`uid`,`title`),
 	 INDEX `uid_thrparent` (`uid`,`thr-parent`),
 	 INDEX `uid_parenturi` (`uid`,`parent-uri`),
-	 INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
 	 INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
 	 INDEX `authorid_created` (`author-id`,`created`),
 	 INDEX `uid_uri` (`uid`,`uri`),
-	 INDEX `uid_wall_created` (`uid`,`wall`,`created`),
 	 INDEX `resource-id` (`resource-id`),
-	 INDEX `uid_type` (`uid`,`type`),
 	 INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)),
 	 INDEX `uid_type_changed` (`uid`,`type`,`changed`),
 	 INDEX `contactid_verb` (`contact-id`,`verb`),
@@ -603,7 +600,6 @@ CREATE TABLE IF NOT EXISTS `mail` (
 	`parent-uri` varchar(255) NOT NULL DEFAULT '',
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	 PRIMARY KEY(`id`),
-	 INDEX `uid` (`uid`),
 	 INDEX `uid_seen` (`uid`,`seen`),
 	 INDEX `convid` (`convid`),
 	 INDEX `uri` (`uri`(64)),
@@ -638,7 +634,7 @@ CREATE TABLE IF NOT EXISTS `manage` (
 	`uid` int(11) NOT NULL DEFAULT 0,
 	`mid` int(11) NOT NULL DEFAULT 0,
 	 PRIMARY KEY(`id`),
-	 INDEX `uid_mid` (`uid`,`mid`)
+	 UNIQUE INDEX `uid_mid` (`uid`,`mid`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -663,11 +659,10 @@ CREATE TABLE IF NOT EXISTS `notify` (
 	`name_cache` tinytext,
 	`msg_cache` mediumtext,
 	 PRIMARY KEY(`id`),
-	 INDEX `uid_hash` (`uid`,`hash`),
-	 INDEX `uid_seen_date` (`uid`,`seen`,`date`),
-	 INDEX `uid_type_link` (`uid`,`type`,`link`),
-	 INDEX `uid_link` (`uid`,`link`),
-	 INDEX `uid_date` (`uid`,`date`)
+	 INDEX `hash_uid` (`hash`,`uid`),
+	 INDEX `seen_uid_date` (`seen`,`uid`,`date`),
+	 INDEX `uid_date` (`uid`,`date`),
+	 INDEX `uid_type_link` (`uid`,`type`,`link`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -679,8 +674,7 @@ CREATE TABLE IF NOT EXISTS `notify-threads` (
 	`master-parent-item` int(10) unsigned NOT NULL DEFAULT 0,
 	`parent-item` int(10) unsigned NOT NULL DEFAULT 0,
 	`receiver-uid` int(11) NOT NULL DEFAULT 0,
-	 PRIMARY KEY(`id`),
-	 INDEX `master-parent-item` (`master-parent-item`)
+	 PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -749,7 +743,6 @@ CREATE TABLE IF NOT EXISTS `photo` (
 	 PRIMARY KEY(`id`),
 	 INDEX `uid_contactid` (`uid`,`contact-id`),
 	 INDEX `uid_profile` (`uid`,`profile`),
-	 INDEX `uid_album_created` (`uid`,`album`(32),`created`),
 	 INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
 	 INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`(64),`created`),
 	 INDEX `resource-id` (`resource-id`(64))
@@ -844,7 +837,8 @@ CREATE TABLE IF NOT EXISTS `profile` (
 	`thumb` varchar(255) NOT NULL DEFAULT '',
 	`publish` tinyint(1) NOT NULL DEFAULT 0,
 	`net-publish` tinyint(1) NOT NULL DEFAULT 0,
-	 PRIMARY KEY(`id`)
+	 PRIMARY KEY(`id`),
+	 INDEX `uid_is-default` (`uid`,`is-default`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -980,8 +974,6 @@ CREATE TABLE IF NOT EXISTS `term` (
 	`uid` int(10) unsigned NOT NULL DEFAULT 0,
 	 PRIMARY KEY(`tid`),
 	 INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`),
-	 INDEX `uid_term_tid` (`uid`,`term`(32),`tid`),
-	 INDEX `type_term` (`type`,`term`(32)),
 	 INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
 	 INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`(64)),
 	 INDEX `guid` (`guid`(64))
@@ -1018,8 +1010,6 @@ CREATE TABLE IF NOT EXISTS `thread` (
 	`mention` tinyint(1) NOT NULL DEFAULT 0,
 	`network` varchar(32) NOT NULL DEFAULT '',
 	 PRIMARY KEY(`iid`),
-	 INDEX `created` (`created`),
-	 INDEX `commented` (`commented`),
 	 INDEX `uid_network_commented` (`uid`,`network`,`commented`),
 	 INDEX `uid_network_created` (`uid`,`network`,`created`),
 	 INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
@@ -1112,7 +1102,6 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	`pid` int(11) NOT NULL DEFAULT 0,
 	`executed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-	 PRIMARY KEY(`id`),
-	 INDEX `created` (`created`)
+	 PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
diff --git a/include/dba.php b/include/dba.php
index 4b76f55ab..7d2d3bbd0 100644
--- a/include/dba.php
+++ b/include/dba.php
@@ -181,7 +181,7 @@ class dba {
 			if ($log) {
 				$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
 				@file_put_contents($a->config["system"]["db_log_index"], datetime_convert()."\t".
-						$row['key']."\t".$row['rows']."\t".
+						$row['key']."\t".$row['rows']."\t".$row['Extra']."\t".
 						basename($backtrace[1]["file"])."\t".
 						$backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
 						substr($query, 0, 2000)."\n", FILE_APPEND);
diff --git a/include/dbstructure.php b/include/dbstructure.php
index 551f254a5..6154ddeb0 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -958,7 +958,6 @@ function db_definition($charset) {
 					"contactid_verb" => array("contact-id","verb"),
 					"deleted_changed" => array("deleted","changed"),
 					"uid_wall_changed" => array("uid","wall","changed"),
-					"wall_uid_changed" => array("wall","uid","changed"),
 					"uid_eventid" => array("uid","event-id"),
 					"uid_authorlink" => array("uid","author-link"),
 					"uid_ownerlink" => array("uid","owner-link"),
diff --git a/include/dfrn.php b/include/dfrn.php
index 5e4f03779..ffdc2cbaf 100644
--- a/include/dfrn.php
+++ b/include/dfrn.php
@@ -194,7 +194,7 @@ class dfrn {
 			`contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
 			`contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
 			`sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
-			FROM `item` USE INDEX (`uid_wall_changed`, `uid_type_changed`) $sql_post_table
+			FROM `item` USE INDEX (`uid_wall_changed`, `wall_uid_changed`) $sql_post_table
 			STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
 			AND (NOT `contact`.`blocked` OR `contact`.`pending`)
 			LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
diff --git a/include/ostatus.php b/include/ostatus.php
index ba64f493d..2c4b677a5 100644
--- a/include/ostatus.php
+++ b/include/ostatus.php
@@ -523,7 +523,9 @@ class ostatus {
 				$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
 					intval($importer["uid"]), dbesc($item["parent-uri"]));
 
-				if (!$r AND ($related != "")) {
+				// Only fetch missing stuff if it is a comment or reshare.
+				if (in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_SHARE)) AND
+					!dbm::is_result($r) AND ($related != "")) {
 					$reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
 
 					if ($reply_path != $related) {
diff --git a/include/post_update.php b/include/post_update.php
index b2d682d72..ae5aad26d 100644
--- a/include/post_update.php
+++ b/include/post_update.php
@@ -239,7 +239,7 @@ function post_update_1206() {
 
 	logger("Start", LOGGER_DEBUG);
 	$r = q("SELECT `contact`.`id`, `contact`.`last-item`,
-		(SELECT MAX(`changed`) FROM `item` FORCE INDEX (`uid_wall_changed`) WHERE `wall` AND `uid` = `user`.`uid`) AS `lastitem_date`
+		(SELECT MAX(`changed`) FROM `item` USE INDEX (`uid_wall_changed`, `wall_uid_changed`) WHERE `wall` AND `uid` = `user`.`uid`) AS `lastitem_date`
 		FROM `user`
 		INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`");
 
diff --git a/include/socgraph.php b/include/socgraph.php
index 6249f189e..32c151c04 100644
--- a/include/socgraph.php
+++ b/include/socgraph.php
@@ -1529,7 +1529,7 @@ function get_gcontact_id($contact) {
 	if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
 		$contact["url"] = clean_contact_url($contact["url"]);
 
-	$r = q("SELECT `id`, `last_contact`, `last_failure`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 2",
+	$r = q("SELECT `id`, `last_contact`, `last_failure`, `network` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 2",
 		dbesc(normalise_link($contact["url"])));
 
 	if ($r) {

From 7e846ba7acf2cf452f4250d42105ba24d429f67e Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 14:50:26 +0000
Subject: [PATCH 20/68] Hide the calculation for "previous" and "next" behind a
 setting

---
 mod/photos.php | 57 +++++++++++++++++++++++++++-----------------------
 1 file changed, 31 insertions(+), 26 deletions(-)

diff --git a/mod/photos.php b/mod/photos.php
index e23e4fcc9..af4c60b26 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -10,6 +10,8 @@ require_once('include/tags.php');
 require_once('include/threads.php');
 require_once('include/Probe.php');
 
+use \Friendica\Core\Config;
+
 function photos_init(App $a) {
 
 	if ($a->argc > 1)
@@ -1339,35 +1341,38 @@ function photos_content(App $a) {
 		$prevlink = '';
 		$nextlink = '';
 
-		if ($_GET['order'] === 'posted')
-			$order = 'ASC';
-		else
-			$order = 'DESC';
-
 		/// @todo This query is totally bad, the whole functionality has to be changed
-		$prvnxt = qu("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
-			$sql_extra ORDER BY `created` $order ",
-			dbesc($ph[0]['album']),
-			intval($owner_uid)
-		);
+		// The query leads to a really intense used index.
+		// By now we hide it if someone wants to.
+		if (!Config::get('system', 'no_count', false)) {
+			if ($_GET['order'] === 'posted')
+				$order = 'ASC';
+			else
+				$order = 'DESC';
 
-		if (count($prvnxt)) {
-			for($z = 0; $z < count($prvnxt); $z++) {
-				if ($prvnxt[$z]['resource-id'] == $ph[0]['resource-id']) {
-					$prv = $z - 1;
-					$nxt = $z + 1;
-					if ($prv < 0)
-						$prv = count($prvnxt) - 1;
-					if ($nxt >= count($prvnxt))
-						$nxt = 0;
-					break;
+			$prvnxt = qu("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
+				$sql_extra ORDER BY `created` $order ",
+				dbesc($ph[0]['album']),
+				intval($owner_uid)
+			);
+
+			if (count($prvnxt)) {
+				for($z = 0; $z < count($prvnxt); $z++) {
+					if ($prvnxt[$z]['resource-id'] == $ph[0]['resource-id']) {
+						$prv = $z - 1;
+						$nxt = $z + 1;
+						if ($prv < 0)
+							$prv = count($prvnxt) - 1;
+						if ($nxt >= count($prvnxt))
+							$nxt = 0;
+						break;
+					}
 				}
-			}
-			$edit_suffix = ((($cmd === 'edit') && ($can_post)) ? '/edit' : '');
-			$prevlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . $edit_suffix . (($_GET['order'] === 'posted') ? '?f=&order=posted' : '');
-			$nextlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . $edit_suffix . (($_GET['order'] === 'posted') ? '?f=&order=posted' : '');
- 		}
-
+				$edit_suffix = ((($cmd === 'edit') && ($can_post)) ? '/edit' : '');
+				$prevlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . $edit_suffix . (($_GET['order'] === 'posted') ? '?f=&order=posted' : '');
+				$nextlink = 'photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . $edit_suffix . (($_GET['order'] === 'posted') ? '?f=&order=posted' : '');
+ 			}
+		}
 
 		if (count($ph) == 1)
 			$hires = $lores = $ph[0];

From 99e9791d1ff2737a1b15e28800cc664968674cb8 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 15:06:32 +0000
Subject: [PATCH 21/68] We fetched a little bit too much ...

---
 mod/fetch.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mod/fetch.php b/mod/fetch.php
index 3576384f0..b87fc0e8e 100644
--- a/mod/fetch.php
+++ b/mod/fetch.php
@@ -42,7 +42,7 @@ function fetch_init(App $a) {
 
 	// Fetch some data from the author (We could combine both queries - but I think this is more readable)
 	$r = q("SELECT `user`.`prvkey`, `contact`.`addr`, `user`.`nickname`, `contact`.`nick` FROM `user`
-		INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid`
+		INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
 		WHERE `user`.`uid` = %d", intval($item[0]["uid"]));
 	if (!$r) {
 		header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));

From 47d04416b16de856f4e4227d640a207e10ad4c34 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 15:18:31 +0000
Subject: [PATCH 22/68] As well here ...

---
 mod/p.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mod/p.php b/mod/p.php
index 875546451..3cd7a9eb7 100644
--- a/mod/p.php
+++ b/mod/p.php
@@ -46,7 +46,7 @@ function p_init($a){
 
 	// Fetch some data from the author (We could combine both queries - but I think this is more readable)
 	$r = q("SELECT `user`.`prvkey`, `contact`.`addr`, `user`.`nickname`, `contact`.`nick` FROM `user`
-		INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid`
+		INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
 		WHERE `user`.`uid` = %d", intval($item[0]["uid"]));
 	if (!dbm::is_result($r)) {
 		header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));

From e63e241f8f1c738b566d1d6e9612d3ed0aff48f0 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 19:46:04 +0000
Subject: [PATCH 23/68] Hubzilla doesn't send a width attribute in the avatar
 picure in the hcard

---
 include/Probe.php | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/include/Probe.php b/include/Probe.php
index 6145daaaa..0b3c66412 100644
--- a/include/Probe.php
+++ b/include/Probe.php
@@ -715,11 +715,19 @@ class Probe {
 		$photos = $xpath->query("//*[contains(concat(' ', @class, ' '), ' photo ') or contains(concat(' ', @class, ' '), ' avatar ')]", $vcard); // */
 		foreach ($photos AS $photo) {
 			$attr = array();
-			foreach ($photo->attributes as $attribute)
+			foreach ($photo->attributes as $attribute) {
 				$attr[$attribute->name] = trim($attribute->value);
+			}
 
-			if (isset($attr["src"]) AND isset($attr["width"]))
+			if (isset($attr["src"]) AND isset($attr["width"])) {
 				$avatar[$attr["width"]] = $attr["src"];
+			}
+
+			// We don't have a width. So we just take everything that we got.
+			// This is a Hubzilla workaround which doesn't send a width.
+			if ((sizeof($avatar) == 0) AND isset($attr["src"])) {
+				$avatar[] = $attr["src"];
+			}
 		}
 
 		if (sizeof($avatar)) {

From ced7cb6828da3f3acce0522161dd7ca5da3aa05b Mon Sep 17 00:00:00 2001
From: Michael 
Date: Sun, 15 Jan 2017 23:30:43 +0000
Subject: [PATCH 24/68] Smarter way to create unique indexes

---
 include/dbstructure.php | 102 ++++++++++++++++++++++++++++++++++------
 include/dfrn.php        |   2 +-
 include/post_update.php |   2 +-
 3 files changed, 89 insertions(+), 17 deletions(-)

diff --git a/include/dbstructure.php b/include/dbstructure.php
index 6154ddeb0..9a84cfbc8 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -176,15 +176,6 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 		$definition = db_definition($charset);
 	}
 
-	// Ensure index conversion to unique removes duplicates
-	$sql_config = "SET session old_alter_table=1;";
-	if ($verbose) {
-		echo $sql_config."\n";
-	}
-	if ($action) {
-		$db->q($sql_config);
-	}
-
 	// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
 	if ((version_compare($db->server_info(), '5.7.4') >= 0) AND
 		!(strpos($db->server_info(), 'MariaDB') !== false)) {
@@ -204,6 +195,26 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 			}
 			$is_new_table = True;
 		} else {
+			$is_unique = false;
+			$temp_name = $name;
+
+			foreach ($structure["indexes"] AS $indexname => $fieldnames) {
+				if (isset($database[$name]["indexes"][$indexname])) {
+					$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
+				} else {
+					$current_index_definition = "__NOT_SET__";
+				}
+				$new_index_definition = implode(",",$fieldnames);
+				if ($current_index_definition != $new_index_definition) {
+					if ($fieldnames[0] == "UNIQUE") {
+						$is_unique = true;
+						if ($ignore == "") {
+							$temp_name = "temp-".$name;
+						}
+					}
+				}
+			}
+
 			/*
 			 * Drop the index if it isn't present in the definition
 			 * or the definition differ from current status
@@ -219,7 +230,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 				if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
 					$sql2=db_drop_index($indexname);
 					if ($sql3 == "") {
-						$sql3 = "ALTER".$ignore." TABLE `".$name."` ".$sql2;
+						$sql3 = "ALTER".$ignore." TABLE `".$temp_name."` ".$sql2;
 					} else {
 						$sql3 .= ", ".$sql2;
 					}
@@ -230,7 +241,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 				if (!isset($database[$name]["fields"][$fieldname])) {
 					$sql2=db_add_table_field($fieldname, $parameters);
 					if ($sql3 == "") {
-						$sql3 = "ALTER TABLE `".$name."` ".$sql2;
+						$sql3 = "ALTER TABLE `".$temp_name."` ".$sql2;
 					} else {
 						$sql3 .= ", ".$sql2;
 					}
@@ -241,7 +252,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 					if ($current_field_definition != $new_field_definition) {
 						$sql2=db_modify_table_field($fieldname, $parameters);
 						if ($sql3 == "") {
-							$sql3 = "ALTER TABLE `".$name."` ".$sql2;
+							$sql3 = "ALTER TABLE `".$temp_name."` ".$sql2;
 						} else {
 							$sql3 .= ", ".$sql2;
 						}
@@ -268,7 +279,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 					$sql2=db_create_index($indexname, $fieldnames);
 					if ($sql2 != "") {
 						if ($sql3 == "")
-							$sql3 = "ALTER" . $ignore . " TABLE `".$name."` ".$sql2;
+							$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
 						else
 							$sql3 .= ", ".$sql2;
 					}
@@ -278,13 +289,74 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 		if ($sql3 != "") {
 			$sql3 .= ";";
 
-			if ($verbose)
+			if ($verbose) {
+				// Ensure index conversion to unique removes duplicates
+				if ($is_unique) {
+					if ($ignore != "") {
+						echo "SET session old_alter_table=1;\n";
+					} else {
+						echo "DROP TABLE IF EXISTS `".$temp_name."`;\n";
+						echo "CREATE TABLE `".$temp_name."` LIKE `".$name."`;\n";
+					}
+				}
+
 				echo $sql3."\n";
 
+				if ($is_unique) {
+					if ($ignore != "") {
+						echo "SET session old_alter_table=0;\n";
+					} else {
+						echo "INSERT IGNORE INTO `".$temp_name."` SELECT * FROM `".$name."`;\n";
+						echo "DROP TABLE `".$name."`;\n";
+						echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n";
+					}
+				}
+			}
+
 			if ($action) {
+				// Ensure index conversion to unique removes duplicates
+				if ($is_unique) {
+					if ($ignore != "") {
+						$db->q("SET session old_alter_table=1;");
+					} else {
+						$r = $db->q("DROP TABLE IF EXISTS `".$temp_name."`;");
+						if (!dbm::is_result($r)) {
+							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+							return $errors;
+						}
+						$r = $db->q("CREATE TABLE `".$temp_name."` LIKE `".$name."`;");
+						if (!dbm::is_result($r)) {
+							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+							return $errors;
+						}
+					}
+				}
+
 				$r = @$db->q($sql3);
-				if (dbm::is_result($r))
+				if (!dbm::is_result($r))
 					$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+
+				if ($is_unique) {
+					if ($ignore != "") {
+						$db->q("SET session old_alter_table=0;");
+					} else {
+						$r = $db->q("INSERT IGNORE INTO `".$temp_name."` SELECT * FROM `".$name."`;");
+						if (!dbm::is_result($r)) {
+							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+							return $errors;
+						}
+						$r = $db->q("DROP TABLE `".$name."`;");
+						if (!dbm::is_result($r)) {
+							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+							return $errors;
+						}
+						$r = $db->q("RENAME TABLE `".$temp_name."` TO `".$name."`;");
+						if (!dbm::is_result($r)) {
+							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+							return $errors;
+						}
+					}
+				}
 			}
 		}
 	}
diff --git a/include/dfrn.php b/include/dfrn.php
index ffdc2cbaf..ccb43fa98 100644
--- a/include/dfrn.php
+++ b/include/dfrn.php
@@ -194,7 +194,7 @@ class dfrn {
 			`contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
 			`contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
 			`sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
-			FROM `item` USE INDEX (`uid_wall_changed`, `wall_uid_changed`) $sql_post_table
+			FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
 			STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
 			AND (NOT `contact`.`blocked` OR `contact`.`pending`)
 			LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
diff --git a/include/post_update.php b/include/post_update.php
index ae5aad26d..f9649961d 100644
--- a/include/post_update.php
+++ b/include/post_update.php
@@ -239,7 +239,7 @@ function post_update_1206() {
 
 	logger("Start", LOGGER_DEBUG);
 	$r = q("SELECT `contact`.`id`, `contact`.`last-item`,
-		(SELECT MAX(`changed`) FROM `item` USE INDEX (`uid_wall_changed`, `wall_uid_changed`) WHERE `wall` AND `uid` = `user`.`uid`) AS `lastitem_date`
+		(SELECT MAX(`changed`) FROM `item` USE INDEX (`uid_wall_changed`) WHERE `wall` AND `uid` = `user`.`uid`) AS `lastitem_date`
 		FROM `user`
 		INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`");
 

From 0c310db23d253e489c27b80f99aeaaa06275fea6 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Mon, 16 Jan 2017 20:59:16 +0000
Subject: [PATCH 25/68] Bugfix for failed events page and api

---
 include/api.php   | 9 ++++++---
 include/event.php | 6 +++---
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/include/api.php b/include/api.php
index 91a3a34d1..64a896b55 100644
--- a/include/api.php
+++ b/include/api.php
@@ -2344,6 +2344,9 @@
 	 * 			dislikes => int count
 	 */
 	function api_format_items_activities(&$item, $type = "json") {
+
+		$a = get_app();
+
 		$activities = array(
 			'like' => array(),
 			'dislike' => array(),
@@ -2521,9 +2524,9 @@
 
 			// Retweets are only valid for top postings
 			// It doesn't work reliable with the link if its a feed
-			#$IsRetweet = ($item['owner-link'] != $item['author-link']);
-			#if ($IsRetweet)
-			#	$IsRetweet = (($item['owner-name'] != $item['author-name']) OR ($item['owner-avatar'] != $item['author-avatar']));
+			//$IsRetweet = ($item['owner-link'] != $item['author-link']);
+			//if ($IsRetweet)
+			//	$IsRetweet = (($item['owner-name'] != $item['author-name']) OR ($item['owner-avatar'] != $item['author-avatar']));
 
 
 			if ($item["id"] == $item["parent"]) {
diff --git a/include/event.php b/include/event.php
index 616018bb7..785558bed 100644
--- a/include/event.php
+++ b/include/event.php
@@ -206,7 +206,7 @@ function bbtoevent($s) {
 }
 
 
-function sort_by_date(App $a) {
+function sort_by_date($a) {
 
 	usort($a,'ev_compare');
 	return $a;
@@ -510,7 +510,7 @@ function event_by_id($owner_uid = 0, $event_params, $sql_extra = '') {
 	// query for the event by event id
 	$r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
 			`item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event`
-		STRAIGHT_JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
+		LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
 		WHERE `event`.`uid` = %d AND `event`.`id` = %d $sql_extra",
 		intval($owner_uid),
 		intval($event_params["event_id"])
@@ -543,7 +543,7 @@ function events_by_date($owner_uid = 0, $event_params, $sql_extra = '') {
 	// query for the event by date
 	$r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
 				`item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event`
-			STRAIGHT_JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
+			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'))

From 2cdf87c56a42281b657e155bde82ef7d57426e01 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Mon, 16 Jan 2017 21:35:35 +0000
Subject: [PATCH 26/68] Deactivated the alternative update script by now

---
 boot.php                |  2 +-
 include/dbstructure.php | 96 +++++++++++++++++++++--------------------
 update.php              |  2 +-
 3 files changed, 52 insertions(+), 48 deletions(-)

diff --git a/boot.php b/boot.php
index cd6db384a..e95cbc9d2 100644
--- a/boot.php
+++ b/boot.php
@@ -38,7 +38,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
 define ( 'FRIENDICA_VERSION',      '3.5.1-dev' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1212      );
+define ( 'DB_UPDATE_VERSION',      1213      );
 
 /**
  * @brief Constant with a HTML line break.
diff --git a/include/dbstructure.php b/include/dbstructure.php
index 9a84cfbc8..c1dc1ba87 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -208,9 +208,10 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 				if ($current_index_definition != $new_index_definition) {
 					if ($fieldnames[0] == "UNIQUE") {
 						$is_unique = true;
-						if ($ignore == "") {
-							$temp_name = "temp-".$name;
-						}
+						// Deactivated. See below for the reason
+						//if ($ignore == "") {
+						//	$temp_name = "temp-".$name;
+						//}
 					}
 				}
 			}
@@ -292,44 +293,44 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 			if ($verbose) {
 				// Ensure index conversion to unique removes duplicates
 				if ($is_unique) {
-					if ($ignore != "") {
+					// By now the alternative is commented out.
+					// This is a preparation for the time when we found a good SQL routine.
+					//if ($ignore != "") {
 						echo "SET session old_alter_table=1;\n";
-					} else {
-						echo "DROP TABLE IF EXISTS `".$temp_name."`;\n";
-						echo "CREATE TABLE `".$temp_name."` LIKE `".$name."`;\n";
-					}
+					//} else {
+					//	echo "CREATE TABLE `".$temp_name."` LIKE `".$name."`;\n";
+					//}
 				}
 
 				echo $sql3."\n";
 
 				if ($is_unique) {
-					if ($ignore != "") {
+					// By now the alternative is commented out.
+					// This is a preparation for the time when we found a good SQL routine.
+					//if ($ignore != "") {
 						echo "SET session old_alter_table=0;\n";
-					} else {
-						echo "INSERT IGNORE INTO `".$temp_name."` SELECT * FROM `".$name."`;\n";
-						echo "DROP TABLE `".$name."`;\n";
-						echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n";
-					}
+					//} else {
+					//	echo "INSERT IGNORE INTO `".$temp_name."` SELECT * FROM `".$name."`;\n";
+					//	echo "DROP TABLE `".$name."`;\n";
+					//	echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n";
+					//}
 				}
 			}
 
 			if ($action) {
 				// Ensure index conversion to unique removes duplicates
 				if ($is_unique) {
-					if ($ignore != "") {
+					// By now the alternative is commented out.
+					// This is a preparation for the time when we found a good SQL routine.
+					//if ($ignore != "") {
 						$db->q("SET session old_alter_table=1;");
-					} else {
-						$r = $db->q("DROP TABLE IF EXISTS `".$temp_name."`;");
-						if (!dbm::is_result($r)) {
-							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
-							return $errors;
-						}
-						$r = $db->q("CREATE TABLE `".$temp_name."` LIKE `".$name."`;");
-						if (!dbm::is_result($r)) {
-							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
-							return $errors;
-						}
-					}
+					//} else {
+					//	$r = $db->q("CREATE TABLE `".$temp_name."` LIKE `".$name."`;");
+					//	if (!dbm::is_result($r)) {
+					//		$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+					//		return $errors;
+					//	}
+					//}
 				}
 
 				$r = @$db->q($sql3);
@@ -337,25 +338,28 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 					$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
 
 				if ($is_unique) {
-					if ($ignore != "") {
+					// By now the alternative is commented out.
+					// This is a preparation for the time when we found a good SQL routine.
+					//if ($ignore != "") {
 						$db->q("SET session old_alter_table=0;");
-					} else {
-						$r = $db->q("INSERT IGNORE INTO `".$temp_name."` SELECT * FROM `".$name."`;");
-						if (!dbm::is_result($r)) {
-							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
-							return $errors;
-						}
-						$r = $db->q("DROP TABLE `".$name."`;");
-						if (!dbm::is_result($r)) {
-							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
-							return $errors;
-						}
-						$r = $db->q("RENAME TABLE `".$temp_name."` TO `".$name."`;");
-						if (!dbm::is_result($r)) {
-							$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
-							return $errors;
-						}
-					}
+					//} else {
+					//	We have to check if "INSERT IGNORE" will work on newer MySQL versions
+					//	$r = $db->q("INSERT IGNORE INTO `".$temp_name."` SELECT * FROM `".$name."`;");
+					//	if (!dbm::is_result($r)) {
+					//		$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+					//		return $errors;
+					//	}
+					//	$r = $db->q("DROP TABLE `".$name."`;");
+					//	if (!dbm::is_result($r)) {
+					//		$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+					//		return $errors;
+					//	}
+					//	$r = $db->q("RENAME TABLE `".$temp_name."` TO `".$name."`;");
+					//	if (!dbm::is_result($r)) {
+					//		$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
+					//		return $errors;
+					//	}
+					//}
 				}
 			}
 		}
@@ -1260,7 +1264,7 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"poll_id" => array("poll_id"),
+					"poll_id" => array("UNIQUE", "poll_id"),
 					"choice" => array("choice"),
 					)
 			);
diff --git a/update.php b/update.php
index 058536d82..25d6cb9cb 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
 
Date: Mon, 16 Jan 2017 21:45:27 +0000
Subject: [PATCH 27/68] Changed database version

---
 database.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/database.sql b/database.sql
index 9d4d289f2..1b7e2cb4c 100644
--- a/database.sql
+++ b/database.sql
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 3.5.1-dev (Asparagus)
--- DB_UPDATE_VERSION 1212
+-- DB_UPDATE_VERSION 1213
 -- ------------------------------------------
 
 

From 6e1986a0f28a04a0d3b8398cdf8db482b7a0deb5 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Mon, 16 Jan 2017 21:48:35 +0000
Subject: [PATCH 28/68] Removed commented text

---
 include/photos.php | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/photos.php b/include/photos.php
index f3043e44a..9d8d3309c 100644
--- a/include/photos.php
+++ b/include/photos.php
@@ -57,7 +57,6 @@ function photo_albums($uid, $update = false) {
 				dbesc(t('Contact Photos'))
 			);
 		} else {
-// USE INDEX (`uid_album`)
 			// This query doesn't do the count and is much faster
 			$albums = qu("SELECT DISTINCT(`album`), '' AS `total`
 				FROM `photo`

From ef3112743030c3e1606637a847b33d23afdff247 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Mon, 16 Jan 2017 22:00:58 +0000
Subject: [PATCH 29/68] Added documentation

---
 doc/htconfig.md | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/doc/htconfig.md b/doc/htconfig.md
index 54808aaae..a7dd59d1f 100644
--- a/doc/htconfig.md
+++ b/doc/htconfig.md
@@ -26,6 +26,13 @@ Example: To set the directory value please add this line to your .htconfig.php:
 * **birthday_input_format** - Default value is "ymd".
 * **block_local_dir** (Boolean) - Blocks the access to the directory of the local users.
 * **curl_range_bytes** - Maximum number of bytes that should be fetched. Default is 0, which mean "no limit".
+* **db_log** - Name of a logfile to log slow database queries
+* **db_loglimit** - If a database call lasts longer than this value it is logged
+* **db_log_index** - Name of a logfile to log queries with bad indexes
+* **db_log_index_watch** - Watchlist of indexes to watch
+* **db_loglimit_index** - Number of index rows needed to be logged for indexes on the watchlist
+* **db_loglimit_index_high** - Number of index rows to be logged anyway (for any index)
+* **db_log_index_blacklist** - Blacklist of indexes that shouldn't be watched
 * **dbclean** (Boolean) - Enable the automatic database cleanup process
 * **default_service_class** -
 * **delivery_batch_count** - Number of deliveries per process. Default value is 1. (Disabled when using the worker)

From 6972faa3a8d756590233c67929ae8bee58622f04 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Mon, 16 Jan 2017 22:11:35 +0000
Subject: [PATCH 30/68] Redo some work

---
 database.sql            | 24 ++++++++++++------------
 include/dbstructure.php | 26 +++++++++++++-------------
 2 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/database.sql b/database.sql
index 1b7e2cb4c..a12f9d204 100644
--- a/database.sql
+++ b/database.sql
@@ -31,10 +31,10 @@ CREATE TABLE IF NOT EXISTS `attach` (
 	`data` longblob NOT NULL,
 	`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	`edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-	`allow_cid` text,
-	`allow_gid` text,
-	`deny_cid` text,
-	`deny_gid` text,
+	`allow_cid` mediumtext,
+	`allow_gid` medium_text,
+	`deny_cid` medium_text,
+	`deny_gid` medium_text,
 	 PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -235,10 +235,10 @@ CREATE TABLE IF NOT EXISTS `event` (
 	`nofinish` tinyint(1) NOT NULL DEFAULT 0,
 	`adjust` tinyint(1) NOT NULL DEFAULT 1,
 	`ignore` tinyint(1) unsigned NOT NULL DEFAULT 0,
-	`allow_cid` text,
-	`allow_gid` text,
-	`deny_cid` text,
-	`deny_gid` text,
+	`allow_cid` medium_text,
+	`allow_gid` medium_text,
+	`deny_cid` medium_text,
+	`deny_gid` medium_text,
 	 PRIMARY KEY(`id`),
 	 INDEX `uid_start` (`uid`,`start`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -1073,10 +1073,10 @@ CREATE TABLE IF NOT EXISTS `user` (
 	`expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 	`service_class` varchar(32) NOT NULL DEFAULT '',
 	`def_gid` int(11) NOT NULL DEFAULT 0,
-	`allow_cid` text,
-	`allow_gid` text,
-	`deny_cid` text,
-	`deny_gid` text,
+	`allow_cid` medium_text,
+	`allow_gid` medium_text,
+	`deny_cid` medium_text,
+	`deny_gid` medium_text,
 	`openidserver` text,
 	 PRIMARY KEY(`uid`),
 	 INDEX `nickname` (`nickname`(32))
diff --git a/include/dbstructure.php b/include/dbstructure.php
index c1dc1ba87..56d2a1703 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -517,10 +517,10 @@ function db_definition($charset) {
 					"data" => array("type" => "longblob", "not null" => "1"),
 					"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
-					"allow_cid" => array("type" => "text"),
-					"allow_gid" => array("type" => "text"),
-					"deny_cid" => array("type" => "text"),
-					"deny_gid" => array("type" => "text"),
+					"allow_cid" => array("type" => "mediumtext"),
+					"allow_gid" => array("type" => "medium_text"),
+					"deny_cid" => array("type" => "medium_text"),
+					"deny_gid" => array("type" => "medium_text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -721,10 +721,10 @@ function db_definition($charset) {
 					"nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
 					"adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
 					"ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
-					"allow_cid" => array("type" => "text"),
-					"allow_gid" => array("type" => "text"),
-					"deny_cid" => array("type" => "text"),
-					"deny_gid" => array("type" => "text"),
+					"allow_cid" => array("type" => "medium_text"),
+					"allow_gid" => array("type" => "medium_text"),
+					"deny_cid" => array("type" => "medium_text"),
+					"deny_gid" => array("type" => "medium_text"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -1264,7 +1264,7 @@ function db_definition($charset) {
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
-					"poll_id" => array("UNIQUE", "poll_id"),
+					"poll_id" => array("poll_id"),
 					"choice" => array("choice"),
 					)
 			);
@@ -1559,10 +1559,10 @@ function db_definition($charset) {
 					"expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
 					"def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
-					"allow_cid" => array("type" => "text"),
-					"allow_gid" => array("type" => "text"),
-					"deny_cid" => array("type" => "text"),
-					"deny_gid" => array("type" => "text"),
+					"allow_cid" => array("type" => "medium_text"),
+					"allow_gid" => array("type" => "medium_text"),
+					"deny_cid" => array("type" => "medium_text"),
+					"deny_gid" => array("type" => "medium_text"),
 					"openidserver" => array("type" => "text"),
 					),
 			"indexes" => array(

From 79866f620abcd065e16d81550e54a705fcf340ce Mon Sep 17 00:00:00 2001
From: Michael 
Date: Mon, 16 Jan 2017 22:15:04 +0000
Subject: [PATCH 31/68] OOpppss ...

---
 include/dbstructure.php | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/include/dbstructure.php b/include/dbstructure.php
index 56d2a1703..283d39d22 100644
--- a/include/dbstructure.php
+++ b/include/dbstructure.php
@@ -518,9 +518,9 @@ function db_definition($charset) {
 					"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"allow_cid" => array("type" => "mediumtext"),
-					"allow_gid" => array("type" => "medium_text"),
-					"deny_cid" => array("type" => "medium_text"),
-					"deny_gid" => array("type" => "medium_text"),
+					"allow_gid" => array("type" => "mediumtext"),
+					"deny_cid" => array("type" => "mediumtext"),
+					"deny_gid" => array("type" => "mediumtext"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -721,10 +721,10 @@ function db_definition($charset) {
 					"nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
 					"adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
 					"ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
-					"allow_cid" => array("type" => "medium_text"),
-					"allow_gid" => array("type" => "medium_text"),
-					"deny_cid" => array("type" => "medium_text"),
-					"deny_gid" => array("type" => "medium_text"),
+					"allow_cid" => array("type" => "mediumtext"),
+					"allow_gid" => array("type" => "mediumtext"),
+					"deny_cid" => array("type" => "mediumtext"),
+					"deny_gid" => array("type" => "mediumtext"),
 					),
 			"indexes" => array(
 					"PRIMARY" => array("id"),
@@ -1559,10 +1559,10 @@ function db_definition($charset) {
 					"expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
 					"service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
 					"def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
-					"allow_cid" => array("type" => "medium_text"),
-					"allow_gid" => array("type" => "medium_text"),
-					"deny_cid" => array("type" => "medium_text"),
-					"deny_gid" => array("type" => "medium_text"),
+					"allow_cid" => array("type" => "mediumtext"),
+					"allow_gid" => array("type" => "mediumtext"),
+					"deny_cid" => array("type" => "mediumtext"),
+					"deny_gid" => array("type" => "mediumtext"),
 					"openidserver" => array("type" => "text"),
 					),
 			"indexes" => array(

From 53393233c34ce9fa0a38ec62e884283cd5ce40b1 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Tue, 17 Jan 2017 19:21:46 +0000
Subject: [PATCH 32/68] Replace the direct access of config variables

---
 boot.php             | 18 ++++++++++--------
 include/api.php      |  7 +++++--
 include/datetime.php |  6 ++++--
 include/pgettext.php |  8 +++++---
 mod/dfrn_confirm.php |  4 +---
 5 files changed, 25 insertions(+), 18 deletions(-)

diff --git a/boot.php b/boot.php
index e95cbc9d2..a9b4e4d29 100644
--- a/boot.php
+++ b/boot.php
@@ -19,6 +19,8 @@
 
 require_once('include/autoloader.php');
 
+use \Friendica\Core\Config;
+
 require_once('include/config.php');
 require_once('include/network.php');
 require_once('include/plugin.php');
@@ -1475,9 +1477,7 @@ function system_unavailable() {
 
 function clean_urls() {
 	$a = get_app();
-	//	if($a->config['system']['clean_urls'])
 	return true;
-	//	return false;
 }
 
 function z_path() {
@@ -2041,16 +2041,18 @@ function current_theme(){
 //		$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
 	$is_mobile = $a->is_mobile || $a->is_tablet;
 
-	$standard_system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
+	$standard_system_theme = Config::get('system', 'theme', '');
 	$standard_theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $standard_system_theme);
 
-	if($is_mobile) {
-		if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
+	if ($is_mobile) {
+		if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
 			$system_theme = $standard_system_theme;
 			$theme_name = $standard_theme_name;
-		}
-		else {
-			$system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : $standard_system_theme);
+		} else {
+			$system_theme = Config::get('system', 'mobile-theme', '');
+			if ($system_theme == '') {
+				$system_theme = $standard_system_theme;
+			}
 			$theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
 
 			if($theme_name === '---') {
diff --git a/include/api.php b/include/api.php
index 64a896b55..ce7610312 100644
--- a/include/api.php
+++ b/include/api.php
@@ -5,6 +5,9 @@
  *
  * @todo Automatically detect if incoming data is HTML or BBCode
  */
+
+use \Friendica\Core\Config;
+
 	require_once('include/HTTPExceptions.php');
 
 	require_once('include/bbcode.php');
@@ -2696,11 +2699,11 @@
 		$logo = App::get_baseurl() . '/images/friendica-64.png';
 		$email = $a->config['admin_email'];
 		$closed = (($a->config['register_policy'] == REGISTER_CLOSED) ? 'true' : 'false');
-		$private = (($a->config['system']['block_public']) ? 'true' : 'false');
+		$private = ((Config::get('system', 'block_public')) ? 'true' : 'false');
 		$textlimit = (string) (($a->config['max_import_size']) ? $a->config['max_import_size'] : 200000);
 		if($a->config['api_import_size'])
 			$texlimit = string($a->config['api_import_size']);
-		$ssl = (($a->config['system']['have_ssl']) ? 'true' : 'false');
+		$ssl = ((Config::get('system', 'have_ssl')) ? 'true' : 'false');
 		$sslserver = (($ssl === 'true') ? str_replace('http:','https:',App::get_baseurl()) : '');
 
 		$config = array(
diff --git a/include/datetime.php b/include/datetime.php
index a17c405dc..779c7a5aa 100644
--- a/include/datetime.php
+++ b/include/datetime.php
@@ -4,6 +4,7 @@
  * @brief Some functions for date and time related tasks.
  */
 
+use \Friendica\Core\Config;
 
 /**
  * @brief Two-level sort for timezones.
@@ -271,8 +272,9 @@ function datetimesel($format, $min, $max, $default, $label, $id = 'datetimepicke
 	$lang = substr(get_browser_language(), 0, 2);
 
 	// Check if the detected language is supported by the picker
-	if (!in_array($lang, array("ar", "ro", "id", "bg", "fa", "ru", "uk", "en", "el", "de", "nl", "tr", "fr", "es", "th", "pl", "pt", "ch", "se", "kr", "it", "da", "no", "ja", "vi", "sl", "cs", "hu")))
-		$lang = ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en');
+	if (!in_array($lang, array("ar", "ro", "id", "bg", "fa", "ru", "uk", "en", "el", "de", "nl", "tr", "fr", "es", "th", "pl", "pt", "ch", "se", "kr", "it", "da", "no", "ja", "vi", "sl", "cs", "hu"))) {
+		$lang = Config::get('system', 'language', 'en');
+	}
 
 	$o = '';
 	$dateformat = '';
diff --git a/include/pgettext.php b/include/pgettext.php
index fb87798ff..335869eda 100644
--- a/include/pgettext.php
+++ b/include/pgettext.php
@@ -10,6 +10,8 @@
  *
  */
 
+use \Friendica\Core\Config;
+
 require_once("include/dba.php");
 
 if(! function_exists('get_browser_language')) {
@@ -47,12 +49,12 @@ function get_browser_language() {
 			break;
 		}
 	}
-	if(isset($preferred))
+	if (isset($preferred)) {
 		return $preferred;
+	}
 
 	// in case none matches, get the system wide configured language, or fall back to English
-    $a = get_app();
-	return ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en');
+	return Config::get('system', 'language', 'en');
 }}
 
 
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php
index 57ddc58f2..e2ce80627 100644
--- a/mod/dfrn_confirm.php
+++ b/mod/dfrn_confirm.php
@@ -224,9 +224,7 @@ function dfrn_confirm_post(App $a, $handsfree = null) {
 			 *
 			 */
 
-			$a->config['system']['curl_timeout'] = 120;
-
-			$res = post_url($dfrn_confirm,$params);
+			$res = post_url($dfrn_confirm, $params, null, $redirects, 120);
 
 			logger(' Confirm: received data: ' . $res, LOGGER_DATA);
 

From 045e94ccf3291c817bf1683b63682b1e0af74980 Mon Sep 17 00:00:00 2001
From: Michael 
Date: Tue, 17 Jan 2017 19:33:06 +0000
Subject: [PATCH 33/68] Some more config stuff

---
 boot.php | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/boot.php b/boot.php
index a9b4e4d29..d598ef866 100644
--- a/boot.php
+++ b/boot.php
@@ -825,24 +825,22 @@ class App {
 
 		$scheme = $this->scheme;
 
-		if ((x($this->config, 'system')) && (x($this->config['system'], 'ssl_policy'))) {
-			if (intval($this->config['system']['ssl_policy']) === SSL_POLICY_FULL) {
+		if (Config::get('system', 'ssl_policy') === SSL_POLICY_FULL) {
+			$scheme = 'https';
+		}
+
+		//	Basically, we have $ssl = true on any links which can only be seen by a logged in user
+		//	(and also the login link). Anything seen by an outsider will have it turned off.
+
+		if (Config::get('system', 'ssl_policy') == SSL_POLICY_SELFSIGN) {
+			if ($ssl) {
 				$scheme = 'https';
-			}
-
-			//	Basically, we have $ssl = true on any links which can only be seen by a logged in user
-			//	(and also the login link). Anything seen by an outsider will have it turned off.
-
-			if ($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
-				if ($ssl) {
-					$scheme = 'https';
-				} else {
-					$scheme = 'http';
-				}
+			} else {
+				$scheme = 'http';
 			}
 		}
 
-		if (get_config('config', 'hostname') != '') {
+		if (Config::get('config', 'hostname') != '') {
 			$this->hostname = get_config('config', 'hostname');
 		}
 

From 81529a43ad062d72b993effa98316f5725f2d773 Mon Sep 17 00:00:00 2001
From: Fabio 
Date: Wed, 18 Jan 2017 12:38:09 +0100
Subject: [PATCH 34/68] Update IT strings

---
 view/lang/it/messages.po | 16547 +++++++++++++++++++------------------
 view/lang/it/strings.php |  3699 +++++----
 2 files changed, 10345 insertions(+), 9901 deletions(-)

diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po
index a9df298ca..3a8ec39ed 100644
--- a/view/lang/it/messages.po
+++ b/view/lang/it/messages.po
@@ -5,19 +5,19 @@
 # Translators:
 # Elena , 2014
 # fabrixxm , 2011
-# fabrixxm , 2013-2015
+# fabrixxm , 2013-2015,2017
 # fabrixxm , 2011-2012
 # Francesco Apruzzese , 2012-2013
 # ufic , 2012
 # Paolo Wave , 2012
-# Sandro Santilli , 2015-2016
+# Sandro Santilli , 2015-2016
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-24 06:49+0100\n"
-"PO-Revision-Date: 2016-02-16 10:29+0000\n"
-"Last-Translator: Sandro Santilli \n"
+"POT-Creation-Date: 2016-12-19 07:46+0100\n"
+"PO-Revision-Date: 2017-01-18 10:36+0000\n"
+"Last-Translator: fabrixxm \n"
 "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,6255 +25,6 @@ msgstr ""
 "Language: it\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: mod/contacts.php:50 include/identity.php:395
-msgid "Network:"
-msgstr "Rete:"
-
-#: mod/contacts.php:51 mod/contacts.php:961 mod/videos.php:37
-#: mod/viewcontacts.php:105 mod/dirfind.php:214 mod/network.php:598
-#: mod/allfriends.php:77 mod/match.php:82 mod/directory.php:172
-#: mod/common.php:123 mod/suggest.php:95 mod/photos.php:41
-#: include/identity.php:298
-msgid "Forum"
-msgstr "Forum"
-
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contatto modificato."
-msgstr[1] "%d contatti modificati"
-
-#: mod/contacts.php:159 mod/contacts.php:383
-msgid "Could not access contact record."
-msgstr "Non è possibile accedere al contatto."
-
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Non riesco a trovare il profilo selezionato."
-
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "Contatto aggiornato."
-
-#: mod/contacts.php:208 mod/dfrn_request.php:575
-msgid "Failed to update contact record."
-msgstr "Errore nell'aggiornamento del contatto."
-
-#: mod/contacts.php:365 mod/manage.php:96 mod/display.php:509
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199
-#: mod/ostatus_subscribe.php:9 mod/follow.php:11 mod/follow.php:73
-#: mod/follow.php:155 mod/item.php:180 mod/item.php:192 mod/group.php:19
-#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69
-#: mod/message.php:45 mod/message.php:181 mod/crepair.php:117
-#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4
-#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20
-#: mod/settings.php:126 mod/settings.php:646 mod/register.php:42
-#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58
-#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10
-#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149
-#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101
-#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110
-#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5096 index.php:383
-msgid "Permission denied."
-msgstr "Permesso negato."
-
-#: mod/contacts.php:404
-msgid "Contact has been blocked"
-msgstr "Il contatto è stato bloccato"
-
-#: mod/contacts.php:404
-msgid "Contact has been unblocked"
-msgstr "Il contatto è stato sbloccato"
-
-#: mod/contacts.php:415
-msgid "Contact has been ignored"
-msgstr "Il contatto è ignorato"
-
-#: mod/contacts.php:415
-msgid "Contact has been unignored"
-msgstr "Il contatto non è più ignorato"
-
-#: mod/contacts.php:427
-msgid "Contact has been archived"
-msgstr "Il contatto è stato archiviato"
-
-#: mod/contacts.php:427
-msgid "Contact has been unarchived"
-msgstr "Il contatto è stato dearchiviato"
-
-#: mod/contacts.php:454 mod/contacts.php:802
-msgid "Do you really want to delete this contact?"
-msgstr "Vuoi veramente cancellare questo contatto?"
-
-#: mod/contacts.php:456 mod/follow.php:110 mod/message.php:216
-#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1117
-#: mod/settings.php:1121 mod/settings.php:1126 mod/settings.php:1132
-#: mod/settings.php:1138 mod/settings.php:1144 mod/settings.php:1170
-#: mod/settings.php:1171 mod/settings.php:1172 mod/settings.php:1173
-#: mod/settings.php:1174 mod/dfrn_request.php:857 mod/register.php:238
-#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
-#: mod/profiles.php:687 mod/api.php:105 include/items.php:4928
-msgid "Yes"
-msgstr "Si"
-
-#: mod/contacts.php:459 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
-#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93
-#: mod/fbrowser.php:128 mod/settings.php:660 mod/settings.php:686
-#: mod/dfrn_request.php:871 mod/suggest.php:32 mod/editpost.php:148
-#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1220
-#: include/items.php:4931
-msgid "Cancel"
-msgstr "Annulla"
-
-#: mod/contacts.php:471
-msgid "Contact has been removed."
-msgstr "Il contatto è stato rimosso."
-
-#: mod/contacts.php:512
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Sei amico reciproco con %s"
-
-#: mod/contacts.php:516
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Stai condividendo con %s"
-
-#: mod/contacts.php:521
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s sta condividendo con te"
-
-#: mod/contacts.php:541
-msgid "Private communications are not available for this contact."
-msgstr "Le comunicazioni private non sono disponibili per questo contatto."
-
-#: mod/contacts.php:544 mod/admin.php:822
-msgid "Never"
-msgstr "Mai"
-
-#: mod/contacts.php:548
-msgid "(Update was successful)"
-msgstr "(L'aggiornamento è stato completato)"
-
-#: mod/contacts.php:548
-msgid "(Update was not successful)"
-msgstr "(L'aggiornamento non è stato completato)"
-
-#: mod/contacts.php:550
-msgid "Suggest friends"
-msgstr "Suggerisci amici"
-
-#: mod/contacts.php:554
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo di rete: %s"
-
-#: mod/contacts.php:567
-msgid "Communications lost with this contact!"
-msgstr "Comunicazione con questo contatto persa!"
-
-#: mod/contacts.php:570
-msgid "Fetch further information for feeds"
-msgstr "Recupera maggiori infomazioni per i feed"
-
-#: mod/contacts.php:571 mod/admin.php:831
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#: mod/contacts.php:571
-msgid "Fetch information"
-msgstr "Recupera informazioni"
-
-#: mod/contacts.php:571
-msgid "Fetch information and keywords"
-msgstr "Recupera informazioni e parole chiave"
-
-#: mod/contacts.php:587 mod/manage.php:143 mod/fsuggest.php:107
-#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196
-#: mod/events.php:574 mod/content.php:712 mod/install.php:261
-#: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696
-#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140
-#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579
-#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766
-#: object/Item.php:710 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:107 view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Invia"
-
-#: mod/contacts.php:588
-msgid "Profile Visibility"
-msgstr "Visibilità del profilo"
-
-#: mod/contacts.php:589
-#, 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:590
-msgid "Contact Information / Notes"
-msgstr "Informazioni / Note sul contatto"
-
-#: mod/contacts.php:591
-msgid "Edit contact notes"
-msgstr "Modifica note contatto"
-
-#: mod/contacts.php:596 mod/contacts.php:952 mod/viewcontacts.php:97
-#: mod/nogroup.php:41
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visita il profilo di %s [%s]"
-
-#: mod/contacts.php:597
-msgid "Block/Unblock contact"
-msgstr "Blocca/Sblocca contatto"
-
-#: mod/contacts.php:598
-msgid "Ignore contact"
-msgstr "Ignora il contatto"
-
-#: mod/contacts.php:599
-msgid "Repair URL settings"
-msgstr "Impostazioni riparazione URL"
-
-#: mod/contacts.php:600
-msgid "View conversations"
-msgstr "Vedi conversazioni"
-
-#: mod/contacts.php:602
-msgid "Delete contact"
-msgstr "Rimuovi contatto"
-
-#: mod/contacts.php:606
-msgid "Last update:"
-msgstr "Ultimo aggiornamento:"
-
-#: mod/contacts.php:608
-msgid "Update public posts"
-msgstr "Aggiorna messaggi pubblici"
-
-#: mod/contacts.php:610
-msgid "Update now"
-msgstr "Aggiorna adesso"
-
-#: mod/contacts.php:612 mod/follow.php:103 mod/dirfind.php:196
-#: mod/allfriends.php:65 mod/match.php:71 mod/suggest.php:82
-#: include/contact_widgets.php:32 include/Contact.php:297
-#: include/conversation.php:924
-msgid "Connect/Follow"
-msgstr "Connetti/segui"
-
-#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865
-#: mod/admin.php:1312
-msgid "Unblock"
-msgstr "Sblocca"
-
-#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865
-#: mod/admin.php:1311
-msgid "Block"
-msgstr "Blocca"
-
-#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872
-msgid "Unignore"
-msgstr "Non ignorare"
-
-#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872
-#: mod/notifications.php:54 mod/notifications.php:179
-#: mod/notifications.php:259
-msgid "Ignore"
-msgstr "Ignora"
-
-#: mod/contacts.php:619
-msgid "Currently blocked"
-msgstr "Bloccato"
-
-#: mod/contacts.php:620
-msgid "Currently ignored"
-msgstr "Ignorato"
-
-#: mod/contacts.php:621
-msgid "Currently archived"
-msgstr "Al momento archiviato"
-
-#: mod/contacts.php:622 mod/notifications.php:172 mod/notifications.php:251
-msgid "Hide this contact from others"
-msgstr "Nascondi questo contatto agli altri"
-
-#: mod/contacts.php:622
-msgid ""
-"Replies/likes to your public posts may still be visible"
-msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili"
-
-#: mod/contacts.php:623
-msgid "Notification for new posts"
-msgstr "Notifica per i nuovi messaggi"
-
-#: mod/contacts.php:623
-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:626
-msgid "Blacklisted keywords"
-msgstr "Parole chiave in blacklist"
-
-#: mod/contacts.php:626
-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:633 mod/follow.php:126 mod/notifications.php:255
-msgid "Profile URL"
-msgstr "URL Profilo"
-
-#: mod/contacts.php:636 mod/notifications.php:244 mod/events.php:566
-#: mod/directory.php:145 include/identity.php:308 include/bb2diaspora.php:170
-#: include/event.php:36 include/event.php:60
-msgid "Location:"
-msgstr "Posizione:"
-
-#: mod/contacts.php:638 mod/notifications.php:246 mod/directory.php:153
-#: include/identity.php:317 include/identity.php:631
-msgid "About:"
-msgstr "Informazioni:"
-
-#: mod/contacts.php:640 mod/follow.php:134 mod/notifications.php:248
-#: include/identity.php:625
-msgid "Tags:"
-msgstr "Tag:"
-
-#: mod/contacts.php:685
-msgid "Suggestions"
-msgstr "Suggerimenti"
-
-#: mod/contacts.php:688
-msgid "Suggest potential friends"
-msgstr "Suggerisci potenziali amici"
-
-#: mod/contacts.php:693 mod/group.php:192
-msgid "All Contacts"
-msgstr "Tutti i contatti"
-
-#: mod/contacts.php:696
-msgid "Show all contacts"
-msgstr "Mostra tutti i contatti"
-
-#: mod/contacts.php:701
-msgid "Unblocked"
-msgstr "Sbloccato"
-
-#: mod/contacts.php:704
-msgid "Only show unblocked contacts"
-msgstr "Mostra solo contatti non bloccati"
-
-#: mod/contacts.php:710
-msgid "Blocked"
-msgstr "Bloccato"
-
-#: mod/contacts.php:713
-msgid "Only show blocked contacts"
-msgstr "Mostra solo contatti bloccati"
-
-#: mod/contacts.php:719
-msgid "Ignored"
-msgstr "Ignorato"
-
-#: mod/contacts.php:722
-msgid "Only show ignored contacts"
-msgstr "Mostra solo contatti ignorati"
-
-#: mod/contacts.php:728
-msgid "Archived"
-msgstr "Achiviato"
-
-#: mod/contacts.php:731
-msgid "Only show archived contacts"
-msgstr "Mostra solo contatti archiviati"
-
-#: mod/contacts.php:737
-msgid "Hidden"
-msgstr "Nascosto"
-
-#: mod/contacts.php:740
-msgid "Only show hidden contacts"
-msgstr "Mostra solo contatti nascosti"
-
-#: mod/contacts.php:793 mod/contacts.php:841 mod/viewcontacts.php:116
-#: include/identity.php:741 include/identity.php:744 include/text.php:1012
-#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contatti"
-
-#: mod/contacts.php:797
-msgid "Search your contacts"
-msgstr "Cerca nei tuoi contatti"
-
-#: mod/contacts.php:798
-msgid "Finding: "
-msgstr "Ricerca: "
-
-#: mod/contacts.php:799 mod/directory.php:210 include/contact_widgets.php:34
-msgid "Find"
-msgstr "Trova"
-
-#: mod/contacts.php:805 mod/settings.php:156 mod/settings.php:685
-msgid "Update"
-msgstr "Aggiorna"
-
-#: mod/contacts.php:808 mod/contacts.php:879
-msgid "Archive"
-msgstr "Archivia"
-
-#: mod/contacts.php:808 mod/contacts.php:879
-msgid "Unarchive"
-msgstr "Dearchivia"
-
-#: mod/contacts.php:809 mod/group.php:171 mod/admin.php:1310
-#: mod/content.php:440 mod/content.php:743 mod/settings.php:722
-#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635
-msgid "Delete"
-msgstr "Rimuovi"
-
-#: mod/contacts.php:822 include/identity.php:686 include/nav.php:75
-msgid "Status"
-msgstr "Stato"
-
-#: mod/contacts.php:825 mod/follow.php:143 include/identity.php:689
-msgid "Status Messages and Posts"
-msgstr "Messaggi di stato e post"
-
-#: mod/contacts.php:830 mod/profperm.php:104 mod/newmember.php:32
-#: include/identity.php:579 include/identity.php:665 include/identity.php:694
-#: include/nav.php:76 view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profilo"
-
-#: mod/contacts.php:833 include/identity.php:697
-msgid "Profile Details"
-msgstr "Dettagli del profilo"
-
-#: mod/contacts.php:844
-msgid "View all contacts"
-msgstr "Vedi tutti i contatti"
-
-#: mod/contacts.php:850 mod/common.php:134
-msgid "Common Friends"
-msgstr "Amici in comune"
-
-#: mod/contacts.php:853
-msgid "View all common friends"
-msgstr "Vedi tutti gli amici in comune"
-
-#: mod/contacts.php:857
-msgid "Repair"
-msgstr "Ripara"
-
-#: mod/contacts.php:860
-msgid "Advanced Contact Settings"
-msgstr "Impostazioni avanzate Contatto"
-
-#: mod/contacts.php:868
-msgid "Toggle Blocked status"
-msgstr "Inverti stato \"Blocca\""
-
-#: mod/contacts.php:875
-msgid "Toggle Ignored status"
-msgstr "Inverti stato \"Ignora\""
-
-#: mod/contacts.php:882
-msgid "Toggle Archive status"
-msgstr "Inverti stato \"Archiviato\""
-
-#: mod/contacts.php:924
-msgid "Mutual Friendship"
-msgstr "Amicizia reciproca"
-
-#: mod/contacts.php:928
-msgid "is a fan of yours"
-msgstr "è un tuo fan"
-
-#: mod/contacts.php:932
-msgid "you are a fan of"
-msgstr "sei un fan di"
-
-#: mod/contacts.php:953 mod/nogroup.php:42
-msgid "Edit contact"
-msgstr "Modifca contatto"
-
-#: mod/hcard.php:10
-msgid "No profile"
-msgstr "Nessun profilo"
-
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
-msgstr "Gestisci indentità e/o pagine"
-
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
-
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
-msgstr "Seleziona un'identità da gestire:"
-
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Inviato!"
-
-#: mod/profperm.php:19 mod/group.php:72 index.php:382
-msgid "Permission denied"
-msgstr "Permesso negato"
-
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
-msgstr "Indentificativo del profilo non valido."
-
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
-msgstr "Modifica visibilità del profilo"
-
-#: mod/profperm.php:106 mod/group.php:223
-msgid "Click on a contact to add or remove."
-msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
-
-#: mod/profperm.php:115
-msgid "Visible To"
-msgstr "Visibile a"
-
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
-msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
-
-#: mod/display.php:82 mod/display.php:291 mod/display.php:513
-#: mod/viewsrc.php:15 mod/admin.php:234 mod/admin.php:1365 mod/admin.php:1599
-#: mod/notice.php:15 include/items.php:4887
-msgid "Item not found."
-msgstr "Elemento non trovato."
-
-#: mod/display.php:220 mod/videos.php:197 mod/viewcontacts.php:35
-#: mod/community.php:22 mod/dfrn_request.php:786 mod/search.php:93
-#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976
-msgid "Public access denied."
-msgstr "Accesso negato."
-
-#: mod/display.php:339 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "L'accesso a questo profilo è stato limitato."
-
-#: mod/display.php:506
-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:1418 mod/admin.php:1676
-#: mod/settings.php:109 include/nav.php:182 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:250 mod/profiles.php:709
-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:51
-msgid "Importing Emails"
-msgstr "Importare le Email"
-
-#: mod/newmember.php:51
-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 "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"
-
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Vai alla tua pagina Contatti"
-
-#: mod/newmember.php:53
-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 "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:55
-msgid "Go to Your Site's Directory"
-msgstr "Vai all'Elenco del tuo sito"
-
-#: mod/newmember.php:55
-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:57
-msgid "Finding New People"
-msgstr "Trova nuove persone"
-
-#: mod/newmember.php:57
-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:61 include/group.php:283
-msgid "Groups"
-msgstr "Gruppi"
-
-#: mod/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Raggruppa i tuoi contatti"
-
-#: mod/newmember.php:65
-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:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Perchè i miei post non sono pubblici?"
-
-#: mod/newmember.php:68
-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:73
-msgid "Getting Help"
-msgstr "Ottenere Aiuto"
-
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Vai alla sezione Guida"
-
-#: mod/newmember.php:77
-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:118 include/auth.php:181
-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:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192
-#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268
-#: mod/photos.php:1862 include/user.php:345 include/user.php:352
-#: include/user.php:359 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:314
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Il ridimensionamento del'immagine [%s] è fallito."
-
-#: mod/profile_photo.php:124
-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."
-
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Impossibile elaborare l'immagine"
-
-#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "La dimensione dell'immagine supera il limite di %s"
-
-#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851
-msgid "Unable to process image."
-msgstr "Impossibile caricare l'immagine."
-
-#: mod/profile_photo.php:248
-msgid "Upload File:"
-msgstr "Carica un file:"
-
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
-msgstr "Seleziona un profilo:"
-
-#: mod/profile_photo.php:251
-msgid "Upload"
-msgstr "Carica"
-
-#: mod/profile_photo.php:254
-msgid "or"
-msgstr "o"
-
-#: mod/profile_photo.php:254
-msgid "skip this step"
-msgstr "salta questo passaggio"
-
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
-msgstr "seleziona una foto dai tuoi album"
-
-#: mod/profile_photo.php:268
-msgid "Crop Image"
-msgstr "Ritaglia immagine"
-
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ritaglia l'imagine per una visualizzazione migliore."
-
-#: mod/profile_photo.php:271
-msgid "Done Editing"
-msgstr "Finito"
-
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Immagine caricata con successo."
-
-#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878
-msgid "Image upload failed."
-msgstr "Caricamento immagine fallito."
-
-#: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165
-#: include/conversation.php:130 include/conversation.php:266
-#: include/text.php:2000 include/diaspora.php:2169
-#: view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "foto"
-
-#: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165
-#: include/like.php:334 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 include/diaspora.php:2169
-#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "stato"
-
-#: 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/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/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
-msgstr "Rimuovi"
-
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr "Iscrizione a contatti OStatus"
-
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr "Nessun contatto disponibile."
-
-#: mod/ostatus_subscribe.php:30
-msgid "Couldn't fetch information for contact."
-msgstr "Non è stato possibile recuperare le informazioni del contatto."
-
-#: mod/ostatus_subscribe.php:38
-msgid "Couldn't fetch friends for contact."
-msgstr "Non è stato possibile recuperare gli amici del contatto."
-
-#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44
-msgid "Done"
-msgstr "Fatto"
-
-#: mod/ostatus_subscribe.php:65
-msgid "success"
-msgstr "successo"
-
-#: mod/ostatus_subscribe.php:67
-msgid "failed"
-msgstr "fallito"
-
-#: mod/ostatus_subscribe.php:69 object/Item.php:235
-msgid "ignored"
-msgstr "ignorato"
-
-#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50
-msgid "Keep this window open until done."
-msgstr "Tieni questa finestra aperta fino a che ha finito."
-
-#: mod/filer.php:30 include/conversation.php:1132
-#: include/conversation.php:1150
-msgid "Save to Folder:"
-msgstr "Salva nella Cartella:"
-
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- seleziona -"
-
-#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61
-#: include/text.php:1004
-msgid "Save"
-msgstr "Salva"
-
-#: mod/follow.php:19 mod/dfrn_request.php:870
-msgid "Submit Request"
-msgstr "Invia richiesta"
-
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Hai già aggiunto questo contatto."
-
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Il supporto Diaspora non è abilitato. Il contatto non puo' essere aggiunto."
-
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Il supporto OStatus non è abilitato. Il contatto non puo' essere aggiunto."
-
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Non è possibile rilevare il tipo di rete. Il contatto non puo' essere aggiunto."
-
-#: mod/follow.php:109 mod/dfrn_request.php:856
-msgid "Please answer the following:"
-msgstr "Rispondi:"
-
-#: mod/follow.php:110 mod/dfrn_request.php:857
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s ti conosce?"
-
-#: mod/follow.php:110 mod/settings.php:1103 mod/settings.php:1109
-#: mod/settings.php:1117 mod/settings.php:1121 mod/settings.php:1126
-#: mod/settings.php:1132 mod/settings.php:1138 mod/settings.php:1144
-#: mod/settings.php:1170 mod/settings.php:1171 mod/settings.php:1172
-#: mod/settings.php:1173 mod/settings.php:1174 mod/dfrn_request.php:857
-#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662
-#: mod/profiles.php:687 mod/api.php:106
-msgid "No"
-msgstr "No"
-
-#: mod/follow.php:111 mod/dfrn_request.php:861
-msgid "Add a personal note:"
-msgstr "Aggiungi una nota personale:"
-
-#: mod/follow.php:117 mod/dfrn_request.php:867
-msgid "Your Identity Address:"
-msgstr "L'indirizzo della tua identità:"
-
-#: mod/follow.php:180
-msgid "Contact added"
-msgstr "Contatto aggiunto"
-
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Impossibile trovare il messaggio originale."
-
-#: mod/item.php:329
-msgid "Empty post discarded."
-msgstr "Messaggio vuoto scartato."
-
-#: mod/item.php:467 mod/wall_upload.php:213 mod/wall_upload.php:227
-#: mod/wall_upload.php:234 include/Photo.php:958 include/Photo.php:973
-#: include/Photo.php:980 include/Photo.php:1002 include/message.php:145
-msgid "Wall Photos"
-msgstr "Foto della bacheca"
-
-#: mod/item.php:842
-msgid "System error. Post not saved."
-msgstr "Errore di sistema. Messaggio non salvato."
-
-#: mod/item.php:971
-#, 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."
-
-#: mod/item.php:973
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Puoi visitarli online su %s"
-
-#: mod/item.php:974
-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."
-
-#: mod/item.php:978
-#, php-format
-msgid "%s posted an update."
-msgstr "%s ha inviato un aggiornamento."
-
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Gruppo creato."
-
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
-
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppo non trovato."
-
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "Il nome del gruppo è cambiato."
-
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Salva gruppo"
-
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
-
-#: mod/group.php:94 mod/group.php:178 include/group.php:289
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
-
-#: mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppo rimosso."
-
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
-
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Modifica gruppo"
-
-#: mod/group.php:190
-msgid "Members"
-msgstr "Membri"
-
-#: mod/group.php:193 mod/network.php:576 mod/content.php:130
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
-
-#: mod/apps.php:7 index.php:226
-msgid "You must be logged in to use addons. "
-msgstr "Devi aver effettuato il login per usare gli addons."
-
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Applicazioni"
-
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nessuna applicazione installata."
-
-#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
-#: mod/profiles.php:179 mod/profiles.php:627
-msgid "Profile not found."
-msgstr "Profilo non trovato."
-
-#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/crepair.php:131
-msgid "Contact not found."
-msgstr "Contatto non trovato."
-
-#: mod/dfrn_confirm.php:121
-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."
-
-#: mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Errore di comunicazione con l'altro sito."
-
-#: 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/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Conferma completata con successo."
-
-#: 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/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Problema temporaneo. Attendi e riprova."
-
-#: 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:430
-msgid "Unable to set contact photo."
-msgstr "Impossibile impostare la foto del contatto."
-
-#: mod/dfrn_confirm.php:487 include/conversation.php:185
-#: include/diaspora.php:637
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s e %2$s adesso sono amici"
-
-#: mod/dfrn_confirm.php:572
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Nessun utente trovato '%s'"
-
-#: 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: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: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: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: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: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: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:753 mod/dfrn_request.php:741 include/items.php:4299
-msgid "[Name Withheld]"
-msgstr "[Nome Nascosto]"
-
-#: mod/dfrn_confirm.php:798
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s si è unito a %2$s"
-
-#: mod/profile.php:21 include/identity.php:51
-msgid "Requested profile is not available."
-msgstr "Profilo richiesto non disponibile."
-
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Consigli per i Nuovi Utenti"
-
-#: mod/videos.php:123
-msgid "Do you really want to delete this video?"
-msgstr "Vuoi veramente cancellare questo video?"
-
-#: mod/videos.php:128
-msgid "Delete Video"
-msgstr "Rimuovi video"
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Nessun video selezionato"
-
-#: mod/videos.php:308 mod/photos.php:1087
-msgid "Access to this item is restricted."
-msgstr "Questo oggetto non è visibile a tutti."
-
-#: mod/videos.php:383 include/text.php:1472
-msgid "View Video"
-msgstr "Guarda Video"
-
-#: mod/videos.php:390 mod/photos.php:1890
-msgid "View Album"
-msgstr "Sfoglia l'album"
-
-#: mod/videos.php:399
-msgid "Recent Videos"
-msgstr "Video Recenti"
-
-#: mod/videos.php:401
-msgid "Upload New Videos"
-msgstr "Carica Nuovo Video"
-
-#: mod/tagger.php:95 include/conversation.php:278
-#, 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/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1781
-msgid "Invalid request."
-msgstr "Richiesta non valida."
-
-#: 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:1444
-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/ping.php:265
-msgid "{0} wants to be your friend"
-msgstr "{0} vuole essere tuo amico"
-
-#: mod/ping.php:280
-msgid "{0} sent you a message"
-msgstr "{0} ti ha inviato un messaggio"
-
-#: mod/ping.php:295
-msgid "{0} requested registration"
-msgstr "{0} chiede la registrazione"
-
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Nessun contatto."
-
-#: mod/notifications.php:29
-msgid "Invalid request identifier."
-msgstr "L'identificativo della richiesta non è valido."
-
-#: mod/notifications.php:38 mod/notifications.php:180
-#: mod/notifications.php:260
-msgid "Discard"
-msgstr "Scarta"
-
-#: mod/notifications.php:81
-msgid "System"
-msgstr "Sistema"
-
-#: mod/notifications.php:87 mod/admin.php:390 include/nav.php:154
-msgid "Network"
-msgstr "Rete"
-
-#: mod/notifications.php:93 mod/network.php:384
-msgid "Personal"
-msgstr "Personale"
-
-#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157
-#: view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Home"
-
-#: mod/notifications.php:105 include/nav.php:162
-msgid "Introductions"
-msgstr "Presentazioni"
-
-#: mod/notifications.php:130
-msgid "Show Ignored Requests"
-msgstr "Mostra richieste ignorate"
-
-#: mod/notifications.php:130
-msgid "Hide Ignored Requests"
-msgstr "Nascondi richieste ignorate"
-
-#: mod/notifications.php:164 mod/notifications.php:234
-msgid "Notification type: "
-msgstr "Tipo di notifica: "
-
-#: mod/notifications.php:165
-msgid "Friend Suggestion"
-msgstr "Amico suggerito"
-
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerito da %s"
-
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "Post a new friend activity"
-msgstr "Invia una attività \"è ora amico con\""
-
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "if applicable"
-msgstr "se applicabile"
-
-#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1308
-msgid "Approve"
-msgstr "Approva"
-
-#: mod/notifications.php:196
-msgid "Claims to be known to you: "
-msgstr "Dice di conoscerti: "
-
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "si"
-
-#: mod/notifications.php:196
-msgid "no"
-msgstr "no"
-
-#: mod/notifications.php:197
-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:200
-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:208
-msgid "Friend"
-msgstr "Amico"
-
-#: mod/notifications.php:209
-msgid "Sharer"
-msgstr "Condivisore"
-
-#: mod/notifications.php:209
-msgid "Fan/Admirer"
-msgstr "Fan/Ammiratore"
-
-#: mod/notifications.php:235
-msgid "Friend/Connect Request"
-msgstr "Richiesta amicizia/connessione"
-
-#: mod/notifications.php:235
-msgid "New Follower"
-msgstr "Qualcuno inizia a seguirti"
-
-#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:310
-#: include/identity.php:590
-msgid "Gender:"
-msgstr "Genere:"
-
-#: mod/notifications.php:266
-msgid "No introductions."
-msgstr "Nessuna presentazione."
-
-#: mod/notifications.php:269 include/nav.php:165
-msgid "Notifications"
-msgstr "Notifiche"
-
-#: mod/notifications.php:307 mod/notifications.php:436
-#: mod/notifications.php:527
-#, php-format
-msgid "%s liked %s's post"
-msgstr "a %s è piaciuto il messaggio di %s"
-
-#: mod/notifications.php:317 mod/notifications.php:446
-#: mod/notifications.php:537
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "a %s non è piaciuto il messaggio di %s"
-
-#: mod/notifications.php:332 mod/notifications.php:461
-#: mod/notifications.php:552
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s è ora amico di %s"
-
-#: mod/notifications.php:339 mod/notifications.php:468
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a creato un nuovo messaggio"
-
-#: mod/notifications.php:340 mod/notifications.php:469
-#: mod/notifications.php:562
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s ha commentato il messaggio di %s"
-
-#: mod/notifications.php:355
-msgid "No more network notifications."
-msgstr "Nessuna nuova."
-
-#: mod/notifications.php:359
-msgid "Network Notifications"
-msgstr "Notifiche dalla rete"
-
-#: mod/notifications.php:385 mod/notify.php:72
-msgid "No more system notifications."
-msgstr "Nessuna nuova notifica di sistema."
-
-#: mod/notifications.php:389 mod/notify.php:76
-msgid "System Notifications"
-msgstr "Notifiche di sistema"
-
-#: mod/notifications.php:484
-msgid "No more personal notifications."
-msgstr "Nessuna nuova."
-
-#: mod/notifications.php:488
-msgid "Personal Notifications"
-msgstr "Notifiche personali"
-
-#: mod/notifications.php:569
-msgid "No more home notifications."
-msgstr "Nessuna nuova."
-
-#: mod/notifications.php:573
-msgid "Home Notifications"
-msgstr "Notifiche bacheca"
-
-#: 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/navigation.php:19 include/nav.php:33
-msgid "Nothing new here"
-msgstr "Niente di nuovo qui"
-
-#: mod/navigation.php:23 include/nav.php:37
-msgid "Clear notifications"
-msgstr "Pulisci le notifiche"
-
-#: mod/message.php:15 include/nav.php:174
-msgid "New Message"
-msgstr "Nuovo messaggio"
-
-#: mod/message.php:70 mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Nessun destinatario selezionato."
-
-#: mod/message.php:74
-msgid "Unable to locate contact information."
-msgstr "Impossibile trovare le informazioni del contatto."
-
-#: mod/message.php:77 mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Il messaggio non puo' essere inviato."
-
-#: mod/message.php:80 mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Errore recuperando il messaggio."
-
-#: mod/message.php:83 mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Messaggio inviato."
-
-#: mod/message.php:189 include/nav.php:171
-msgid "Messages"
-msgstr "Messaggi"
-
-#: mod/message.php:214
-msgid "Do you really want to delete this message?"
-msgstr "Vuoi veramente cancellare questo messaggio?"
-
-#: mod/message.php:234
-msgid "Message deleted."
-msgstr "Messaggio eliminato."
-
-#: mod/message.php:265
-msgid "Conversation removed."
-msgstr "Conversazione rimossa."
-
-#: mod/message.php:290 mod/message.php:298 mod/message.php:427
-#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135
-#: include/conversation.php:1128 include/conversation.php:1146
-msgid "Please enter a link URL:"
-msgstr "Inserisci l'indirizzo del link:"
-
-#: mod/message.php:326 mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Invia un messaggio privato"
-
-#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144
-msgid "To:"
-msgstr "A:"
-
-#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Oggetto:"
-
-#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151
-#: mod/invite.php:134
-msgid "Your message:"
-msgstr "Il tuo messaggio:"
-
-#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154
-#: mod/editpost.php:110 include/conversation.php:1183
-msgid "Upload photo"
-msgstr "Carica foto"
-
-#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155
-#: mod/editpost.php:114 include/conversation.php:1187
-msgid "Insert web link"
-msgstr "Inserisci link"
-
-#: mod/message.php:341 mod/message.php:526 mod/content.php:501
-#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124
-#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713
-#: include/conversation.php:1201
-msgid "Please wait"
-msgstr "Attendi"
-
-#: mod/message.php:368
-msgid "No messages."
-msgstr "Nessun messaggio."
-
-#: mod/message.php:411
-msgid "Message not available."
-msgstr "Messaggio non disponibile."
-
-#: mod/message.php:481
-msgid "Delete message"
-msgstr "Elimina il messaggio"
-
-#: mod/message.php:507 mod/message.php:584
-msgid "Delete conversation"
-msgstr "Elimina la conversazione"
-
-#: mod/message.php:509
-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:513
-msgid "Send Reply"
-msgstr "Invia la risposta"
-
-#: mod/message.php:557
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Mittente sconosciuto - %s"
-
-#: mod/message.php:560
-#, php-format
-msgid "You and %s"
-msgstr "Tu e %s"
-
-#: mod/message.php:563
-#, php-format
-msgid "%s and You"
-msgstr "%s e Tu"
-
-#: mod/message.php:587
-msgid "D, d M Y - g:i A"
-msgstr "D d M Y - G:i"
-
-#: mod/message.php:590
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d messaggio"
-msgstr[1] "%d messaggi"
-
-#: 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:104
-msgid "Contact settings applied."
-msgstr "Contatto modificato."
-
-#: mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Le modifiche al contatto non sono state salvate."
-
-#: mod/crepair.php:137
-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:138
-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:151 mod/crepair.php:153
-msgid "No mirroring"
-msgstr "Non duplicare"
-
-#: mod/crepair.php:151
-msgid "Mirror as forwarded posting"
-msgstr "Duplica come messaggi ricondivisi"
-
-#: mod/crepair.php:151 mod/crepair.php:153
-msgid "Mirror as my own posting"
-msgstr "Duplica come miei messaggi"
-
-#: mod/crepair.php:167
-msgid "Return to contact editor"
-msgstr "Ritorna alla modifica contatto"
-
-#: mod/crepair.php:169
-msgid "Refetch contact data"
-msgstr "Ricarica dati contatto"
-
-#: mod/crepair.php:170 mod/admin.php:1306 mod/admin.php:1318
-#: mod/admin.php:1319 mod/admin.php:1332 mod/settings.php:661
-#: mod/settings.php:687
-msgid "Name"
-msgstr "Nome"
-
-#: mod/crepair.php:171
-msgid "Account Nickname"
-msgstr "Nome utente"
-
-#: mod/crepair.php:172
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@TagName - al posto del nome utente"
-
-#: mod/crepair.php:173
-msgid "Account URL"
-msgstr "URL dell'utente"
-
-#: mod/crepair.php:174
-msgid "Friend Request URL"
-msgstr "URL Richiesta Amicizia"
-
-#: mod/crepair.php:175
-msgid "Friend Confirm URL"
-msgstr "URL Conferma Amicizia"
-
-#: mod/crepair.php:176
-msgid "Notification Endpoint URL"
-msgstr "URL Notifiche"
-
-#: mod/crepair.php:177
-msgid "Poll/Feed URL"
-msgstr "URL Feed"
-
-#: mod/crepair.php:178
-msgid "New photo from this URL"
-msgstr "Nuova foto da questo URL"
-
-#: mod/crepair.php:179
-msgid "Remote Self"
-msgstr "Io remoto"
-
-#: mod/crepair.php:182
-msgid "Mirror postings from this contact"
-msgstr "Ripeti i messaggi di questo contatto"
-
-#: mod/crepair.php:184
-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/bookmarklet.php:12 boot.php:1430 include/nav.php:91
-msgid "Login"
-msgstr "Accedi"
-
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Il messaggio è stato creato"
-
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accesso negato."
-
-#: mod/dirfind.php:194 mod/allfriends.php:80 mod/match.php:85
-#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:212
-msgid "Connect"
-msgstr "Connetti"
-
-#: mod/dirfind.php:195 mod/allfriends.php:64 mod/match.php:70
-#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:283
-#: include/Contact.php:296 include/Contact.php:338
-#: include/conversation.php:912 include/conversation.php:926
-msgid "View Profile"
-msgstr "Visualizza profilo"
-
-#: mod/dirfind.php:224
-#, php-format
-msgid "People Search - %s"
-msgstr "Cerca persone - %s"
-
-#: mod/dirfind.php:231 mod/match.php:105
-msgid "No matches"
-msgstr "Nessun risultato"
-
-#: mod/fbrowser.php:32 include/identity.php:702 include/nav.php:77
-#: view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Foto"
-
-#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62
-#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245
-#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850
-#: view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Foto dei contatti"
-
-#: mod/fbrowser.php:125
-msgid "Files"
-msgstr "File"
-
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Contatti che non sono membri di un gruppo"
-
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Impostazioni del tema aggiornate."
-
-#: mod/admin.php:156 mod/admin.php:888
-msgid "Site"
-msgstr "Sito"
-
-#: mod/admin.php:157 mod/admin.php:832 mod/admin.php:1301 mod/admin.php:1316
-msgid "Users"
-msgstr "Utenti"
-
-#: mod/admin.php:158 mod/admin.php:1416 mod/admin.php:1476 mod/settings.php:72
-msgid "Plugins"
-msgstr "Plugin"
-
-#: mod/admin.php:159 mod/admin.php:1674 mod/admin.php:1724
-msgid "Themes"
-msgstr "Temi"
-
-#: mod/admin.php:160 mod/settings.php:50
-msgid "Additional features"
-msgstr "Funzionalità aggiuntive"
-
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "Aggiornamenti Database"
-
-#: mod/admin.php:162 mod/admin.php:385
-msgid "Inspect Queue"
-msgstr "Ispeziona Coda di invio"
-
-#: mod/admin.php:163 mod/admin.php:354
-msgid "Federation Statistics"
-msgstr "Statistiche sulla Federazione"
-
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1792
-msgid "Logs"
-msgstr "Log"
-
-#: mod/admin.php:178 mod/admin.php:1859
-msgid "View Logs"
-msgstr "Vedi i log"
-
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "controlla indirizzo"
-
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "verifica webfinger"
-
-#: mod/admin.php:186 include/nav.php:194
-msgid "Admin"
-msgstr "Amministrazione"
-
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Impostazioni Plugins"
-
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "diagnostiche"
-
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Utenti registrati in attesa di conferma"
-
-#: mod/admin.php:347
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza."
-
-#: mod/admin.php:348
-msgid ""
-"The Auto Discovered Contact Directory feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
-
-#: mod/admin.php:353 mod/admin.php:384 mod/admin.php:441 mod/admin.php:887
-#: mod/admin.php:1300 mod/admin.php:1415 mod/admin.php:1475 mod/admin.php:1673
-#: mod/admin.php:1723 mod/admin.php:1791 mod/admin.php:1858
-msgid "Administration"
-msgstr "Amministrazione"
-
-#: mod/admin.php:360
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr ""
-
-#: mod/admin.php:387
-msgid "ID"
-msgstr "ID"
-
-#: mod/admin.php:388
-msgid "Recipient Name"
-msgstr "Nome Destinatario"
-
-#: mod/admin.php:389
-msgid "Recipient Profile"
-msgstr "Profilo Destinatario"
-
-#: mod/admin.php:391
-msgid "Created"
-msgstr "Creato"
-
-#: mod/admin.php:392
-msgid "Last Tried"
-msgstr "Ultimo Tentativo"
-
-#: mod/admin.php:393
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire."
-
-#: mod/admin.php:412 mod/admin.php:1254
-msgid "Normal Account"
-msgstr "Account normale"
-
-#: mod/admin.php:413 mod/admin.php:1255
-msgid "Soapbox Account"
-msgstr "Account per comunicati e annunci"
-
-#: mod/admin.php:414 mod/admin.php:1256
-msgid "Community/Celebrity Account"
-msgstr "Account per celebrità o per comunità"
-
-#: mod/admin.php:415 mod/admin.php:1257
-msgid "Automatic Friend Account"
-msgstr "Account per amicizia automatizzato"
-
-#: mod/admin.php:416
-msgid "Blog Account"
-msgstr "Account Blog"
-
-#: mod/admin.php:417
-msgid "Private Forum"
-msgstr "Forum Privato"
-
-#: mod/admin.php:436
-msgid "Message queues"
-msgstr "Code messaggi"
-
-#: mod/admin.php:442
-msgid "Summary"
-msgstr "Sommario"
-
-#: mod/admin.php:444
-msgid "Registered users"
-msgstr "Utenti registrati"
-
-#: mod/admin.php:446
-msgid "Pending registrations"
-msgstr "Registrazioni in attesa"
-
-#: mod/admin.php:447
-msgid "Version"
-msgstr "Versione"
-
-#: mod/admin.php:452
-msgid "Active plugins"
-msgstr "Plugin attivi"
-
-#: mod/admin.php:475
-msgid "Can not parse base url. Must have at least ://"
-msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"
-
-#: mod/admin.php:760
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr "RINO2 necessita dell'estensione php mcrypt per funzionare."
-
-#: mod/admin.php:768
-msgid "Site settings updated."
-msgstr "Impostazioni del sito aggiornate."
-
-#: mod/admin.php:796 mod/settings.php:912
-msgid "No special theme for mobile devices"
-msgstr "Nessun tema speciale per i dispositivi mobili"
-
-#: mod/admin.php:815
-msgid "No community page"
-msgstr "Nessuna pagina Comunità"
-
-#: mod/admin.php:816
-msgid "Public postings from users of this site"
-msgstr "Messaggi pubblici dagli utenti di questo sito"
-
-#: mod/admin.php:817
-msgid "Global community page"
-msgstr "Pagina Comunità globale"
-
-#: mod/admin.php:823
-msgid "At post arrival"
-msgstr "All'arrivo di un messaggio"
-
-#: mod/admin.php:824 include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequentemente"
-
-#: mod/admin.php:825 include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Ogni ora"
-
-#: mod/admin.php:826 include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Due volte al dì"
-
-#: mod/admin.php:827 include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Giornalmente"
-
-#: mod/admin.php:833
-msgid "Users, Global Contacts"
-msgstr "Utenti, Contatti Globali"
-
-#: mod/admin.php:834
-msgid "Users, Global Contacts/fallback"
-msgstr "Utenti, Contatti Globali/fallback"
-
-#: mod/admin.php:838
-msgid "One month"
-msgstr "Un mese"
-
-#: mod/admin.php:839
-msgid "Three months"
-msgstr "Tre mesi"
-
-#: mod/admin.php:840
-msgid "Half a year"
-msgstr "Sei mesi"
-
-#: mod/admin.php:841
-msgid "One year"
-msgstr "Un anno"
-
-#: mod/admin.php:846
-msgid "Multi user instance"
-msgstr "Istanza multi utente"
-
-#: mod/admin.php:869
-msgid "Closed"
-msgstr "Chiusa"
-
-#: mod/admin.php:870
-msgid "Requires approval"
-msgstr "Richiede l'approvazione"
-
-#: mod/admin.php:871
-msgid "Open"
-msgstr "Aperta"
-
-#: mod/admin.php:875
-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:876
-msgid "Force all links to use SSL"
-msgstr "Forza tutti i linki ad usare SSL"
-
-#: mod/admin.php:877
-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:889 mod/admin.php:1477 mod/admin.php:1725 mod/admin.php:1793
-#: mod/admin.php:1942 mod/settings.php:659 mod/settings.php:769
-#: mod/settings.php:813 mod/settings.php:882 mod/settings.php:969
-#: mod/settings.php:1204
-msgid "Save Settings"
-msgstr "Salva Impostazioni"
-
-#: mod/admin.php:890 mod/register.php:263
-msgid "Registration"
-msgstr "Registrazione"
-
-#: mod/admin.php:891
-msgid "File upload"
-msgstr "Caricamento file"
-
-#: mod/admin.php:892
-msgid "Policies"
-msgstr "Politiche"
-
-#: mod/admin.php:893
-msgid "Advanced"
-msgstr "Avanzate"
-
-#: mod/admin.php:894
-msgid "Auto Discovered Contact Directory"
-msgstr "Elenco Contatti Scoperto Automaticamente"
-
-#: mod/admin.php:895
-msgid "Performance"
-msgstr "Performance"
-
-#: mod/admin.php:896
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile."
-
-#: mod/admin.php:899
-msgid "Site name"
-msgstr "Nome del sito"
-
-#: mod/admin.php:900
-msgid "Host name"
-msgstr "Nome host"
-
-#: mod/admin.php:901
-msgid "Sender Email"
-msgstr "Mittente email"
-
-#: mod/admin.php:901
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email."
-
-#: mod/admin.php:902
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
-
-#: mod/admin.php:903
-msgid "Shortcut icon"
-msgstr "Icona shortcut"
-
-#: mod/admin.php:903
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link verso un'icona che verrà usata dai browsers."
-
-#: mod/admin.php:904
-msgid "Touch icon"
-msgstr "Icona touch"
-
-#: mod/admin.php:904
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini."
-
-#: mod/admin.php:905
-msgid "Additional Info"
-msgstr "Informazioni aggiuntive"
-
-#: mod/admin.php:905
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo."
-
-#: mod/admin.php:906
-msgid "System language"
-msgstr "Lingua di sistema"
-
-#: mod/admin.php:907
-msgid "System theme"
-msgstr "Tema di sistema"
-
-#: mod/admin.php:907
-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:908
-msgid "Mobile system theme"
-msgstr "Tema mobile di sistema"
-
-#: mod/admin.php:908
-msgid "Theme for mobile devices"
-msgstr "Tema per dispositivi mobili"
-
-#: mod/admin.php:909
-msgid "SSL link policy"
-msgstr "Gestione link SSL"
-
-#: mod/admin.php:909
-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:910
-msgid "Force SSL"
-msgstr "Forza SSL"
-
-#: mod/admin.php:910
-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:911
-msgid "Old style 'Share'"
-msgstr "Ricondivisione vecchio stile"
-
-#: mod/admin.php:911
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti"
-
-#: mod/admin.php:912
-msgid "Hide help entry from navigation menu"
-msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
-
-#: mod/admin.php:912
-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:913
-msgid "Single user instance"
-msgstr "Instanza a singolo utente"
-
-#: mod/admin.php:913
-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:914
-msgid "Maximum image size"
-msgstr "Massima dimensione immagini"
-
-#: mod/admin.php:914
-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:915
-msgid "Maximum image length"
-msgstr "Massima lunghezza immagine"
-
-#: mod/admin.php:915
-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:916
-msgid "JPEG image quality"
-msgstr "Qualità immagini JPEG"
-
-#: mod/admin.php:916
-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:918
-msgid "Register policy"
-msgstr "Politica di registrazione"
-
-#: mod/admin.php:919
-msgid "Maximum Daily Registrations"
-msgstr "Massime registrazioni giornaliere"
-
-#: mod/admin.php:919
-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:920
-msgid "Register text"
-msgstr "Testo registrazione"
-
-#: mod/admin.php:920
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
-
-#: mod/admin.php:921
-msgid "Accounts abandoned after x days"
-msgstr "Account abbandonati dopo x giorni"
-
-#: mod/admin.php:921
-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:922
-msgid "Allowed friend domains"
-msgstr "Domini amici consentiti"
-
-#: mod/admin.php:922
-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:923
-msgid "Allowed email domains"
-msgstr "Domini email consentiti"
-
-#: mod/admin.php:923
-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:924
-msgid "Block public"
-msgstr "Blocca pagine pubbliche"
-
-#: mod/admin.php:924
-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:925
-msgid "Force publish"
-msgstr "Forza publicazione"
-
-#: mod/admin.php:925
-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:926
-msgid "Global directory URL"
-msgstr "URL della directory globale"
-
-#: mod/admin.php:926
-msgid ""
-"URL to 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:927
-msgid "Allow threaded items"
-msgstr "Permetti commenti nidificati"
-
-#: mod/admin.php:927
-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:928
-msgid "Private posts by default for new users"
-msgstr "Post privati di default per i nuovi utenti"
-
-#: mod/admin.php:928
-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:929
-msgid "Don't include post content in email notifications"
-msgstr "Non includere il contenuto dei post nelle notifiche via email"
-
-#: mod/admin.php:929
-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:930
-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:930
-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:931
-msgid "Don't embed private images in posts"
-msgstr "Non inglobare immagini private nei post"
-
-#: mod/admin.php:931
-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 "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:932
-msgid "Allow Users to set remote_self"
-msgstr "Permetti agli utenti di impostare 'io remoto'"
-
-#: mod/admin.php:932
-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:933
-msgid "Block multiple registrations"
-msgstr "Blocca registrazioni multiple"
-
-#: mod/admin.php:933
-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:934
-msgid "OpenID support"
-msgstr "Supporto OpenID"
-
-#: mod/admin.php:934
-msgid "OpenID support for registration and logins."
-msgstr "Supporta OpenID per la registrazione e il login"
-
-#: mod/admin.php:935
-msgid "Fullname check"
-msgstr "Controllo nome completo"
-
-#: mod/admin.php:935
-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:936
-msgid "UTF-8 Regular expressions"
-msgstr "Espressioni regolari UTF-8"
-
-#: mod/admin.php:936
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Usa le espressioni regolari PHP in UTF8"
-
-#: mod/admin.php:937
-msgid "Community Page Style"
-msgstr "Stile pagina Comunità"
-
-#: mod/admin.php:937
-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:938
-msgid "Posts per user on community page"
-msgstr "Messaggi per utente nella pagina Comunità"
-
-#: mod/admin.php:938
-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:939
-msgid "Enable OStatus support"
-msgstr "Abilita supporto OStatus"
-
-#: mod/admin.php:939
-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:940
-msgid "OStatus conversation completion interval"
-msgstr "Intervallo completamento conversazioni OStatus"
-
-#: mod/admin.php:940
-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:941
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "Il supporto OStatus puo' essere abilitato solo se è abilitato il threading."
-
-#: mod/admin.php:943
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Il supporto a Diaspora non puo' essere abilitato perchè Friendica è stato installato in una sotto directory."
-
-#: mod/admin.php:944
-msgid "Enable Diaspora support"
-msgstr "Abilita il supporto a Diaspora"
-
-#: mod/admin.php:944
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornisce compatibilità con il network Diaspora."
-
-#: mod/admin.php:945
-msgid "Only allow Friendica contacts"
-msgstr "Permetti solo contatti Friendica"
-
-#: mod/admin.php:945
-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:946
-msgid "Verify SSL"
-msgstr "Verifica SSL"
-
-#: mod/admin.php:946
-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:947
-msgid "Proxy user"
-msgstr "Utente Proxy"
-
-#: mod/admin.php:948
-msgid "Proxy URL"
-msgstr "URL Proxy"
-
-#: mod/admin.php:949
-msgid "Network timeout"
-msgstr "Timeout rete"
-
-#: mod/admin.php:949
-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:950
-msgid "Delivery interval"
-msgstr "Intervallo di invio"
-
-#: mod/admin.php:950
-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:951
-msgid "Poll interval"
-msgstr "Intervallo di poll"
-
-#: mod/admin.php:951
-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:952
-msgid "Maximum Load Average"
-msgstr "Massimo carico medio"
-
-#: mod/admin.php:952
-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:953
-msgid "Maximum Load Average (Frontend)"
-msgstr "Media Massimo Carico (Frontend)"
-
-#: mod/admin.php:953
-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:954
-msgid "Maximum table size for optimization"
-msgstr "Dimensione massima della tabella per l'ottimizzazione"
-
-#: mod/admin.php:954
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo."
-
-#: mod/admin.php:955
-msgid "Minimum level of fragmentation"
-msgstr ""
-
-#: mod/admin.php:955
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
-
-#: mod/admin.php:957
-msgid "Periodical check of global contacts"
-msgstr "Check periodico dei contatti globali"
-
-#: mod/admin.php:957
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server."
-
-#: mod/admin.php:958
-msgid "Days between requery"
-msgstr "Giorni tra le richieste"
-
-#: mod/admin.php:958
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti."
-
-#: mod/admin.php:959
-msgid "Discover contacts from other servers"
-msgstr "Trova contatti dagli altri server"
-
-#: mod/admin.php:959
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."
-
-#: mod/admin.php:960
-msgid "Timeframe for fetching global contacts"
-msgstr "Termine per il recupero contatti globali"
-
-#: mod/admin.php:960
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server."
-
-#: mod/admin.php:961
-msgid "Search the local directory"
-msgstr "Cerca la directory locale"
-
-#: mod/admin.php:961
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."
-
-#: mod/admin.php:963
-msgid "Publish server information"
-msgstr "Pubblica informazioni server"
-
-#: mod/admin.php:963
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."
-msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere  the-federation.info ."
-
-#: mod/admin.php:965
-msgid "Use MySQL full text engine"
-msgstr "Usa il motore MySQL full text"
-
-#: mod/admin.php:965
-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:966
-msgid "Suppress Language"
-msgstr "Disattiva lingua"
-
-#: mod/admin.php:966
-msgid "Suppress language information in meta information about a posting."
-msgstr "Disattiva le informazioni sulla lingua nei meta di un post."
-
-#: mod/admin.php:967
-msgid "Suppress Tags"
-msgstr "Sopprimi Tags"
-
-#: mod/admin.php:967
-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:968
-msgid "Path to item cache"
-msgstr "Percorso cache elementi"
-
-#: mod/admin.php:968
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne."
-
-#: mod/admin.php:969
-msgid "Cache duration in seconds"
-msgstr "Durata della cache in secondi"
-
-#: mod/admin.php:969
-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:970
-msgid "Maximum numbers of comments per post"
-msgstr "Numero massimo di commenti per post"
-
-#: mod/admin.php:970
-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:971
-msgid "Path for lock file"
-msgstr "Percorso al file di lock"
-
-#: mod/admin.php:971
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui."
-
-#: mod/admin.php:972
-msgid "Temp path"
-msgstr "Percorso file temporanei"
-
-#: mod/admin.php:972
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."
-
-#: mod/admin.php:973
-msgid "Base path to installation"
-msgstr "Percorso base all'installazione"
-
-#: mod/admin.php:973
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."
-
-#: mod/admin.php:974
-msgid "Disable picture proxy"
-msgstr "Disabilita il proxy immagini"
-
-#: mod/admin.php:974
-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:975
-msgid "Enable old style pager"
-msgstr "Abilita la paginazione vecchio stile"
-
-#: mod/admin.php:975
-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:976
-msgid "Only search in tags"
-msgstr "Cerca solo nei tag"
-
-#: mod/admin.php:976
-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:978
-msgid "New base url"
-msgstr "Nuovo url base"
-
-#: mod/admin.php:978
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti."
-
-#: mod/admin.php:980
-msgid "RINO Encryption"
-msgstr "Crittografia RINO"
-
-#: mod/admin.php:980
-msgid "Encryption layer between nodes."
-msgstr "Crittografia delle comunicazioni tra nodi."
-
-#: mod/admin.php:981
-msgid "Embedly API key"
-msgstr "Embedly API key"
-
-#: mod/admin.php:981
-msgid ""
-"Embedly is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale."
-
-#: mod/admin.php:1010
-msgid "Update has been marked successful"
-msgstr "L'aggiornamento è stato segnato come  di successo"
-
-#: mod/admin.php:1018
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Aggiornamento struttura database %s applicata con successo."
-
-#: mod/admin.php:1021
-#, 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:1033
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Esecuzione di %s fallita con errore: %s"
-
-#: mod/admin.php:1036
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "L'aggiornamento %s è stato applicato con successo"
-
-#: mod/admin.php:1040
-#, 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:1042
-#, 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:1061
-msgid "No failed updates."
-msgstr "Nessun aggiornamento fallito."
-
-#: mod/admin.php:1062
-msgid "Check database structure"
-msgstr "Controlla struttura database"
-
-#: mod/admin.php:1067
-msgid "Failed Updates"
-msgstr "Aggiornamenti falliti"
-
-#: mod/admin.php:1068
-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:1069
-msgid "Mark success (if update was manually applied)"
-msgstr "Segna completato (se l'update è stato applicato manualmente)"
-
-#: mod/admin.php:1070
-msgid "Attempt to execute this update step automatically"
-msgstr "Cerco di eseguire questo aggiornamento in automatico"
-
-#: mod/admin.php:1102
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\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:1105
-#, php-format
-msgid ""
-"\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."
-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:1137 include/user.php:423
-#, php-format
-msgid "Registration details for %s"
-msgstr "Dettagli della registrazione di %s"
-
-#: mod/admin.php:1149
-#, 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:1156
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utente cancellato"
-msgstr[1] "%s utenti cancellati"
-
-#: mod/admin.php:1203
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utente '%s' cancellato"
-
-#: mod/admin.php:1211
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utente '%s' sbloccato"
-
-#: mod/admin.php:1211
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utente '%s' bloccato"
-
-#: mod/admin.php:1302
-msgid "Add User"
-msgstr "Aggiungi utente"
-
-#: mod/admin.php:1303
-msgid "select all"
-msgstr "seleziona tutti"
-
-#: mod/admin.php:1304
-msgid "User registrations waiting for confirm"
-msgstr "Richieste di registrazione in attesa di conferma"
-
-#: mod/admin.php:1305
-msgid "User waiting for permanent deletion"
-msgstr "Utente in attesa di cancellazione definitiva"
-
-#: mod/admin.php:1306
-msgid "Request date"
-msgstr "Data richiesta"
-
-#: mod/admin.php:1306 mod/admin.php:1318 mod/admin.php:1319 mod/admin.php:1334
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-msgid "Email"
-msgstr "Email"
-
-#: mod/admin.php:1307
-msgid "No registrations."
-msgstr "Nessuna registrazione."
-
-#: mod/admin.php:1309
-msgid "Deny"
-msgstr "Nega"
-
-#: mod/admin.php:1313
-msgid "Site admin"
-msgstr "Amministrazione sito"
-
-#: mod/admin.php:1314
-msgid "Account expired"
-msgstr "Account scaduto"
-
-#: mod/admin.php:1317
-msgid "New User"
-msgstr "Nuovo Utente"
-
-#: mod/admin.php:1318 mod/admin.php:1319
-msgid "Register date"
-msgstr "Data registrazione"
-
-#: mod/admin.php:1318 mod/admin.php:1319
-msgid "Last login"
-msgstr "Ultimo accesso"
-
-#: mod/admin.php:1318 mod/admin.php:1319
-msgid "Last item"
-msgstr "Ultimo elemento"
-
-#: mod/admin.php:1318
-msgid "Deleted since"
-msgstr "Rimosso da"
-
-#: mod/admin.php:1319 mod/settings.php:41
-msgid "Account"
-msgstr "Account"
-
-#: mod/admin.php:1321
-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:1322
-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:1332
-msgid "Name of the new user."
-msgstr "Nome del nuovo utente."
-
-#: mod/admin.php:1333
-msgid "Nickname"
-msgstr "Nome utente"
-
-#: mod/admin.php:1333
-msgid "Nickname of the new user."
-msgstr "Nome utente del nuovo utente."
-
-#: mod/admin.php:1334
-msgid "Email address of the new user."
-msgstr "Indirizzo Email del nuovo utente."
-
-#: mod/admin.php:1377
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s disabilitato."
-
-#: mod/admin.php:1381
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s abilitato."
-
-#: mod/admin.php:1392 mod/admin.php:1628
-msgid "Disable"
-msgstr "Disabilita"
-
-#: mod/admin.php:1394 mod/admin.php:1630
-msgid "Enable"
-msgstr "Abilita"
-
-#: mod/admin.php:1417 mod/admin.php:1675
-msgid "Toggle"
-msgstr "Inverti"
-
-#: mod/admin.php:1425 mod/admin.php:1684
-msgid "Author: "
-msgstr "Autore: "
-
-#: mod/admin.php:1426 mod/admin.php:1685
-msgid "Maintainer: "
-msgstr "Manutentore: "
-
-#: mod/admin.php:1478
-msgid "Reload active plugins"
-msgstr "Ricarica i plugin attivi"
-
-#: mod/admin.php:1483
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr ""
-
-#: mod/admin.php:1588
-msgid "No themes found."
-msgstr "Nessun tema trovato."
-
-#: mod/admin.php:1666
-msgid "Screenshot"
-msgstr "Anteprima"
-
-#: mod/admin.php:1726
-msgid "Reload active themes"
-msgstr "Ricarica i temi attivi"
-
-#: mod/admin.php:1731
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr ""
-
-#: mod/admin.php:1732
-msgid "[Experimental]"
-msgstr "[Sperimentale]"
-
-#: mod/admin.php:1733
-msgid "[Unsupported]"
-msgstr "[Non supportato]"
-
-#: mod/admin.php:1757
-msgid "Log settings updated."
-msgstr "Impostazioni Log aggiornate."
-
-#: mod/admin.php:1794
-msgid "Clear"
-msgstr "Pulisci"
-
-#: mod/admin.php:1799
-msgid "Enable Debugging"
-msgstr "Abilita Debugging"
-
-#: mod/admin.php:1800
-msgid "Log file"
-msgstr "File di Log"
-
-#: mod/admin.php:1800
-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:1801
-msgid "Log level"
-msgstr "Livello di Log"
-
-#: mod/admin.php:1804
-msgid "PHP logging"
-msgstr ""
-
-#: mod/admin.php:1805
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr ""
-
-#: mod/admin.php:1931 mod/admin.php:1932 mod/settings.php:759
-msgid "Off"
-msgstr "Spento"
-
-#: mod/admin.php:1931 mod/admin.php:1932 mod/settings.php:759
-msgid "On"
-msgstr "Acceso"
-
-#: mod/admin.php:1932
-#, php-format
-msgid "Lock feature %s"
-msgstr ""
-
-#: mod/admin.php:1940
-msgid "Manage Additional Features"
-msgstr ""
-
-#: mod/network.php:146
-#, php-format
-msgid "Search Results For: %s"
-msgstr "Risultato della ricerca per: %s"
-
-#: mod/network.php:191 mod/search.php:25
-msgid "Remove term"
-msgstr "Rimuovi termine"
-
-#: mod/network.php:200 mod/search.php:34 include/features.php:84
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
-
-#: mod/network.php:201 include/group.php:293
-msgid "add"
-msgstr "aggiungi"
-
-#: mod/network.php:365
-msgid "Commented Order"
-msgstr "Ordina per commento"
-
-#: mod/network.php:368
-msgid "Sort by Comment Date"
-msgstr "Ordina per data commento"
-
-#: mod/network.php:373
-msgid "Posted Order"
-msgstr "Ordina per invio"
-
-#: mod/network.php:376
-msgid "Sort by Post Date"
-msgstr "Ordina per data messaggio"
-
-#: mod/network.php:387
-msgid "Posts that mention or involve you"
-msgstr "Messaggi che ti citano o coinvolgono"
-
-#: mod/network.php:395
-msgid "New"
-msgstr "Nuovo"
-
-#: mod/network.php:398
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - per data"
-
-#: mod/network.php:406
-msgid "Shared Links"
-msgstr "Links condivisi"
-
-#: mod/network.php:409
-msgid "Interesting Links"
-msgstr "Link Interessanti"
-
-#: mod/network.php:417
-msgid "Starred"
-msgstr "Preferiti"
-
-#: mod/network.php:420
-msgid "Favourite Posts"
-msgstr "Messaggi preferiti"
-
-#: mod/network.php:479
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-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:482
-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:549 mod/content.php:119
-msgid "No such group"
-msgstr "Nessun gruppo"
-
-#: mod/network.php:580 mod/content.php:135
-#, php-format
-msgid "Group: %s"
-msgstr "Gruppo: %s"
-
-#: mod/network.php:608
-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:613
-msgid "Invalid contact."
-msgstr "Contatto non valido."
-
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Nessun amico da visualizzare."
-
-#: mod/events.php:71 mod/events.php:73
-msgid "Event can not end before it has started."
-msgstr "Un evento non puo' finire prima di iniziare."
-
-#: mod/events.php:80 mod/events.php:82
-msgid "Event title and start time are required."
-msgstr "Titolo e ora di inizio dell'evento sono richiesti."
-
-#: mod/events.php:201
-msgid "Sun"
-msgstr "Dom"
-
-#: mod/events.php:202
-msgid "Mon"
-msgstr "Lun"
-
-#: mod/events.php:203
-msgid "Tue"
-msgstr "Mar"
-
-#: mod/events.php:204
-msgid "Wed"
-msgstr "Mer"
-
-#: mod/events.php:205
-msgid "Thu"
-msgstr "Gio"
-
-#: mod/events.php:206
-msgid "Fri"
-msgstr "Ven"
-
-#: mod/events.php:207
-msgid "Sat"
-msgstr "Sab"
-
-#: mod/events.php:208 mod/settings.php:948 include/text.php:1274
-msgid "Sunday"
-msgstr "Domenica"
-
-#: mod/events.php:209 mod/settings.php:948 include/text.php:1274
-msgid "Monday"
-msgstr "Lunedì"
-
-#: mod/events.php:210 include/text.php:1274
-msgid "Tuesday"
-msgstr "Martedì"
-
-#: mod/events.php:211 include/text.php:1274
-msgid "Wednesday"
-msgstr "Mercoledì"
-
-#: mod/events.php:212 include/text.php:1274
-msgid "Thursday"
-msgstr "Giovedì"
-
-#: mod/events.php:213 include/text.php:1274
-msgid "Friday"
-msgstr "Venerdì"
-
-#: mod/events.php:214 include/text.php:1274
-msgid "Saturday"
-msgstr "Sabato"
-
-#: mod/events.php:215
-msgid "Jan"
-msgstr "Gen"
-
-#: mod/events.php:216
-msgid "Feb"
-msgstr "Feb"
-
-#: mod/events.php:217
-msgid "Mar"
-msgstr "Mar"
-
-#: mod/events.php:218
-msgid "Apr"
-msgstr "Apr"
-
-#: mod/events.php:219 mod/events.php:231 include/text.php:1278
-msgid "May"
-msgstr "Maggio"
-
-#: mod/events.php:220
-msgid "Jun"
-msgstr "Giu"
-
-#: mod/events.php:221
-msgid "Jul"
-msgstr "Lug"
-
-#: mod/events.php:222
-msgid "Aug"
-msgstr "Ago"
-
-#: mod/events.php:223
-msgid "Sept"
-msgstr "Set"
-
-#: mod/events.php:224
-msgid "Oct"
-msgstr "Ott"
-
-#: mod/events.php:225
-msgid "Nov"
-msgstr "Nov"
-
-#: mod/events.php:226
-msgid "Dec"
-msgstr "Dic"
-
-#: mod/events.php:227 include/text.php:1278
-msgid "January"
-msgstr "Gennaio"
-
-#: mod/events.php:228 include/text.php:1278
-msgid "February"
-msgstr "Febbraio"
-
-#: mod/events.php:229 include/text.php:1278
-msgid "March"
-msgstr "Marzo"
-
-#: mod/events.php:230 include/text.php:1278
-msgid "April"
-msgstr "Aprile"
-
-#: mod/events.php:232 include/text.php:1278
-msgid "June"
-msgstr "Giugno"
-
-#: mod/events.php:233 include/text.php:1278
-msgid "July"
-msgstr "Luglio"
-
-#: mod/events.php:234 include/text.php:1278
-msgid "August"
-msgstr "Agosto"
-
-#: mod/events.php:235 include/text.php:1278
-msgid "September"
-msgstr "Settembre"
-
-#: mod/events.php:236 include/text.php:1278
-msgid "October"
-msgstr "Ottobre"
-
-#: mod/events.php:237 include/text.php:1278
-msgid "November"
-msgstr "Novembre"
-
-#: mod/events.php:238 include/text.php:1278
-msgid "December"
-msgstr "Dicembre"
-
-#: mod/events.php:239
-msgid "today"
-msgstr "oggi"
-
-#: mod/events.php:240 include/datetime.php:288
-msgid "month"
-msgstr "mese"
-
-#: mod/events.php:241 include/datetime.php:289
-msgid "week"
-msgstr "settimana"
-
-#: mod/events.php:242 include/datetime.php:290
-msgid "day"
-msgstr "giorno"
-
-#: mod/events.php:377
-msgid "l, F j"
-msgstr "l j F"
-
-#: mod/events.php:399
-msgid "Edit event"
-msgstr "Modifca l'evento"
-
-#: mod/events.php:421 include/text.php:1728 include/text.php:1735
-msgid "link to source"
-msgstr "Collegamento all'originale"
-
-#: mod/events.php:456 include/identity.php:722 include/nav.php:79
-#: include/nav.php:140 view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Eventi"
-
-#: mod/events.php:457
-msgid "Create New Event"
-msgstr "Crea un nuovo evento"
-
-#: mod/events.php:458
-msgid "Previous"
-msgstr "Precendente"
-
-#: mod/events.php:459 mod/install.php:220
-msgid "Next"
-msgstr "Successivo"
-
-#: mod/events.php:554
-msgid "Event details"
-msgstr "Dettagli dell'evento"
-
-#: mod/events.php:555
-msgid "Starting date and Title are required."
-msgstr "La data di inizio e il titolo sono richiesti."
-
-#: mod/events.php:556
-msgid "Event Starts:"
-msgstr "L'evento inizia:"
-
-#: mod/events.php:556 mod/events.php:568
-msgid "Required"
-msgstr "Richiesto"
-
-#: mod/events.php:558
-msgid "Finish date/time is not known or not relevant"
-msgstr "La data/ora di fine non è definita"
-
-#: mod/events.php:560
-msgid "Event Finishes:"
-msgstr "L'evento finisce:"
-
-#: mod/events.php:562
-msgid "Adjust for viewer timezone"
-msgstr "Visualizza con il fuso orario di chi legge"
-
-#: mod/events.php:564
-msgid "Description:"
-msgstr "Descrizione:"
-
-#: mod/events.php:568
-msgid "Title:"
-msgstr "Titolo:"
-
-#: mod/events.php:570
-msgid "Share this event"
-msgstr "Condividi questo evento"
-
-#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145
-#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767
-#: object/Item.php:719 include/conversation.php:1216
-msgid "Preview"
-msgstr "Anteprima"
-
-#: mod/credits.php:16
-msgid "Credits"
-msgstr "Credits"
-
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"
-
-#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722
-#: object/Item.php:133 include/conversation.php:634
-msgid "Select"
-msgstr "Seleziona"
-
-#: mod/content.php:473 mod/content.php:854 mod/content.php:855
-#: object/Item.php:357 object/Item.php:358 include/conversation.php:675
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vedi il profilo di %s @ %s"
-
-#: mod/content.php:483 mod/content.php:866 object/Item.php:371
-#: include/conversation.php:695
-#, php-format
-msgid "%s from %s"
-msgstr "%s da %s"
-
-#: mod/content.php:499 include/conversation.php:711
-msgid "View in context"
-msgstr "Vedi nel contesto"
-
-#: mod/content.php:605 object/Item.php:419
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commento"
-msgstr[1] "%d commenti"
-
-#: mod/content.php:607 object/Item.php:421 object/Item.php:434
-#: include/text.php:2004
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commento"
-
-#: mod/content.php:608 boot.php:870 object/Item.php:422
-#: include/contact_widgets.php:242 include/forums.php:110
-#: include/items.php:5207 view/theme/vier/theme.php:264
-msgid "show more"
-msgstr "mostra di più"
-
-#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117
-msgid "Private Message"
-msgstr "Messaggio privato"
-
-#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253
-msgid "I like this (toggle)"
-msgstr "Mi piace (clic per cambiare)"
-
-#: mod/content.php:686 object/Item.php:253
-msgid "like"
-msgstr "mi piace"
-
-#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254
-msgid "I don't like this (toggle)"
-msgstr "Non mi piace (clic per cambiare)"
-
-#: mod/content.php:687 object/Item.php:254
-msgid "dislike"
-msgstr "non mi piace"
-
-#: mod/content.php:689 object/Item.php:256
-msgid "Share this"
-msgstr "Condividi questo"
-
-#: mod/content.php:689 object/Item.php:256
-msgid "share"
-msgstr "condividi"
-
-#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675
-#: mod/photos.php:1763 object/Item.php:707
-msgid "This is you"
-msgstr "Questo sei tu"
-
-#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677
-#: mod/photos.php:1765 boot.php:869 object/Item.php:393 object/Item.php:709
-msgid "Comment"
-msgstr "Commento"
-
-#: mod/content.php:713 object/Item.php:711
-msgid "Bold"
-msgstr "Grassetto"
-
-#: mod/content.php:714 object/Item.php:712
-msgid "Italic"
-msgstr "Corsivo"
-
-#: mod/content.php:715 object/Item.php:713
-msgid "Underline"
-msgstr "Sottolineato"
-
-#: mod/content.php:716 object/Item.php:714
-msgid "Quote"
-msgstr "Citazione"
-
-#: mod/content.php:717 object/Item.php:715
-msgid "Code"
-msgstr "Codice"
-
-#: mod/content.php:718 object/Item.php:716
-msgid "Image"
-msgstr "Immagine"
-
-#: mod/content.php:719 object/Item.php:717
-msgid "Link"
-msgstr "Link"
-
-#: mod/content.php:720 object/Item.php:718
-msgid "Video"
-msgstr "Video"
-
-#: mod/content.php:730 mod/settings.php:721 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Modifica"
-
-#: mod/content.php:755 object/Item.php:217
-msgid "add star"
-msgstr "aggiungi a speciali"
-
-#: mod/content.php:756 object/Item.php:218
-msgid "remove star"
-msgstr "rimuovi da speciali"
-
-#: mod/content.php:757 object/Item.php:219
-msgid "toggle star status"
-msgstr "Inverti stato preferito"
-
-#: mod/content.php:760 object/Item.php:222
-msgid "starred"
-msgstr "preferito"
-
-#: mod/content.php:761 object/Item.php:242
-msgid "add tag"
-msgstr "aggiungi tag"
-
-#: mod/content.php:765 object/Item.php:137
-msgid "save to folder"
-msgstr "salva nella cartella"
-
-#: mod/content.php:856 object/Item.php:359
-msgid "to"
-msgstr "a"
-
-#: mod/content.php:857 object/Item.php:361
-msgid "Wall-to-Wall"
-msgstr "Da bacheca a bacheca"
-
-#: mod/content.php:858 object/Item.php:362
-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
-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/install.php:128
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Comunicazione Server - Impostazioni"
-
-#: mod/install.php:134
-msgid "Could not connect to database."
-msgstr " Impossibile collegarsi con il database."
-
-#: mod/install.php:138
-msgid "Could not create table."
-msgstr "Impossibile creare le tabelle."
-
-#: mod/install.php:144
-msgid "Your Friendica site database has been installed."
-msgstr "Il tuo Friendica è stato installato."
-
-#: mod/install.php:149
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
-
-#: mod/install.php:150 mod/install.php:219 mod/install.php:577
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Leggi il file \"INSTALL.txt\"."
-
-#: mod/install.php:162
-msgid "Database already in use."
-msgstr "Database già in uso."
-
-#: mod/install.php:216
-msgid "System check"
-msgstr "Controllo sistema"
-
-#: mod/install.php:221
-msgid "Check again"
-msgstr "Controlla ancora"
-
-#: mod/install.php:240
-msgid "Database connection"
-msgstr "Connessione al database"
-
-#: mod/install.php:241
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
-
-#: mod/install.php:242
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
-
-#: mod/install.php:243
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
-
-#: mod/install.php:247
-msgid "Database Server Name"
-msgstr "Nome del database server"
-
-#: mod/install.php:248
-msgid "Database Login Name"
-msgstr "Nome utente database"
-
-#: mod/install.php:249
-msgid "Database Login Password"
-msgstr "Password utente database"
-
-#: mod/install.php:250
-msgid "Database Name"
-msgstr "Nome database"
-
-#: mod/install.php:251 mod/install.php:290
-msgid "Site administrator email address"
-msgstr "Indirizzo email dell'amministratore del sito"
-
-#: mod/install.php:251 mod/install.php:290
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
-
-#: mod/install.php:255 mod/install.php:293
-msgid "Please select a default timezone for your website"
-msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
-
-#: mod/install.php:280
-msgid "Site settings"
-msgstr "Impostazioni sito"
-
-#: mod/install.php:334
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
-
-#: mod/install.php:335
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See 'Setup the poller'"
-msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'"
-
-#: mod/install.php:339
-msgid "PHP executable path"
-msgstr "Percorso eseguibile PHP"
-
-#: mod/install.php:339
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
-
-#: mod/install.php:344
-msgid "Command line PHP"
-msgstr "PHP da riga di comando"
-
-#: mod/install.php:353
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"
-
-#: mod/install.php:354
-msgid "Found PHP version: "
-msgstr "Versione PHP:"
-
-#: mod/install.php:356
-msgid "PHP cli binary"
-msgstr "Binario PHP cli"
-
-#: mod/install.php:367
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
-
-#: mod/install.php:368
-msgid "This is required for message delivery to work."
-msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
-
-#: mod/install.php:370
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
-
-#: mod/install.php:391
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
-
-#: mod/install.php:392
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: mod/install.php:394
-msgid "Generate encryption keys"
-msgstr "Genera chiavi di criptazione"
-
-#: mod/install.php:401
-msgid "libCurl PHP module"
-msgstr "modulo PHP libCurl"
-
-#: mod/install.php:402
-msgid "GD graphics PHP module"
-msgstr "modulo PHP GD graphics"
-
-#: mod/install.php:403
-msgid "OpenSSL PHP module"
-msgstr "modulo PHP OpenSSL"
-
-#: mod/install.php:404
-msgid "mysqli PHP module"
-msgstr "modulo PHP mysqli"
-
-#: mod/install.php:405
-msgid "mb_string PHP module"
-msgstr "modulo PHP mb_string"
-
-#: mod/install.php:406
-msgid "mcrypt PHP module"
-msgstr "modulo PHP mcrypt"
-
-#: mod/install.php:411 mod/install.php:413
-msgid "Apache mod_rewrite module"
-msgstr "Modulo mod_rewrite di Apache"
-
-#: mod/install.php:411
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
-
-#: mod/install.php:419
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
-
-#: mod/install.php:423
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
-
-#: mod/install.php:427
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
-
-#: mod/install.php:431
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
-
-#: mod/install.php:435
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
-
-#: mod/install.php:439
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato"
-
-#: mod/install.php:451
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2"
-
-#: mod/install.php:453
-msgid "mcrypt_create_iv() function"
-msgstr "funzione mcrypt_create_iv()"
-
-#: mod/install.php:469
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
-
-#: mod/install.php:470
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
-
-#: mod/install.php:471
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"
-
-#: mod/install.php:472
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."
-
-#: mod/install.php:475
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php è scrivibile"
-
-#: mod/install.php:485
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."
-
-#: mod/install.php:486
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."
-
-#: mod/install.php:487
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."
-
-#: mod/install.php:488
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."
-
-#: mod/install.php:491
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 è scrivibile"
-
-#: mod/install.php:507
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."
-
-#: mod/install.php:509
-msgid "Url rewrite is working"
-msgstr "La riscrittura degli url funziona"
-
-#: mod/install.php:526
-msgid "ImageMagick PHP extension is installed"
-msgstr "L'estensione PHP ImageMagick è installata"
-
-#: mod/install.php:528
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick supporta i GIF"
-
-#: mod/install.php:536
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "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."
-
-#: mod/install.php:575
-msgid "

What next

" -msgstr "

Cosa fare ora

" - -#: mod/install.php:576 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"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:41 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:47 include/nav.php:113 view/theme/vier/theme.php:302 -msgid "Help" -msgstr "Guida" - -#: mod/help.php:53 mod/p.php:16 mod/p.php:25 index.php:270 -msgid "Not Found" -msgstr "Non trovato" - -#: mod/help.php:56 index.php:273 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: 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:94 -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:94 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/match.php:33 -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:84 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:36 include/nav.php:136 include/nav.php:138 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunità" - -#: mod/community.php:66 mod/community.php:75 mod/search.php:228 -msgid "No results." -msgstr "Nessun risultato." - -#: mod/settings.php:34 mod/photos.php:117 -msgid "everybody" -msgstr "tutti" - -#: mod/settings.php:58 -msgid "Display" -msgstr "Visualizzazione" - -#: mod/settings.php:65 mod/settings.php:864 -msgid "Social Networks" -msgstr "Social Networks" - -#: mod/settings.php:79 include/nav.php:180 -msgid "Delegations" -msgstr "Delegazioni" - -#: mod/settings.php:86 -msgid "Connected apps" -msgstr "Applicazioni collegate" - -#: mod/settings.php:93 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: mod/settings.php:100 -msgid "Remove account" -msgstr "Rimuovi account" - -#: mod/settings.php:153 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" - -#: mod/settings.php:266 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: mod/settings.php:271 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: mod/settings.php:286 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: mod/settings.php:353 -msgid "Relocate message has been send to your contacts" -msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" - -#: mod/settings.php:367 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: mod/settings.php:372 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: mod/settings.php:380 -msgid "Wrong password." -msgstr "Password sbagliata." - -#: mod/settings.php:391 -msgid "Password changed." -msgstr "Password cambiata." - -#: mod/settings.php:393 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: mod/settings.php:462 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: mod/settings.php:464 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: mod/settings.php:473 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: mod/settings.php:478 -msgid " Not valid email." -msgstr " Email non valida." - -#: mod/settings.php:484 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: mod/settings.php:540 -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:544 -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:583 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: mod/settings.php:658 mod/settings.php:684 mod/settings.php:720 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: mod/settings.php:662 mod/settings.php:688 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:663 mod/settings.php:689 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:664 mod/settings.php:690 -msgid "Redirect" -msgstr "Redirect" - -#: mod/settings.php:665 mod/settings.php:691 -msgid "Icon url" -msgstr "Url icona" - -#: mod/settings.php:676 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: mod/settings.php:719 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: mod/settings.php:723 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: mod/settings.php:724 -msgid "No name" -msgstr "Nessun nome" - -#: mod/settings.php:725 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: mod/settings.php:737 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: mod/settings.php:745 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: mod/settings.php:767 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: mod/settings.php:777 mod/settings.php:781 -msgid "General Social Media Settings" -msgstr "Impostazioni Media Sociali" - -#: mod/settings.php:787 -msgid "Disable intelligent shortening" -msgstr "Disabilita accorciamento intelligente" - -#: mod/settings.php:789 -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:795 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni" - -#: mod/settings.php:797 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." - -#: mod/settings.php:806 -msgid "Your legacy GNU Social account" -msgstr "Il tuo vecchio account GNU Social" - -#: mod/settings.php:808 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato." - -#: mod/settings.php:811 -msgid "Repair OStatus subscriptions" -msgstr "Ripara le iscrizioni OStatus" - -#: mod/settings.php:820 mod/settings.php:821 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: mod/settings.php:820 mod/dfrn_request.php:865 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:820 mod/settings.php:821 -msgid "enabled" -msgstr "abilitato" - -#: mod/settings.php:820 mod/settings.php:821 -msgid "disabled" -msgstr "disabilitato" - -#: mod/settings.php:821 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:857 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: mod/settings.php:869 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: mod/settings.php:870 -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:871 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: mod/settings.php:873 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: mod/settings.php:874 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: mod/settings.php:875 -msgid "Security:" -msgstr "Sicurezza:" - -#: mod/settings.php:875 mod/settings.php:880 -msgid "None" -msgstr "Nessuna" - -#: mod/settings.php:876 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: mod/settings.php:877 -msgid "Email password:" -msgstr "Password email:" - -#: mod/settings.php:878 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: mod/settings.php:879 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: mod/settings.php:880 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: mod/settings.php:880 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: mod/settings.php:880 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: mod/settings.php:881 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: mod/settings.php:967 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: mod/settings.php:973 mod/settings.php:991 -msgid "Display Theme:" -msgstr "Tema:" - -#: mod/settings.php:974 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: mod/settings.php:975 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: mod/settings.php:975 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" - -#: mod/settings.php:976 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: mod/settings.php:976 mod/settings.php:977 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: mod/settings.php:977 -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:978 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: mod/settings.php:979 -msgid "Calendar" -msgstr "Calendario" - -#: mod/settings.php:980 -msgid "Beginning of week:" -msgstr "Inizio della settimana:" - -#: mod/settings.php:981 -msgid "Don't show notices" -msgstr "Non mostrare gli avvisi" - -#: mod/settings.php:982 -msgid "Infinite scroll" -msgstr "Scroll infinito" - -#: mod/settings.php:983 -msgid "Automatic updates only at the top of the network page" -msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" - -#: mod/settings.php:985 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:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Impostazioni tema" - -#: mod/settings.php:1062 -msgid "User Types" -msgstr "Tipi di Utenti" - -#: mod/settings.php:1063 -msgid "Community Types" -msgstr "Tipi di Comunità" - -#: mod/settings.php:1064 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: mod/settings.php:1065 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: mod/settings.php:1068 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: mod/settings.php:1069 -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:1072 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: mod/settings.php:1073 -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:1076 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: mod/settings.php:1077 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: mod/settings.php:1080 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: mod/settings.php:1081 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: mod/settings.php:1093 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1093 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: mod/settings.php:1103 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: mod/settings.php:1109 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: mod/settings.php:1117 -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:1121 include/acl_selectors.php:331 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: mod/settings.php:1121 -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:1126 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: mod/settings.php:1132 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: mod/settings.php:1138 -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:1144 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: mod/settings.php:1152 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: mod/settings.php:1160 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "L'indirizzo della tua identità è '%s' or '%s'." - -#: mod/settings.php:1167 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" - -#: mod/settings.php:1167 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: mod/settings.php:1168 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" - -#: mod/settings.php:1169 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" - -#: mod/settings.php:1170 -msgid "Expire posts:" -msgstr "Fai scadere i post:" - -#: mod/settings.php:1171 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" - -#: mod/settings.php:1172 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" - -#: mod/settings.php:1173 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" - -#: mod/settings.php:1174 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" - -#: mod/settings.php:1202 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: mod/settings.php:1210 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: mod/settings.php:1211 mod/register.php:274 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/settings.php:1212 mod/register.php:275 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/settings.php:1212 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: mod/settings.php:1213 -msgid "Current Password:" -msgstr "Password Attuale:" - -#: mod/settings.php:1213 mod/settings.php:1214 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" - -#: mod/settings.php:1214 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:1218 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: mod/settings.php:1219 include/identity.php:588 -msgid "Full Name:" -msgstr "Nome completo:" - -#: mod/settings.php:1220 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: mod/settings.php:1221 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: mod/settings.php:1222 -msgid "Your Language:" -msgstr "La tua lingua:" - -#: mod/settings.php:1222 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" - -#: mod/settings.php:1223 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: mod/settings.php:1224 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: mod/settings.php:1227 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: mod/settings.php:1229 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: mod/settings.php:1229 mod/settings.php:1259 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: mod/settings.php:1230 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: mod/settings.php:1231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: mod/settings.php:1240 mod/photos.php:1199 mod/photos.php:1584 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/settings.php:1241 mod/photos.php:1200 mod/photos.php:1585 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/settings.php:1242 -msgid "Default Private Post" -msgstr "Default Post Privato" - -#: mod/settings.php:1243 -msgid "Default Public Post" -msgstr "Default Post Pubblico" - -#: mod/settings.php:1247 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: mod/settings.php:1259 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: mod/settings.php:1262 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: mod/settings.php:1263 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: mod/settings.php:1264 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: mod/settings.php:1265 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: mod/settings.php:1266 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: mod/settings.php:1267 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: mod/settings.php:1268 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: mod/settings.php:1269 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: mod/settings.php:1270 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: mod/settings.php:1271 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: mod/settings.php:1272 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: mod/settings.php:1273 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: mod/settings.php:1274 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: mod/settings.php:1275 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: mod/settings.php:1277 -msgid "Activate desktop notifications" -msgstr "Attiva notifiche desktop" - -#: mod/settings.php:1277 -msgid "Show desktop popup on new notifications" -msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" - -#: mod/settings.php:1279 -msgid "Text-only notification emails" -msgstr "Email di notifica in solo testo" - -#: mod/settings.php:1281 -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:1283 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: mod/settings.php:1284 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: mod/settings.php:1287 -msgid "Relocate" -msgstr "Trasloca" - -#: mod/settings.php:1288 -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:1289 -msgid "Resend relocate message to contacts" -msgstr "Reinvia il messaggio di trasloco" - -#: mod/dfrn_request.php:96 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:516 -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:124 mod/dfrn_request.php:521 -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:126 mod/dfrn_request.php:523 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:526 -#, 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:474 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:478 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:499 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:505 include/follow.php:72 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:596 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:636 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:659 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:669 -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:683 mod/dfrn_request.php:700 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:695 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:698 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:699 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:828 -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:849 -#, php-format -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:854 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:855 -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:863 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:864 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:866 -#, 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/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: mod/register.php:97 -#, 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:104 -msgid "Registration successful." -msgstr "Registrazione completata." - -#: mod/register.php:110 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: mod/register.php:153 -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:191 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:219 -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:220 -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:221 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: mod/register.php:259 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: mod/register.php:260 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:271 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): " - -#: mod/register.php:272 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: mod/register.php:274 -msgid "Leave empty for an auto generated password." -msgstr "Lascia vuoto per generare automaticamente una password." - -#: mod/register.php:276 -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:277 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:280 boot.php:1405 include/nav.php:108 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:286 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:287 -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:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "Solo agli utenti loggati è permesso eseguire ricerche." - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "Troppe richieste" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Solo una ricerca al minuto è permessa agli utenti non loggati." - -#: mod/search.php:136 include/text.php:1003 include/nav.php:118 -msgid "Search" -msgstr "Cerca" - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: mod/search.php:236 -#, php-format -msgid "Search results for: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/directory.php:149 include/identity.php:313 include/identity.php:610 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:151 include/identity.php:315 include/identity.php:621 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:203 view/theme/diabook/theme.php:525 -#: view/theme/vier/theme.php:205 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:205 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:207 -msgid "Finding:" -msgstr "Ricerca:" - -#: mod/directory.php:209 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:216 -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:180 -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 "Nessuna voce." - -#: mod/common.php:86 -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:239 -#, 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:71 -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:83 mod/suggest.php:101 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: mod/suggest.php:111 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:207 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: 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:336 -msgid "Marital Status" -msgstr "Stato civile" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Partner romantico" - -#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 -msgid "Likes" -msgstr "Mi piace" - -#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 -msgid "Dislikes" -msgstr "Non mi piace" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religione" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Orientamento Politico" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Sesso" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Homepage" - -#: mod/profiles.php:375 mod/profiles.php:708 -msgid "Interests" -msgstr "Interessi" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Indirizzo" - -#: mod/profiles.php:386 mod/profiles.php:704 -msgid "Location" -msgstr "Posizione" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: mod/profiles.php:565 -msgid " and " -msgstr "e " - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "profilo pubblico" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" - -#: mod/profiles.php:580 -#, 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:655 -msgid "Hide contacts and friends:" -msgstr "Nascondi contatti:" - -#: mod/profiles.php:660 -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:684 -msgid "Show more profile fields:" -msgstr "Mostra più informazioni di profilo:" - -#: mod/profiles.php:695 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: mod/profiles.php:697 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:698 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: mod/profiles.php:699 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: mod/profiles.php:700 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: mod/profiles.php:701 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: mod/profiles.php:702 -msgid "Basic information" -msgstr "Informazioni di base" - -#: mod/profiles.php:703 -msgid "Profile picture" -msgstr "Immagine del profilo" - -#: mod/profiles.php:705 -msgid "Preferences" -msgstr "Preferenze" - -#: mod/profiles.php:706 -msgid "Status information" -msgstr "Informazioni stato" - -#: mod/profiles.php:707 -msgid "Additional information" -msgstr "Informazioni aggiuntive" - -#: mod/profiles.php:710 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: mod/profiles.php:711 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: mod/profiles.php:712 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: mod/profiles.php:713 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: mod/profiles.php:714 -msgid "Birthday :" -msgstr "Compleanno:" - -#: mod/profiles.php:715 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: mod/profiles.php:716 -msgid "Locality/City:" -msgstr "Località:" - -#: mod/profiles.php:717 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: mod/profiles.php:718 -msgid "Country:" -msgstr "Nazione:" - -#: mod/profiles.php:719 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: mod/profiles.php:720 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: mod/profiles.php:721 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: mod/profiles.php:722 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:723 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: mod/profiles.php:724 include/identity.php:619 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: mod/profiles.php:725 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: mod/profiles.php:726 include/identity.php:623 -msgid "Hometown:" -msgstr "Paese natale:" - -#: mod/profiles.php:727 include/identity.php:627 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: mod/profiles.php:728 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: mod/profiles.php:729 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: mod/profiles.php:730 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: mod/profiles.php:731 include/identity.php:635 -msgid "Likes:" -msgstr "Mi piace:" - -#: mod/profiles.php:732 include/identity.php:637 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: mod/profiles.php:733 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: mod/profiles.php:734 -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:735 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: mod/profiles.php:736 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: mod/profiles.php:737 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: mod/profiles.php:738 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: mod/profiles.php:739 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: mod/profiles.php:740 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: mod/profiles.php:741 -msgid "Television" -msgstr "Televisione" - -#: mod/profiles.php:742 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: mod/profiles.php:743 -msgid "Love/romance" -msgstr "Amore" - -#: mod/profiles.php:744 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: mod/profiles.php:745 -msgid "School/education" -msgstr "Scuola/educazione" - -#: mod/profiles.php:750 -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:760 -msgid "Age: " -msgstr "Età : " - -#: mod/profiles.php:813 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: mod/profiles.php:814 include/identity.php:260 include/identity.php:286 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:815 include/identity.php:261 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: mod/profiles.php:826 include/identity.php:271 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: mod/profiles.php:828 include/identity.php:274 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: mod/profiles.php:829 include/identity.php:275 -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:40 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: mod/editpost.php:111 include/conversation.php:1184 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1185 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1186 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1188 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1189 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1190 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1191 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: mod/editpost.php:119 include/conversation.php:1192 -msgid "audio link" -msgstr "link audio" - -#: mod/editpost.php:120 include/conversation.php:1193 -msgid "Set your location" -msgstr "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1194 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1195 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1196 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1202 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:344 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1211 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1198 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1200 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:345 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:73 -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:75 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" - -#: mod/friendica.php:76 -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:90 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: mod/friendica.php:103 -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:46 include/identity.php:730 -msgid "Personal Notes" -msgstr "Note personali" - -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 -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" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" - -#: mod/poke.php:191 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: mod/poke.php:192 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: mod/poke.php:193 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:194 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:197 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Errore" - -#: 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 registrati 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 ad unirti a me e 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:99 include/identity.php:705 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:100 mod/photos.php:1899 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:181 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:202 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:242 -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:322 mod/photos.php:333 mod/photos.php:1580 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:331 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:706 -#, 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:706 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:819 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:986 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1147 -#, 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:1182 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1186 mod/photos.php:1257 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1187 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1188 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1201 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1202 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1270 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1276 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1278 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1306 mod/photos.php:1884 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1353 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1355 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: mod/photos.php:1411 -msgid "View photo" -msgstr "Vedi foto" - -#: mod/photos.php:1411 -msgid "Edit photo" -msgstr "Modifica foto" - -#: mod/photos.php:1412 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: mod/photos.php:1437 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: mod/photos.php:1523 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1526 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1566 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1567 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1568 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1568 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1569 -msgid "Do not rotate" -msgstr "Non ruotare" - -#: mod/photos.php:1570 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: mod/photos.php:1571 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: mod/photos.php:1586 -msgid "Private photo" -msgstr "Foto privata" - -#: mod/photos.php:1587 -msgid "Public photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1609 include/conversation.php:1182 -msgid "Share" -msgstr "Condividi" - -#: mod/photos.php:1648 include/conversation.php:509 -#: include/conversation.php:1413 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" - -#: mod/photos.php:1648 include/conversation.php:509 -msgid "Not attending" -msgstr "Non partecipa" - -#: mod/photos.php:1648 include/conversation.php:509 -msgid "Might attend" -msgstr "Forse partecipa" - -#: mod/photos.php:1813 -msgid "Map" -msgstr "Mappa" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Not Extended" - -#: 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 (GNU Social/Statusnet) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) 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:868 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" - -#: boot.php:871 -msgid "show fewer" -msgstr "mostra di meno" - -#: boot.php:1292 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "aggiornamento %s fallito. Guarda i log di errore." - -#: boot.php:1404 -msgid "Create a New Account" -msgstr "Crea un nuovo account" - -#: boot.php:1429 include/nav.php:72 -msgid "Logout" -msgstr "Esci" - -#: boot.php:1432 -msgid "Nickname or Email address: " -msgstr "Nome utente o indirizzo email: " - -#: boot.php:1433 -msgid "Password: " -msgstr "Password: " - -#: boot.php:1434 -msgid "Remember me" -msgstr "Ricordati di me" - -#: boot.php:1437 -msgid "Or login using OpenID: " -msgstr "O entra con OpenID:" - -#: boot.php:1443 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" - -#: boot.php:1446 -msgid "Website Terms of Service" -msgstr "Condizioni di servizio del sito web " - -#: boot.php:1447 -msgid "terms of service" -msgstr "condizioni del servizio" - -#: boot.php:1449 -msgid "Website Privacy Policy" -msgstr "Politiche di privacy del sito" - -#: boot.php:1450 -msgid "privacy policy" -msgstr "politiche di privacy" - -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:191 -msgid "I will attend" -msgstr "Parteciperò" - -#: object/Item.php:191 -msgid "I will not attend" -msgstr "Non parteciperò" - -#: object/Item.php:191 -msgid "I might attend" -msgstr "Forse parteciperò" - -#: object/Item.php:230 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:231 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:232 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:345 include/conversation.php:687 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:346 include/conversation.php:688 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:360 -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:153 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." - -#: include/auth.php:44 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: include/auth.php:134 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." - -#: include/auth.php:134 include/user.php:75 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Aggiungi nuovo contatto" @@ -6286,6 +37,12 @@ msgstr "Inserisci posizione o indirizzo web" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Esempio: bob@example.com, http://example.com/barbara" +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Connetti" + #: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" @@ -6301,12 +58,26 @@ msgstr "Trova persone" msgid "Enter name or interest" msgstr "Inserisci un nome o un interesse" +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "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 -#: view/theme/vier/theme.php:206 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Trova" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 msgid "Similar Interests" msgstr "Interessi simili" @@ -6314,8 +85,7 @@ msgstr "Interessi simili" msgid "Random Profile" msgstr "Profilo causale" -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -#: view/theme/vier/theme.php:208 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 msgid "Invite Friends" msgstr "Invita amici" @@ -6327,7 +97,7 @@ msgstr "Reti" msgid "All Networks" msgstr "Tutte le Reti" -#: include/contact_widgets.php:141 include/features.php:102 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Cartelle Salvate" @@ -6346,1470 +116,21 @@ msgid_plural "%d contacts in common" msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" -#: include/features.php:63 -msgid "General Features" -msgstr "Funzionalità generali" - -#: include/features.php:65 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: include/features.php:65 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" - -#: include/features.php:66 -msgid "Photo Location" -msgstr "Località Foto" - -#: include/features.php:66 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa." - -#: include/features.php:71 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" - -#: include/features.php:72 -msgid "Richtext Editor" -msgstr "Editor visuale" - -#: include/features.php:72 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" - -#: include/features.php:73 -msgid "Post Preview" -msgstr "Anteprima dei post" - -#: include/features.php:73 -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:74 -msgid "Auto-mention Forums" -msgstr "Auto-cita i Forum" - -#: include/features.php:74 -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:79 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" - -#: include/features.php:80 -msgid "Search by Date" -msgstr "Cerca per data" - -#: include/features.php:80 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" - -#: include/features.php:81 include/features.php:111 -msgid "List Forums" -msgstr "Elenco forum" - -#: include/features.php:81 -msgid "Enable widget to display the forums your are connected with" -msgstr "Abilita il widget che mostra i forum ai quali sei connesso" - -#: include/features.php:82 -msgid "Group Filter" -msgstr "Filtra gruppi" - -#: include/features.php:82 -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:83 -msgid "Network Filter" -msgstr "Filtro reti" - -#: include/features.php:83 -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:84 -msgid "Save search terms for re-use" -msgstr "Salva i termini cercati per riutilizzarli" - -#: include/features.php:89 -msgid "Network Tabs" -msgstr "Schede pagina Rete" - -#: include/features.php:90 -msgid "Network Personal Tab" -msgstr "Scheda Personali" - -#: include/features.php:90 -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:91 -msgid "Network New Tab" -msgstr "Scheda Nuovi" - -#: include/features.php:91 -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:92 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" - -#: include/features.php:92 -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:97 -msgid "Post/Comment Tools" -msgstr "Strumenti per messaggi/commenti" - -#: include/features.php:98 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" - -#: include/features.php:98 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" - -#: include/features.php:99 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" - -#: include/features.php:99 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: include/features.php:100 -msgid "Tagging" -msgstr "Aggiunta tag" - -#: include/features.php:100 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" - -#: include/features.php:101 -msgid "Post Categories" -msgstr "Cateorie post" - -#: include/features.php:101 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" - -#: include/features.php:102 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" - -#: include/features.php:103 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: include/features.php:103 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: include/features.php:104 -msgid "Star Posts" -msgstr "Post preferiti" - -#: include/features.php:104 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" - -#: include/features.php:105 -msgid "Mute Post Notifications" -msgstr "Silenzia le notifiche di nuovi post" - -#: include/features.php:105 -msgid "Ability to mute notifications for a thread" -msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" - -#: include/features.php:110 -msgid "Advanced Profile Settings" -msgstr "Impostazioni Avanzate Profilo" - -#: include/features.php:111 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato" - -#: include/follow.php:77 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." - -#: include/follow.php:104 -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:105 include/follow.php:125 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." - -#: include/follow.php:123 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." - -#: include/follow.php:127 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: include/follow.php:129 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: include/follow.php:131 -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:132 -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:138 -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:148 -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:249 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: include/follow.php:302 -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:209 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: include/group.php:239 -msgid "Everybody" -msgstr "Tutti" - -#: include/group.php:262 -msgid "edit" -msgstr "modifica" - -#: include/group.php:285 -msgid "Edit groups" -msgstr "Modifica gruppi" - -#: include/group.php:287 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:288 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:291 -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:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG o MM-GG" - -#: include/datetime.php:271 -msgid "never" -msgstr "mai" - -#: include/datetime.php:277 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:287 -msgid "year" -msgstr "anno" - -#: include/datetime.php:287 -msgid "years" -msgstr "anni" - -#: include/datetime.php:288 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:289 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:290 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:291 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:291 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:292 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:292 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:293 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:293 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:302 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: include/datetime.php:474 include/items.php:2500 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: include/datetime.php:475 include/items.php:2501 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." - -#: include/identity.php:95 include/identity.php:284 include/identity.php:662 -msgid "Edit profile" -msgstr "Modifica il profilo" - -#: include/identity.php:244 -msgid "Atom feed" -msgstr "Feed Atom" - -#: include/identity.php:249 -msgid "Message" -msgstr "Messaggio" - -#: include/identity.php:255 include/nav.php:185 -msgid "Profiles" -msgstr "Profili" - -#: include/identity.php:255 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: include/identity.php:425 include/identity.php:509 -msgid "g A l F d" -msgstr "g A l d F" - -#: include/identity.php:426 include/identity.php:510 -msgid "F d" -msgstr "d F" - -#: include/identity.php:471 include/identity.php:556 -msgid "[today]" -msgstr "[oggi]" - -#: include/identity.php:483 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: include/identity.php:484 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: include/identity.php:543 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: include/identity.php:567 -msgid "Event Reminders" -msgstr "Promemoria" - -#: include/identity.php:568 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: include/identity.php:595 -msgid "j F, Y" -msgstr "j F Y" - -#: include/identity.php:596 -msgid "j F" -msgstr "j F" - -#: include/identity.php:603 -msgid "Birthday:" -msgstr "Compleanno:" - -#: include/identity.php:607 -msgid "Age:" -msgstr "Età:" - -#: include/identity.php:616 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: include/identity.php:629 -msgid "Religion:" -msgstr "Religione:" - -#: include/identity.php:633 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: include/identity.php:640 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: include/identity.php:642 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: include/identity.php:644 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: include/identity.php:646 -msgid "Television:" -msgstr "Televisione:" - -#: include/identity.php:648 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: include/identity.php:650 -msgid "Love/Romance:" -msgstr "Amore:" - -#: include/identity.php:652 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: include/identity.php:654 -msgid "School/education:" -msgstr "Scuola:" - -#: include/identity.php:658 -msgid "Forums:" -msgstr "Forum:" - -#: include/identity.php:710 include/identity.php:713 include/nav.php:78 -msgid "Videos" -msgstr "Video" - -#: include/identity.php:725 include/nav.php:140 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/identity.php:733 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: include/like.php:167 include/conversation.php:122 -#: include/conversation.php:258 include/text.php:1998 -#: view/theme/diabook/theme.php:463 -msgid "event" -msgstr "l'evento" - -#: include/like.php:184 include/conversation.php:141 include/diaspora.php:2185 -#: 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" - -#: include/like.php:186 include/conversation.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: include/like.php:188 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s parteciperà a %3$s di %2$s" - -#: include/like.php:190 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s non parteciperà a %3$s di %2$s" - -#: include/like.php:192 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s forse parteciperà a %3$s di %2$s" - -#: include/acl_selectors.php:325 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:330 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:336 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 -msgid "show" -msgstr "mostra" - -#: include/acl_selectors.php:338 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "non mostrare" - -#: include/acl_selectors.php:348 -msgid "Close" -msgstr "Chiudi" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[nessun oggetto]" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/Contact.php:337 include/conversation.php:911 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/Contact.php:339 include/conversation.php:913 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/Contact.php:340 include/conversation.php:914 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/Contact.php:341 include/conversation.php:915 -msgid "Edit Contact" -msgstr "Modifica contatto" - -#: include/Contact.php:342 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/Contact.php:343 include/conversation.php:916 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/Contact.php:344 include/conversation.php:920 -msgid "Poke" -msgstr "Stuzzica" - -#: 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: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/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s partecipa a %3$s di %2$s" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s non partecipa a %3$s di %2$s" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s forse partecipa a %3$s di %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:304 -#, 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:792 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:796 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:910 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:1034 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:1037 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1040 -#, php-format -msgid "%s attends." -msgstr "%s partecipa." - -#: include/conversation.php:1043 -#, php-format -msgid "%s doesn't attend." -msgstr "%s non partecipa." - -#: include/conversation.php:1046 -#, php-format -msgid "%s attends maybe." -msgstr "%s forse partecipa." - -#: include/conversation.php:1056 -msgid "and" -msgstr "e" - -#: include/conversation.php:1062 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:1071 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:1072 -#, php-format -msgid "%s like this." -msgstr "a %s piace." - -#: include/conversation.php:1075 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:1076 -#, php-format -msgid "%s don't like this." -msgstr "a %s non piace." - -#: include/conversation.php:1079 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d persone partecipano" - -#: include/conversation.php:1080 -#, php-format -msgid "%s attend." -msgstr "%s partecipa." - -#: include/conversation.php:1083 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d persone non partecipano" - -#: include/conversation.php:1084 -#, php-format -msgid "%s don't attend." -msgstr "%s non partecipa." - -#: include/conversation.php:1087 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "%2$d persone forse partecipano" - -#: include/conversation.php:1088 -#, php-format -msgid "%s anttend maybe." -msgstr "%s forse partecipano." - -#: include/conversation.php:1127 include/conversation.php:1145 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1129 include/conversation.php:1147 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1130 include/conversation.php:1148 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1131 include/conversation.php:1149 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1133 include/conversation.php:1151 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1134 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1203 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1226 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1227 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1228 -msgid "Private post" -msgstr "Post privato" - -#: include/conversation.php:1385 -msgid "View all" -msgstr "Mostra tutto" - -#: include/conversation.php:1407 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: include/conversation.php:1410 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" - -#: include/conversation.php:1416 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" - -#: include/conversation.php:1419 include/profile_selectors.php:6 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" - -#: include/forums.php:105 include/text.php:1015 include/nav.php:126 -#: view/theme/vier/theme.php:259 +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "mostra di più" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 msgid "Forums" msgstr "Forum" -#: include/forums.php:107 view/theme/vier/theme.php:261 +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 msgid "External link to forum" msgstr "Link esterno al forum" -#: include/network.php:967 -msgid "view full size" -msgstr "vedi a schermo intero" - -#: include/text.php:303 -msgid "newer" -msgstr "nuovi" - -#: include/text.php:305 -msgid "older" -msgstr "vecchi" - -#: include/text.php:310 -msgid "prev" -msgstr "prec" - -#: include/text.php:312 -msgid "first" -msgstr "primo" - -#: include/text.php:344 -msgid "last" -msgstr "ultimo" - -#: include/text.php:347 -msgid "next" -msgstr "succ" - -#: include/text.php:402 -msgid "Loading more entries..." -msgstr "Carico più elementi..." - -#: include/text.php:403 -msgid "The end" -msgstr "Fine" - -#: include/text.php:894 -msgid "No contacts" -msgstr "Nessun contatto" - -#: include/text.php:909 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: include/text.php:921 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: include/text.php:1010 include/nav.php:121 -msgid "Full Text" -msgstr "Testo Completo" - -#: include/text.php:1011 include/nav.php:122 -msgid "Tags" -msgstr "Tags:" - -#: include/text.php:1066 -msgid "poke" -msgstr "stuzzica" - -#: include/text.php:1066 -msgid "poked" -msgstr "ha stuzzicato" - -#: include/text.php:1067 -msgid "ping" -msgstr "invia un ping" - -#: include/text.php:1067 -msgid "pinged" -msgstr "ha inviato un ping" - -#: include/text.php:1068 -msgid "prod" -msgstr "pungola" - -#: include/text.php:1068 -msgid "prodded" -msgstr "ha pungolato" - -#: include/text.php:1069 -msgid "slap" -msgstr "schiaffeggia" - -#: include/text.php:1069 -msgid "slapped" -msgstr "ha schiaffeggiato" - -#: include/text.php:1070 -msgid "finger" -msgstr "tocca" - -#: include/text.php:1070 -msgid "fingered" -msgstr "ha toccato" - -#: include/text.php:1071 -msgid "rebuff" -msgstr "respingi" - -#: include/text.php:1071 -msgid "rebuffed" -msgstr "ha respinto" - -#: include/text.php:1085 -msgid "happy" -msgstr "felice" - -#: include/text.php:1086 -msgid "sad" -msgstr "triste" - -#: include/text.php:1087 -msgid "mellow" -msgstr "rilassato" - -#: include/text.php:1088 -msgid "tired" -msgstr "stanco" - -#: include/text.php:1089 -msgid "perky" -msgstr "vivace" - -#: include/text.php:1090 -msgid "angry" -msgstr "arrabbiato" - -#: include/text.php:1091 -msgid "stupified" -msgstr "stupefatto" - -#: include/text.php:1092 -msgid "puzzled" -msgstr "confuso" - -#: include/text.php:1093 -msgid "interested" -msgstr "interessato" - -#: include/text.php:1094 -msgid "bitter" -msgstr "risentito" - -#: include/text.php:1095 -msgid "cheerful" -msgstr "giocoso" - -#: include/text.php:1096 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1097 -msgid "annoyed" -msgstr "annoiato" - -#: include/text.php:1098 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1099 -msgid "cranky" -msgstr "irritabile" - -#: include/text.php:1100 -msgid "disturbed" -msgstr "disturbato" - -#: include/text.php:1101 -msgid "frustrated" -msgstr "frustato" - -#: include/text.php:1102 -msgid "motivated" -msgstr "motivato" - -#: include/text.php:1103 -msgid "relaxed" -msgstr "rilassato" - -#: include/text.php:1104 -msgid "surprised" -msgstr "sorpreso" - -#: include/text.php:1504 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1536 include/text.php:1548 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: include/text.php:1722 -msgid "View on separate page" -msgstr "Vedi in una pagina separata" - -#: include/text.php:1723 -msgid "view on separate page" -msgstr "vedi in una pagina separata" - -#: include/text.php:2002 -msgid "activity" -msgstr "attività" - -#: include/text.php:2005 -msgid "post" -msgstr "messaggio" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: include/bbcode.php:482 include/bbcode.php:1157 include/bbcode.php:1158 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: include/bbcode.php:595 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:629 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" - -#: include/bbcode.php:1117 include/bbcode.php:1137 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1166 include/bbcode.php:1167 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/dba_pdo.php:72 include/dba.php:55 -#, 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:81 -msgid "Facebook" -msgstr "Facebook" - -#: 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 "GNU Social" -msgstr "GNU Social" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:624 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 -msgid "Starts:" -msgstr "Inizia:" - -#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 -msgid "Finishes:" -msgstr "Finisce:" - -#: include/plugin.php:522 include/plugin.php:524 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:530 -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:535 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/nav.php:72 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: include/nav.php:76 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: include/nav.php:77 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Le tue foto" - -#: include/nav.php:78 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:79 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "I tuoi eventi" - -#: include/nav.php:80 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Note personali" - -#: include/nav.php:80 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:91 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:104 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:108 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:113 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:116 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:118 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:136 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:138 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:142 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:142 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:144 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:144 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:154 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:155 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:155 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:162 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:166 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:167 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:171 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:172 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:173 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:177 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:177 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:182 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:185 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:187 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:194 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:198 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:198 -msgid "Site map" -msgstr "Mappa del sito" - -#: include/api.php:878 -#, 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:897 -#, 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:916 -#, 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/user.php:48 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: include/user.php:113 -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:118 -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:121 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: include/user.php:157 -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:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "default" - -#: include/user.php:266 -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:299 include/user.php:303 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amici" - -#: include/user.php:387 -#, 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:391 -#, 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/diaspora.php:720 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: include/diaspora.php:2625 -msgid "Attachments:" -msgstr "Allegati:" - -#: include/delivery.php:533 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: include/delivery.php:544 include/enotify.php:37 -msgid "noreply" -msgstr "nessuna risposta" - -#: include/items.php:4926 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" - -#: include/items.php:5201 -msgid "Archives" -msgstr "Archivi" - #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -7862,6 +183,12 @@ msgstr "Non specificato" msgid "Other" msgstr "Altro" +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + #: include/profile_selectors.php:23 msgid "Males" msgstr "Maschi" @@ -7950,6 +277,10 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Amici" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -8034,301 +365,299 @@ msgstr "Non interessa" 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:24 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: include/enotify.php:26 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, amministratore di %2$s" +#: include/auth.php:45 +msgid "Logged out." +msgstr "Uscita effettuata." -#: include/enotify.php:68 -#, php-format -msgid "%s " -msgstr "%s " +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Accesso fallito." -#: include/enotify.php:82 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" - -#: include/enotify.php:84 -#, 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:85 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha inviato %2$s" - -#: include/enotify.php:85 -msgid "a private message" -msgstr "un messaggio privato" - -#: include/enotify.php:86 -#, 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:138 -#, 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:145 -#, 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:153 -#, 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:163 -#, 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:164 -#, 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:167 include/enotify.php:182 include/enotify.php:195 -#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 -#, 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:174 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" - -#: include/enotify.php:176 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha scritto sulla tua bacheca su %2$s" - -#: include/enotify.php:178 -#, 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:189 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" - -#: include/enotify.php:190 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s ti ha taggato su %2$s" - -#: include/enotify.php:191 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]ti ha taggato[/url]." - -#: include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" - -#: include/enotify.php:203 -#, 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:204 -#, 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:216 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" - -#: include/enotify.php:217 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" - -#: include/enotify.php:218 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." - -#: include/enotify.php:233 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" - -#: include/enotify.php:234 -#, 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:235 -#, 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:246 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" - -#: include/enotify.php:247 -#, 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:248 -#, 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:251 include/enotify.php:293 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" - -#: include/enotify.php:253 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." - -#: include/enotify.php:261 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" - -#: include/enotify.php:262 include/enotify.php:263 -#, 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:269 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notifica] Una nuova persona ti segue" - -#: include/enotify.php:270 include/enotify.php:271 -#, 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:284 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" - -#: include/enotify.php:285 -#, 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:286 -#, php-format +#: include/auth.php:132 include/user.php:75 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" +"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/enotify.php:291 -msgid "Name:" -msgstr "Nome:" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" -#: include/enotify.php:292 -msgid "Photo:" -msgstr "Foto:" - -#: include/enotify.php:295 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." - -#: include/enotify.php:303 include/enotify.php:316 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notifica] Connessione accettata" - -#: include/enotify.php:304 include/enotify.php:317 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" - -#: include/enotify.php:305 include/enotify.php:318 -#, 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:308 +#: include/group.php:25 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" +"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/enotify.php:311 include/enotify.php:325 +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Tutti" + +#: include/group.php:265 +msgid "edit" +msgstr "modifica" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Gruppi" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "Modifica gruppi" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "aggiungi" + +#: 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 "Losco, venditore di fumo" + +#: 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:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Frequentemente" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Ogni ora" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Giornalmente" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Email" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "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 "GNU Social" +msgstr "GNU Social" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "Hubzilla/Redmatrix" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Invia a email" + +#: include/acl_selectors.php:332 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Visita %s se desideri modificare questo collegamento." +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." -#: include/enotify.php:321 +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "mostra" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "non mostrare" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Permessi" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Chiudi" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "stato" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "l'evento" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, 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." +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: include/enotify.php:323 +#: include/like.php:184 include/conversation.php:144 #, 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." +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: include/enotify.php:336 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Notifica] richiesta di registrazione" - -#: include/enotify.php:337 +#: include/like.php:186 #, 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" +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s parteciperà a %3$s di %2$s" -#: include/enotify.php:338 +#: include/like.php:188 #, 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." +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s non parteciperà a %3$s di %2$s" -#: include/enotify.php:341 +#: include/like.php:190 #, 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)" +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s forse parteciperà a %3$s di %2$s" -#: include/enotify.php:344 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Visita %s per approvare o rifiutare la richiesta." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[nessun oggetto]" -#: include/oembed.php:226 -msgid "Embedded content" -msgstr "Contenuto incorporato" +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Foto della bacheca" -#: include/oembed.php:235 -msgid "Embedding disabled" -msgstr "Embed disabilitato" +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:534 +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:539 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." #: include/uimport.php:94 msgid "Error decoding account file" @@ -8353,7 +682,7 @@ msgstr "Errore creando l'utente" #: include/uimport.php:173 msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" +msgstr "Errore creando il profilo dell'utente" #: include/uimport.php:222 #, php-format @@ -8366,34 +695,8071 @@ 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" -#: index.php:442 -msgid "toggle mobile" -msgstr "commuta tema mobile" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Varie" -#: 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)" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Compleanno:" -#: 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" +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Età : " -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG o MM-GG" -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" +#: include/datetime.php:341 +msgid "never" +msgstr "mai" -#: 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" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" +#: include/datetime.php:350 +msgid "year" +msgstr "anno" + +#: include/datetime.php:350 +msgid "years" +msgstr "anni" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "mese" + +#: include/datetime.php:351 +msgid "months" +msgstr "mesi" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "settimana" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "settimane" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "giorno" + +#: include/datetime.php:353 +msgid "days" +msgstr "giorni" + +#: include/datetime.php:354 +msgid "hour" +msgstr "ora" + +#: include/datetime.php:354 +msgid "hours" +msgstr "ore" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minuti" + +#: include/datetime.php:356 +msgid "second" +msgstr "secondo" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "secondi" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Notifica Friendica" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Grazie," + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, amministratore di %2$s" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" + +#: include/enotify.php:85 +#, 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:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha inviato %2$s" + +#: include/enotify.php:86 +msgid "a private message" +msgstr "un messaggio privato" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per vedere e/o rispondere ai tuoi messaggi privati." + +#: 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: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: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: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:161 +#, 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:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, 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:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" + +#: include/enotify.php:173 +#, 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: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:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s ti ha taggato" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato su %2$s" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]ti ha taggato[/url]." + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" + +#: include/enotify.php:201 +#, 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:202 +#, 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:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha stuzzicato su %2$s" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" + +#: include/enotify.php:233 +#, 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:234 +#, 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:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" + +#: include/enotify.php:247 +#, 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:248 +#, 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:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo presso %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s per approvare o rifiutare la presentazione." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" + +#: include/enotify.php:264 include/enotify.php:265 +#, 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:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notifica] Una nuova persona ti segue" + +#: include/enotify.php:273 include/enotify.php:274 +#, 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:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" + +#: include/enotify.php:287 +#, 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:288 +#, 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:293 +msgid "Name:" +msgstr "Nome:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notifica] Connessione accettata" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" + +#: include/enotify.php:308 include/enotify.php:322 +#, 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:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni." + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Visita %s se vuoi modificare questa relazione." + +#: include/enotify.php:326 +#, 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 possibilità di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." + +#: include/enotify.php:328 +#, 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ò scegliere di estendere questa relazione in una relazione più permissiva in futuro." + +#: include/enotify.php:330 +#, 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:340 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Notifica] richiesta di registrazione" + +#: include/enotify.php:342 +#, 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:343 +#, 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:347 +#, 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:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Visita %s per approvare o rifiutare la richiesta." + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Inizia:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Finisce:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Posizione:" + +#: include/event.php:441 +msgid "Sun" +msgstr "Dom" + +#: include/event.php:442 +msgid "Mon" +msgstr "Lun" + +#: include/event.php:443 +msgid "Tue" +msgstr "Mar" + +#: include/event.php:444 +msgid "Wed" +msgstr "Mer" + +#: include/event.php:445 +msgid "Thu" +msgstr "Gio" + +#: include/event.php:446 +msgid "Fri" +msgstr "Ven" + +#: include/event.php:447 +msgid "Sat" +msgstr "Sab" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Domenica" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Lunedì" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Martedì" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Mercoledì" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Giovedì" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Venerdì" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Sabato" + +#: include/event.php:455 +msgid "Jan" +msgstr "Gen" + +#: include/event.php:456 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:457 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:458 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Maggio" + +#: include/event.php:460 +msgid "Jun" +msgstr "Giu" + +#: include/event.php:461 +msgid "Jul" +msgstr "Lug" + +#: include/event.php:462 +msgid "Aug" +msgstr "Ago" + +#: include/event.php:463 +msgid "Sept" +msgstr "Set" + +#: include/event.php:464 +msgid "Oct" +msgstr "Ott" + +#: include/event.php:465 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:466 +msgid "Dec" +msgstr "Dic" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Gennaio" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Febbraio" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Marzo" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Aprile" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Giugno" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Luglio" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Agosto" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Settembre" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Ottobre" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Novembre" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Dicembre" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "oggi" + +#: include/event.php:483 +msgid "all-day" +msgstr "tutto il giorno" + +#: include/event.php:485 +msgid "No events to display" +msgstr "Nessun evento da mostrare" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l j F" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: include/event.php:850 +msgid "Export" +msgstr "Esporta" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "Esporta il calendario in formato ical" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "Esporta il calendario in formato csv" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "@nome, !forum, #tag, contenuto" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Esci" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Stato" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profilo" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Foto" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Le tue foto" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Video" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Eventi" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "I tuoi eventi" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Note personali" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Accedi" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Home" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registrati" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Guida" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Cerca" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "Testo Completo" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "Tags:" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Contatti" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Comunità" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:154 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Rete" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Presentazioni" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notifiche" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Messaggi" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegazioni" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Impostazioni" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profili" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Amministrazione" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: 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:373 +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 lungo (più di tre ore) prima di inviarla." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistema" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Personale" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s partecipa all'evento di %s" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s non partecipa all'evento di %s" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s potrebbe partecipare all'evento di %s" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: 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:183 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/network.php:595 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "Mostra contatto" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Stuzzica" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "Organizzazione" + +#: include/Contact.php:778 +msgid "News" +msgstr "Notizie" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "Forum" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:1038 +#, 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:1059 +#, 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/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "Protocollo sorgente non valido" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "Protocollo link non valido" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s partecipa a %3$s di %2$s" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s non partecipa a %3$s di %2$s" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s forse partecipa a %3$s di %2$s" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:304 +#, 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:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Mi piace" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Non mi piace" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "Non partecipa" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "Forse partecipa" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Seleziona" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Rimuovi" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Categorie:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Attendi" + +#: include/conversation.php:870 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "%s partecipa." + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "%s forse partecipa." + +#: include/conversation.php:1119 +msgid "and" +msgstr "e" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "a %s piace." + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "a %s non piace." + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d persone partecipano" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "%s partecipa." + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d persone non partecipano" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d persone forse partecipano" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "%s forse partecipano." + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Condividi" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Carica foto" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "carica foto" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Allega file" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "allega file" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Inserisci link" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "link web" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "link video" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "link audio" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "La tua posizione" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "posizione" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "canc. pos." + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Scegli un titolo" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Anteprima" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Annulla" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Post privato" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Messaggio" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "Mostra tutto" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "compleanno di %s" + +#: include/features.php:70 +msgid "General Features" +msgstr "Funzionalità generali" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "Località Foto" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa." + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "Esporta calendario pubblico" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "Permesso ai visitatori di scaricare il calendario pubblico" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "Editor visuale" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "Anteprima dei post" + +#: include/features.php:81 +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:82 +msgid "Auto-mention Forums" +msgstr "Auto-cita i Forum" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Aggiunge/rimuove una menzione quando una pagina forum è selezionata/deselezionata nella finestra dei permessi." + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Cerca per data" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "Elenco forum" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "Abilita il widget che mostra i forum ai quali sei connesso" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "Filtra gruppi" + +#: include/features.php:90 +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:91 +msgid "Network Filter" +msgstr "Filtro reti" + +#: include/features.php:91 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Abilita il widget per mostrare i post solo per la rete selezionata" + +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "Schede pagina Rete" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "Scheda Personali" + +#: include/features.php:98 +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:99 +msgid "Network New Tab" +msgstr "Scheda Nuovi" + +#: include/features.php:99 +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:100 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" + +#: include/features.php:100 +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:105 +msgid "Post/Comment Tools" +msgstr "Strumenti per messaggi/commenti" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messaggi e commenti in una volta sola" + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" + +#: include/features.php:108 +msgid "Tagging" +msgstr "Aggiunta tag" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "Categorie post" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "Post preferiti" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "Silenzia le notifiche di nuovi post" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "Impostazioni Avanzate Profilo" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: include/follow.php:113 +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:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL può essere associato a questo indirizzo." + +#: include/follow.php:140 +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:141 +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:147 +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:157 +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:258 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "Feed Atom" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Modifica visibilità" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Genere:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Stato:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Homepage:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Informazioni:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Rete:" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A l d F" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "d F" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[oggi]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Promemoria" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Nome completo:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Età:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Paese natale:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Tag:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religione:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Mi piace:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Televisione:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Amore:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Scuola:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "Forum:" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "Base" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Avanzate" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Album foto" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Note personali" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Si" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Permesso negato." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Archivi" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Embed disabilitato" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "%s sta seguendo %s" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "segue" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "%s ha smesso di seguire %s" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: include/text.php:304 +msgid "newer" +msgstr "nuovi" + +#: include/text.php:306 +msgid "older" +msgstr "vecchi" + +#: include/text.php:311 +msgid "prev" +msgstr "prec" + +#: include/text.php:313 +msgid "first" +msgstr "primo" + +#: include/text.php:345 +msgid "last" +msgstr "ultimo" + +#: include/text.php:348 +msgid "next" +msgstr "succ" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Carico più elementi..." + +#: include/text.php:404 +msgid "The end" +msgstr "Fine" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Nessun contatto" + +#: include/text.php:912 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: include/text.php:925 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Salva" + +#: include/text.php:1076 +msgid "poke" +msgstr "stuzzica" + +#: include/text.php:1076 +msgid "poked" +msgstr "ha stuzzicato" + +#: include/text.php:1077 +msgid "ping" +msgstr "invia un ping" + +#: include/text.php:1077 +msgid "pinged" +msgstr "ha inviato un ping" + +#: include/text.php:1078 +msgid "prod" +msgstr "pungola" + +#: include/text.php:1078 +msgid "prodded" +msgstr "ha pungolato" + +#: include/text.php:1079 +msgid "slap" +msgstr "schiaffeggia" + +#: include/text.php:1079 +msgid "slapped" +msgstr "ha schiaffeggiato" + +#: include/text.php:1080 +msgid "finger" +msgstr "tocca" + +#: include/text.php:1080 +msgid "fingered" +msgstr "ha toccato" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "respingi" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "ha respinto" + +#: include/text.php:1095 +msgid "happy" +msgstr "felice" + +#: include/text.php:1096 +msgid "sad" +msgstr "triste" + +#: include/text.php:1097 +msgid "mellow" +msgstr "rilassato" + +#: include/text.php:1098 +msgid "tired" +msgstr "stanco" + +#: include/text.php:1099 +msgid "perky" +msgstr "vivace" + +#: include/text.php:1100 +msgid "angry" +msgstr "arrabbiato" + +#: include/text.php:1101 +msgid "stupified" +msgstr "stupefatto" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "confuso" + +#: include/text.php:1103 +msgid "interested" +msgstr "interessato" + +#: include/text.php:1104 +msgid "bitter" +msgstr "risentito" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "giocoso" + +#: include/text.php:1106 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "annoiato" + +#: include/text.php:1108 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1109 +msgid "cranky" +msgstr "irritabile" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "disturbato" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "frustato" + +#: include/text.php:1112 +msgid "motivated" +msgstr "motivato" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "rilassato" + +#: include/text.php:1114 +msgid "surprised" +msgstr "sorpreso" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Guarda Video" + +#: include/text.php:1356 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "Vedi in una pagina separata" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "vedi in una pagina separata" + +#: include/text.php:1806 +msgid "activity" +msgstr "attività" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: include/text.php:1809 +msgid "post" +msgstr "messaggio" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: include/user.php:113 +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:118 +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:121 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: include/user.php:157 +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:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "default" + +#: include/user.php:266 +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:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\nCaro %1$s,\n Grazie per la tua registrazione su %2$s. Il tuo account è in attesa di approvazione da parte di un amministratore.\n " + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "Registrazione su %s" + +#: include/user.php:434 +#, 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:438 +#, 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:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "Solo agli utenti autenticati è permesso eseguire ricerche." + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "Troppe richieste" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati." + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Nessun risultato." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "Risultati per: %s" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:73 +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:75 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:76 +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:90 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/componenti aggiuntivi/applicazioni installate" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/componente aggiuntivo/applicazione installata" + +#: 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 precedentemente). Reimpostazione password fallita." + +#: mod/lostpass.php:109 boot.php:1807 +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 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Non trovato" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: 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/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:60 +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/uimport.php:50 mod/register.php:198 +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/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Importa" + +#: 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 (GNU Social/Statusnet) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) 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/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Modifica contatto" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "Esporta account" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "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:30 +msgid "Export all" +msgstr "Esporta tutto" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può 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/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Esporta dati personali" + +#: 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 "Unisciti 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 registrati 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:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: 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 ad unirti a me e 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/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Invia" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "File" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Permesso negato" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Identificativo del profilo non valido." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visibile a" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: 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/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "Risottoscrivi i contatti OStatus" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Errore" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "Fatto" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "Tieni questa finestra aperta fino a che ha finito." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: 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 grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni 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 "Nessuna voce." + +#: mod/credits.php:16 +msgid "Credits" +msgstr "Crediti" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: 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/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/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare i componenti aggiuntivi." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Not Extended" + +#: 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 mod/profile_photo.php:250 mod/profiles.php:707 +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:51 +msgid "Importing Emails" +msgstr "Importare le Email" + +#: mod/newmember.php:51 +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 "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" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Vai alla tua pagina Contatti" + +#: mod/newmember.php:53 +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 "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:55 +msgid "Go to Your Site's Directory" +msgstr "Vai all'Elenco del tuo sito" + +#: mod/newmember.php:55 +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:57 +msgid "Finding New People" +msgstr "Trova nuove persone" + +#: mod/newmember.php:57 +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:65 +msgid "Group Your Contacts" +msgstr "Raggruppa i tuoi contatti" + +#: mod/newmember.php:65 +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:68 +msgid "Why Aren't My Posts Public?" +msgstr "Perché i miei post non sono pubblici?" + +#: mod/newmember.php:68 +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 privacy. 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:73 +msgid "Getting Help" +msgstr "Ottenere Aiuto" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Vai alla sezione Guida" + +#: mod/newmember.php:77 +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/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/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversione Ora" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membri" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Tutti i contatti" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: 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:71 +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:78 +msgid "Message could not be sent." +msgstr "Il messaggio non può essere inviato." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: mod/wallmessage.php:68 mod/message.php:84 +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:341 +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:342 mod/message.php:536 +msgid "To:" +msgstr "A:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Oggetto:" + +#: mod/share.php:38 +msgid "link" +msgstr "collegamento" + +#: 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/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "No" + +#: 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/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "Iscrizione a contatti OStatus" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Nessun contatto disponibile." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "Non è stato possibile recuperare le informazioni del contatto." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "Non è stato possibile recuperare gli amici del contatto." + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "successo" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "fallito" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "ignorato" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Nessun messaggio." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: mod/message.php:531 +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:535 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci identità e/o pagine" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/crepair.php:120 +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:121 +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:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "Io remoto" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:161 +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 re invii i nuovi messaggi da questo contatto." + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Nome" + +#: 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/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Messaggio privato" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "mi piace" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "non mi piace" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Condividi questo" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "condividi" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Questo sei tu" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Commento" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Grassetto" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Corsivo" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Sottolineato" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Citazione" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Codice" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Immagine" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Modifica" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "aggiungi a speciali" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "preferito" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "aggiungi tag" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "salva nella cartella" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "Parteciperò" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "Non parteciperò" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "Forse parteciperò" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "a" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: 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/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/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/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:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento dell'immagine [%s] è fallito." + +#: mod/profile_photo.php:124 +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." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Carica un file:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Carica" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per una visualizzazione migliore." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Finito" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: 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/notifications.php:35 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignora" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "suggerito da %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "se applicabile" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:196 +msgid "no" +msgstr "no" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "URL Profilo" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "Mostra non letti" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "Mostra tutti" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "Nessun'altra notifica %s." + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilo eliminato." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profilo-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Stato civile" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Religione" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Orientamento Politico" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Sesso" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Homepage" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Interessi" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Indirizzo" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Posizione" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: mod/profiles.php:564 +msgid " and " +msgstr "e " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "profilo pubblico" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" + +#: mod/profiles.php:579 +#, 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:645 +msgid "Hide contacts and friends:" +msgstr "Nascondi contatti:" + +#: mod/profiles.php:650 +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:674 +msgid "Show more profile fields:" +msgstr "Mostra più informazioni di profilo:" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "Azioni Profilo" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Visualizza questo profilo" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "Informazioni di base" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "Immagine del profilo" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "Preferenze" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "Informazioni stato" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "Informazioni aggiuntive" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "Relazione" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Il tuo sesso:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Richiesto" + +#: mod/profiles.php:718 +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:719 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Località:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Nazione:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Dal [data]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "Indirizzo XMPP (Jabber):" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "L'indirizzo XMPP verrà propagato ai tuoi contatti così che possano seguirti." + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: mod/profiles.php:740 +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:741 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Televisione" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Amore" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Scuola/educazione" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "Mostra" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Precedente" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Successivo" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "lista" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "Utente non trovato" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "Questo formato di calendario non è supportato" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "Nessun dato esportabile trovato" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "calendario" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Amici in comune" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "Risultati per:" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Cerca persone - %s" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "Ricerca Forum - %s" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Nessun risultato" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "Un evento non può finire prima di iniziare." + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: mod/match.php:33 +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:86 +msgid "is interested in:" +msgstr "è interessato a:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: mod/suggest.php:71 +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:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "tutti" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Album non trovato." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: mod/photos.php:230 +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:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: mod/photos.php:688 +#, 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:688 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: mod/photos.php:1114 +#, 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:1148 +msgid "Upload Photos" +msgstr "Carica foto" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Foto privata" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Modifica album" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Vedi foto" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Vedi foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Modifica foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Tag: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Titolo" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "Non ruotare" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Foto privata" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "Mappa" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: mod/register.php:98 +#, 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 "Registration successful." +msgstr "Registrazione completata." + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte del proprietario del sito." + +#: mod/register.php:226 +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:227 +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:228 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "Nota per l'amministratore" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Lascia un messaggio per l'amministratore, per esempio perché vuoi registrarti su questo nodo" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Registrazione" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): " + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "Lascia vuoto per generare automaticamente una password." + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Conferma:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Account" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Visualizzazione" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "Social Networks" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Plugin" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Applicazioni collegate" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Rimuovi account" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Aggiorna" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Funzionalità aggiornate" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Password sbagliata." + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Password cambiata." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Nome troppo corto." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Password Sbagliata" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Email non valida." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: mod/settings.php:557 +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:561 +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:601 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Aggiungi applicazione" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "Url icona" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Nessun nome" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Spento" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Acceso" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "Impostazioni Media Sociali" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "Disabilita accorciamento intelligente" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "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:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Segui automaticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "Gruppo di default per i contatti OStatus" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "Il tuo vecchio account GNU Social" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato." + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "Ripara le iscrizioni OStatus" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "abilitato" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "disabilitato" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Sicurezza:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Nessuna" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Password email:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Tema:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "Sopprimi avvisi reti insicure" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "Il sistema sopprimerà l'avviso che il gruppo selezionato contiene membri di reti che non possono ricevere post non pubblici." + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: mod/settings.php:1005 +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:1006 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "Calendario" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "Inizio della settimana:" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "Non mostrare gli avvisi" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "Scroll infinito" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "Modalità Salva Banda" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "Quando abilitato, il contenuto embeddato non è mostrato quando la pagina si aggiorna automaticamente, ma solo quando la pagina viene ricaricata." + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "Opzioni Generali Tema" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "Opzioni Personalizzate Tema" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "Opzioni Contenuto" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "Tipi di Account" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "Sottotipi di Pagine Personali" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "Sottotipi di Community Forum" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "Pagina Personale" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "Questo account è un profilo personale regolare" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "Pagina Organizzazione" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "Questo account è il profilo per un'organizzazione" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "Pagina Notizie" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "Questo account è un account di notizie" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "Community Forum" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "Questo account è un forum comunitario dove le persone possono discutere tra loro" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: mod/settings.php:1129 +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:1132 +msgid "Public Forum" +msgstr "Forum Pubblico" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "Approva automaticamente tutte le richieste di contatto" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: mod/settings.php:1177 +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:1181 +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:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" + +#: mod/settings.php:1198 +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:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "L'indirizzo della tua identità è '%s' or '%s'." + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scadenza" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "La tua lingua:" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "Attiva notifiche desktop" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "Email di notifica in solo testo" + +#: mod/settings.php:1341 +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:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "Trasloca" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "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:1349 +msgid "Resend relocate message to contacts" +msgstr "Invia nuovamente il messaggio di trasloco ai contatti" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "Vuoi veramente cancellare questo video?" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "Rimuovi video" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Nessun video selezionato" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "Statistiche sulla Federazione" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "Vedi i log" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "sconosciuto" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza." + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "La funzione Elenco Contatti Scoperto Automaticamente non è abilitata, migliorerà i dati visualizzati qui." + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "Attualmente questo nodo conosce %d nodi dalle seguenti piattaforme:" + +#: mod/admin.php:408 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:412 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Questa pagina elenca il contenuto della coda di invio dei post. Questi sono post la cui consegna è fallita. Verranno inviati nuovamente più tardi ed eventualmente cancellati se la consegna continua a fallire." + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
" +msgstr "Il tuo database sta girando ancora con tabelle MYISAM. Dovresti cambiare il tipo di motore a InnoDB, siccome Friendica userà solo tabelle InnoDB in futuro. Vedi qui per una guida che ti può essere utile per la conversione. Puoi anche usare il file convert_innodb.sql che trovi nella cartella /util della tua installazione di Friendica.
" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "Stai usando una versione di MySQL che non supporta tutte le funzionalità che Friendica usa. Dovresti considerare di utilizzare MariaDB." + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 necessita dell'estensione php mcrypt per funzionare." + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Mai" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:904 +msgid "One month" +msgstr "Un mese" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:907 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:941 +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:942 +msgid "Force all links to use SSL" +msgstr "Forza tutti i link ad usare SSL" + +#: mod/admin.php:943 +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:957 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "Worker" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Può rendere questo server irraggiungibile." + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browser." + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." + +#: mod/admin.php:973 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - può essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:976 +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:977 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:977 +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 può portare a loop senza fine" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:979 +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:980 +msgid "Single user instance" +msgstr "Istanza a singolo utente" + +#: mod/admin.php:980 +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:981 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:981 +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:982 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:982 +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:983 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:983 +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:985 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:986 +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:987 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:988 +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:989 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:989 +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 virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:990 +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:991 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:991 +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:992 +msgid "Force publish" +msgstr "Forza pubblicazione" + +#: mod/admin.php:992 +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:993 +msgid "Global directory URL" +msgstr "URL della directory globale" + +#: mod/admin.php:993 +msgid "" +"URL to 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:994 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:994 +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:995 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:995 +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:996 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:996 +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:997 +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:997 +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 ai componenti aggiuntivi nel menu applicazioni" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:998 +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 "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 può richiedere un po' di tempo." + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:999 +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 dell'utente." + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:1000 +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:1001 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:1002 +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 anti spam" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:1004 +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:1005 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:1005 +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 Comunità (non valido per 'Comunità globale')" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:1006 +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:1007 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:1007 +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 può richiedere molte risorse." + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "Importa conversazioni OStatus solo dai nostri contatti." + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "Normalmente importiamo tutto il contenuto dai contatti OStatus. Con questa opzione salviamo solo le conversazioni iniziate da un contatto è conosciuto a questo nodo." + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Il supporto OStatus può essere abilitato solo se è abilitato il threading." + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sotto directory." + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:1013 +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:1014 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:1014 +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:1015 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:1017 +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:1018 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:1018 +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 condivisi, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:1019 +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:1020 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:1020 +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:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:1021 +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:1022 +msgid "Maximum table size for optimization" +msgstr "Dimensione massima della tabella per l'ottimizzazione" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo." + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "Livello minimo di frammentazione" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "Livello minimo di frammentazione per iniziare la procedura di ottimizzazione automatica - il valore di default è 30%." + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitalità dei contatti e dei server." + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "Giorni tra le richieste" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti." + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli utenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:1033 +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 può cercare solo per quattro o più caratteri." + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:1035 +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:1036 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:1037 +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:1038 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:1038 +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:1039 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:1042 +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 performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "Abilita la paginatura vecchio stile" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "La paginatura vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:1044 +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:1046 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "Attiva l'elaborazione in background con worker" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "L'elaborazione in background con worker limita il numero di lavori in background paralleli a un numero massimo e rispetta il carico di sistema." + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "Massimo numero di lavori in parallelo" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "Su host condivisi imposta a 2. Su sistemi più grandi, valori fino a 10 vanno bene. Il valore di default è 4." + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "Non usare 'proc_open' con il worker" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "Abilita se il tuo sistema non consente l'utilizzo di 'proc_open'. Può succedere con gli hosting condivisi. Se abiliti questa opzione, dovresti aumentare la frequenza delle chiamate al poller nel tuo crontab." + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "Abilita fastlane" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa." + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "Abilita worker da frontend" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "Quando abilitato, il processo è avviato quando viene eseguito un accesso al backend (per esempio, quando un messaggio viene consegnato). Su siti più piccoli potresti voler chiamare yourdomain.tld/worker regolarmente attraverso un cron esterno. Dovresti abilitare questa opzione solo se non puoi utilizzare cron sul tuo server. L'elaborazione in background con worker deve essere abilitata perchè questa opzione sia effettiva." + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:1095 +#, 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:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:1114 +#, 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:1116 +#, 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:1135 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:1142 +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:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\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:1181 +#, php-format +msgid "" +"\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." +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:1225 +#, 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:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "Nota dall'utente" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Blocca" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1427 +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:1428 +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:1438 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "Ricarica i plugin attivi" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale dei plugin su %1$s e potresti trovare altri plugin interessanti nell'open plugin repository su %2$s" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "Ricarica i temi attivi" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1$s" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "Log PHP abilitato." + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "Log PHP disabilitato" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Il server web deve avere i permessi di scrittura. Relativo alla tua directory Friendica." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "Log PHP" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "Per abilitare il log degli errori e degli avvisi di PHP puoi aggiungere le seguenti righe al file .htconfig.php nella tua installazione. La posizione del file impostato in 'error_log' è relativa alla directory principale della tua installazione Friendica e il server web deve avere i permessi di scrittura sul file. Il valore '1' per 'log_errors' e 'display_errors' abilita le opzioni, imposta '0' per disabilitarle." + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "Blocca funzionalità %s" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "Gestisci Funzionalità Aggiuntive" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contatto modificato." +msgstr[1] "%d contatti modificati" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Non è possibile accedere al contatto." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Contatto aggiornato." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Il contatto è stato bloccato" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Il contatto è stato sbloccato" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Il contatto è ignorato" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Il contatto non è più ignorato" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Il contatto è stato archiviato" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Il contatto è stato dearchiviato" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "Cancella contatto" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Vuoi veramente cancellare questo contatto?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sei amico reciproco con %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Stai condividendo con %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s sta condividendo con te" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Le comunicazioni private non sono disponibili per questo contatto." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Suggerisci amici" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Tipo di rete: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Comunicazione con questo contatto persa!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "Recupera maggiori informazioni per i feed" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "Recupera informazioni" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "Recupera informazioni e parole chiave" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "Contatto" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" + +#: mod/contacts.php:579 +#, 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:580 +msgid "Contact Information / Notes" +msgstr "Informazioni / Note sul contatto" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Modifica note contatto" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Blocca/Sblocca contatto" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignora il contatto" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Impostazioni riparazione URL" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Vedi conversazioni" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Aggiorna messaggi pubblici" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Non ignorare" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Bloccato" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Ignorato" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Al momento archiviato" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "Notifica per i nuovi messaggi" + +#: mod/contacts.php:614 +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:617 +msgid "Blacklisted keywords" +msgstr "Parole chiave in blacklist" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "Azioni" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "Impostazioni Contatto" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Suggerisci potenziali amici" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Mostra tutti i contatti" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Sbloccato" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Mostra solo contatti non bloccati" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Bloccato" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Mostra solo contatti bloccati" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Ignorato" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Mostra solo contatti ignorati" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Archiviato" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Mostra solo contatti archiviati" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Nascosto" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Mostra solo contatti nascosti" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Cerca nei tuoi contatti" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Archivia" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Dearchivia" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "Azioni Batch" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "Vedi tutti gli amici in comune" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Rimuovi contatto" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo può accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: mod/dfrn_confirm.php:578 +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:599 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: mod/dfrn_confirm.php:613 +#, 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:633 +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:644 +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:703 +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:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +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:129 mod/dfrn_request.php:525 +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:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:277 +#, 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:278 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:279 +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:341 +msgid "Invalid locator" +msgstr "Indirizzo non valido" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:375 +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:478 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema." + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:674 +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:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:833 +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:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:860 +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:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto." + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto." + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto." + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "Database già in uso." + +#: mod/install.php:227 +msgid "System check" +msgstr "Controllo sistema" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Controlla ancora" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Connessione al database" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Nome del database server" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Password utente database" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Nome database" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "Lingua di Sistema:" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Imposta la lingua di default per l'interfaccia e l'invio delle email." + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "Versione PHP:" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "Binario PHP cli" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "modulo PHP mcrypt" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "Modulo PHP XML" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "modulo iconv" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "Errore: il modulo PHP iconv è richiesto ma non installato." + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "Se stai usando php_cli, controlla che il modulo mcrypt sia abilitato nel suo file di configurazione" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "funzione mcrypt_create_iv()" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "Errore, il modulo PHP XML è richiesto ma non installato." + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "L'estensione PHP ImageMagick non è installata" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "L'estensione PHP ImageMagick è installata" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supporta i GIF" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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." + +#: mod/install.php:605 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:992 +#, 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." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:995 +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." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici." +msgstr[1] "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici." + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "I messaggi in questo gruppo non saranno inviati ai quei contatti." + +#: mod/network.php:529 +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:534 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:856 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Nessun contatto." + +#: object/Item.php:370 +msgid "via" +msgstr "via" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "Ripeti l'immagine" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "Ripete l'immagine per riempire lo sfondo." + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "Stira" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "Stira l'immagine." + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "Scala e ritaglia" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "Scala l'immagine a riempire mantenendo le proporzioni." + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "Scala best fit" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "Scala l'immagine alla miglior dimensione per riempire mantenendo le proporzioni." + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "Default" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "Nota:" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "Controlla i permessi dell'immagine se tutti gli utenti sono autorizzati a vederla" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "Seleziona schema" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "Colore di sfondo barra di navigazione" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "Colore icona barra di navigazione" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "Colore link" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "Imposta il colore di sfondo" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "Trasparenza sfondo contenuto" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "Imposta l'immagine di sfondo" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "Ospite" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "Visitatore" #: view/theme/quattro/config.php:67 msgid "Alignment" @@ -8407,6 +8773,10 @@ msgstr "Sinistra" msgid "Center" msgstr "Centrato" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Schema colori" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Dimensione caratteri post" @@ -8415,95 +8785,29 @@ msgstr "Dimensione caratteri post" 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 -#: view/theme/vier/config.php:111 -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 view/theme/vier/config.php:112 -#: view/theme/vier/theme.php:156 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "Profili Comunità" -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 -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 view/theme/vier/config.php:114 -#: view/theme/vier/theme.php:377 -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 view/theme/vier/config.php:115 -#: view/theme/vier/theme.php:203 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 -#: view/theme/vier/theme.php:185 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 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/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Trova Amici" -#: 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 view/theme/vier/theme.php:204 +#: view/theme/vier/theme.php:200 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/vier/theme.php:291 +msgid "Quick Start" +msgstr "Quick Start" -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Servizi connessi" #: view/theme/vier/config.php:64 msgid "Comma separated list of helper forums" @@ -8513,9 +8817,13 @@ msgstr "Lista separata da virgola di forum di aiuto" msgid "Set style" msgstr "Imposta stile" -#: view/theme/vier/theme.php:295 -msgid "Quick Start" -msgstr "Quick Start" +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" #: view/theme/duepuntozero/config.php:45 msgid "greenzero" @@ -8544,3 +8852,56 @@ msgstr "slackr" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "Varianti" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Cancellare questo elemento?" + +#: boot.php:973 +msgid "show fewer" +msgstr "mostra di meno" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "aggiornamento %s fallito. Guarda i log di errore." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Crea un nuovo account" + +#: boot.php:1796 +msgid "Password: " +msgstr "Password: " + +#: boot.php:1797 +msgid "Remember me" +msgstr "Ricordati di me" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "O entra con OpenID:" + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Condizioni di servizio del sito web " + +#: boot.php:1810 +msgid "terms of service" +msgstr "condizioni del servizio" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Politiche di privacy del sito" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "politiche di privacy" + +#: index.php:451 +msgid "toggle mobile" +msgstr "commuta tema mobile" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index 131e03080..60860b5fd 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -5,1433 +5,20 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Network:"] = "Rete:"; -$a->strings["Forum"] = "Forum"; -$a->strings["%d contact edited."] = array( - 0 => "%d contatto modificato.", - 1 => "%d contatti modificati", -); -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$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"; -$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"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["Never"] = "Mai"; -$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["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["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"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; -$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["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["Profile URL"] = "URL Profilo"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Tags:"] = "Tag:"; -$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"; -$a->strings["Blocked"] = "Bloccato"; -$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; -$a->strings["Ignored"] = "Ignorato"; -$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; -$a->strings["Archived"] = "Achiviato"; -$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; -$a->strings["Hidden"] = "Nascosto"; -$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; -$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["Archive"] = "Archivia"; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["View all common friends"] = "Vedi tutti gli amici in comune"; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$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["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["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["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["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["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 %s"] = "La dimensione dell'immagine supera il limite di %s"; -$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["Subscribing to OStatus contacts"] = "Iscrizione a contatti OStatus"; -$a->strings["No contact provided."] = "Nessun contatto disponibile."; -$a->strings["Couldn't fetch information for contact."] = "Non è stato possibile recuperare le informazioni del contatto."; -$a->strings["Couldn't fetch friends for contact."] = "Non è stato possibile recuperare gli amici del contatto."; -$a->strings["Done"] = "Fatto"; -$a->strings["success"] = "successo"; -$a->strings["failed"] = "fallito"; -$a->strings["ignored"] = "ignorato"; -$a->strings["Keep this window open until done."] = "Tieni questa finestra aperta fino a che ha finito."; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Save"] = "Salva"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Il supporto Diaspora non è abilitato. Il contatto non puo' essere aggiunto."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Il supporto OStatus non è abilitato. Il contatto non puo' essere aggiunto."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Non è possibile rilevare il tipo di rete. Il contatto non puo' essere aggiunto."; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["No"] = "No"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$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["Group is empty"] = "Il gruppo è vuoto"; -$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["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; -$a->strings["Delete Video"] = "Rimuovi video"; -$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["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["Invalid request."] = "Richiesta non valida."; -$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["{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["No contacts."] = "Nessun contatto."; -$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["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["Gender:"] = "Genere:"; -$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["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$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["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$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["[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["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["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["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$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"] = "Il messaggio è stato creato"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["Connect"] = "Connetti"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["People Search - %s"] = "Cerca persone - %s"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Photos"] = "Foto"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$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["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["DB updates"] = "Aggiornamenti Database"; -$a->strings["Inspect Queue"] = "Ispeziona Coda di invio"; -$a->strings["Federation Statistics"] = "Statistiche sulla Federazione"; -$a->strings["Logs"] = "Log"; -$a->strings["View Logs"] = "Vedi i log"; -$a->strings["probe address"] = "controlla indirizzo"; -$a->strings["check webfinger"] = "verifica webfinger"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Plugin Features"] = "Impostazioni Plugins"; -$a->strings["diagnostics"] = "diagnostiche"; -$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza."; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; -$a->strings["Administration"] = "Amministrazione"; -$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; -$a->strings["ID"] = "ID"; -$a->strings["Recipient Name"] = "Nome Destinatario"; -$a->strings["Recipient Profile"] = "Profilo Destinatario"; -$a->strings["Created"] = "Creato"; -$a->strings["Last Tried"] = "Ultimo Tentativo"; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire."; -$a->strings["Normal Account"] = "Account normale"; -$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; -$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; -$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; -$a->strings["Blog Account"] = "Account Blog"; -$a->strings["Private Forum"] = "Forum Privato"; -$a->strings["Message queues"] = "Code messaggi"; -$a->strings["Summary"] = "Sommario"; -$a->strings["Registered users"] = "Utenti registrati"; -$a->strings["Pending registrations"] = "Registrazioni in attesa"; -$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["RINO2 needs mcrypt php extension to work."] = "RINO2 necessita dell'estensione php mcrypt per funzionare."; -$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"] = "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["Users, Global Contacts"] = "Utenti, Contatti Globali"; -$a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; -$a->strings["One month"] = "Un mese"; -$a->strings["Three months"] = "Tre mesi"; -$a->strings["Half a year"] = "Sei mesi"; -$a->strings["One year"] = "Un anno"; -$a->strings["Multi user instance"] = "Istanza multi utente"; -$a->strings["Closed"] = "Chiusa"; -$a->strings["Requires approval"] = "Richiede l'approvazione"; -$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["Auto Discovered Contact Directory"] = "Elenco Contatti Scoperto Automaticamente"; -$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"] = "Nome host"; -$a->strings["Sender Email"] = "Mittente email"; -$a->strings["The email address your server shall use to send notification emails from."] = "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email."; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Shortcut icon"] = "Icona shortcut"; -$a->strings["Link to an icon that will be used for browsers."] = "Link verso un'icona che verrà usata dai browsers."; -$a->strings["Touch icon"] = "Icona touch"; -$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link verso un'icona che verrà usata dai tablet e i telefonini."; -$a->strings["Additional Info"] = "Informazioni aggiuntive"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo."; -$a->strings["System language"] = "Lingua di sistema"; -$a->strings["System theme"] = "Tema di sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; -$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"] = "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"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; -$a->strings["Single user instance"] = "Instanza a singolo utente"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"; -$a->strings["Maximum image size"] = "Massima dimensione immagini"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -$a->strings["Maximum image length"] = "Massima lunghezza immagine"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."; -$a->strings["JPEG image quality"] = "Qualità immagini JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."; -$a->strings["Register policy"] = "Politica di registrazione"; -$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere"; -$a->strings["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."] = "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."; -$a->strings["Register text"] = "Testo registrazione"; -$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini amici consentiti"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -$a->strings["Allowed email domains"] = "Domini email consentiti"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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."; -$a->strings["Block public"] = "Blocca pagine pubbliche"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; -$a->strings["Force publish"] = "Forza publicazione"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; -$a->strings["Global directory URL"] = "URL della directory globale"; -$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; -$a->strings["Allow threaded items"] = "Permetti commenti nidificati"; -$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; -$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."; -$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email"; -$a->strings["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."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni"; -$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post"; -$a->strings["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."] = "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."; -$a->strings["Allow Users to set remote_self"] = "Permetti agli utenti di impostare 'io remoto'"; -$a->strings["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."] = "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."; -$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; -$a->strings["OpenID support"] = "Supporto OpenID"; -$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; -$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"] = "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"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse."; -$a->strings["OStatus support can only be enabled if threading is enabled."] = "Il supporto OStatus puo' essere abilitato solo se è abilitato il threading."; -$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Il supporto a Diaspora non puo' essere abilitato perchè Friendica è stato installato in una sotto directory."; -$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; -$a->strings["Verify SSL"] = "Verifica SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; -$a->strings["Proxy user"] = "Utente Proxy"; -$a->strings["Proxy URL"] = "URL Proxy"; -$a->strings["Network timeout"] = "Timeout rete"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; -$a->strings["Delivery interval"] = "Intervallo di invio"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "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."; -$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["Maximum table size for optimization"] = "Dimensione massima della tabella per l'ottimizzazione"; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo."; -$a->strings["Minimum level of fragmentation"] = ""; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; -$a->strings["Periodical check of global contacts"] = "Check periodico dei contatti globali"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server."; -$a->strings["Days between requery"] = "Giorni tra le richieste"; -$a->strings["Number of days after which a server is requeried for his contacts."] = "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti."; -$a->strings["Discover contacts from other servers"] = "Trova contatti dagli altri server"; -$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."; -$a->strings["Timeframe for fetching global contacts"] = "Termine per il recupero contatti globali"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server."; -$a->strings["Search the local directory"] = "Cerca la directory locale"; -$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."; -$a->strings["Publish server information"] = "Pubblica informazioni server"; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ."; -$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"] = "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["The item caches buffers generated bbcode and external images."] = "La cache degli elementi memorizza il bbcode generato e le immagini esterne."; -$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."; -$a->strings["Maximum numbers of comments per post"] = "Numero massimo di commenti per post"; -$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanti commenti devono essere mostrati per ogni post? Default : 100."; -$a->strings["Path for lock file"] = "Percorso al file di lock"; -$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui."; -$a->strings["Temp path"] = "Percorso file temporanei"; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."; -$a->strings["Base path to installation"] = "Percorso base all'installazione"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."; -$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"] = "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["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti."; -$a->strings["RINO Encryption"] = "Crittografia RINO"; -$a->strings["Encryption layer between nodes."] = "Crittografia delle comunicazioni tra nodi."; -$a->strings["Embedly API key"] = "Embedly API key"; -$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale."; -$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."; -$a->strings["Executing of database structure update %s failed with error: %s"] = "Aggiornamento struttura database %s fallita con errore: %s"; -$a->strings["Executing %s failed with error: %s"] = "Esecuzione di %s fallita con errore: %s"; -$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo"; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."; -$a->strings["There was no additional update function %s that needed to be called."] = "Non ci sono altre funzioni di aggiornamento %s da richiamare."; -$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; -$a->strings["Check database structure"] = "Controlla struttura database"; -$a->strings["Failed Updates"] = "Aggiornamenti falliti"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."; -$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)"; -$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", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utente cancellato", - 1 => "%s utenti cancellati", -); -$a->strings["User '%s' deleted"] = "Utente '%s' cancellato"; -$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; -$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; -$a->strings["Add User"] = "Aggiungi utente"; -$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"; -$a->strings["Account expired"] = "Account scaduto"; -$a->strings["New User"] = "Nuovo Utente"; -$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."; -$a->strings["Nickname"] = "Nome utente"; -$a->strings["Nickname of the new user."] = "Nome utente del nuovo utente."; -$a->strings["Email address of the new user."] = "Indirizzo Email del nuovo utente."; -$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; -$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; -$a->strings["Disable"] = "Disabilita"; -$a->strings["Enable"] = "Abilita"; -$a->strings["Toggle"] = "Inverti"; -$a->strings["Author: "] = "Autore: "; -$a->strings["Maintainer: "] = "Manutentore: "; -$a->strings["Reload active plugins"] = "Ricarica i plugin attivi"; -$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; -$a->strings["No themes found."] = "Nessun tema trovato."; -$a->strings["Screenshot"] = "Anteprima"; -$a->strings["Reload active themes"] = "Ricarica i temi attivi"; -$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; -$a->strings["[Experimental]"] = "[Sperimentale]"; -$a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; -$a->strings["Clear"] = "Pulisci"; -$a->strings["Enable Debugging"] = "Abilita Debugging"; -$a->strings["Log file"] = "File di Log"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; -$a->strings["Log level"] = "Livello di Log"; -$a->strings["PHP logging"] = ""; -$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = "Spento"; -$a->strings["On"] = "Acceso"; -$a->strings["Lock feature %s"] = ""; -$a->strings["Manage Additional Features"] = ""; -$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; -$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"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$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["No friends to display."] = "Nessun amico da visualizzare."; -$a->strings["Event can not end before it has started."] = "Un evento non puo' finire prima di iniziare."; -$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; -$a->strings["Sun"] = "Dom"; -$a->strings["Mon"] = "Lun"; -$a->strings["Tue"] = "Mar"; -$a->strings["Wed"] = "Mer"; -$a->strings["Thu"] = "Gio"; -$a->strings["Fri"] = "Ven"; -$a->strings["Sat"] = "Sab"; -$a->strings["Sunday"] = "Domenica"; -$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["Jan"] = "Gen"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Apr"; -$a->strings["May"] = "Maggio"; -$a->strings["Jun"] = "Giu"; -$a->strings["Jul"] = "Lug"; -$a->strings["Aug"] = "Ago"; -$a->strings["Sept"] = "Set"; -$a->strings["Oct"] = "Ott"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dic"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$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["today"] = "oggi"; -$a->strings["month"] = "mese"; -$a->strings["week"] = "settimana"; -$a->strings["day"] = "giorno"; -$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"; -$a->strings["Event details"] = "Dettagli dell'evento"; -$a->strings["Starting date and Title are required."] = "La data di inizio e il titolo sono richiesti."; -$a->strings["Event Starts:"] = "L'evento inizia:"; -$a->strings["Required"] = "Richiesto"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; -$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["Title:"] = "Titolo:"; -$a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Credits"] = "Credits"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"; -$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["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["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["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."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Database già in uso."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'"; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Versione PHP:"; -$a->strings["PHP cli binary"] = "Binario PHP cli"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; -$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato"; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2"; -$a->strings["mcrypt_create_iv() function"] = "funzione mcrypt_create_iv()"; -$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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; -$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; -$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; -$a->strings["ImageMagick PHP extension is installed"] = "L'estensione PHP ImageMagick è installata"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta i GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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["%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 %s"] = "Il file supera la dimensione massima di %s"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$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["Profile Match"] = "Profili corrispondenti"; -$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["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["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["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni"; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto."; -$a->strings["Your legacy GNU Social account"] = "Il tuo vecchio account GNU Social"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato."; -$a->strings["Repair OStatus subscriptions"] = "Ripara le iscrizioni OStatus"; -$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["GNU Social (OStatus)"] = "GNU Social (OStatus)"; -$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. Enter -1 to disable it."] = "Minimo 10 secondi. Inserisci -1 per disabilitarlo"; -$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["Calendar"] = "Calendario"; -$a->strings["Beginning of week:"] = "Inizio della settimana:"; -$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["Theme settings"] = "Impostazioni tema"; -$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["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."] = "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["Your Identity Address is '%s' or '%s'."] = "L'indirizzo della tua identità è '%s' or '%s'."; -$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["Your Language:"] = "La tua lingua:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email"; -$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["Activate desktop notifications"] = "Attiva notifiche desktop"; -$a->strings["Show desktop popup on new notifications"] = "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche"; -$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["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["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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; -$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."; -$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["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["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["Registration successful."] = "Registrazione completata."; -$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, real or real-looking): "] = "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; -$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["Only logged in users are permitted to perform a search."] = "Solo agli utenti loggati è permesso eseguire ricerche."; -$a->strings["Too Many Requests"] = "Troppe richieste"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non loggati."; -$a->strings["Search"] = "Cerca"; -$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Finding:"] = "Ricerca:"; -$a->strings["Site Directory"] = "Elenco del sito"; -$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."] = "Nessuna voce."; -$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["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["Friend Suggestions"] = "Contatti suggeriti"; -$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["Show more profile fields:"] = "Mostra più informazioni di 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 :"] = "Compleanno:"; -$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["Age: "] = "Età : "; -$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["the bugtracker at github"] = "il bugtracker su github"; -$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["Resubscribing to OStatus contacts"] = ""; -$a->strings["Error"] = "Errore"; -$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 registrati 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 ad unirti a me e 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["Recent Photos"] = "Foto recenti"; -$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 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["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["Do not rotate"] = "Non ruotare"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["Share"] = "Condividi"; -$a->strings["Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -$a->strings["Not attending"] = "Non partecipa"; -$a->strings["Might attend"] = "Forse partecipa"; -$a->strings["Map"] = "Mappa"; -$a->strings["Not Extended"] = "Not Extended"; -$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 (GNU Social/Statusnet) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) 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["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["I will attend"] = "Parteciperò"; -$a->strings["I will not attend"] = "Non parteciperò"; -$a->strings["I might attend"] = "Forse parteciperò"; -$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["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["Connect"] = "Connetti"; $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["Friend Suggestions"] = "Contatti suggeriti"; $a->strings["Similar Interests"] = "Interessi simili"; $a->strings["Random Profile"] = "Profilo causale"; $a->strings["Invite Friends"] = "Invita amici"; @@ -1444,361 +31,9 @@ $a->strings["%d contact in common"] = array( 0 => "%d contatto in comune", 1 => "%d contatti in comune", ); -$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["Photo Location"] = "Località Foto"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa."; -$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["List Forums"] = "Elenco forum"; -$a->strings["Enable widget to display the forums your are connected with"] = "Abilita il widget che mostra i forum ai quali sei connesso"; -$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["Advanced Profile Settings"] = "Impostazioni Avanzate Profilo"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostra ai visitatori i forum nella pagina Profilo Avanzato"; -$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 groups"] = "Modifica 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["Miscellaneous"] = "Varie"; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["year"] = "anno"; -$a->strings["years"] = "anni"; -$a->strings["months"] = "mesi"; -$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["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Atom feed"] = "Feed Atom"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$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["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["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["Forums:"] = "Forum:"; -$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["event"] = "l'evento"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s parteciperà a %3\$s di %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s non parteciperà a %3\$s di %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s forse parteciperà a %3\$s di %2\$s"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["Close"] = "Chiudi"; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatto"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Stuzzica"; -$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["%1\$s attends %2\$s's %3\$s"] = "%1\$s partecipa a %3\$s di %2\$s"; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s non partecipa a %3\$s di %2\$s"; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s forse partecipa a %3\$s di %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$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["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["%s attends."] = "%s partecipa."; -$a->strings["%s doesn't attend."] = "%s non partecipa."; -$a->strings["%s attends maybe."] = "%s forse partecipa."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%s like this."] = "a %s piace."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["%s don't like this."] = "a %s non piace."; -$a->strings["%2\$d people attend"] = "%2\$d persone partecipano"; -$a->strings["%s attend."] = "%s partecipa."; -$a->strings["%2\$d people don't attend"] = "%2\$d persone non partecipano"; -$a->strings["%s don't attend."] = "%s non partecipa."; -$a->strings["%2\$d people anttend maybe"] = "%2\$d persone forse partecipano"; -$a->strings["%s anttend maybe."] = "%s forse partecipano."; -$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["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 all"] = "Mostra tutto"; -$a->strings["Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -$a->strings["Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -$a->strings["Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -$a->strings["Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); +$a->strings["show more"] = "mostra di più"; $a->strings["Forums"] = "Forum"; $a->strings["External link to forum"] = "Link esterno al forum"; -$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["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["Full Text"] = "Testo Completo"; -$a->strings["Tags"] = "Tags:"; -$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["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["View on separate page"] = "Vedi in una pagina separata"; -$a->strings["view on separate page"] = "vedi in una pagina separata"; -$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"] = "%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["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["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["GNU Social"] = "GNU Social"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$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"] = "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["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["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["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 \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; -$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["default"] = "default"; -$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."] = "\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["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$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"; @@ -1812,6 +47,10 @@ $a->strings["Hermaphrodite"] = "Ermafrodito"; $a->strings["Neuter"] = "Neutro"; $a->strings["Non-specific"] = "Non specificato"; $a->strings["Other"] = "Altro"; +$a->strings["Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); $a->strings["Males"] = "Maschi"; $a->strings["Females"] = "Femmine"; $a->strings["Gay"] = "Gay"; @@ -1834,6 +73,7 @@ $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"; @@ -1855,16 +95,119 @@ $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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$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["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 groups"] = "Modifica 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["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Losco, venditore di fumo"; +$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["GNU Social"] = "GNU Social"; +$a->strings["App.net"] = "App.net"; +$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; +$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["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Close"] = "Chiudi"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["event"] = "l'evento"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s parteciperà a %3\$s di %2\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s non parteciperà a %3\$s di %2\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s forse parteciperà a %3\$s di %2\$s"; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$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["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 profilo 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["Miscellaneous"] = "Varie"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age: "] = "Età : "; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["year"] = "anno"; +$a->strings["years"] = "anni"; +$a->strings["month"] = "mese"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["day"] = "giorno"; +$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["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, amministratore di %2\$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["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispondere 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]"; @@ -1904,62 +247,1789 @@ $a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s $a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; $a->strings["'%1\$s' has accepted 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["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se vuoi modificare questa relazione."; +$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 possibilità 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ò scegliere di estendere questa relazione in una relazione più permissiva in futuro."; $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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mer"; +$a->strings["Thu"] = "Gio"; +$a->strings["Fri"] = "Ven"; +$a->strings["Sat"] = "Sab"; +$a->strings["Sunday"] = "Domenica"; +$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["Jan"] = "Gen"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "Maggio"; +$a->strings["Jun"] = "Giu"; +$a->strings["Jul"] = "Lug"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sept"] = "Set"; +$a->strings["Oct"] = "Ott"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dic"; +$a->strings["January"] = "Gennaio"; +$a->strings["February"] = "Febbraio"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Aprile"; +$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["today"] = "oggi"; +$a->strings["all-day"] = "tutto il giorno"; +$a->strings["No events to display"] = "Nessun evento da mostrare"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifica l'evento"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["Export"] = "Esporta"; +$a->strings["Export calendar as ical"] = "Esporta il calendario in formato ical"; +$a->strings["Export calendar as csv"] = "Esporta il calendario in formato csv"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["@name, !forum, #tags, content"] = "@nome, !forum, #tag, contenuto"; +$a->strings["Logout"] = "Esci"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Status"] = "Stato"; +$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["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Videos"] = "Video"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Events"] = "Eventi"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Login"] = "Accedi"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home"] = "Home"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Register"] = "Registrati"; +$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["Full Text"] = "Testo Completo"; +$a->strings["Tags"] = "Tags:"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Community"] = "Comunità"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Conversations on the network"] = "Conversazioni nella rete"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$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 as seen"] = "Segna come letto"; +$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["Settings"] = "Impostazioni"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Profiles"] = "Profili"; +$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["Contact Photos"] = "Foto dei contatti"; +$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 lungo (più di tre ore) prima di inviarla."; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Personale"; +$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; +$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; +$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 attending %s's event"] = "%s partecipa all'evento di %s"; +$a->strings["%s is not attending %s's event"] = "%s non partecipa all'evento di %s"; +$a->strings["%s may attend %s's event"] = "%s potrebbe partecipare all'evento di %s"; +$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; +$a->strings["Friend Suggestion"] = "Amico suggerito"; +$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; +$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; +$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["(no subject)"] = "(nessun oggetto)"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["View Contact"] = "Mostra contatto"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["Organisation"] = "Organizzazione"; +$a->strings["News"] = "Notizie"; +$a->strings["Forum"] = "Forum"; +$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["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["Invalid source protocol"] = "Protocollo sorgente non valido"; +$a->strings["Invalid link protocol"] = "Protocollo link non valido"; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s partecipa a %3\$s di %2\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s non partecipa a %3\$s di %2\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s forse partecipa a %3\$s di %2\$s"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$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["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +$a->strings["Not attending"] = "Non partecipa"; +$a->strings["Might attend"] = "Forse partecipa"; +$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["%s attends."] = "%s partecipa."; +$a->strings["%s doesn't attend."] = "%s non partecipa."; +$a->strings["%s attends maybe."] = "%s forse partecipa."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%s like this."] = "a %s piace."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["%s don't like this."] = "a %s non piace."; +$a->strings["%2\$d people attend"] = "%2\$d persone partecipano"; +$a->strings["%s attend."] = "%s partecipa."; +$a->strings["%2\$d people don't attend"] = "%2\$d persone non partecipano"; +$a->strings["%s don't attend."] = "%s non partecipa."; +$a->strings["%2\$d people attend maybe"] = "%2\$d persone forse partecipano"; +$a->strings["%s anttend maybe."] = "%s forse partecipano."; +$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["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["Public post"] = "Messaggio pubblico"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Browser"] = "Browser"; +$a->strings["View all"] = "Mostra tutto"; +$a->strings["Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +$a->strings["Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +$a->strings["%s\\'s birthday"] = "compleanno di %s"; +$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["Photo Location"] = "Località Foto"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa."; +$a->strings["Export Public Calendar"] = "Esporta calendario pubblico"; +$a->strings["Ability for visitors to download the public calendar"] = "Permesso ai visitatori di scaricare il calendario pubblico"; +$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 forum page is selected/deselected in ACL window."] = "Aggiunge/rimuove una menzione quando una pagina forum è selezionata/deselezionata 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["List Forums"] = "Elenco forum"; +$a->strings["Enable widget to display the forums your are connected with"] = "Abilita il widget che mostra i forum ai quali sei connesso"; +$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 mostrare 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 messaggi 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"] = "Categorie 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["Advanced Profile Settings"] = "Impostazioni Avanzate Profilo"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostra ai visitatori i forum nella pagina Profilo Avanzato"; +$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 può 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["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["Atom feed"] = "Feed Atom"; +$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["Gender:"] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["XMPP:"] = "XMPP:"; +$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["Full Name:"] = "Nome completo:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$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["Forums:"] = "Forum:"; +$a->strings["Basic"] = "Base"; +$a->strings["Advanced"] = "Avanzate"; +$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["Personal Notes"] = "Note personali"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$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["Permission denied."] = "Permesso negato."; +$a->strings["Archives"] = "Archivi"; $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["%s is now following %s."] = "%s sta seguendo %s"; +$a->strings["following"] = "segue"; +$a->strings["%s stopped following %s."] = "%s ha smesso di seguire %s"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$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["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["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["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["View Video"] = "Guarda Video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["View on separate page"] = "Vedi in una pagina separata"; +$a->strings["view on separate page"] = "vedi in una pagina separata"; +$a->strings["activity"] = "attività"; +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["post"] = "messaggio"; +$a->strings["Item filed"] = "Messaggio salvato"; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +$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 \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; +$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["default"] = "default"; +$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["Profile Photos"] = "Foto del profilo"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nCaro %1\$s,\n Grazie per la tua registrazione su %2\$s. Il tuo account è in attesa di approvazione da parte di un amministratore.\n "; +$a->strings["Registration at %s"] = "Registrazione su %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\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["Post successful."] = "Inviato!"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Only logged in users are permitted to perform a search."] = "Solo agli utenti autenticati è permesso eseguire ricerche."; +$a->strings["Too Many Requests"] = "Troppe richieste"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non autenticati."; +$a->strings["No results."] = "Nessun risultato."; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +$a->strings["Results for: %s"] = "Risultati per: %s"; +$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["the bugtracker at github"] = "il bugtracker su github"; +$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/componenti aggiuntivi/applicazioni installate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/componente aggiuntivo/applicazione installata"; +$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 precedentemente). 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["No profile"] = "Nessun profilo"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$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["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["Import"] = "Importa"; +$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 (GNU Social/Statusnet) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) 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["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Edit contact"] = "Modifica contatto"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$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. Può 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["Export personal data"] = "Esporta dati personali"; +$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"] = "Unisciti 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 registrati 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["Your message:"] = "Il tuo messaggio:"; +$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 ad unirti a me e 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["Submit"] = "Invia"; +$a->strings["Files"] = "File"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Invalid profile identifier."] = "Identificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del 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["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["Resubscribing to OStatus contacts"] = "Risottoscrivi i contatti OStatus"; +$a->strings["Error"] = "Errore"; +$a->strings["Done"] = "Fatto"; +$a->strings["Keep this window open until done."] = "Tieni questa finestra aperta fino a che ha finito."; +$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 grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni 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."] = "Nessuna voce."; +$a->strings["Credits"] = "Crediti"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare i componenti aggiuntivi."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Not Extended"] = "Not Extended"; +$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 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["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 privacy. 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["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["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$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["The post was created"] = "Il messaggio è stato creato"; +$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 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["Group is empty"] = "Il gruppo è vuoto"; +$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 può 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["link"] = "collegamento"; +$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["No"] = "No"; +$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["Subscribing to OStatus contacts"] = "Iscrizione a contatti OStatus"; +$a->strings["No contact provided."] = "Nessun contatto disponibile."; +$a->strings["Couldn't fetch information for contact."] = "Non è stato possibile recuperare le informazioni del contatto."; +$a->strings["Couldn't fetch friends for contact."] = "Non è stato possibile recuperare gli amici del contatto."; +$a->strings["success"] = "successo"; +$a->strings["failed"] = "fallito"; +$a->strings["ignored"] = "ignorato"; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$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["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$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["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$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["Manage Identities and/or Pages"] = "Gestisci identità 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["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$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["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["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$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 re invii i nuovi messaggi da questo contatto."; +$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["No such group"] = "Nessun gruppo"; +$a->strings["Group: %s"] = "Gruppo: %s"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$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["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["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["I will attend"] = "Parteciperò"; +$a->strings["I will not attend"] = "Non parteciperò"; +$a->strings["I might attend"] = "Forse parteciperò"; +$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["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["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$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["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 dell'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 %s"] = "La dimensione dell'immagine supera il limite di %s"; +$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'immagine 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["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Scarta"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["Network Notifications"] = "Notifiche dalla rete"; +$a->strings["Personal Notifications"] = "Notifiche personali"; +$a->strings["Home Notifications"] = "Notifiche bacheca"; +$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["suggested by %s"] = "suggerito 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["Profile URL"] = "URL Profilo"; +$a->strings["No introductions."] = "Nessuna presentazione."; +$a->strings["Show unread"] = "Mostra non letti"; +$a->strings["Show all"] = "Mostra tutti"; +$a->strings["No more %s notifications."] = "Nessun'altra notifica %s."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile deleted."] = "Profilo eliminato."; +$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["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["XMPP"] = "XMPP"; +$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["Show more profile fields:"] = "Mostra più informazioni di profilo:"; +$a->strings["Profile Actions"] = "Azioni 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["Relation"] = "Relazione"; +$a->strings["Your Gender:"] = "Il tuo sesso:"; +$a->strings[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; +$a->strings["Profile Name:"] = "Nome del profilo:"; +$a->strings["Required"] = "Richiesto"; +$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["Your Full Name:"] = "Il tuo nome completo:"; +$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; +$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; +$a->strings["Locality/City:"] = "Località:"; +$a->strings["Region/State:"] = "Regione/Stato:"; +$a->strings["Postal/Zip Code:"] = "CAP:"; +$a->strings["Country:"] = "Nazione:"; +$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["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["XMPP (Jabber) address:"] = "Indirizzo XMPP (Jabber):"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "L'indirizzo XMPP verrà propagato ai tuoi contatti così che possano seguirti."; +$a->strings["Homepage URL:"] = "Homepage:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; +$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["Private Keywords:"] = "Parole chiave private:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; +$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["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Love/romance"] = "Amore"; +$a->strings["Work/employment"] = "Lavoro/impiego"; +$a->strings["School/education"] = "Scuola/educazione"; +$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; +$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["View"] = "Mostra"; +$a->strings["Previous"] = "Precedente"; +$a->strings["Next"] = "Successivo"; +$a->strings["list"] = "lista"; +$a->strings["User not found"] = "Utente non trovato"; +$a->strings["This calendar format is not supported"] = "Questo formato di calendario non è supportato"; +$a->strings["No exportable data found"] = "Nessun dato esportabile trovato"; +$a->strings["calendar"] = "calendario"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Results for:"] = "Risultati per:"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["People Search - %s"] = "Cerca persone - %s"; +$a->strings["Forum Search - %s"] = "Ricerca Forum - %s"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["Event can not end before it has started."] = "Un evento non può finire prima di iniziare."; +$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; +$a->strings["Create New Event"] = "Crea un nuovo evento"; +$a->strings["Event details"] = "Dettagli dell'evento"; +$a->strings["Starting date and Title are required."] = "La data di inizio e il titolo sono richiesti."; +$a->strings["Event Starts:"] = "L'evento inizia:"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; +$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["Title:"] = "Titolo:"; +$a->strings["Share this event"] = "Condividi questo evento"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$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["Profile Match"] = "Profili corrispondenti"; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$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["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["everybody"] = "tutti"; +$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 file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$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["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; +$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["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["Do not rotate"] = "Non ruotare"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Map"] = "Mappa"; +$a->strings["View Album"] = "Sfoglia l'album"; +$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["Registration successful."] = "Registrazione completata."; +$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 proprietario del sito."; +$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["Note for the admin"] = "Nota per l'amministratore"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Lascia un messaggio per l'amministratore, per esempio perché vuoi registrarti su questo nodo"; +$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, real or real-looking): "] = "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; +$a->strings["Confirm:"] = "Conferma:"; +$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 your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$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["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["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["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["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["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Segui automaticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto."; +$a->strings["Default group for OStatus contacts"] = "Gruppo di default per i contatti OStatus"; +$a->strings["Your legacy GNU Social account"] = "Il tuo vecchio account GNU Social"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato."; +$a->strings["Repair OStatus subscriptions"] = "Ripara le iscrizioni OStatus"; +$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["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$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["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["Suppress warning of insecure networks"] = "Sopprimi avvisi reti insicure"; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Il sistema sopprimerà l'avviso che il gruppo selezionato contiene membri di reti che non possono ricevere post non pubblici."; +$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 secondi. Inserisci -1 per disabilitarlo"; +$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["Calendar"] = "Calendario"; +$a->strings["Beginning of week:"] = "Inizio della settimana:"; +$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["Bandwith Saver Mode"] = "Modalità Salva Banda"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Quando abilitato, il contenuto embeddato non è mostrato quando la pagina si aggiorna automaticamente, ma solo quando la pagina viene ricaricata."; +$a->strings["General Theme Settings"] = "Opzioni Generali Tema"; +$a->strings["Custom Theme Settings"] = "Opzioni Personalizzate Tema"; +$a->strings["Content Settings"] = "Opzioni Contenuto"; +$a->strings["Theme settings"] = "Impostazioni tema"; +$a->strings["Account Types"] = "Tipi di Account"; +$a->strings["Personal Page Subtypes"] = "Sottotipi di Pagine Personali"; +$a->strings["Community Forum Subtypes"] = "Sottotipi di Community Forum"; +$a->strings["Personal Page"] = "Pagina Personale"; +$a->strings["This account is a regular personal profile"] = "Questo account è un profilo personale regolare"; +$a->strings["Organisation Page"] = "Pagina Organizzazione"; +$a->strings["This account is a profile for an organisation"] = "Questo account è il profilo per un'organizzazione"; +$a->strings["News Page"] = "Pagina Notizie"; +$a->strings["This account is a news account/reflector"] = "Questo account è un account di notizie"; +$a->strings["Community Forum"] = "Community Forum"; +$a->strings["This account is a community forum where people can discuss with each other"] = "Questo account è un forum comunitario dove le persone possono discutere tra loro"; +$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["Public Forum"] = "Forum Pubblico"; +$a->strings["Automatically approve all contact requests"] = "Approva automaticamente tutte le richieste di contatto"; +$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["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 aggiungere tag ai 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 '%s' or '%s'."] = "L'indirizzo della tua identità è '%s' or '%s'."; +$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 scadenza"; +$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["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["Your Language:"] = "La tua lingua:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email"; +$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["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["Activate desktop notifications"] = "Attiva notifiche desktop"; +$a->strings["Show desktop popup on new notifications"] = "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche"; +$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"] = "Invia nuovamente il messaggio di trasloco ai contatti"; +$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; +$a->strings["Delete Video"] = "Rimuovi video"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il file 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 %s"] = "Il file supera la dimensione massima di %s"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; +$a->strings["Site"] = "Sito"; +$a->strings["Users"] = "Utenti"; +$a->strings["Themes"] = "Temi"; +$a->strings["DB updates"] = "Aggiornamenti Database"; +$a->strings["Inspect Queue"] = "Ispeziona Coda di invio"; +$a->strings["Federation Statistics"] = "Statistiche sulla Federazione"; +$a->strings["Logs"] = "Log"; +$a->strings["View Logs"] = "Vedi i log"; +$a->strings["probe address"] = "controlla indirizzo"; +$a->strings["check webfinger"] = "verifica webfinger"; +$a->strings["Plugin Features"] = "Impostazioni Plugins"; +$a->strings["diagnostics"] = "diagnostiche"; +$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["unknown"] = "sconosciuto"; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza."; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "La funzione Elenco Contatti Scoperto Automaticamente non è abilitata, migliorerà i dati visualizzati qui."; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Attualmente questo nodo conosce %d nodi dalle seguenti piattaforme:"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Nome Destinatario"; +$a->strings["Recipient Profile"] = "Profilo Destinatario"; +$a->strings["Created"] = "Creato"; +$a->strings["Last Tried"] = "Ultimo Tentativo"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Questa pagina elenca il contenuto della coda di invio dei post. Questi sono post la cui consegna è fallita. Verranno inviati nuovamente più tardi ed eventualmente cancellati se la consegna continua a fallire."; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
"] = "Il tuo database sta girando ancora con tabelle MYISAM. Dovresti cambiare il tipo di motore a InnoDB, siccome Friendica userà solo tabelle InnoDB in futuro. Vedi qui per una guida che ti può essere utile per la conversione. Puoi anche usare il file convert_innodb.sql che trovi nella cartella /util della tua installazione di Friendica.
"; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Stai usando una versione di MySQL che non supporta tutte le funzionalità che Friendica usa. Dovresti considerare di utilizzare MariaDB."; +$a->strings["Normal Account"] = "Account normale"; +$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; +$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; +$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; +$a->strings["Blog Account"] = "Account Blog"; +$a->strings["Private Forum"] = "Forum Privato"; +$a->strings["Message queues"] = "Code messaggi"; +$a->strings["Summary"] = "Sommario"; +$a->strings["Registered users"] = "Utenti registrati"; +$a->strings["Pending registrations"] = "Registrazioni in attesa"; +$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["RINO2 needs mcrypt php extension to work."] = "RINO2 necessita dell'estensione php mcrypt per funzionare."; +$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; +$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["Never"] = "Mai"; +$a->strings["At post arrival"] = "All'arrivo di un messaggio"; +$a->strings["Disabled"] = "Disabilitato"; +$a->strings["Users, Global Contacts"] = "Utenti, Contatti Globali"; +$a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; +$a->strings["One month"] = "Un mese"; +$a->strings["Three months"] = "Tre mesi"; +$a->strings["Half a year"] = "Sei mesi"; +$a->strings["One year"] = "Un anno"; +$a->strings["Multi user instance"] = "Istanza multi utente"; +$a->strings["Closed"] = "Chiusa"; +$a->strings["Requires approval"] = "Richiede l'approvazione"; +$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 link 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["File upload"] = "Caricamento file"; +$a->strings["Policies"] = "Politiche"; +$a->strings["Auto Discovered Contact Directory"] = "Elenco Contatti Scoperto Automaticamente"; +$a->strings["Performance"] = "Performance"; +$a->strings["Worker"] = "Worker"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Trasloca - ATTENZIONE: funzione avanzata! Può rendere questo server irraggiungibile."; +$a->strings["Site name"] = "Nome del sito"; +$a->strings["Host name"] = "Nome host"; +$a->strings["Sender Email"] = "Mittente email"; +$a->strings["The email address your server shall use to send notification emails from."] = "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email."; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Shortcut icon"] = "Icona shortcut"; +$a->strings["Link to an icon that will be used for browsers."] = "Link verso un'icona che verrà usata dai browser."; +$a->strings["Touch icon"] = "Icona touch"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link verso un'icona che verrà usata dai tablet e i telefonini."; +$a->strings["Additional Info"] = "Informazioni aggiuntive"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo."; +$a->strings["System language"] = "Lingua di sistema"; +$a->strings["System theme"] = "Tema di sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - può essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; +$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"] = "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 può 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"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; +$a->strings["Single user instance"] = "Istanza a singolo utente"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"; +$a->strings["Maximum image size"] = "Massima dimensione immagini"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +$a->strings["Maximum image length"] = "Massima lunghezza immagine"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."; +$a->strings["JPEG image quality"] = "Qualità immagini JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."; +$a->strings["Register policy"] = "Politica di registrazione"; +$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere"; +$a->strings["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."] = "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."; +$a->strings["Register text"] = "Testo registrazione"; +$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; +$a->strings["Allowed friend domains"] = "Domini amici consentiti"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio."; +$a->strings["Allowed email domains"] = "Domini email consentiti"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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."; +$a->strings["Block public"] = "Blocca pagine pubbliche"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; +$a->strings["Force publish"] = "Forza pubblicazione"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; +$a->strings["Global directory URL"] = "URL della directory globale"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; +$a->strings["Allow threaded items"] = "Permetti commenti nidificati"; +$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; +$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."; +$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email"; +$a->strings["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."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Selezionando questo box si limiterà ai soli membri l'accesso ai componenti aggiuntivi nel menu applicazioni"; +$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post"; +$a->strings["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."] = "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 può richiedere un po' di tempo."; +$a->strings["Allow Users to set remote_self"] = "Permetti agli utenti di impostare 'io remoto'"; +$a->strings["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."] = "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 dell'utente."; +$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; +$a->strings["OpenID support"] = "Supporto OpenID"; +$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; +$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 anti spam"; +$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"] = "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 Comunità (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"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che può richiedere molte risorse."; +$a->strings["Only import OStatus threads from our contacts"] = "Importa conversazioni OStatus solo dai nostri contatti."; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normalmente importiamo tutto il contenuto dai contatti OStatus. Con questa opzione salviamo solo le conversazioni iniziate da un contatto è conosciuto a questo nodo."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "Il supporto OStatus può essere abilitato solo se è abilitato il threading."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sotto directory."; +$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; +$a->strings["Verify SSL"] = "Verifica SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; +$a->strings["Proxy user"] = "Utente Proxy"; +$a->strings["Proxy URL"] = "URL Proxy"; +$a->strings["Network timeout"] = "Timeout rete"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; +$a->strings["Delivery interval"] = "Intervallo di invio"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisi, 2-3 per VPS. 0-1 per grandi server dedicati."; +$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["Maximum table size for optimization"] = "Dimensione massima della tabella per l'ottimizzazione"; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo."; +$a->strings["Minimum level of fragmentation"] = "Livello minimo di frammentazione"; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Livello minimo di frammentazione per iniziare la procedura di ottimizzazione automatica - il valore di default è 30%."; +$a->strings["Periodical check of global contacts"] = "Check periodico dei contatti globali"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitalità dei contatti e dei server."; +$a->strings["Days between requery"] = "Giorni tra le richieste"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti."; +$a->strings["Discover contacts from other servers"] = "Trova contatti dagli altri server"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli utenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."; +$a->strings["Timeframe for fetching global contacts"] = "Termine per il recupero contatti globali"; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server."; +$a->strings["Search the local directory"] = "Cerca la directory locale"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."; +$a->strings["Publish server information"] = "Pubblica informazioni server"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ."; +$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 può 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"] = "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["The item caches buffers generated bbcode and external images."] = "La cache degli elementi memorizza il bbcode generato e le immagini esterne."; +$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."; +$a->strings["Maximum numbers of comments per post"] = "Numero massimo di commenti per post"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanti commenti devono essere mostrati per ogni post? Default : 100."; +$a->strings["Path for lock file"] = "Percorso al file di lock"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui."; +$a->strings["Temp path"] = "Percorso file temporanei"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."; +$a->strings["Base path to installation"] = "Percorso base all'installazione"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."; +$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 performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."; +$a->strings["Enable old style pager"] = "Abilita la paginatura vecchio stile"; +$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "La paginatura 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["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti."; +$a->strings["RINO Encryption"] = "Crittografia RINO"; +$a->strings["Encryption layer between nodes."] = "Crittografia delle comunicazioni tra nodi."; +$a->strings["Embedly API key"] = "Embedly API key"; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale."; +$a->strings["Enable 'worker' background processing"] = "Attiva l'elaborazione in background con worker"; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "L'elaborazione in background con worker limita il numero di lavori in background paralleli a un numero massimo e rispetta il carico di sistema."; +$a->strings["Maximum number of parallel workers"] = "Massimo numero di lavori in parallelo"; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Su host condivisi imposta a 2. Su sistemi più grandi, valori fino a 10 vanno bene. Il valore di default è 4."; +$a->strings["Don't use 'proc_open' with the worker"] = "Non usare 'proc_open' con il worker"; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Abilita se il tuo sistema non consente l'utilizzo di 'proc_open'. Può succedere con gli hosting condivisi. Se abiliti questa opzione, dovresti aumentare la frequenza delle chiamate al poller nel tuo crontab."; +$a->strings["Enable fastlane"] = "Abilita fastlane"; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa."; +$a->strings["Enable frontend worker"] = "Abilita worker da frontend"; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Quando abilitato, il processo è avviato quando viene eseguito un accesso al backend (per esempio, quando un messaggio viene consegnato). Su siti più piccoli potresti voler chiamare yourdomain.tld/worker regolarmente attraverso un cron esterno. Dovresti abilitare questa opzione solo se non puoi utilizzare cron sul tuo server. L'elaborazione in background con worker deve essere abilitata perchè questa opzione sia effettiva."; +$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."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "Aggiornamento struttura database %s fallita con errore: %s"; +$a->strings["Executing %s failed with error: %s"] = "Esecuzione di %s fallita con errore: %s"; +$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo"; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."; +$a->strings["There was no additional update function %s that needed to be called."] = "Non ci sono altre funzioni di aggiornamento %s da richiamare."; +$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; +$a->strings["Check database structure"] = "Controlla struttura database"; +$a->strings["Failed Updates"] = "Aggiornamenti falliti"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."; +$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)"; +$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["%s user blocked/unblocked"] = array( + 0 => "%s utente bloccato/sbloccato", + 1 => "%s utenti bloccati/sbloccati", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utente cancellato", + 1 => "%s utenti cancellati", +); +$a->strings["User '%s' deleted"] = "Utente '%s' cancellato"; +$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; +$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; +$a->strings["Register date"] = "Data registrazione"; +$a->strings["Last login"] = "Ultimo accesso"; +$a->strings["Last item"] = "Ultimo elemento"; +$a->strings["Add User"] = "Aggiungi utente"; +$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["No registrations."] = "Nessuna registrazione."; +$a->strings["Note from the user"] = "Nota dall'utente"; +$a->strings["Deny"] = "Nega"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Site admin"] = "Amministrazione sito"; +$a->strings["Account expired"] = "Account scaduto"; +$a->strings["New User"] = "Nuovo Utente"; +$a->strings["Deleted since"] = "Rimosso da"; +$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."; +$a->strings["Nickname"] = "Nome utente"; +$a->strings["Nickname of the new user."] = "Nome utente del nuovo utente."; +$a->strings["Email address of the new user."] = "Indirizzo Email del nuovo utente."; +$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; +$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; +$a->strings["Disable"] = "Disabilita"; +$a->strings["Enable"] = "Abilita"; +$a->strings["Toggle"] = "Inverti"; +$a->strings["Author: "] = "Autore: "; +$a->strings["Maintainer: "] = "Manutentore: "; +$a->strings["Reload active plugins"] = "Ricarica i plugin attivi"; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale dei plugin su %1\$s e potresti trovare altri plugin interessanti nell'open plugin repository su %2\$s"; +$a->strings["No themes found."] = "Nessun tema trovato."; +$a->strings["Screenshot"] = "Anteprima"; +$a->strings["Reload active themes"] = "Ricarica i temi attivi"; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1\$s"; +$a->strings["[Experimental]"] = "[Sperimentale]"; +$a->strings["[Unsupported]"] = "[Non supportato]"; +$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; +$a->strings["PHP log currently enabled."] = "Log PHP abilitato."; +$a->strings["PHP log currently disabled."] = "Log PHP disabilitato"; +$a->strings["Clear"] = "Pulisci"; +$a->strings["Enable Debugging"] = "Abilita Debugging"; +$a->strings["Log file"] = "File di Log"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Il server web deve avere i permessi di scrittura. Relativo alla tua directory Friendica."; +$a->strings["Log level"] = "Livello di Log"; +$a->strings["PHP logging"] = "Log PHP"; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Per abilitare il log degli errori e degli avvisi di PHP puoi aggiungere le seguenti righe al file .htconfig.php nella tua installazione. La posizione del file impostato in 'error_log' è relativa alla directory principale della tua installazione Friendica e il server web deve avere i permessi di scrittura sul file. Il valore '1' per 'log_errors' e 'display_errors' abilita le opzioni, imposta '0' per disabilitarle."; +$a->strings["Lock feature %s"] = "Blocca funzionalità %s"; +$a->strings["Manage Additional Features"] = "Gestisci Funzionalità Aggiuntive"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato.", + 1 => "%d contatti modificati", +); +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$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["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"; +$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["Drop contact"] = "Cancella contatto"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$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"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$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["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori informazioni per i feed"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; +$a->strings["Contact"] = "Contatto"; +$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"; +$a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; +$a->strings["View conversations"] = "Vedi conversazioni"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Currently archived"] = "Al momento archiviato"; +$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["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 hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Actions"] = "Azioni"; +$a->strings["Contact Settings"] = "Impostazioni Contatto"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["Show all contacts"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Sbloccato"; +$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; +$a->strings["Blocked"] = "Bloccato"; +$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; +$a->strings["Ignored"] = "Ignorato"; +$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; +$a->strings["Archived"] = "Archiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Batch Actions"] = "Azioni Batch"; +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["View all common friends"] = "Vedi tutti gli amici in comune"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$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["Toggle Blocked status"] = "Inverti stato \"Blocca\""; +$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; +$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo può 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["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"] = "Indirizzo non valido"; +$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["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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema."; +$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."; +$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["You already added this contact."] = "Hai già aggiunto questo contatto."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto."; +$a->strings["Contact added"] = "Contatto aggiunto"; +$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."; +$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database già in uso."; +$a->strings["System check"] = "Controllo sistema"; +$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome del database server"; +$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["Database Login Password"] = "Password utente database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["System Language:"] = "Lingua di Sistema:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Imposta la lingua di default per l'interfaccia e l'invio delle email."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'"; +$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Versione PHP:"; +$a->strings["PHP cli binary"] = "Binario PHP cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; +$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; +$a->strings["XML PHP module"] = "Modulo PHP XML"; +$a->strings["iconv module"] = "modulo iconv"; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: iconv PHP module required but not installed."] = "Errore: il modulo PHP iconv è richiesto ma non installato."; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Se stai usando php_cli, controlla che il modulo mcrypt sia abilitato nel suo file di configurazione"; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2"; +$a->strings["mcrypt_create_iv() function"] = "funzione mcrypt_create_iv()"; +$a->strings["Error, XML PHP module required but not installed."] = "Errore, il modulo PHP XML è richiesto ma non installato."; +$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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$a->strings["ImageMagick PHP extension is not installed"] = "L'estensione PHP ImageMagick non è installata"; +$a->strings["ImageMagick PHP extension is installed"] = "L'estensione PHP ImageMagick è installata"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta i GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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["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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici.", + 1 => "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici.", +); +$a->strings["Messages in this group won't be send to these receivers."] = "I messaggi in questo gruppo non saranno inviati ai quei contatti."; +$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["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$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["No contacts."] = "Nessun contatto."; +$a->strings["via"] = "via"; +$a->strings["Repeat the image"] = "Ripeti l'immagine"; +$a->strings["Will repeat your image to fill the background."] = "Ripete l'immagine per riempire lo sfondo."; +$a->strings["Stretch"] = "Stira"; +$a->strings["Will stretch to width/height of the image."] = "Stira l'immagine."; +$a->strings["Resize fill and-clip"] = "Scala e ritaglia"; +$a->strings["Resize to fill and retain aspect ratio."] = "Scala l'immagine a riempire mantenendo le proporzioni."; +$a->strings["Resize best fit"] = "Scala best fit"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Scala l'immagine alla miglior dimensione per riempire mantenendo le proporzioni."; +$a->strings["Default"] = "Default"; +$a->strings["Note: "] = "Nota:"; +$a->strings["Check image permissions if all users are allowed to visit the image"] = "Controlla i permessi dell'immagine se tutti gli utenti sono autorizzati a vederla"; +$a->strings["Select scheme"] = "Seleziona schema"; +$a->strings["Navigation bar background color"] = "Colore di sfondo barra di navigazione"; +$a->strings["Navigation bar icon color "] = "Colore icona barra di navigazione"; +$a->strings["Link color"] = "Colore link"; +$a->strings["Set the background color"] = "Imposta il colore di sfondo"; +$a->strings["Content background transparency"] = "Trasparenza sfondo contenuto"; +$a->strings["Set the background image"] = "Imposta l'immagine di sfondo"; +$a->strings["Guest"] = "Ospite"; +$a->strings["Visitor"] = "Visitatore"; $a->strings["Alignment"] = "Allineamento"; $a->strings["Left"] = "Sinistra"; $a->strings["Center"] = "Centrato"; +$a->strings["Color scheme"] = "Schema colori"; $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["Find Friends"] = "Trova Amici"; $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["Quick Start"] = "Quick Start"; +$a->strings["Connect Services"] = "Servizi connessi"; $a->strings["Comma separated list of helper forums"] = "Lista separata da virgola di forum di aiuto"; $a->strings["Set style"] = "Imposta stile"; -$a->strings["Quick Start"] = "Quick Start"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; $a->strings["easterbunny"] = "easterbunny"; @@ -1967,3 +2037,16 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Varianti"; +$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["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["toggle mobile"] = "commuta tema mobile"; From 1af84c095dc111abc02d017f300c4d82375de02f Mon Sep 17 00:00:00 2001 From: Fabio Date: Wed, 18 Jan 2017 14:05:57 +0100 Subject: [PATCH 35/68] transifex-client config --- .gitignore | 3 +++ .tx/config | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 .tx/config diff --git a/.gitignore b/.gitignore index 8376ea87e..c78df3afc 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,6 @@ nbproject /php_friendica.phpproj /php_friendica.sln /php_friendica.phpproj.user + +#ignore things from transifex-client +venv/ diff --git a/.tx/config b/.tx/config new file mode 100644 index 000000000..b42998b86 --- /dev/null +++ b/.tx/config @@ -0,0 +1,9 @@ +[main] +host = https://www.transifex.com + +[friendica.messagespo] +file_filter = view/lang//messages.po +source_file = util/messages.po +source_lang = en +type = PO + From 0548099f6cb89ccb1c798d092b298b3a03fd8d88 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 Jan 2017 21:45:32 +0000 Subject: [PATCH 36/68] The config class now makes less database reads. --- boot.php | 2 +- database.sql | 29 +++++++-------- include/Core/Config.php | 64 +++++++++++++++++++++------------- include/cli_startup.php | 17 ++++----- include/create_shadowentry.php | 6 ++-- include/cron.php | 5 +-- include/cronhooks.php | 6 ++-- include/cronjobs.php | 5 +-- include/dbclean.php | 3 +- include/dbstructure.php | 5 +-- include/dbupdate.php | 5 +-- include/delivery.php | 6 ++-- include/directory.php | 8 ++--- include/discover_poco.php | 6 ++-- include/expire.php | 15 ++++---- include/gprobe.php | 5 +-- include/notifier.php | 7 ++-- include/onepoll.php | 5 +-- include/pubsubpublish.php | 3 +- include/queue.php | 6 ++-- include/remove_contact.php | 6 ++-- include/shadowupdate.php | 6 ++-- include/spool_post.php | 6 ++-- include/tagupdate.php | 6 ++-- include/threadupdate.php | 6 ++-- include/update_gcontact.php | 5 +-- index.php | 5 +-- mod/friendica.php | 4 ++- util/maintenance.php | 8 +++-- 29 files changed, 153 insertions(+), 107 deletions(-) diff --git a/boot.php b/boot.php index d598ef866..501ae38c4 100644 --- a/boot.php +++ b/boot.php @@ -1569,7 +1569,7 @@ function update_db(App $a) { $stored = intval($build); $current = intval(DB_UPDATE_VERSION); if($stored < $current) { - load_config('database'); + Config::load('database'); // We're reporting a different version than what is currently installed. // Run any existing update scripts to bring the database up to current. diff --git a/database.sql b/database.sql index a12f9d204..383253fcb 100644 --- a/database.sql +++ b/database.sql @@ -9,13 +9,14 @@ -- CREATE TABLE IF NOT EXISTS `addon` ( `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL DEFAULT '', + `name` varchar(190) NOT NULL DEFAULT '', `version` varchar(255) NOT NULL DEFAULT '', `installed` tinyint(1) NOT NULL DEFAULT 0, `hidden` tinyint(1) NOT NULL DEFAULT 0, `timestamp` bigint(20) NOT NULL DEFAULT 0, `plugin_admin` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY(`id`) + PRIMARY KEY(`id`), + UNIQUE INDEX `name` (`name`) ) DEFAULT CHARSET=utf8mb4; -- @@ -32,9 +33,9 @@ CREATE TABLE IF NOT EXISTS `attach` ( `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `allow_cid` mediumtext, - `allow_gid` medium_text, - `deny_cid` medium_text, - `deny_gid` medium_text, + `allow_gid` mediumtext, + `deny_cid` mediumtext, + `deny_gid` mediumtext, PRIMARY KEY(`id`) ) DEFAULT CHARSET=utf8mb4; @@ -235,10 +236,10 @@ CREATE TABLE IF NOT EXISTS `event` ( `nofinish` tinyint(1) NOT NULL DEFAULT 0, `adjust` tinyint(1) NOT NULL DEFAULT 1, `ignore` tinyint(1) unsigned NOT NULL DEFAULT 0, - `allow_cid` medium_text, - `allow_gid` medium_text, - `deny_cid` medium_text, - `deny_gid` medium_text, + `allow_cid` mediumtext, + `allow_gid` mediumtext, + `deny_cid` mediumtext, + `deny_gid` mediumtext, PRIMARY KEY(`id`), INDEX `uid_start` (`uid`,`start`) ) DEFAULT CHARSET=utf8mb4; @@ -434,7 +435,7 @@ CREATE TABLE IF NOT EXISTS `hook` ( `function` varchar(255) NOT NULL DEFAULT '', `priority` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY(`id`), - INDEX `hook_file_function` (`hook`(30),`file`(60),`function`(30)) + UNIQUE INDEX `hook_file_function` (`hook`(50),`file`(80),`function`(60)) ) DEFAULT CHARSET=utf8mb4; -- @@ -1073,10 +1074,10 @@ CREATE TABLE IF NOT EXISTS `user` ( `expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `service_class` varchar(32) NOT NULL DEFAULT '', `def_gid` int(11) NOT NULL DEFAULT 0, - `allow_cid` medium_text, - `allow_gid` medium_text, - `deny_cid` medium_text, - `deny_gid` medium_text, + `allow_cid` mediumtext, + `allow_gid` mediumtext, + `deny_cid` mediumtext, + `deny_gid` mediumtext, `openidserver` text, PRIMARY KEY(`uid`), INDEX `nickname` (`nickname`(32)) diff --git a/include/Core/Config.php b/include/Core/Config.php index 7b7045a9e..574ff5b8a 100644 --- a/include/Core/Config.php +++ b/include/Core/Config.php @@ -22,6 +22,8 @@ use dbm; */ class Config { + private static $cache; + /** * @brief Loads all configuration values of family into a cached storage. * @@ -32,10 +34,17 @@ class Config { * The category of the configuration value * @return void */ - public static function load($family) { + public static function load($family = "config") { + + // We don't preload "system" anymore. + // This reduces the number of database reads a lot. + if ($family == 'system') { + return; + } + $a = get_app(); - $r = q("SELECT `v`, `k` FROM `config` WHERE `cat` = '%s' ORDER BY `cat`, `k`, `id`", dbesc($family)); + $r = q("SELECT `v`, `k` FROM `config` WHERE `cat` = '%s'", dbesc($family)); if (dbm::is_result($r)) { foreach ($r as $rr) { $k = $rr['k']; @@ -43,11 +52,9 @@ class Config { $a->config[$k] = $rr['v']; } else { $a->config[$family][$k] = $rr['v']; + self::$cache[$family][$k] = $rr['v']; } } - } else if ($family != 'config') { - // Negative caching - $a->config[$family] = "!!"; } } @@ -78,34 +85,38 @@ class Config { $a = get_app(); if (!$refresh) { - // Looking if the whole family isn't set - if (isset($a->config[$family])) { - if ($a->config[$family] === '!!') { - return $default_value; - } - } - if (isset($a->config[$family][$key])) { - if ($a->config[$family][$key] === '!!') { + // Do we have the cached value? Then return it + if (isset(self::$cache[$family][$key])) { + if (self::$cache[$family][$key] == '!!') { return $default_value; + } else { + return self::$cache[$family][$key]; } - return $a->config[$family][$key]; } } - $ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' ORDER BY `id` DESC LIMIT 1", + $ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s'", dbesc($family), dbesc($key) ); - if (count($ret)) { + if (dbm::is_result($ret)) { // manage array value $val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret[0]['v'])?unserialize( $ret[0]['v']):$ret[0]['v']); - $a->config[$family][$key] = $val; + // Assign the value from the database to the cache + self::$cache[$family][$key] = $val; return $val; - } else { - $a->config[$family][$key] = '!!'; + } elseif (isset($a->config[$family][$key])) { + + // Assign the value (mostly) from the .htconfig.php to the cache + self::$cache[$family][$key] = $a->config[$family][$key]; + + return $a->config[$family][$key]; } + + self::$cache[$family][$key] = '!!'; + return $default_value; } @@ -134,7 +145,14 @@ class Config { return true; } - $a->config[$family][$key] = $value; + if ($family === 'config') { + $a->config[$key] = $value; + } elseif ($family != 'system') { + $a->config[$family][$key] = $value; + } + + // Assign the just added value to the cache + self::$cache[$family][$key] = $value; // manage array value $dbvalue = (is_array($value) ? serialize($value) : $value); @@ -174,9 +192,8 @@ class Config { */ public static function delete($family, $key) { - $a = get_app(); - if (x($a->config[$family],$key)) { - unset($a->config[$family][$key]); + if (isset(self::$cache[$family][$key])) { + unset(self::$cache[$family][$key]); } $ret = q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s'", dbesc($family), @@ -185,5 +202,4 @@ class Config { return $ret; } - } diff --git a/include/cli_startup.php b/include/cli_startup.php index 4cb86adef..4b66b47a0 100644 --- a/include/cli_startup.php +++ b/include/cli_startup.php @@ -1,5 +1,7 @@ set_baseurl(get_config('system','url')); diff --git a/include/create_shadowentry.php b/include/create_shadowentry.php index f06a0dd1b..005295c97 100644 --- a/include/create_shadowentry.php +++ b/include/create_shadowentry.php @@ -5,6 +5,9 @@ * * This script is started from mod/item.php to save some time when doing a post. */ + +use \Friendica\Core\Config; + require_once("boot.php"); require_once("include/threads.php"); @@ -21,8 +24,7 @@ function create_shadowentry_run($argv, $argc) { unset($db_host, $db_user, $db_pass, $db_data); } - load_config('config'); - load_config('system'); + Config::load(); if ($argc != 2) { return; diff --git a/include/cron.php b/include/cron.php index f7def6121..2fc8de51c 100644 --- a/include/cron.php +++ b/include/cron.php @@ -10,6 +10,8 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) { chdir($directory); } +use \Friendica\Core\Config; + require_once("boot.php"); require_once("include/photos.php"); require_once("include/user.php"); @@ -38,8 +40,7 @@ function cron_run(&$argv, &$argc){ require_once('mod/nodeinfo.php'); require_once('include/post_update.php'); - load_config('config'); - load_config('system'); + Config::load(); // Don't check this stuff if the function is called by the poller if (App::callstack() != "poller_run") { diff --git a/include/cronhooks.php b/include/cronhooks.php index 7524a0c3a..72b86be42 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -1,7 +1,8 @@ set_baseurl(get_config('system','url')); diff --git a/include/dbclean.php b/include/dbclean.php index c80e5a3be..8408ad188 100644 --- a/include/dbclean.php +++ b/include/dbclean.php @@ -23,8 +23,7 @@ function dbclean_run(&$argv, &$argc) { unset($db_host, $db_user, $db_pass, $db_data); } - Config::load('config'); - Config::load('system'); + Config::load(); if (!Config::get('system', 'dbclean', false)) { return; diff --git a/include/dbstructure.php b/include/dbstructure.php index 283d39d22..0fe157f32 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -495,7 +495,7 @@ function db_definition($charset) { $database["addon"] = array( "fields" => array( "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), - "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "name" => array("type" => "varchar(190)", "not null" => "1", "default" => ""), "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "installed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), @@ -504,6 +504,7 @@ function db_definition($charset) { ), "indexes" => array( "PRIMARY" => array("id"), + "name" => array("UNIQUE", "name"), ) ); $database["attach"] = array( @@ -922,7 +923,7 @@ function db_definition($charset) { ), "indexes" => array( "PRIMARY" => array("id"), - "hook_file_function" => array("hook(30)","file(60)","function(30)"), + "hook_file_function" => array("UNIQUE", "hook(50)","file(80)","function(60)"), ) ); $database["intro"] = array( diff --git a/include/dbupdate.php b/include/dbupdate.php index 28f1de340..3583be310 100644 --- a/include/dbupdate.php +++ b/include/dbupdate.php @@ -1,5 +1,7 @@ set_baseurl(get_config('system','url')); diff --git a/include/gprobe.php b/include/gprobe.php index 7169aada3..4407fa6d6 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -1,5 +1,7 @@ set_baseurl(get_config('system','url')); diff --git a/include/notifier.php b/include/notifier.php index 7bea239c6..24830a11a 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -1,4 +1,7 @@ set_baseurl(get_config('system','url')); diff --git a/include/pubsubpublish.php b/include/pubsubpublish.php index 6bd90bfc2..428103a97 100644 --- a/include/pubsubpublish.php +++ b/include/pubsubpublish.php @@ -72,8 +72,7 @@ function pubsubpublish_run(&$argv, &$argc){ require_once('include/items.php'); - load_config('config'); - load_config('system'); + Config::load(); // Don't check this stuff if the function is called by the poller if (App::callstack() != "poller_run") { diff --git a/include/queue.php b/include/queue.php index f36e7723c..bcd32985d 100644 --- a/include/queue.php +++ b/include/queue.php @@ -1,4 +1,7 @@ set_baseurl(get_config('system','url')); diff --git a/index.php b/index.php index f05151757..7408f495c 100644 --- a/index.php +++ b/index.php @@ -13,6 +13,8 @@ * */ +use \Friendica\Core\Config; + require_once('boot.php'); require_once('object/BaseObject.php'); @@ -54,8 +56,7 @@ if(!$install) { * Load configs from db. Overwrite configs from .htconfig.php */ - load_config('config'); - load_config('system'); + Config::load(); if ($a->max_processes_reached() OR $a->maxload_reached()) { header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable'); diff --git a/mod/friendica.php b/mod/friendica.php index 3f242f7c5..f613dfd39 100644 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -1,5 +1,7 @@ argv[1]=="json"){ $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'); @@ -29,7 +31,7 @@ function friendica_init(App $a) { $visible_plugins[] = $rr['name']; } - load_config('feature_lock'); + Config::load('feature_lock'); $locked_features = array(); if(is_array($a->config['feature_lock']) && count($a->config['feature_lock'])) { foreach($a->config['feature_lock'] as $k => $v) { diff --git a/util/maintenance.php b/util/maintenance.php index d1ff94524..28f3a503a 100644 --- a/util/maintenance.php +++ b/util/maintenance.php @@ -1,5 +1,7 @@ 1) From 4e91379f4adc719d2e78906341c8ea12331cb43e Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 19 Jan 2017 07:09:56 +0000 Subject: [PATCH 37/68] Added reminder --- include/acl_selectors.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index fccdb8066..f4b644d68 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -495,6 +495,8 @@ function acl_lookup(App $a, $out_type = 'json') { if ($type=='' || $type=='g'){ + /// @todo We should cache this query. + // This can be done when we can delete cache entries via wildcard $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') AS uids FROM `group` INNER JOIN `group_member` ON `group_member`.`gid`=`group`.`id` AND `group_member`.`uid` = `group`.`uid` From 75097ebf37df318dc95ad997664924c0c2be6462 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 19 Jan 2017 10:00:44 +0000 Subject: [PATCH 38/68] Added limit --- mod/network.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/mod/network.php b/mod/network.php index 2f33c62f7..12223494a 100644 --- a/mod/network.php +++ b/mod/network.php @@ -762,24 +762,25 @@ function network_content(App $a, $update = 0) { // on they just get buried deeper. It has happened to me a couple of times also. - if((! $group) && (! $cid) && (! $star)) { + if (!$group && !$cid && !$star) { - $unseen = q("SELECT `id` FROM `item` WHERE `unseen` AND `uid` = %d", + $unseen = q("SELECT `id` FROM `item` WHERE `unseen` AND `uid` = %d LIMIT 1", intval(local_user())); - if ($unseen) + if (dbm::is_result($unseen)) { $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` = 1 AND `uid` = %d", intval(local_user()) ); - } - else { - if($update_unseen) { + } + } else { + if ($update_unseen) { - $unseen = q("SELECT `id` FROM `item` ".$update_unseen); + $unseen = q("SELECT `id` FROM `item` ".$update_unseen. " LIMIT 1"); - if ($unseen) + if (dbm::is_result($unseen)) { $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen"); + } } } From 1360a0a003ca6a2aa0ebaec92156d296e92bf14d Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 19 Jan 2017 17:06:23 +0000 Subject: [PATCH 39/68] The worker now tells the process runtime length. --- include/poller.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/poller.php b/include/poller.php index b631d2acd..b0c594db1 100644 --- a/include/poller.php +++ b/include/poller.php @@ -153,6 +153,9 @@ function poller_execute($queue) { $funcname = str_replace(".php", "", basename($argv[0]))."_run"; if (function_exists($funcname)) { + + $stamp = (float)microtime(true); + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); // For better logging create a new process id for every worker call @@ -169,7 +172,9 @@ function poller_execute($queue) { sleep($cooldown); } - logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done"); + $duration = (float)round(microtime(true)-$stamp, 3); + + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); } else { From 6bbc0e4c78b638e52291f93179e0e50bb2985287 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 19 Jan 2017 22:47:20 +0000 Subject: [PATCH 40/68] Bugfix: The caching of values didn't really work for boolean values --- include/Core/Config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/Core/Config.php b/include/Core/Config.php index 574ff5b8a..1d0e66ddc 100644 --- a/include/Core/Config.php +++ b/include/Core/Config.php @@ -38,7 +38,7 @@ class Config { // We don't preload "system" anymore. // This reduces the number of database reads a lot. - if ($family == 'system') { + if ($family === 'system') { return; } @@ -88,7 +88,7 @@ class Config { // Do we have the cached value? Then return it if (isset(self::$cache[$family][$key])) { - if (self::$cache[$family][$key] == '!!') { + if (self::$cache[$family][$key] === '!!') { return $default_value; } else { return self::$cache[$family][$key]; @@ -141,7 +141,7 @@ class Config { $stored = self::get($family, $key); - if ($stored == $value) { + if ($stored === $value) { return true; } From 7757505e40dc93daced623ff803aecbb33486c93 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 19 Jan 2017 23:07:12 +0000 Subject: [PATCH 41/68] Bugfix: Quarter Hour cache was cleared every time. --- include/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cache.php b/include/cache.php index e8af8f9de..98799bcf4 100644 --- a/include/cache.php +++ b/include/cache.php @@ -186,7 +186,7 @@ class Cache { set_config("system", "cache_cleared_half_hour", time()); } - if (($max_level <= CACHE_QUARTER_HOUR) AND (get_config("system", "cache_cleared_hour")) < time() - self::duration(CACHE_QUARTER_HOUR)) { + if (($max_level <= CACHE_QUARTER_HOUR) AND (get_config("system", "cache_cleared_quarter_hour")) < time() - self::duration(CACHE_QUARTER_HOUR)) { q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d", dbesc(datetime_convert('UTC','UTC',"now - 15 minutes")), intval(CACHE_QUARTER_HOUR)); From 5ab6843f3838dada278a546c1223ae3dbc6d22be Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 20 Jan 2017 13:24:53 +0100 Subject: [PATCH 42/68] Bugfix: fix typo in event variable --- mod/cal.php | 2 +- mod/events.php | 2 +- view/theme/frio/templates/events_js.tpl | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mod/cal.php b/mod/cal.php index b3cd1e322..e70128d33 100644 --- a/mod/cal.php +++ b/mod/cal.php @@ -275,7 +275,7 @@ function cal_content(App $a) { '$tabs' => $tabs, '$title' => t('Events'), '$view' => t('View'), - '$previus' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), + '$previous' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), '$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''), '$calendar' => cal($y,$m,$links, ' eventcal'), diff --git a/mod/events.php b/mod/events.php index 4a421df9d..37dc97f0f 100644 --- a/mod/events.php +++ b/mod/events.php @@ -393,7 +393,7 @@ function events_content(App $a) { '$title' => t('Events'), '$view' => t('View'), '$new_event' => array(App::get_baseurl().'/events/new',t('Create New Event'),'',''), - '$previus' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), + '$previous' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), '$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''), '$calendar' => cal($y,$m,$links, ' eventcal'), diff --git a/view/theme/frio/templates/events_js.tpl b/view/theme/frio/templates/events_js.tpl index 80b08a1d3..dec47aed2 100644 --- a/view/theme/frio/templates/events_js.tpl +++ b/view/theme/frio/templates/events_js.tpl @@ -34,8 +34,8 @@ {{* The buttons to change the month/weeks/days *}}
- - + +
From 850419dd147887055b7c3d135382a55c1d232cb7 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Jan 2017 13:30:06 +0000 Subject: [PATCH 43/68] Hopefully better index length. --- include/dbstructure.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 0fe157f32..346920ab0 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -840,10 +840,10 @@ function db_definition($charset) { ), "indexes" => array( "PRIMARY" => array("id"), - "nurl" => array("nurl(32)"), - "name" => array("name(32)"), + "nurl" => array("nurl(64)"), + "name" => array("name(64)"), "nick" => array("nick(32)"), - "addr" => array("addr(32)"), + "addr" => array("addr(64)"), "hide_network_updated" => array("hide", "network", "updated"), "updated" => array("updated"), ) From 402c74f8ea4fd4a37854960335d3dedcde3f4658 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Jan 2017 15:00:14 +0000 Subject: [PATCH 44/68] Changed database.sql --- database.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/database.sql b/database.sql index 383253fcb..64d8d9f7d 100644 --- a/database.sql +++ b/database.sql @@ -352,10 +352,10 @@ CREATE TABLE IF NOT EXISTS `gcontact` ( `generation` tinyint(3) NOT NULL DEFAULT 0, `server_url` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY(`id`), - INDEX `nurl` (`nurl`(32)), - INDEX `name` (`name`(32)), + INDEX `nurl` (`nurl`(64)), + INDEX `name` (`name`(64)), INDEX `nick` (`nick`(32)), - INDEX `addr` (`addr`(32)), + INDEX `addr` (`addr`(64)), INDEX `hide_network_updated` (`hide`,`network`,`updated`), INDEX `updated` (`updated`) ) DEFAULT CHARSET=utf8mb4; From 9d77e91f5f2030e03d9d68684a2c26a0600a7af8 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Jan 2017 21:58:53 +0000 Subject: [PATCH 45/68] Some more logging --- include/plaintext.php | 3 ++- include/poller.php | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/include/plaintext.php b/include/plaintext.php index 632abf30c..6ab4ec77d 100644 --- a/include/plaintext.php +++ b/include/plaintext.php @@ -272,12 +272,13 @@ function shortenmsg($msg, $limit, $twitter = false) { $lines = explode("\n", $msg); $msg = ""; $recycle = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); + $ellipsis = html_entity_decode("…", ENT_QUOTES, 'UTF-8'); foreach ($lines AS $row=>$line) { if (iconv_strlen(trim($msg."\n".$line), "UTF-8") <= $limit) $msg = trim($msg."\n".$line); // Is the new message empty by now or is it a reshared message? elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle))) - $msg = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8")."..."; + $msg = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8").$ellipsis; else break; } diff --git a/include/poller.php b/include/poller.php index b0c594db1..3a83770ce 100644 --- a/include/poller.php +++ b/include/poller.php @@ -156,6 +156,18 @@ function poller_execute($queue) { $stamp = (float)microtime(true); + if (get_config("system", "profiler")) { + $a->performance["start"] = microtime(true); + $a->performance["database"] = 0; + $a->performance["database_write"] = 0; + $a->performance["network"] = 0; + $a->performance["file"] = 0; + $a->performance["rendering"] = 0; + $a->performance["parser"] = 0; + $a->performance["marktime"] = 0; + $a->performance["markstart"] = microtime(true); + } + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); // For better logging create a new process id for every worker call @@ -176,6 +188,19 @@ function poller_execute($queue) { logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); + if (get_config("system", "profiler")) { + $duration = microtime(true)-$a->performance["start"]; + + logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s", + round($a->performance["database"] - $a->performance["database_write"], 2), + round($a->performance["database_write"], 2), + round($a->performance["network"], 2), + round($a->performance["file"], 2), + round($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), + round($duration, 2)), + LOGGER_DEBUG); + } + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); } else { logger("Function ".$funcname." does not exist"); From 8939a2550273d16005e757e0dde134bd9538dc7b Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Jan 2017 22:05:50 +0000 Subject: [PATCH 46/68] Better number format --- include/poller.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/poller.php b/include/poller.php index 3a83770ce..dc7f70a51 100644 --- a/include/poller.php +++ b/include/poller.php @@ -184,7 +184,7 @@ function poller_execute($queue) { sleep($cooldown); } - $duration = (float)round(microtime(true)-$stamp, 3); + $duration = number_format(microtime(true) - $stamp, 3); logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); @@ -192,12 +192,12 @@ function poller_execute($queue) { $duration = microtime(true)-$a->performance["start"]; logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s", - round($a->performance["database"] - $a->performance["database_write"], 2), - round($a->performance["database_write"], 2), - round($a->performance["network"], 2), - round($a->performance["file"], 2), - round($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), - round($duration, 2)), + number_format($a->performance["database"] - $a->performance["database_write"], 2), + number_format($a->performance["database_write"], 2), + number_format($a->performance["network"], 2), + number_format($a->performance["file"], 2), + number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), + number_format($duration, 2)), LOGGER_DEBUG); } From 68115581d092356496100809311bf6c8a0868417 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Jan 2017 22:22:05 +0000 Subject: [PATCH 47/68] Avoiding some error messages --- include/session.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/session.php b/include/session.php index 31024060f..055bfcb4e 100644 --- a/include/session.php +++ b/include/session.php @@ -64,8 +64,9 @@ function ref_session_write($id, $data) { $default_expire = time() + 300; $memcache = cache::memcache(); - if (is_object($memcache)) { - $memcache->set(get_app()->get_hostname().":session:".$id, $data, MEMCACHE_COMPRESSED, $expire); + $a = get_app(); + if (is_object($memcache) AND is_object($a)) { + $memcache->set($a->get_hostname().":session:".$id, $data, MEMCACHE_COMPRESSED, $expire); return true; } From 72884d75d54fc759481d184542ff0fa761d20327 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 21 Jan 2017 05:05:41 +0000 Subject: [PATCH 48/68] Added callstack --- include/poller.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/include/poller.php b/include/poller.php index dc7f70a51..1f0594691 100644 --- a/include/poller.php +++ b/include/poller.php @@ -166,6 +166,7 @@ function poller_execute($queue) { $a->performance["parser"] = 0; $a->performance["marktime"] = 0; $a->performance["markstart"] = microtime(true); + $a->callstack = array(); } logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); @@ -199,6 +200,29 @@ function poller_execute($queue) { number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), number_format($duration, 2)), LOGGER_DEBUG); + + if (get_config("rendertime", "callstack")) { + $o = "ID ".$queue["id"].": ".$funcname.": Database Read:\n"; + foreach ($a->callstack["database"] AS $func => $time) { + $time = round($time, 3); + if ($time > 0) + $o .= $func.": ".$time."\n"; + } + $o .= "\nDatabase Write:\n"; + foreach ($a->callstack["database_write"] AS $func => $time) { + $time = round($time, 3); + if ($time > 0) + $o .= $func.": ".$time."\n"; + } + + $o .= "\nNetwork:\n"; + foreach ($a->callstack["network"] AS $func => $time) { + $time = round($time, 3); + if ($time > 0) + $o .= $func.": ".$time."\n"; + } + logger($o, LOGGER_DEBUG); + } } q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); From 45d6f6c0a3ab8a0048dfb4fd3b28db065ad3a485 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 21 Jan 2017 06:06:29 +0000 Subject: [PATCH 49/68] Some changed logging --- include/poller.php | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/include/poller.php b/include/poller.php index 1f0594691..0c5a4ff62 100644 --- a/include/poller.php +++ b/include/poller.php @@ -30,8 +30,9 @@ function poller_run($argv, $argc){ }; // Quit when in maintenance - if (get_config('system', 'maintenance', true)) + if (Config::get('system', 'maintenance', true)) { return; + } $a->start_process(); @@ -93,7 +94,7 @@ function poller_execute($queue) { $cooldown = Config::get("system", "worker_cooldown", 0); // Quit when in maintenance - if (get_config('system', 'maintenance', true)) { + if (Config::get('system', 'maintenance', true)) { return false; } @@ -154,9 +155,11 @@ function poller_execute($queue) { if (function_exists($funcname)) { + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); + $stamp = (float)microtime(true); - if (get_config("system", "profiler")) { + if (Config::get("system", "profiler")) { $a->performance["start"] = microtime(true); $a->performance["database"] = 0; $a->performance["database_write"] = 0; @@ -169,8 +172,6 @@ function poller_execute($queue) { $a->callstack = array(); } - logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); - // For better logging create a new process id for every worker call // But preserve the old one for the worker $old_process_id = $a->process_id; @@ -180,16 +181,11 @@ function poller_execute($queue) { $a->process_id = $old_process_id; - if ($cooldown > 0) { - logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds"); - sleep($cooldown); - } - $duration = number_format(microtime(true) - $stamp, 3); logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); - if (get_config("system", "profiler")) { + if (Config::get("system", "profiler")) { $duration = microtime(true)-$a->performance["start"]; logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s", @@ -201,7 +197,7 @@ function poller_execute($queue) { number_format($duration, 2)), LOGGER_DEBUG); - if (get_config("rendertime", "callstack")) { + if (Config::get("rendertime", "callstack")) { $o = "ID ".$queue["id"].": ".$funcname.": Database Read:\n"; foreach ($a->callstack["database"] AS $func => $time) { $time = round($time, 3); @@ -225,6 +221,11 @@ function poller_execute($queue) { } } + if ($cooldown > 0) { + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds"); + sleep($cooldown); + } + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); } else { logger("Function ".$funcname." does not exist"); @@ -241,7 +242,7 @@ function poller_execute($queue) { function poller_max_connections_reached() { // Fetch the max value from the config. This is needed when the system cannot detect the correct value by itself. - $max = get_config("system", "max_connections"); + $max = Config::get("system", "max_connections"); // Fetch the percentage level where the poller will get active $maxlevel = Config::get("system", "max_connections_level", 75); @@ -425,7 +426,7 @@ function poller_too_much_workers() { logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries." (".$processlist.") - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG); // Are there fewer workers running as possible? Then fork a new one. - if (!get_config("system", "worker_dont_fork") AND ($queues > ($active + 1)) AND ($entries > 1)) { + if (!Config::get("system", "worker_dont_fork") AND ($queues > ($active + 1)) AND ($entries > 1)) { logger("Active workers: ".$active."/".$queues." Fork a new worker.", LOGGER_DEBUG); $args = array("php", "include/poller.php", "no_cron"); $a = get_app(); @@ -554,7 +555,7 @@ function call_worker_if_idle() { if (function_exists("proc_open")) { // When was the last time that we called the worker? // Less than one minute? Then we quit - if ((time() - get_config("system", "worker_started")) < 60) { + if ((time() - Config::get("system", "worker_started")) < 60) { return; } From c74b7565a9fe681dd77cb2575659e3c4217847b6 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 21 Jan 2017 06:16:15 +0000 Subject: [PATCH 50/68] Rearranged the logging --- include/poller.php | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/include/poller.php b/include/poller.php index 0c5a4ff62..391c2e9d2 100644 --- a/include/poller.php +++ b/include/poller.php @@ -188,17 +188,8 @@ function poller_execute($queue) { if (Config::get("system", "profiler")) { $duration = microtime(true)-$a->performance["start"]; - logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s", - number_format($a->performance["database"] - $a->performance["database_write"], 2), - number_format($a->performance["database_write"], 2), - number_format($a->performance["network"], 2), - number_format($a->performance["file"], 2), - number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), - number_format($duration, 2)), - LOGGER_DEBUG); - if (Config::get("rendertime", "callstack")) { - $o = "ID ".$queue["id"].": ".$funcname.": Database Read:\n"; + $o = "\nDatabase Read:\n"; foreach ($a->callstack["database"] AS $func => $time) { $time = round($time, 3); if ($time > 0) @@ -217,8 +208,18 @@ function poller_execute($queue) { if ($time > 0) $o .= $func.": ".$time."\n"; } - logger($o, LOGGER_DEBUG); + } else { + $o = ''; } + + logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s".$o, + number_format($a->performance["database"] - $a->performance["database_write"], 2), + number_format($a->performance["database_write"], 2), + number_format($a->performance["network"], 2), + number_format($a->performance["file"], 2), + number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), + number_format($duration, 2)), + LOGGER_DEBUG); } if ($cooldown > 0) { From dc439c6e50b02337af08f6855121ed44b7205e63 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 21 Jan 2017 19:50:56 +0000 Subject: [PATCH 51/68] Bugfix for masses of php warnings --- include/poller.php | 170 +++++++++++++++++++++++++-------------------- 1 file changed, 95 insertions(+), 75 deletions(-) diff --git a/include/poller.php b/include/poller.php index 391c2e9d2..c0b92bb81 100644 --- a/include/poller.php +++ b/include/poller.php @@ -91,8 +91,6 @@ function poller_execute($queue) { $mypid = getmypid(); - $cooldown = Config::get("system", "worker_cooldown", 0); - // Quit when in maintenance if (Config::get('system', 'maintenance', true)) { return false; @@ -138,8 +136,6 @@ function poller_execute($queue) { $argv = json_decode($queue["parameter"]); - $argc = count($argv); - // Check for existance and validity of the include file $include = $argv[0]; @@ -155,77 +151,7 @@ function poller_execute($queue) { if (function_exists($funcname)) { - logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); - - $stamp = (float)microtime(true); - - if (Config::get("system", "profiler")) { - $a->performance["start"] = microtime(true); - $a->performance["database"] = 0; - $a->performance["database_write"] = 0; - $a->performance["network"] = 0; - $a->performance["file"] = 0; - $a->performance["rendering"] = 0; - $a->performance["parser"] = 0; - $a->performance["marktime"] = 0; - $a->performance["markstart"] = microtime(true); - $a->callstack = array(); - } - - // For better logging create a new process id for every worker call - // But preserve the old one for the worker - $old_process_id = $a->process_id; - $a->process_id = uniqid("wrk", true); - - $funcname($argv, $argc); - - $a->process_id = $old_process_id; - - $duration = number_format(microtime(true) - $stamp, 3); - - logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); - - if (Config::get("system", "profiler")) { - $duration = microtime(true)-$a->performance["start"]; - - if (Config::get("rendertime", "callstack")) { - $o = "\nDatabase Read:\n"; - foreach ($a->callstack["database"] AS $func => $time) { - $time = round($time, 3); - if ($time > 0) - $o .= $func.": ".$time."\n"; - } - $o .= "\nDatabase Write:\n"; - foreach ($a->callstack["database_write"] AS $func => $time) { - $time = round($time, 3); - if ($time > 0) - $o .= $func.": ".$time."\n"; - } - - $o .= "\nNetwork:\n"; - foreach ($a->callstack["network"] AS $func => $time) { - $time = round($time, 3); - if ($time > 0) - $o .= $func.": ".$time."\n"; - } - } else { - $o = ''; - } - - logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s".$o, - number_format($a->performance["database"] - $a->performance["database_write"], 2), - number_format($a->performance["database_write"], 2), - number_format($a->performance["network"], 2), - number_format($a->performance["file"], 2), - number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), - number_format($duration, 2)), - LOGGER_DEBUG); - } - - if ($cooldown > 0) { - logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds"); - sleep($cooldown); - } + poller_exec_function($queue, $funcname, $argv); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); } else { @@ -235,6 +161,100 @@ function poller_execute($queue) { return true; } +/** + * @brief Execute a function from the queue + * + * @param array $queue Workerqueue entry + * @param string $funcname name of the function + */ +function poller_exec_function($queue, $funcname, $argv) { + + $a = get_app(); + + $mypid = getmypid(); + + $argc = count($argv); + + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]); + + $stamp = (float)microtime(true); + + if (Config::get("system", "profiler")) { + $a->performance["start"] = microtime(true); + $a->performance["database"] = 0; + $a->performance["database_write"] = 0; + $a->performance["network"] = 0; + $a->performance["file"] = 0; + $a->performance["rendering"] = 0; + $a->performance["parser"] = 0; + $a->performance["marktime"] = 0; + $a->performance["markstart"] = microtime(true); + $a->callstack = array(); + } + + // For better logging create a new process id for every worker call + // But preserve the old one for the worker + $old_process_id = $a->process_id; + $a->process_id = uniqid("wrk", true); + + $funcname($argv, $argc); + + $a->process_id = $old_process_id; + + $duration = number_format(microtime(true) - $stamp, 3); + + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); + + if (Config::get("system", "profiler")) { + $duration = microtime(true)-$a->performance["start"]; + + if (Config::get("rendertime", "callstack")) { + if (isset($a->callstack["database"])) { + $o = "\nDatabase Read:\n"; + foreach ($a->callstack["database"] AS $func => $time) { + $time = round($time, 3); + if ($time > 0) + $o .= $func.": ".$time."\n"; + } + } + if (isset($a->callstack["database_write"])) { + $o .= "\nDatabase Write:\n"; + foreach ($a->callstack["database_write"] AS $func => $time) { + $time = round($time, 3); + if ($time > 0) + $o .= $func.": ".$time."\n"; + } + } + if (isset($a->callstack["network"])) { + $o .= "\nNetwork:\n"; + foreach ($a->callstack["network"] AS $func => $time) { + $time = round($time, 3); + if ($time > 0) + $o .= $func.": ".$time."\n"; + } + } + } else { + $o = ''; + } + + logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s".$o, + number_format($a->performance["database"] - $a->performance["database_write"], 2), + number_format($a->performance["database_write"], 2), + number_format($a->performance["network"], 2), + number_format($a->performance["file"], 2), + number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), + number_format($duration, 2)), + LOGGER_DEBUG); + } + + $cooldown = Config::get("system", "worker_cooldown", 0); + + if ($cooldown > 0) { + logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds"); + sleep($cooldown); + } +} + /** * @brief Checks if the number of database connections has reached a critical limit. * From 69f1deb16674f9d40ed8245cc5774aa5f234b80f Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 21 Jan 2017 20:15:49 +0000 Subject: [PATCH 52/68] Some added logging --- include/dba.php | 5 +++++ include/poller.php | 3 +++ 2 files changed, 8 insertions(+) diff --git a/include/dba.php b/include/dba.php index 7d2d3bbd0..8e2d18db6 100644 --- a/include/dba.php +++ b/include/dba.php @@ -138,6 +138,11 @@ class dba { return $return; } + /** + * @brief Analyze a database query and log this if some conditions are met. + * + * @param string $query The database query that will be analyzed + */ public function log_index($query) { $a = get_app(); diff --git a/include/poller.php b/include/poller.php index c0b92bb81..10bc70aae 100644 --- a/include/poller.php +++ b/include/poller.php @@ -179,6 +179,8 @@ function poller_exec_function($queue, $funcname, $argv) { $stamp = (float)microtime(true); + // We use the callstack here to analyze the performance of executed worker entries. + // For this reason the variables have to be initialized. if (Config::get("system", "profiler")) { $a->performance["start"] = microtime(true); $a->performance["database"] = 0; @@ -205,6 +207,7 @@ function poller_exec_function($queue, $funcname, $argv) { logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); + // Write down the performance values into the log if (Config::get("system", "profiler")) { $duration = microtime(true)-$a->performance["start"]; From be1db7bdb0563671979d6afb36d322bfc25822b9 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 22 Jan 2017 05:20:14 +0000 Subject: [PATCH 53/68] Use cache instead of config for storing last proc_run time --- boot.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/boot.php b/boot.php index 501ae38c4..ef787c635 100644 --- a/boot.php +++ b/boot.php @@ -1391,11 +1391,15 @@ class App { // If the last worker fork was less than 10 seconds before then don't fork another one. // This should prevent the forking of masses of workers. if (get_config("system", "worker")) { - if ((time() - get_config("system", "proc_run_started")) < 10) - return; - + $cachekey = "app:proc_run:started"; + $result = Cache::get($cachekey); + if (!is_null($result)) { + if ((time() - $result) < 10) { + return; + } + } // Set the timestamp of the last proc_run - set_config("system", "proc_run_started", time()); + Cache::set($cachekey, time(), CACHE_MINUTE); } $args[0] = ((x($this->config,'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'); From 73f182069ea28d7bc2da68c3fe28642737817f6c Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 22 Jan 2017 11:01:10 -0500 Subject: [PATCH 54/68] Auto-focus first input field of modal when shown Fixes #3101 --- view/theme/frio/templates/jot-header.tpl | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/view/theme/frio/templates/jot-header.tpl b/view/theme/frio/templates/jot-header.tpl index 145667be9..af9951528 100644 --- a/view/theme/frio/templates/jot-header.tpl +++ b/view/theme/frio/templates/jot-header.tpl @@ -29,7 +29,7 @@ $('#character-counter').text(textlen); }); return; - } + } tinyMCE.init({ theme : "advanced", mode : "specific_textareas", @@ -82,7 +82,7 @@ } else { $('#profile-jot-desc').html(' '); - } + } //Character count @@ -120,7 +120,7 @@ $("a#jot-perms-icon").colorbox({ 'inline' : true, 'transition' : 'elastic' - }); + }); } else { if (typeof cb!="undefined") cb(); @@ -397,13 +397,18 @@ var modal = $('#jot-modal').modal(); jotcache = $("#jot-sections"); + // Auto focus on the first enabled field in the modal + modal.on('shown.bs.modal', function (e) { + $('#jot-modal-content').find('select:not([disabled]), input:not([type=hidden]):not([disabled]), textarea:not([disabled])').first().focus(); + }) + modal .find('#jot-modal-content') .append(jotcache) .modal.show; } - // the following functions show/hide the specific jot content + // the following functions show/hide the specific jot content // in dependence of the selected nav function aclActive() { $(".modal-body #profile-jot-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").hide(); From ea18d1829ff3439cc1cea0aeb88c22b59a0d5c79 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 24 Jan 2017 06:45:46 +0000 Subject: [PATCH 55/68] Reformatted stuff, improved query --- include/contact_widgets.php | 2 +- mod/network.php | 16 +++++++--------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/include/contact_widgets.php b/include/contact_widgets.php index fee569e94..1e35db2c7 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -90,7 +90,7 @@ function networks_widget($baseurl,$selected = '') { $extra_sql = unavailable_networks(); - $r = q("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = %d AND NOT `self` $extra_sql ORDER BY `network`", + $r = q("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = %d AND `network` != '' $extra_sql ORDER BY `network`", intval(local_user()) ); diff --git a/mod/network.php b/mod/network.php index 12223494a..ad0347ba0 100644 --- a/mod/network.php +++ b/mod/network.php @@ -773,14 +773,12 @@ function network_content(App $a, $update = 0) { intval(local_user()) ); } - } else { - if ($update_unseen) { + } elseif ($update_unseen) { - $unseen = q("SELECT `id` FROM `item` ".$update_unseen. " LIMIT 1"); + $unseen = q("SELECT `id` FROM `item` ".$update_unseen. " LIMIT 1"); - if (dbm::is_result($unseen)) { - $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen"); - } + if (dbm::is_result($unseen)) { + $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen"); } } @@ -791,10 +789,10 @@ function network_content(App $a, $update = 0) { $o .= conversation($a,$items,$mode,$update); - if(!$update) { - if(get_pconfig(local_user(),'system','infinite_scroll')) { + if (!$update) { + if (get_pconfig(local_user(),'system','infinite_scroll')) { $o .= scroll_loader(); - } elseif(!get_config('system', 'old_pager')) { + } elseif (!get_config('system', 'old_pager')) { $o .= alt_pager($a,count($items)); } else { $o .= paginate($a); From becfeaf0b7e96485cc8f7a958288ba1573b5b8a2 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 24 Jan 2017 18:55:07 +0000 Subject: [PATCH 56/68] Bugfix: Caching of non string cache values now works. --- include/Core/Config.php | 19 +++++++++++++------ mod/admin.php | 13 ++++++++++++- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/include/Core/Config.php b/include/Core/Config.php index 1d0e66ddc..2e92b119a 100644 --- a/include/Core/Config.php +++ b/include/Core/Config.php @@ -139,24 +139,31 @@ class Config { public static function set($family, $key, $value) { $a = get_app(); + // We always store boolean values as integer. + // And when fetching we don't convert them back to boolean. + // So we have to do the conversion here so that the compare below works. + $dbvalue = (is_bool($value) ? (string)intval($value) : $value); + + // Convert the numeric values to string to make the compare work + $dbvalue = (is_numeric($value) ? (string)$value : $dbvalue); + $stored = self::get($family, $key); - if ($stored === $value) { + if ($stored === $dbvalue) { return true; } if ($family === 'config') { - $a->config[$key] = $value; + $a->config[$key] = $dbvalue; } elseif ($family != 'system') { - $a->config[$family][$key] = $value; + $a->config[$family][$key] = $dbvalue; } // Assign the just added value to the cache - self::$cache[$family][$key] = $value; + self::$cache[$family][$key] = $dbvalue; // manage array value - $dbvalue = (is_array($value) ? serialize($value) : $value); - $dbvalue = (is_bool($dbvalue) ? intval($dbvalue) : $dbvalue); + $dbvalue = (is_array($value) ? serialize($value) : $dbvalue); if (is_null($stored)) { $ret = q("INSERT INTO `config` (`cat`, `k`, `v`) VALUES ('%s', '%s', '%s') ON DUPLICATE KEY UPDATE `v` = '%s'", diff --git a/mod/admin.php b/mod/admin.php index b1bc96fd4..13a00ff6a 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -6,6 +6,7 @@ * @brief Friendica admin */ +use \Friendica\Core\Config; require_once("include/enotify.php"); require_once("include/text.php"); @@ -948,6 +949,16 @@ function admin_page_site(App $a) { $diaspora_able = ($a->get_path() == ""); + $optimize_max_tablesize = Config::get('system','optimize_max_tablesize', 100); + + if ($optimize_max_tablesize < -1) { + $optimize_max_tablesize = -1; + } + + if ($optimize_max_tablesize == 0) { + $optimize_max_tablesize = 100; + } + $t = get_markup_template("admin_site.tpl"); return replace_macros($t, array( '$title' => t('Administration'), @@ -1019,7 +1030,7 @@ function admin_page_site(App $a) { '$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.")), - '$optimize_max_tablesize'=> array('optimize_max_tablesize', t("Maximum table size for optimization"), ((intval(get_config('system','optimize_max_tablesize')) > 0)?get_config('system','optimize_max_tablesize'):100), t("Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it.")), + '$optimize_max_tablesize'=> array('optimize_max_tablesize', t("Maximum table size for optimization"), $optimize_max_tablesize, t("Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it.")), '$optimize_fragmentation'=> array('optimize_fragmentation', t("Minimum level of fragmentation"), ((intval(get_config('system','optimize_fragmentation')) > 0)?get_config('system','optimize_fragmentation'):30), t("Minimum fragmenation level to start the automatic optimization - default value is 30%.")), '$poco_completion' => array('poco_completion', t("Periodical check of global contacts"), get_config('system','poco_completion'), t("If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.")), From 422be7e212cc52a6776d3b4d01f49e5ff116368a Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 25 Jan 2017 05:33:23 +0000 Subject: [PATCH 57/68] Improved handling of non string values in the config --- include/Core/Config.php | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/include/Core/Config.php b/include/Core/Config.php index 2e92b119a..c495bbd4c 100644 --- a/include/Core/Config.php +++ b/include/Core/Config.php @@ -102,7 +102,7 @@ class Config { ); if (dbm::is_result($ret)) { // manage array value - $val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret[0]['v'])?unserialize( $ret[0]['v']):$ret[0]['v']); + $val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret[0]['v']) ? unserialize($ret[0]['v']) : $ret[0]['v']); // Assign the value from the database to the cache self::$cache[$family][$key] = $val; @@ -139,13 +139,10 @@ class Config { public static function set($family, $key, $value) { $a = get_app(); - // We always store boolean values as integer. - // And when fetching we don't convert them back to boolean. + // We store our setting values in a string variable. // So we have to do the conversion here so that the compare below works. - $dbvalue = (is_bool($value) ? (string)intval($value) : $value); - - // Convert the numeric values to string to make the compare work - $dbvalue = (is_numeric($value) ? (string)$value : $dbvalue); + // The exception are array values. + $dbvalue = (!is_array($value) ? (string)$value : $value); $stored = self::get($family, $key); From 4c8de5fcfdfaa5b23e7a88a58cbfdca6ce97a4b1 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 25 Jan 2017 13:10:42 +0100 Subject: [PATCH 58/68] limit the description of the meta tag to 160 characters in /mod/display --- mod/display.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mod/display.php b/mod/display.php index 115feb0ce..adbe7c676 100644 --- a/mod/display.php +++ b/mod/display.php @@ -425,6 +425,12 @@ function display_content(App $a, $update = 0) { if ($title == "") { $title = $author_name; } + + // Limit the description to 160 characters + if (strlen($description) > 160) { + $description = substr($description, 0, 157) . '...'; + } + $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here $title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here From a2740d2034ecb2d517b7329f99b032e3154cfe1c Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 25 Jan 2017 16:04:42 -0500 Subject: [PATCH 59/68] Remove tinyMCE libraries --- library/mcefixes/README | 8 - .../plugins.bbcode.editor_plugin_src.js | 268 - .../mcefixes/themes.advanced.img.icons.gif | Bin 11776 -> 0 bytes .../themes.advanced.skins.default.dialog.css | 117 - .../themes.advanced.skins.default.ui.css | 213 - library/tinymce/LICENSE.TXT | 504 - library/tinymce/changelog.txt | 477 - library/tinymce/examples/accessibility.html | 101 - library/tinymce/examples/css/content.css | 105 - library/tinymce/examples/css/word.css | 53 - library/tinymce/examples/custom_formats.html | 111 - library/tinymce/examples/full.html | 101 - library/tinymce/examples/index.html | 10 - library/tinymce/examples/lists/image_list.js | 9 - library/tinymce/examples/lists/link_list.js | 10 - library/tinymce/examples/lists/media_list.js | 14 - .../tinymce/examples/lists/template_list.js | 9 - library/tinymce/examples/media/logo.jpg | Bin 2729 -> 0 bytes library/tinymce/examples/media/logo_over.jpg | Bin 6473 -> 0 bytes library/tinymce/examples/media/sample.avi | Bin 82944 -> 0 bytes library/tinymce/examples/media/sample.dcr | Bin 6774 -> 0 bytes library/tinymce/examples/media/sample.flv | Bin 88722 -> 0 bytes library/tinymce/examples/media/sample.mov | Bin 55622 -> 0 bytes library/tinymce/examples/media/sample.ram | 1 - library/tinymce/examples/media/sample.rm | Bin 17846 -> 0 bytes library/tinymce/examples/media/sample.swf | Bin 6118 -> 0 bytes library/tinymce/examples/menu.html | 18 - library/tinymce/examples/simple.html | 47 - library/tinymce/examples/skins.html | 216 - .../tinymce/examples/templates/layout1.htm | 15 - .../tinymce/examples/templates/snippet1.htm | 1 - library/tinymce/examples/word.html | 72 - library/tinymce/jscripts/tiny_mce/langs/en.js | 1 - library/tinymce/jscripts/tiny_mce/license.txt | 504 - .../tiny_mce/plugins/advhr/css/advhr.css | 5 - .../tiny_mce/plugins/advhr/editor_plugin.js | 1 - .../plugins/advhr/editor_plugin_src.js | 57 - .../tiny_mce/plugins/advhr/js/rule.js | 43 - .../tiny_mce/plugins/advhr/langs/en_dlg.js | 1 - .../jscripts/tiny_mce/plugins/advhr/rule.htm | 58 - .../plugins/advimage/css/advimage.css | 13 - .../plugins/advimage/editor_plugin.js | 1 - .../plugins/advimage/editor_plugin_src.js | 50 - .../tiny_mce/plugins/advimage/image.htm | 235 - .../tiny_mce/plugins/advimage/img/sample.gif | Bin 1624 -> 0 bytes .../tiny_mce/plugins/advimage/js/image.js | 464 - .../tiny_mce/plugins/advimage/langs/en_dlg.js | 1 - .../tiny_mce/plugins/advlink/css/advlink.css | 8 - .../tiny_mce/plugins/advlink/editor_plugin.js | 1 - .../plugins/advlink/editor_plugin_src.js | 61 - .../tiny_mce/plugins/advlink/js/advlink.js | 543 - .../tiny_mce/plugins/advlink/langs/en_dlg.js | 1 - .../tiny_mce/plugins/advlink/link.htm | 338 - .../tiny_mce/plugins/advlist/editor_plugin.js | 1 - .../plugins/advlist/editor_plugin_src.js | 176 - .../plugins/autolink/editor_plugin.js | 1 - .../plugins/autolink/editor_plugin_src.js | 184 - .../plugins/autoresize/editor_plugin.js | 1 - .../plugins/autoresize/editor_plugin_src.js | 119 - .../plugins/autosave/editor_plugin.js | 1 - .../plugins/autosave/editor_plugin_src.js | 433 - .../tiny_mce/plugins/bbcode/editor_plugin.js | 1 - .../plugins/bbcode/editor_plugin_src.js | 311 - .../plugins/bbcode/orig/editor_plugin.js | 1 - .../plugins/bbcode/orig/editor_plugin_src.js | 120 - .../plugins/contextmenu/editor_plugin.js | 1 - .../plugins/contextmenu/editor_plugin_src.js | 163 - .../plugins/directionality/editor_plugin.js | 1 - .../directionality/editor_plugin_src.js | 85 - .../plugins/emotions/editor_plugin.js | 1 - .../plugins/emotions/editor_plugin_src.js | 43 - .../tiny_mce/plugins/emotions/emotions.htm | 42 - .../plugins/emotions/img/smiley-cool.gif | Bin 354 -> 0 bytes .../plugins/emotions/img/smiley-cry.gif | Bin 329 -> 0 bytes .../emotions/img/smiley-embarassed.gif | Bin 331 -> 0 bytes .../emotions/img/smiley-foot-in-mouth.gif | Bin 342 -> 0 bytes .../plugins/emotions/img/smiley-frown.gif | Bin 340 -> 0 bytes .../plugins/emotions/img/smiley-innocent.gif | Bin 336 -> 0 bytes .../plugins/emotions/img/smiley-kiss.gif | Bin 338 -> 0 bytes .../plugins/emotions/img/smiley-laughing.gif | Bin 343 -> 0 bytes .../emotions/img/smiley-money-mouth.gif | Bin 321 -> 0 bytes .../plugins/emotions/img/smiley-sealed.gif | Bin 323 -> 0 bytes .../plugins/emotions/img/smiley-smile.gif | Bin 344 -> 0 bytes .../plugins/emotions/img/smiley-surprised.gif | Bin 338 -> 0 bytes .../emotions/img/smiley-tongue-out.gif | Bin 328 -> 0 bytes .../plugins/emotions/img/smiley-undecided.gif | Bin 337 -> 0 bytes .../plugins/emotions/img/smiley-wink.gif | Bin 350 -> 0 bytes .../plugins/emotions/img/smiley-yell.gif | Bin 336 -> 0 bytes .../tiny_mce/plugins/emotions/js/emotions.js | 43 - .../tiny_mce/plugins/emotions/langs/en_dlg.js | 1 - .../tiny_mce/plugins/example/dialog.htm | 22 - .../tiny_mce/plugins/example/editor_plugin.js | 1 - .../plugins/example/editor_plugin_src.js | 84 - .../tiny_mce/plugins/example/img/example.gif | Bin 87 -> 0 bytes .../tiny_mce/plugins/example/js/dialog.js | 19 - .../tiny_mce/plugins/example/langs/en.js | 3 - .../tiny_mce/plugins/example/langs/en_dlg.js | 3 - .../example_dependency/editor_plugin.js | 1 - .../example_dependency/editor_plugin_src.js | 50 - .../plugins/fullpage/css/fullpage.css | 143 - .../plugins/fullpage/editor_plugin.js | 1 - .../plugins/fullpage/editor_plugin_src.js | 405 - .../tiny_mce/plugins/fullpage/fullpage.htm | 259 - .../tiny_mce/plugins/fullpage/js/fullpage.js | 232 - .../tiny_mce/plugins/fullpage/langs/en_dlg.js | 1 - .../plugins/fullscreen/editor_plugin.js | 1 - .../plugins/fullscreen/editor_plugin_src.js | 159 - .../plugins/fullscreen/fullscreen.htm | 110 - .../tiny_mce/plugins/iespell/editor_plugin.js | 1 - .../plugins/iespell/editor_plugin_src.js | 54 - .../plugins/inlinepopups/editor_plugin.js | 1 - .../plugins/inlinepopups/editor_plugin_src.js | 699 - .../skins/clearlooks2/img/alert.gif | Bin 810 -> 0 bytes .../skins/clearlooks2/img/button.gif | Bin 272 -> 0 bytes .../skins/clearlooks2/img/buttons.gif | Bin 1195 -> 0 bytes .../skins/clearlooks2/img/confirm.gif | Bin 907 -> 0 bytes .../skins/clearlooks2/img/corners.gif | Bin 909 -> 0 bytes .../skins/clearlooks2/img/horizontal.gif | Bin 769 -> 0 bytes .../skins/clearlooks2/img/vertical.gif | Bin 84 -> 0 bytes .../inlinepopups/skins/clearlooks2/window.css | 90 - .../plugins/inlinepopups/template.htm | 387 - .../plugins/insertdatetime/editor_plugin.js | 1 - .../insertdatetime/editor_plugin_src.js | 83 - .../tiny_mce/plugins/layer/editor_plugin.js | 1 - .../plugins/layer/editor_plugin_src.js | 262 - .../plugins/legacyoutput/editor_plugin.js | 1 - .../plugins/legacyoutput/editor_plugin_src.js | 139 - .../tiny_mce/plugins/lists/editor_plugin.js | 1 - .../plugins/lists/editor_plugin_src.js | 955 - .../tiny_mce/plugins/media/css/media.css | 17 - .../tiny_mce/plugins/media/editor_plugin.js | 1 - .../plugins/media/editor_plugin_src.js | 898 - .../tiny_mce/plugins/media/js/embed.js | 73 - .../tiny_mce/plugins/media/js/media.js | 513 - .../tiny_mce/plugins/media/langs/en_dlg.js | 1 - .../jscripts/tiny_mce/plugins/media/media.htm | 922 - .../tiny_mce/plugins/media/moxieplayer.swf | Bin 19980 -> 0 bytes .../plugins/nonbreaking/editor_plugin.js | 1 - .../plugins/nonbreaking/editor_plugin_src.js | 54 - .../plugins/noneditable/editor_plugin.js | 1 - .../plugins/noneditable/editor_plugin_src.js | 537 - .../plugins/pagebreak/editor_plugin.js | 1 - .../plugins/pagebreak/editor_plugin_src.js | 74 - .../tiny_mce/plugins/paste/editor_plugin.js | 1 - .../plugins/paste/editor_plugin_src.js | 885 - .../tiny_mce/plugins/paste/js/pastetext.js | 36 - .../tiny_mce/plugins/paste/js/pasteword.js | 51 - .../tiny_mce/plugins/paste/langs/en_dlg.js | 1 - .../tiny_mce/plugins/paste/pastetext.htm | 27 - .../tiny_mce/plugins/paste/pasteword.htm | 21 - .../tiny_mce/plugins/preview/editor_plugin.js | 1 - .../plugins/preview/editor_plugin_src.js | 53 - .../tiny_mce/plugins/preview/example.html | 28 - .../plugins/preview/jscripts/embed.js | 73 - .../tiny_mce/plugins/preview/preview.html | 17 - .../tiny_mce/plugins/print/editor_plugin.js | 1 - .../plugins/print/editor_plugin_src.js | 34 - .../tiny_mce/plugins/save/editor_plugin.js | 1 - .../plugins/save/editor_plugin_src.js | 101 - .../searchreplace/css/searchreplace.css | 6 - .../plugins/searchreplace/editor_plugin.js | 1 - .../searchreplace/editor_plugin_src.js | 61 - .../plugins/searchreplace/js/searchreplace.js | 142 - .../plugins/searchreplace/langs/en_dlg.js | 1 - .../plugins/searchreplace/searchreplace.htm | 100 - .../plugins/spellchecker/css/content.css | 1 - .../plugins/spellchecker/editor_plugin.js | 1 - .../plugins/spellchecker/editor_plugin_src.js | 436 - .../plugins/spellchecker/img/wline.gif | Bin 46 -> 0 bytes .../tiny_mce/plugins/style/css/props.css | 14 - .../tiny_mce/plugins/style/editor_plugin.js | 1 - .../plugins/style/editor_plugin_src.js | 71 - .../tiny_mce/plugins/style/js/props.js | 709 - .../tiny_mce/plugins/style/langs/en_dlg.js | 1 - .../jscripts/tiny_mce/plugins/style/props.htm | 845 - .../tiny_mce/plugins/style/readme.txt | 19 - .../plugins/tabfocus/editor_plugin.js | 1 - .../plugins/tabfocus/editor_plugin_src.js | 122 - .../jscripts/tiny_mce/plugins/table/cell.htm | 180 - .../tiny_mce/plugins/table/css/cell.css | 17 - .../tiny_mce/plugins/table/css/row.css | 25 - .../tiny_mce/plugins/table/css/table.css | 13 - .../tiny_mce/plugins/table/editor_plugin.js | 1 - .../plugins/table/editor_plugin_src.js | 1456 -- .../tiny_mce/plugins/table/js/cell.js | 319 - .../tiny_mce/plugins/table/js/merge_cells.js | 27 - .../jscripts/tiny_mce/plugins/table/js/row.js | 254 - .../tiny_mce/plugins/table/js/table.js | 501 - .../tiny_mce/plugins/table/langs/en_dlg.js | 1 - .../tiny_mce/plugins/table/merge_cells.htm | 32 - .../jscripts/tiny_mce/plugins/table/row.htm | 158 - .../jscripts/tiny_mce/plugins/table/table.htm | 188 - .../tiny_mce/plugins/template/blank.htm | 12 - .../plugins/template/css/template.css | 23 - .../plugins/template/editor_plugin.js | 1 - .../plugins/template/editor_plugin_src.js | 159 - .../tiny_mce/plugins/template/js/template.js | 106 - .../tiny_mce/plugins/template/langs/en_dlg.js | 1 - .../tiny_mce/plugins/template/template.htm | 31 - .../plugins/visualblocks/css/visualblocks.css | 21 - .../plugins/visualblocks/editor_plugin.js | 1 - .../plugins/visualblocks/editor_plugin_src.js | 63 - .../plugins/visualchars/editor_plugin.js | 1 - .../plugins/visualchars/editor_plugin_src.js | 83 - .../plugins/wordcount/editor_plugin.js | 1 - .../plugins/wordcount/editor_plugin_src.js | 122 - .../tiny_mce/plugins/xhtmlxtras/abbr.htm | 142 - .../tiny_mce/plugins/xhtmlxtras/acronym.htm | 142 - .../plugins/xhtmlxtras/attributes.htm | 149 - .../tiny_mce/plugins/xhtmlxtras/cite.htm | 142 - .../plugins/xhtmlxtras/css/attributes.css | 11 - .../tiny_mce/plugins/xhtmlxtras/css/popup.css | 9 - .../tiny_mce/plugins/xhtmlxtras/del.htm | 162 - .../plugins/xhtmlxtras/editor_plugin.js | 1 - .../plugins/xhtmlxtras/editor_plugin_src.js | 132 - .../tiny_mce/plugins/xhtmlxtras/ins.htm | 162 - .../tiny_mce/plugins/xhtmlxtras/js/abbr.js | 28 - .../tiny_mce/plugins/xhtmlxtras/js/acronym.js | 28 - .../plugins/xhtmlxtras/js/attributes.js | 111 - .../tiny_mce/plugins/xhtmlxtras/js/cite.js | 28 - .../tiny_mce/plugins/xhtmlxtras/js/del.js | 53 - .../plugins/xhtmlxtras/js/element_common.js | 229 - .../tiny_mce/plugins/xhtmlxtras/js/ins.js | 53 - .../plugins/xhtmlxtras/langs/en_dlg.js | 1 - .../tiny_mce/themes/advanced/about.htm | 52 - .../tiny_mce/themes/advanced/anchor.htm | 26 - .../tiny_mce/themes/advanced/charmap.htm | 55 - .../tiny_mce/themes/advanced/color_picker.htm | 70 - .../themes/advanced/editor_template.js | 1 - .../themes/advanced/editor_template_src.js | 1490 -- .../tiny_mce/themes/advanced/image.htm | 80 - .../themes/advanced/img/colorpicker.jpg | Bin 2584 -> 0 bytes .../tiny_mce/themes/advanced/img/flash.gif | Bin 239 -> 0 bytes .../tiny_mce/themes/advanced/img/icons.gif | Bin 11982 -> 0 bytes .../tiny_mce/themes/advanced/img/iframe.gif | Bin 600 -> 0 bytes .../themes/advanced/img/pagebreak.gif | Bin 325 -> 0 bytes .../themes/advanced/img/quicktime.gif | Bin 301 -> 0 bytes .../themes/advanced/img/realmedia.gif | Bin 439 -> 0 bytes .../themes/advanced/img/shockwave.gif | Bin 384 -> 0 bytes .../tiny_mce/themes/advanced/img/trans.gif | Bin 43 -> 0 bytes .../tiny_mce/themes/advanced/img/video.gif | Bin 597 -> 0 bytes .../themes/advanced/img/windowsmedia.gif | Bin 415 -> 0 bytes .../tiny_mce/themes/advanced/js/about.js | 73 - .../tiny_mce/themes/advanced/js/anchor.js | 56 - .../tiny_mce/themes/advanced/js/charmap.js | 363 - .../themes/advanced/js/color_picker.js | 345 - .../tiny_mce/themes/advanced/js/image.js | 253 - .../tiny_mce/themes/advanced/js/link.js | 159 - .../themes/advanced/js/source_editor.js | 78 - .../tiny_mce/themes/advanced/langs/en.js | 1 - .../tiny_mce/themes/advanced/langs/en_dlg.js | 1 - .../tiny_mce/themes/advanced/link.htm | 57 - .../tiny_mce/themes/advanced/shortcuts.htm | 47 - .../themes/advanced/skins/default/content.css | 50 - .../themes/advanced/skins/default/dialog.css | 118 - .../advanced/skins/default/img/buttons.png | Bin 3133 -> 0 bytes .../advanced/skins/default/img/items.gif | Bin 64 -> 0 bytes .../advanced/skins/default/img/menu_arrow.gif | Bin 68 -> 0 bytes .../advanced/skins/default/img/menu_check.gif | Bin 70 -> 0 bytes .../advanced/skins/default/img/progress.gif | Bin 1787 -> 0 bytes .../advanced/skins/default/img/tabs.gif | Bin 1322 -> 0 bytes .../themes/advanced/skins/default/ui.css | 219 - .../advanced/skins/highcontrast/content.css | 24 - .../advanced/skins/highcontrast/dialog.css | 106 - .../themes/advanced/skins/highcontrast/ui.css | 106 - .../themes/advanced/skins/o2k7/content.css | 48 - .../themes/advanced/skins/o2k7/dialog.css | 118 - .../advanced/skins/o2k7/img/button_bg.png | Bin 2766 -> 0 bytes .../skins/o2k7/img/button_bg_black.png | Bin 651 -> 0 bytes .../skins/o2k7/img/button_bg_silver.png | Bin 2084 -> 0 bytes .../themes/advanced/skins/o2k7/ui.css | 222 - .../themes/advanced/skins/o2k7/ui_black.css | 8 - .../themes/advanced/skins/o2k7/ui_silver.css | 5 - .../themes/advanced/source_editor.htm | 25 - .../tiny_mce/themes/simple/editor_template.js | 1 - .../themes/simple/editor_template_src.js | 84 - .../tiny_mce/themes/simple/img/icons.gif | Bin 806 -> 0 bytes .../tiny_mce/themes/simple/langs/en.js | 1 - .../themes/simple/skins/default/content.css | 25 - .../themes/simple/skins/default/ui.css | 32 - .../themes/simple/skins/o2k7/content.css | 17 - .../simple/skins/o2k7/img/button_bg.png | Bin 5102 -> 0 bytes .../tiny_mce/themes/simple/skins/o2k7/ui.css | 35 - library/tinymce/jscripts/tiny_mce/tiny_mce.js | 1 - .../jscripts/tiny_mce/tiny_mce_popup.js | 5 - .../tinymce/jscripts/tiny_mce/tiny_mce_src.js | 19030 ---------------- .../tiny_mce/utils/editable_selects.js | 70 - .../jscripts/tiny_mce/utils/form_utils.js | 210 - .../tinymce/jscripts/tiny_mce/utils/mctabs.js | 162 - .../jscripts/tiny_mce/utils/validate.js | 252 - 290 files changed, 47281 deletions(-) delete mode 100644 library/mcefixes/README delete mode 100644 library/mcefixes/plugins.bbcode.editor_plugin_src.js delete mode 100644 library/mcefixes/themes.advanced.img.icons.gif delete mode 100644 library/mcefixes/themes.advanced.skins.default.dialog.css delete mode 100644 library/mcefixes/themes.advanced.skins.default.ui.css delete mode 100644 library/tinymce/LICENSE.TXT delete mode 100644 library/tinymce/changelog.txt delete mode 100644 library/tinymce/examples/accessibility.html delete mode 100644 library/tinymce/examples/css/content.css delete mode 100644 library/tinymce/examples/css/word.css delete mode 100644 library/tinymce/examples/custom_formats.html delete mode 100644 library/tinymce/examples/full.html delete mode 100644 library/tinymce/examples/index.html delete mode 100644 library/tinymce/examples/lists/image_list.js delete mode 100644 library/tinymce/examples/lists/link_list.js delete mode 100644 library/tinymce/examples/lists/media_list.js delete mode 100644 library/tinymce/examples/lists/template_list.js delete mode 100644 library/tinymce/examples/media/logo.jpg delete mode 100644 library/tinymce/examples/media/logo_over.jpg delete mode 100644 library/tinymce/examples/media/sample.avi delete mode 100644 library/tinymce/examples/media/sample.dcr delete mode 100644 library/tinymce/examples/media/sample.flv delete mode 100644 library/tinymce/examples/media/sample.mov delete mode 100644 library/tinymce/examples/media/sample.ram delete mode 100644 library/tinymce/examples/media/sample.rm delete mode 100644 library/tinymce/examples/media/sample.swf delete mode 100644 library/tinymce/examples/menu.html delete mode 100644 library/tinymce/examples/simple.html delete mode 100644 library/tinymce/examples/skins.html delete mode 100644 library/tinymce/examples/templates/layout1.htm delete mode 100644 library/tinymce/examples/templates/snippet1.htm delete mode 100644 library/tinymce/examples/word.html delete mode 100644 library/tinymce/jscripts/tiny_mce/langs/en.js delete mode 100644 library/tinymce/jscripts/tiny_mce/license.txt delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/css/media.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/js/media.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/media.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/preview/example.html delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/preview/preview.html delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/css/props.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/js/props.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/props.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/style/readme.txt delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/cell.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/css/row.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/css/table.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/js/row.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/js/table.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/row.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/table.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/blank.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/css/template.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/js/template.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/template/template.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/about.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/image.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/link.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png delete mode 100644 library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css delete mode 100644 library/tinymce/jscripts/tiny_mce/tiny_mce.js delete mode 100644 library/tinymce/jscripts/tiny_mce/tiny_mce_popup.js delete mode 100644 library/tinymce/jscripts/tiny_mce/tiny_mce_src.js delete mode 100644 library/tinymce/jscripts/tiny_mce/utils/editable_selects.js delete mode 100644 library/tinymce/jscripts/tiny_mce/utils/form_utils.js delete mode 100644 library/tinymce/jscripts/tiny_mce/utils/mctabs.js delete mode 100644 library/tinymce/jscripts/tiny_mce/utils/validate.js diff --git a/library/mcefixes/README b/library/mcefixes/README deleted file mode 100644 index 578163a9d..000000000 --- a/library/mcefixes/README +++ /dev/null @@ -1,8 +0,0 @@ -In order to make TinyMCE work smoothly with Friendica, the files in this directory are those few files we've changed in TinyMCE. We will attempt to keep them current, but if you decide to upgrade tinymce, it is best to save current copies of the files in question from the active tinymce tree and replace them or merge them after upgrade. - -Except for some simple theming, the primary changes are the advanced theme icon set, which we changed the "html" icon to "[]" to represent BBcode, and major changes have been made to the bbcode plugin. - - -in TinyMCE 3.5b2 it appears that we are getting double linefeeds. Code has been put in place in mod/item.php and mod/message.php to reduce the duplicates. - - diff --git a/library/mcefixes/plugins.bbcode.editor_plugin_src.js b/library/mcefixes/plugins.bbcode.editor_plugin_src.js deleted file mode 100644 index f94fbc5d7..000000000 --- a/library/mcefixes/plugins.bbcode.editor_plugin_src.js +++ /dev/null @@ -1,268 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -/* Macgirvin Aug-2010 changed from punbb to dfrn dialect */ - -(function() { - tinymce.create('tinymce.plugins.BBCodePlugin', { - init : function(ed, url) { - var t = this, dialect = ed.getParam('bbcode_dialect', 'dfrn').toLowerCase(); - - ed.onBeforeSetContent.add(function(ed, o) { - o.content = t['_' + dialect + '_bbcode2html'](o.content); - }); - - ed.onPostProcess.add(function(ed, o) { - if (o.set) - o.content = t['_' + dialect + '_bbcode2html'](o.content); - - if (o.get) - o.content = t['_' + dialect + '_html2bbcode'](o.content); - }); - }, - - getInfo : function() { - return { - longname : 'BBCode Plugin', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - // HTML -> BBCode in DFRN dialect - _dfrn_html2bbcode : function(s) { - s = tinymce.trim(s); - - function rep(re, str) { - - -s = s.replace(re,str); - - //modify code to keep stuff intact within [code][/code] blocks - //Waitman Gobble NO WARRANTY - -/* This doesn't seem to work well with -[code]line1 -line2[/code] -commenting out for now -*/ - -/* - var o = new Array(); - var x = s.split("[code]"); - var i = 0; - - var si = ""; - si = x.shift(); - si = si.replace(re,str); - o.push(si); - - for (i = 0; i < x.length; i++) { - var no = new Array(); - var j = x.shift(); - var g = j.split("[/code]"); - no.push(g.shift()); - si = g.shift(); - si = si.replace(re,str); - no.push(si); - o.push(no.join("[/code]")); - } - - s = o.join("[code]"); -*/ - }; - - - - - /* oembed */ - function _h2b_cb(match) { - /* - function s_h2b(data) { - match = data; - } - $.ajax({ - type:"POST", - url: 'oembed/h2b', - data: {text: match}, - async: false, - success: s_h2b, - dataType: 'html' - }); - */ - - var f, g, tof = [], tor = []; - var find_spanc = /]*class *= *[\"'](?:[^\"']* )*oembed(?: [^\"']*)*[\"'][^>]*>(.*?(?:]*>(.*?)<\/span *>)*.*?)<\/span *>/ig; - while (f = find_spanc.exec(match)) { - var find_a = /]* rel=[\"']oembed[\"'][^>]*)>.*?<\/a *>/ig; - if (g = find_a.exec(f[1])) { - var find_href = /href=[\"']([^\"']*)[\"']/ig; - var m2 = find_href.exec(g[1]); - if (m2[1]) { - tof.push(f[0]); - tor.push("[EMBED]" + m2[1] + "[/EMBED]"); - } - } - } - for (var i = 0; i < tof.length; i++) match = match.replace(tof[i], tor[i]); - - return match; - } - if (s.indexOf('class="oembed')>=0){ - //alert("request oembed html2bbcode"); - s = _h2b_cb(s); - } - - /* /oembed */ - - - // example: to [b] - rep(/(.*?)<\/a>/gi,"[bookmark=$1]$2[/bookmark]"); - rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); - rep(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"); - rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); - rep(/(.*?)<\/font>/gi,"$1"); - rep(//gi,"[img=$1x$2]$3[/img]"); - rep(//gi,"[img=$2x$1]$3[/img]"); - rep(//gi,"[img=$3x$2]$1[/img]"); - rep(//gi,"[img=$2x$3]$1[/img]"); - rep(//gi,"[img]$1[/img]"); - - rep(/
    (.*?)<\/ul>/gi,"[list]$1[/list]"); - rep(/
      (.*?)<\/ul>/gi,"[list=]$1[/list]"); - rep(/
        (.*?)<\/ul>/gi,"[list=1]$1[/list]"); - rep(/
          (.*?)<\/ul>/gi,"[list=i]$1[/list]"); - rep(/
            (.*?)<\/ul>/gi,"[list=I]$1[/list]"); - rep(/
              (.*?)<\/ul>/gi,"[list=a]$1[/list]"); - rep(/
                (.*?)<\/ul>/gi,"[list=A]$1[/list]"); - rep(/
              • (.*?)<\/li>/gi,'[li]$1[/li]'); - - rep(/(.*?)<\/code>/gi,"[code]$1[/code]"); - rep(/<\/(strong|b)>/gi,"[/b]"); - rep(/<(strong|b)>/gi,"[b]"); - rep(/<\/(em|i)>/gi,"[/i]"); - rep(/<(em|i)>/gi,"[i]"); - rep(/<\/u>/gi,"[/u]"); - rep(/(.*?)<\/span>/gi,"[u]$1[/u]"); - rep(//gi,"[u]"); - rep(/]*>/gi,"[quote]"); - rep(/<\/blockquote>/gi,"[/quote]"); - rep(/
                /gi,"[hr]"); - rep(/
                /gi,"\n"); - rep(//gi,"\n"); - rep(/
                /gi,"\n"); - rep(/

                /gi,""); - rep(/<\/p>/gi,"\n"); - rep(/ /gi," "); - rep(/"/gi,"\""); - rep(/</gi,"<"); - rep(/>/gi,">"); - rep(/&/gi,"&"); - - return s; - }, - - // BBCode -> HTML from DFRN dialect - _dfrn_bbcode2html : function(s) { - s = tinymce.trim(s); - - - function rep(re, str) { - - - //modify code to keep stuff intact within [code][/code] blocks - //Waitman Gobble NO WARRANTY - - - var o = new Array(); - var x = s.split("[code]"); - var i = 0; - - var si = ""; - si = x.shift(); - si = si.replace(re,str); - o.push(si); - - for (i = 0; i < x.length; i++) { - var no = new Array(); - var j = x.shift(); - var g = j.split("[/code]"); - no.push(g.shift()); - si = g.shift(); - si = si.replace(re,str); - no.push(si); - o.push(no.join("[/code]")); - } - - s = o.join("[code]"); - - }; - - - - - - // example: [b] to - rep(/\n/gi,"
                "); - rep(/\[b\]/gi,""); - rep(/\[\/b\]/gi,""); - rep(/\[i\]/gi,""); - rep(/\[\/i\]/gi,""); - rep(/\[u\]/gi,""); - rep(/\[\/u\]/gi,""); - rep(/\[hr\]/gi,"


                "); - rep(/\[bookmark=([^\]]+)\](.*?)\[\/bookmark\]/gi,"$2"); - rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"
                $2"); - rep(/\[url\](.*?)\[\/url\]/gi,"$1"); - rep(/\[img=(.*?)x(.*?)\](.*?)\[\/img\]/gi,""); - rep(/\[img\](.*?)\[\/img\]/gi,""); - - rep(/\[list\](.*?)\[\/list\]/gi, '
                  $1
                '); - rep(/\[list=\](.*?)\[\/list\]/gi, '
                  $1
                '); - rep(/\[list=1\](.*?)\[\/list\]/gi, '
                  $1
                '); - rep(/\[list=i\](.*?)\[\/list\]/gi,'
                  $1
                '); - rep(/\[list=I\](.*?)\[\/list\]/gi, '
                  $1
                '); - rep(/\[list=a\](.*?)\[\/list\]/gi, '
                  $1
                '); - rep(/\[list=A\](.*?)\[\/list\]/gi, '
                  $1
                '); - rep(/\[li\](.*?)\[\/li\]/gi, '
              • $1
              • '); - rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"$2"); - rep(/\[size=(.*?)\](.*?)\[\/size\]/gi,"$2"); - rep(/\[code\](.*?)\[\/code\]/gi,"$1"); - rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"
                $1
                "); - - /* oembed */ - function _b2h_cb(match, url) { - url = bin2hex(url); - function s_b2h(data) { - match = data; - } - $.ajax({ - url: 'oembed/b2h?url=' + url, - async: false, - success: s_b2h, - dataType: 'html' - }); - return match; - } - s = s.replace(/\[embed\](.*?)\[\/embed\]/gi, _b2h_cb); - - /* /oembed */ - - return s; - } - }); - - // Register plugin - tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin); -})(); diff --git a/library/mcefixes/themes.advanced.img.icons.gif b/library/mcefixes/themes.advanced.img.icons.gif deleted file mode 100644 index efb356c417872141ac1ddce5916b92bc852dbd00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11776 zcmWlfi$Bwk_s8G6UtIQ{``uhZgekWV(%hHpkVv&Ha+gTyn4G znxu?UD%F%q(YFyInqR;3FP!syo!8@aj>}$W%m0GrU^c*49PnRoUscNx004_WqqmuQ z6pgLWbNYE}Q%)|QEP&fvty-#;6!6mj_#vH_{1 zW$n)cm>*ufe%IOAvH4_VX`JTm?KAS^MbXWo-Im+GEN=2au=)lo`Fj8On}r`!8O2YQ z)>nMnPao@k^3yncwzWVOauc%e;$(LGffW=gzocb&czDCeaCJU+V}0nr;S-DNqUO=f zs;a8kgW%beg6;>s!o|P0_%g}KsrPEV3RqEg=RUo9zuZ!jkyNo5*(=N~>nxx@j*EOA z^wiIbQeQL^wlXC((2;9)qOGK{-_WD>XV-sUKF|JLu^8ie=j1F1=6>B7tA6pMHT2pS zdd2Im{&6oeCY6@5*dp~L*L=gnWkj@f;7nC%(@1R5+>IM)?>`HFJ@u(7JX!j1Ss)Nj zd=w3}#=IQVPs+X1|M>k|H@ChE_CCS%rKP2mj9WbZ&y32C)896es+X#3+D_jZJ9B;c zT4_VmO`pQ^ig=GEXL8ZSNUsyNmGiAlzt=^?4u`2nVfLZTA(v`%?=I$6Jj-XXd=k1( z`jgyF_cnEplc+aZdneZHEcb-g)ZKeBX=LW_`h9v&3>u*^hs%ul!`nE$!TpPW9% zXs@anJC-Z-Wi1J|wt}(*N%bOj))*#Hy%6?ZH0#XnI+hIpZql4B<1^9GobHCRxx+@oiD9)TQKl@WsN^0 zY^W6ZM>n-LmTs+Wc?Jw&{!4YIT_1ie{O~~_ToYDzbo9Lxxi+5_wgq!r?p5D=^yZ7G zwCkN_;72JDw0l_aCMPznF|A@s$mI*3JsqvQ{e{xew*2XXUufn|pIGyUiSG{{Tze3> zr{M{^nya^6cVlDY!z7Y)j@83LYtivGyum$Y+hXC;ZOaN#Ru!T_} zb2+`qXleaJ!`zboG*HX6nA}u4n5nQUVtTl#?9mm1Lx#%U=JLn+dY4{Qm*gFHz!8H- zinsrQjoh?6{eAjzOV!vNQZiQ6wY7S@jBNcfUPujpeqFWH^_Ht&?bGsrmWX%XY2HQ+ zdtq=rJ-NEqEn&~)rYqd)-)8FHFkgYJB){v9|8;rl?3rHZk;{-R3HP=7nSK`jg2(hO zdc$G(ne4w)>4)?UFSN3M>9x0nc8Vd0MxA%#!kZw3Ju(ux+4BQkWOU@l75I;wnJo6C z>QZ{u6<87~ZQDiq7)t+i(?wxkV?R!{Vd(;wAV1TaTz|z@na~@O{nlBOHOI~!NXe+c zRhzqhq$j*a%Aa%>T83=E9E}bU@~m3vThPBKj@|!my!_x0xs3>3nva>yl53yU3^Hn; zn-O=x6>?@$RicNd&)WRhIm3kP;8UF&njlQL)KxwjB-%PA;hnYFz(vyFs@K6bjgU82 zx;Z+t=Rzhe*dge5g3&w(+u^q3ZHhy=^PmK&n6?#Zl9cUxO-A0=$Yj*n6?RxhA!w2c%b)hLAO8z(a+t2xZF8zzk z+F`+AVEtPa)gC7GV!ItGYc8M^yNwDDv5S6_yK9z0cGMG- zu7CM#W#9|kk;Z41za5XZ(%rp`w*=b2UwbZ~^ z6qT!=!rc2DZLjKX@Pj2zB-Yre&VB49sVRiBca{E`2e-YTz|vj*f%^ovUw@Q)?R_?Y z^YrvP^y+ko$oH@jZq(q%ecBghojpWY`rT2RSr&Uc!Jd+w$kTL$0*80DK7k}cIqIcQ z$jJDuelX=p5>x#S&3YIHhfRMPymJ z*dIC2vPVPckJT2tZ*NxOe}qDiZ5?-6W{YXUHTLUM>`)Hg5YV)rsbpV*J;1-4RQMI@ z%+8jy8*q>!hsj?THHR7r5431VMQ20egEq1T8>7-Qp=gh4Eu7TgGZT8om<$VL%LSS) zl7Nk4ETvuF8HkYau(Z2X%(#%72^T^QrIe;;g$Ej8b@-cV!~)#@P%v>PfjJ51nYI7M zp?Vsa%AHa_kiukVGF|!%jjq`~LC#YADNjkMWtP6_xgO!8J@NcAsjL4UlR6{o!3HG4 zIO4cSSdJL_cA};$8|n-XZ4Yv*40-+FV8)5d9X%!X%Ps0+lJLUy1Q{n*xpNZjDYT6X z*eR3%DVF_VsMkgJO2en_8DU=SuNRNC%rz!XA}xcaddc4-6T&#u9AI< zPZd>Rt_{6ftglS%8ihBq>&$a?jj(acVNF*ATQEr zl?HpJsjch<4$tePvO^8EgVgB=S(#Oafl4ggZ4e_+n|P7TFYgm0YA;z<&Om7a*8cbR zHtSecG2T!J0hFNt{~Zi}zQ26RkGlOQzqg#1`r*YH!2vtZ?>IPe#VkJiOBQ0O>hB@I z#mbsQHH@8jJ^jQ4t=Ow^OcxYW>65-f9v%&ImMc3}{1h*1Px;waDaR+`3)=8ZU5=s4^+<|)}3;&%uwCugx=u7Csgpzf8pV7Q066`U#6sq|&2 zJ=pZ?>jN)dp0r2*Z~Dezfn!%8(UDqLr117c_U%IEknBHUI5{2nOm+B-n5AHmBQ9tAJjj$oLGOH3d1 zly)2QI@fjYM8~A!jR=pEf%KYKX>VU$`3~&kxZ8#{KnUIHMRn6tqYGbG=5>4~Asusx zT^o6st5(1+tHz^nsUbB@8tvGL?J!C3=COzSo<>He-V|&8PcuYkm%g#0J!mI^;txZ> zsay6*b!`0-J7@s^Lc4d8%01`uKBQtkXQ%nCLzH{Lja8D}-g$n{4mv6}f+sWoS6_Om zOiH7+^^#qr0luz2^%`k)F{E2A_sOl$$Fht5SzFmLXcB-$DZ}8KB87C!pWo`;mYhUA zYxdKocGLeXWR7mTVx0dCN;!Grm)W+DfYr6+uYptR>cujrGKLWfI10en4_th%*rKZy zHE?9vPAfjm=&S6B2_Iu>6`n*nizxtthvc|J@xG=SHO@PyKSNIc#w9k#BYGpW!mOO> z=T7P>w~afA#h<+CtAwHXGF_ml&CXA$p@~$uO}r->mKVFlcezReS#*g_ zbNro0mSKR{!*fy<{`l&1Nva%iXmd(_UeH5skUKsVL69e$rE7a9s4);8v{OAU2m>L+ zkL9*A6mR+K;(u}eV-tHVW{oCO!9U~M`nB=Pxk~b=%cA8)pO@{IpiL|gV09CBwVT9V zZ@I|7dLs3cyn>#_!Wm$}MXrY@Ck(Zl7{aS^P_50UhgMOE90Y+4R0&Vt@&?p}iqc5a zedlOea%apd588dn+@H@PCwYB2o)js=I2;mweE2RigaQ^=hm_tvr?qT%q#GHmV`&+-FXyY}C3p-rkuUz5E4~F@`K6FqSeQONklrp3 zhX_$-1rkOrgvdTIw_&^yn|;(V(n8H? z@X&N@J81gIpTS}hALU~Nu|1p!=^3DbEGbJ5-1jR(FC33!+izcnAOr=wg>01?eAKzi zBk_2WFiVCbHgJNlTRVF0n7%<_cJknHbW^sW(aJ}2@@rHexI*Yqm_?xG1 zTwnL;7zSNKlChRu>qT5 z_GrbCSwc2>IJ&6w1};ecZH2td8F{U)!{K@9sagsKuAIAjrG)$O>tCR{7^!1vYQNI( zU3>Kw%N3H&eLJS`DfvvmZ|SwG63?zlaHsG%9<)ief?`$CZ01(uG+dcwGDr2xk`7Nt?sr4-mUoqGhp8}5W?Et+@(p0@s#SC zgz!^>yGjg%9vvFMEjr9ba$_x@{;3(meIIqg)#kDASPpxM+W2{h?fp3=NuLjqv4k=#n5e=wP~#groukBy2ee8Nx+zxVFK< zPL6UHClj>Wz^QQHu$V5ihIqlj&Of!CBCOQ6a8T6%+GYSfPC?G(gZC1;JG;A45Uv~* z5)8Hh%57IMFw6$7&#h<34H%vWM!LDs@$NR!MmIL-e#hNzF$Q1>G^v0OKF&j=4uUcp zlJpUoLQ?muE=@xzG>MDmJ$c{&rWirt)0v<+7j=yQ-|T*P4d98>AlE3MmVx0wM6);p zqCha*Pr}5~A!s|Xoiy=B9E?I8rj^)&@^10tixE`%2p1(>>0Jm0Ooa}!zYE2dpfTLQ zkHS9mBKjg7xJYl^BG#&KU|SRznhVOY5ouI>01tVEb`L=T7v40)^9MW^1|&-$#zIM- zI!Mh|v491L5(hF!0shMoC=Gk;Ok5v;zaR? zVkBIn>!SM|*U<)1kIZndDR^;5*JXEbmi-{syB+O~ybj*69dA!m?npk^p+2K5#dwTu z8i*%hF26-@<3bq92yXzsmyI_q!0Vm__wbQ0YC{ySBZ}An<0E?_z=iJ(i?!;1mEg0x zkW6s2&t{YfKnZ+nyC;2*BfGGNUM=^40rH_(A=sL8Qp2vEub1cN^IcImtk;U^0b};NE>5os>o8@ z4kK0Ce3gVzV7Eyh>ZKB3=7z95POr)#P;Ez_hKj^15}@M_J~;&L810jGMB7{gTzB^y zpT8=e1jt(Bl8VuUR9o>8tIt_-`4Mk=>3MX*_R33@*0hu7(yy z2uFO`Fm+ys;9Uod3q=J%rrGcJQ!}@9KVpLIh8!S=_#p>`-|+=qLC?y}7ZnDegCXbz ziuZz$US3!IMpp>fjR<-wPK7<7!c_UddEsslKfWXHnKB9SI}(&Lde&S&gAIawI|;Ml zAU|7!nv&Jp(H~VB#!AIMV#a3_BtKzhU>^){z$FBX0<)xjgh5a^4y1sHj@3Y*35YcU zLSi>4XPdW;hP=c_U#4T_J-T;5;ZX`BVT8}szy!i>0uqTKs7Qa#-ZxX; z2jct3sF$_`eFY*Gavb2&aK5|Wp#`m3hhec4$U_ZNjsShvOst*;=Fh7Y%&Xz~sN?TY zTyEVd)mJgM#3SloBMAV}0LY{b9vB^b#C=7L1QW9dgTN{AphwKZApi0du4HPZv@P2Z zlwczdD`RutiRByi6&Utizu%BF>eeIrF{9QuMtB1+0TfH^mW+P3nB7Ax4p01&?%#OZ zyL)=@()8mW_^VX0Ho>Hri4gJd@%$gj-Y7JKhRg;LG6K|pbYLV3Z^)a52EF@Dhj9tt z)}OcTBd0)PM3Q9!G-`ZAm)CK&cWLHbM_VN51;C;?xIaQ*mLw@h!Da}7A0ER$?;}qN zB*1;0tM9C&pXA%JWsIjg^LP_ueA&ENqL=*E3dRDmpFBmoCLp=p>ga%KXFQ!PW9p{UM z9^t`DzI>x0oP-h|cqlaiQi3aiVL*07A&l-LObk&(0ES$IJ_6^Yphzk~LrDb88B^wl z=Y2AN`%HO{r$>8ljCt&^{}^k@BZ+C-yC8Z4INAaYXEE@ z4P7L{ka>s($yXjbUIOExsU^1D+nWxB!VhIfB&=61yfWxB&%ozx-@H!NQp-_A-3Qj8 zTK2fEIJ}TkGGzkQ@yc12eeSPN)aCqsVEt4d+(M#@I{o@rsArZ~mfE%=)1d2R&ayd* zCYrr3;K%Chli+sq&@4Hn)eCw~r83QOCiVqZviQ=_F>XW(&#xp2rL*vUaD$Hb41jK8 zN$7xY)V}}jKT!73WS5Xam7Gchx~L@W6tRS*t7is2kAmi(L?KfrhwnNo%Aqo#^Zoag zRP?pPzgIqqtn|p1^t06W%LKN-LtW<@VLOT+2H|x@KcDJpdPX-`#vB{Ds`6i@{~fhU zh#{Mq^2O8qly|VD+0Na$nKW??#7Q&*h!M~sFvlb!`3`09;a~k#t!1zDo3{xN2(&F; zvyiGup=Ba}IfS8Aqj9WbbGuhoX=Qf_{nOHcm+9A={^eSOdM>ehD9!3wF|qJV18e-Y|%R zcGepcWcu#1ASZMbhh$Gm5q%nKPIMN|D%KMgwIRXh@vG{Ff!smH%^kq;mO9YBRMsdO z>rr~74bLJ3aOpw3MzxHv(u`T2US6YSyan7nr{9rST;!d;t<*-)el&4+n7KxRi&8w- zMeY1Y%x$!T<;*R#a#;yHn$z)7dG;pGzES17QyqFZPZN6fPF}}Hy#8fp+nt0u68ZW{ z-?zMna05%~%`vHL)8`6qQTJXR5xEWL-xuMnsARRr*u1_RPpc~a`*T)PA_q!?PLJOOM&w7KAQfm z(gCTcBk8iq{2^tvjqKegtb&9WE0)PPncMx`zS^^h{Pc%4{PBT$`qG(lcsrhx3QwNt zN2y0lB^8XCd~~QpT6M$~`Z)VnJ7^e&F&r^@)0~^pOM+miRooQu>CAB(tqfzR_wDmp zXadLPWUNeqi`0AG5sig=UytlFdw@GyB9(5Tw*LL5|JHfgvOA)`H$lBP%-`Q%dC7(@ z-zQYQa9PF@$J~!w<^K}-#HHeG2*56BKpaZTWnK-6SGG)+U!Y>GTS;g&nPks@IdAObu!|BF3&6g@+97fq0CQaik?<6q{cT~xxk;#8CJ(X$xR!rHCU_g1;OcJ5 zee4m~tdPIy^3?LGwD*afI_6wPB~nXzU#-t}{QTg+j2^v#i0fpp~7k!Zd|m5(7K z@WJicxOvj&PcOWamuSJ#wS~7Xn4^;1>U*nCqTeaSpUa=Pk#h!40vMXSG^H1GGt5S= zvgd(hn>xG5KAyJs#YYm++$7m6T!iNc5hfeNRrcYLbdRwa;!Hn{lTjy^%O8mtoiA4| zyw)09jVI`bv+3|kvbz0{{M3@{DmUE;edO!!mmRB<4YDEgo26X;C-287DnL}&9v%Zn z`v!r@0M=Nt&aRTZm$q3tAin{+5Jv}KKS+X8fzh2ih*%{VdsK=5uEB!fwcJ@8=p@^| zhAW@dMZ&7w%idvH21ZkP62Xv%OdiMYgG50jyAa&AbKH-R%dC^p91J|%f1g4(mTN2- z%%#N;zv_MZPi9g42ullcq9aAqhLM>X>!xvq-=`6xCrw9pU=*{9 ze7fjtnWA^$;12YrL%7g={>Vr=+e{ZuTiSfYS4nZT^^z#TdXO2P{tJt;ryA!I<2(mw zpoIh7)Ac}{rK$(T**rwkrX%_4R!Op{0u@(cc@QMUj0e%9pjzXur(|N=XJ_FRTb60k z0U7u?cLv6w@LT;2dRCE+BWfNT{Iph*6XHmZz2=(&TWV25#5X+7kFW!;x)xUEFmc)h zU}67P!hSRz-u$FCMc6_&Dt3psd7u^5C@-x=)4h;qoqJE2-9(8Ga2n5dM23{KANY2O z-ms>Yep8JQ(5GVx4PMLTVWLy|Ud{;iCd*Ibb1A0;t?y6Z_d;j&SJE3nhSVAyoM+oe6Rm zt4O`+Ff=Rmv?2bm8{bIYYdBSzyRjV^_6g(e!&0_%N>_)*m^+AT67i*u`!D$;jmf8E zvV*e1_x1jd%(IqiD1rZxJh6uZIB60~(Z|D6xjbx#OJ}{DlaRd&_IB+zMjirKM~M>?KW?Q{gW{mELW|$7IFWe=6Wj z{Wfo^JnpLK8ie^5`RvVDRHR=lOSJUcVA`)^{vUE!ckG^;5{oy8Q`usudaX-p({$pLgEX z)QfDogiS}r@sP_YxoE(0V&@^MX%>y%I7dI%Yx-6>{S8;*%^b8oK_QC{_#HIMi@lc^ zX7;(zEM<*h&NX`+mfRnntRjTz6egLkK~ne(3tA}a)70NQzs;d3fEM|bWu~zN++G`#}K9feR{vK zAX#$GK!wN1Jndjvo@6ZOmlaxA_gGrkRcMBHpyOdq{njcN z@^ruLrh}_Wx>CIAd7#rkfnGJ=nQv_vVU^-*gK)1#oSkA6I=Z>3;wr5^SzLHupU zeI^ll*K+4KErbst`MWPGH;Y+Q?wW727j5#-1|kD5AQxeKLhPAK&tb$}Fi-NsoxyvW zu(rk3E#?U=iL92y!j{D9UCgjuHr;!injx3?C}le1))Xd|KtdBqeeUQ}BP~7d=r(@Z zt>-8-FU92vri}(D5TPhm+Hem>fkl^`18TFFsppfldv4^eRp(OgiOS>6n3icb!=PA8 zM&Dz`C(9fay<%w&U5CQ*B>@MfP-h5zmw}|6mVJH!2!#Oi)xs;GPm<(lp5Yt#EkJII zjI|8|_jj}zPC;!!z?S$}{Tm&rhseYu5v(*-3f8m-ron}y;_XrZC>+fsg~25Y=?_N! zC31kxRj)tr`bm1q=JXg{OG+)g!y+CQN^*ow;$a?oa6i7w!q}f4uP!NysCev;c6|bx z^0%iWaX3$joMaDlYOamlL^DupDN!UqoaQZFjqnd((rAN;G>4h#VRKT2X?N$QmZXi@+4!TWXeQ6X!{q`t} z!rGJ~CYh3%D(NP)B!_B%uK@!n?xlrgUL=;)o6%>R?zJ)=6Ri&#sVwP)-B${3$LXUM*6*O0;H_Nfd60cg^GV&eO-RlDL|PkLKq&z~o|I`^T?^B*SCp%v?> z=#duujTT+OE+oK{AwyzCpnEY#H{s8#eifyG0kkU}aHXIf3BVx&HrZ*43BnFhr|1bU z!=AQU^N~^D4TW+2RTJzp;&z5kA z-c|eW<i}+QkjZ2I$A)&=5Bd%R1R6rV+M6JR?&C}&S;&K%nZ8U2AsaeUaY%F9P;gvQ zDrrc>1Z0q8hK_8~!Sn`w50=5ovj7(2wH6HWeNIdgZLXvL^s8Bt%`E)8<^;J1*vJjno zV4I%CK_KBico-ptz9u*t^$-MnAmI}95;6H9+})ZZIImPxnkyn5WTCWO zf%Jl@RX-L$l-pi;>=5^3B0-QE&t#8I!APDO=D|UandWTCLi^N(uw-|=8dXb#dKetb zO1g}OTLt)5ky$JBD{k9s%XaF&&wVEE^G^=2CGV2lSU`<^NbwZJqM8w14|(U8f#o6& zP6e$s2Nv@o+;@Q%bAjscm8`Pb=N?{`re7i ziZuw9@@dYJVa}ne?aSC12H$h_YcVCXOdBiP0f^F!#BJ9Oz)kkr#?KD5-9U05-&Dc8 zjQ;U3FKV%K$Bot>2Sli;w!IbnA4NUscNOdTP{RP0b}=pGlk@*(ZU0wJM@60e-&dnU zS+t}*oajjI|K^WOJdY}wE1i&`!T)`^M8tn}Mn6xSO43l$H1|7YZni&*lY%NwDJG{J z!S8zjgOm7Vqr$0j3d134&hd;`zgSTlKjZI%bT}PI@QHdR?lG?Nbfi3dem=5P{9FH7 z+F%aNXDPEh?8h|<_Rg1Yh>ijfPZ9KURSE#ebaOVKnVWv9Y zqYq@@rWUm1e~eeg=v(~S<#PI_hGD)N3rEQ|O*?(FCKadm({j%zho|Ul?yuai6x-jw z_Wb;{uON1pv!|-M_&uYicwCIrp2a?DoD6QU53sX!MvuM!<@RXV{nfI^SX@Gjg(qr- zBERCTyW(T9;_I@q&ws@)bY=g!75}uAfa@y!pqs*9tww!ajsCrQ3iX?2aT?BD zRbE7JmDA(&;BXfGKw-*Dncwl(f1ejs{l3utJHcy3X)Yz!_)4TdOFN8dz=f&_;8JVM zwZY#^|Fx9RwbXNKOc&s&;M@}FH$$q?c~@2yO^fxLkJgJ{t>5~(egZQ-0sC`jYrWthl*)zJ598HXhaS)Vk1qA6R>C zrO-IgzWLhdv{ z^;rLPSR#CN;Zjsb%GXAbP=0GsH!(o>clx8W*`uTIHKq(F)r$n5Gu~RS+WOPJwd>XI zPwkgd;zeT5Q+#2pL?}vXN0^Y%$HdC-jGPl{46vkhed@v%HHWg4EMgbt7PW@inl5=e z!k4s1uIl^mcNEM+MhkZaYf{61={zg8I=8g&?Uyc}W1l8v7_qE3QSN$uXVmxQ?Juf* cs(k7rR`g%i1-8fjK!0B`nBt1Vpn&!N0l$%*^Z)<= diff --git a/library/mcefixes/themes.advanced.skins.default.dialog.css b/library/mcefixes/themes.advanced.skins.default.dialog.css deleted file mode 100644 index f01222650..000000000 --- a/library/mcefixes/themes.advanced.skins.default.dialog.css +++ /dev/null @@ -1,117 +0,0 @@ -/* Generic */ -body { -font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; -scrollbar-3dlight-color:#F0F0EE; -scrollbar-arrow-color:#676662; -scrollbar-base-color:#F0F0EE; -scrollbar-darkshadow-color:#DDDDDD; -scrollbar-face-color:#E0E0DD; -scrollbar-highlight-color:#F0F0EE; -scrollbar-shadow-color:#F0F0EE; -scrollbar-track-color:#F5F5F5; -background:#F0F0EE; -padding:0; -margin:8px 8px 0 8px; -} - -html {background:#F0F0EE;} -td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -textarea {resize:none;outline:none;} -a:link, a:visited {color:black;} -a:hover {color:#2B6FB6;} -.nowrap {white-space: nowrap} - -/* Forms */ -fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;} -legend {color:#2B6FB6; font-weight:bold;} -label.msg {display:none;} -label.invalid {color:#EE0000; display:inline;} -input.invalid {border:1px solid #EE0000;} -input {background:#FFF; border:1px solid #CCC;} -input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -input, select, textarea {border:1px solid #808080;} -input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} -input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} -.input_noborder {border:0;} - -/* Buttons */ -#insert, #cancel, input.button, .updateButton { -border:0; margin:0; padding:0; -font-weight:bold; -width:94px; height:26px; -background:url(img/buttons.png) 0 -26px; -cursor:pointer; -padding-bottom:2px; -float:left; -} - -#insert {background:url(img/buttons.png) 0 -52px} -#cancel {background:url(img/buttons.png) 0 0; float:right} - -/* Browse */ -a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} -.mceOldBoxModel a.browse span {width:22px; height:20px;} -a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} -a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} -.mceOldBoxModel a.pickcolor span {width:21px; height:17px;} -a.pickcolor:hover span {background-color:#B2BBD0;} -a.pickcolor:hover span.disabled {} - -/* Charmap */ -table.charmap {border:1px solid #AAA; text-align:center} -td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;} -#charmap a {display:block; color:#000; text-decoration:none; border:0} -#charmap a:hover {background:#CCC;color:#2B6FB6} -#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center} -#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center} - -/* Source */ -.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;} -.mceActionPanel {margin-top:5px;} - -/* Tabs classes */ -.tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;} -.tabs ul {margin:0; padding:0; list-style:none;} -.tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;} -.tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;} -.tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;} -.tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;} -.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} -.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} - -/* Panels */ -.panel_wrapper div.panel {display:none;} -.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} -.panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;} - -/* Columns */ -.column {float:left;} -.properties {width:100%;} -.properties .column1 {} -.properties .column2 {text-align:left;} - -/* Titles */ -h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;} -h3 {font-size:14px;} -.title {font-size:12px; font-weight:bold; color:#2B6FB6;} - -/* Dialog specific */ -#link .panel_wrapper, #link div.current {height:125px;} -#image .panel_wrapper, #image div.current {height:200px;} -#plugintable thead {font-weight:bold; background:#DDD;} -#plugintable, #about #plugintable td {border:1px solid #919B9C;} -#plugintable {width:96%; margin-top:10px;} -#pluginscontainer {height:290px; overflow:auto;} -#colorpicker #preview {float:right; width:50px; height:14px;line-height:1px; border:1px solid black; margin-left:5px;} -#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;} -#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;} -#colorpicker #light div {overflow:hidden;} -#colorpicker #previewblock {float:right; padding-left:10px; height:20px;} -#colorpicker .panel_wrapper div.current {height:175px;} -#colorpicker #namedcolors {width:150px;} -#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;} -#colorpicker #colornamecontainer {margin-top:5px;} -#colorpicker #picker_panel fieldset {margin:auto;width:325px;} diff --git a/library/mcefixes/themes.advanced.skins.default.ui.css b/library/mcefixes/themes.advanced.skins.default.ui.css deleted file mode 100644 index 5f1f96448..000000000 --- a/library/mcefixes/themes.advanced.skins.default.ui.css +++ /dev/null @@ -1,213 +0,0 @@ -/* Reset */ -.defaultSkin table, .defaultSkin tbody, .defaultSkin a, .defaultSkin img, .defaultSkin tr, .defaultSkin div, .defaultSkin td, .defaultSkin iframe, .defaultSkin span, .defaultSkin *, .defaultSkin .mceText {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000; vertical-align:baseline; width:auto; border-collapse:separate; text-align:left} -.defaultSkin a:hover, .defaultSkin a:link, .defaultSkin a:visited, .defaultSkin a:active {text-decoration:none; font-weight:normal; cursor:default; color:#000} -.defaultSkin table td {vertical-align:middle} - -/* Containers */ -.defaultSkin table {direction:ltr; background:#FFF} -.defaultSkin iframe {display:block; background:#FFF} -.defaultSkin .mceToolbar {height:26px} -.defaultSkin .mceLeft {text-align:left} -.defaultSkin .mceRight {text-align:right} - -/* External */ -.defaultSkin .mceExternalToolbar {position:absolute; border:2px solid #CCC; border-bottom:0; display:none;} -.defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;} -.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0} - -/* Layout */ -.defaultSkin table.mceLayout {border:0; border-left:1px solid #CCC; border-right:1px solid #CCC} -.defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC} -.defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC} -.defaultSkin table.mceToolbar, .defaultSkin tr.mceFirst .mceToolbar tr td, .defaultSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;} -.defaultSkin td.mceToolbar {padding-top:1px; vertical-align:top} -.defaultSkin .mceIframeContainer { /*border-top:1px solid #CCC; border-bottom:1px solid #CCC */ border: none;} -.defaultSkin .mceStatusbar {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px} -.defaultSkin .mceStatusbar div {float:left; margin:2px} -.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} -.defaultSkin .mceStatusbar a:hover {text-decoration:underline} -.defaultSkin table.mceToolbar {margin-left:3px} -.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {display:block; width:20px; height:20px} -.defaultSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} -.defaultSkin td.mceCenter {text-align:center;} -.defaultSkin td.mceCenter table {margin:0 auto; text-align:left;} -.defaultSkin td.mceRight table {margin:0 0 0 auto;} - -/* Button */ -.defaultSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px; margin-right:10px} -.defaultSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0} -.defaultSkin a.mceButtonActive, .defaultSkin a.mceButtonSelected {border:1px solid #0A246A; background-color:#C2CBE0} -.defaultSkin .mceButtonDisabled .mceIcon {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -.defaultSkin .mceButtonLabeled {width:auto} -.defaultSkin .mceButtonLabeled span.mceIcon {float:left} -.defaultSkin span.mceButtonLabel {display:block; font-size:10px; padding:4px 6px 0 22px; font-family:Tahoma,Verdana,Arial,Helvetica} -.defaultSkin .mceButtonDisabled .mceButtonLabel {color:#888} - -/* Separator */ -.defaultSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:2px 2px 0 4px} - -/* ListBox */ -.defaultSkin .mceListBox, .defaultSkin .mceListBox a {display:block} -.defaultSkin .mceListBox .mceText {padding-left:4px; width:70px; text-align:left; border:1px solid #CCC; border-right:0; background:#FFF; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden} -.defaultSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(../../img/icons.gif) -741px 0; margin-right:2px; border:1px solid #CCC;} -.defaultSkin table.mceListBoxEnabled:hover .mceText, .defaultSkin .mceListBoxHover .mceText, .defaultSkin .mceListBoxSelected .mceText {border:1px solid #A2ABC0; border-right:0; background:#FFF} -.defaultSkin table.mceListBoxEnabled:hover .mceOpen, .defaultSkin .mceListBoxHover .mceOpen, .defaultSkin .mceListBoxSelected .mceOpen {background-color:#FFF; border:1px solid #A2ABC0} -.defaultSkin .mceListBoxDisabled a.mceText {color:gray; background-color:transparent;} -.defaultSkin .mceListBoxMenu {overflow:auto; overflow-x:hidden} -.defaultSkin .mceOldBoxModel .mceListBox .mceText {height:22px} -.defaultSkin .mceOldBoxModel .mceListBox .mceOpen {width:11px; height:22px;} -.defaultSkin select.mceNativeListBox {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:7pt; background:#F0F0EE; border:1px solid gray; margin-right:2px;} - -/* SplitButton */ -.defaultSkin .mceSplitButton {width:32px; height:20px; direction:ltr} -.defaultSkin .mceSplitButton a, .defaultSkin .mceSplitButton span {height:20px; display:block} -.defaultSkin .mceSplitButton a.mceAction {width:20px; border:1px solid #F0F0EE; border-right:0;} -.defaultSkin .mceSplitButton span.mceAction {width:20px; background-image:url(../../img/icons.gif);} -.defaultSkin .mceSplitButton a.mceOpen {width:9px; background:url(../../img/icons.gif) -741px 0; border:1px solid #F0F0EE;} -.defaultSkin .mceSplitButton span.mceOpen {display:none} -.defaultSkin table.mceSplitButtonEnabled:hover a.mceAction, .defaultSkin .mceSplitButtonHover a.mceAction, .defaultSkin .mceSplitButtonSelected a.mceAction {border:1px solid #0A246A; border-right:0; background-color:#B2BBD0} -.defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen, .defaultSkin .mceSplitButtonHover a.mceOpen, .defaultSkin .mceSplitButtonSelected a.mceOpen {background-color:#B2BBD0; border:1px solid #0A246A;} -.defaultSkin .mceSplitButtonDisabled .mceAction, .defaultSkin .mceSplitButtonDisabled a.mceOpen {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -.defaultSkin .mceSplitButtonActive a.mceAction {border:1px solid #0A246A; background-color:#C2CBE0} -.defaultSkin .mceSplitButtonActive a.mceOpen {border-left:0;} - -/* ColorSplitButton */ -.defaultSkin div.mceColorSplitMenu table {background:#FFF; border:1px solid gray} -.defaultSkin .mceColorSplitMenu td {padding:2px} -.defaultSkin .mceColorSplitMenu a {display:block; width:9px; height:9px; overflow:hidden; border:1px solid #808080} -.defaultSkin .mceColorSplitMenu td.mceMoreColors {padding:1px 3px 1px 1px} -.defaultSkin .mceColorSplitMenu a.mceMoreColors {width:100%; height:auto; text-align:center; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; line-height:20px; border:1px solid #FFF} -.defaultSkin .mceColorSplitMenu a.mceMoreColors:hover {border:1px solid #0A246A; background-color:#B6BDD2} -.defaultSkin a.mceMoreColors:hover {border:1px solid #0A246A} -.defaultSkin .mceColorPreview {margin-left:2px; width:16px; height:4px; overflow:hidden; background:#9a9b9a} -.defaultSkin .mce_forecolor span.mceAction, .defaultSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px} - -/* Menu */ -.defaultSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8} -.defaultSkin .mceNoIcons span.mceIcon {width:0;} -.defaultSkin .mceNoIcons a .mceText {padding-left:10px} -.defaultSkin .mceMenu table {background:#FFF} -.defaultSkin .mceMenu a, .defaultSkin .mceMenu span, .defaultSkin .mceMenu {display:block} -.defaultSkin .mceMenu td {height:20px} -.defaultSkin .mceMenu a {position:relative;padding:3px 0 4px 0} -.defaultSkin .mceMenu .mceText {position:relative; display:block; font-family:Tahoma,Verdana,Arial,Helvetica; color:#000; cursor:default; margin:0; padding:0 25px 0 25px; display:block} -.defaultSkin .mceMenu span.mceText, .defaultSkin .mceMenu .mcePreview {font-size:11px} -.defaultSkin .mceMenu pre.mceText {font-family:Monospace} -.defaultSkin .mceMenu .mceIcon {position:absolute; top:0; left:0; width:22px;} -.defaultSkin .mceMenu .mceMenuItemEnabled a:hover, .defaultSkin .mceMenu .mceMenuItemActive {background-color:#dbecf3} -.defaultSkin td.mceMenuItemSeparator {background:#DDD; height:1px} -.defaultSkin .mceMenuItemTitle a {border:0; background:#EEE; border-bottom:1px solid #DDD} -.defaultSkin .mceMenuItemTitle span.mceText {color:#000; font-weight:bold; padding-left:4px} -.defaultSkin .mceMenuItemDisabled .mceText {color:#888} -.defaultSkin .mceMenuItemSelected .mceIcon {background:url(img/menu_check.gif)} -.defaultSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center} -.defaultSkin .mceMenu span.mceMenuLine {display:none} -.defaultSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;} - -/* Progress,Resize */ -.defaultSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50); background:#FFF} -.defaultSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px} - -/* Formats */ -.defaultSkin .mce_formatPreview a {font-size:10px} -.defaultSkin .mce_p span.mceText {} -.defaultSkin .mce_address span.mceText {font-style:italic} -.defaultSkin .mce_pre span.mceText {font-family:monospace} -.defaultSkin .mce_h1 span.mceText {font-weight:bolder; font-size: 2em} -.defaultSkin .mce_h2 span.mceText {font-weight:bolder; font-size: 1.5em} -.defaultSkin .mce_h3 span.mceText {font-weight:bolder; font-size: 1.17em} -.defaultSkin .mce_h4 span.mceText {font-weight:bolder; font-size: 1em} -.defaultSkin .mce_h5 span.mceText {font-weight:bolder; font-size: .83em} -.defaultSkin .mce_h6 span.mceText {font-weight:bolder; font-size: .75em} - -/* Theme */ -.defaultSkin span.mce_bold {background-position:0 0} -.defaultSkin span.mce_italic {background-position:-60px 0} -.defaultSkin span.mce_underline {background-position:-140px 0} -.defaultSkin span.mce_strikethrough {background-position:-120px 0} -.defaultSkin span.mce_undo {background-position:-160px 0} -.defaultSkin span.mce_redo {background-position:-100px 0} -.defaultSkin span.mce_cleanup {background-position:-40px 0} -.defaultSkin span.mce_bullist {background-position:-20px 0} -.defaultSkin span.mce_numlist {background-position:-80px 0} -.defaultSkin span.mce_justifyleft {background-position:-460px 0} -.defaultSkin span.mce_justifyright {background-position:-480px 0} -.defaultSkin span.mce_justifycenter {background-position:-420px 0} -.defaultSkin span.mce_justifyfull {background-position:-440px 0} -.defaultSkin span.mce_anchor {background-position:-200px 0} -.defaultSkin span.mce_indent {background-position:-400px 0} -.defaultSkin span.mce_outdent {background-position:-540px 0} -.defaultSkin span.mce_link {background-position:-500px 0} -.defaultSkin span.mce_unlink {background-position:-640px 0} -.defaultSkin span.mce_sub {background-position:-600px 0} -.defaultSkin span.mce_sup {background-position:-620px 0} -.defaultSkin span.mce_removeformat {background-position:-580px 0} -.defaultSkin span.mce_newdocument {background-position:-520px 0} -.defaultSkin span.mce_image {background-position:-380px 0} -.defaultSkin span.mce_help {background-position:-340px 0} -.defaultSkin span.mce_code {background-position:-260px 0} -.defaultSkin span.mce_hr {background-position:-360px 0} -.defaultSkin span.mce_visualaid {background-position:-660px 0} -.defaultSkin span.mce_charmap {background-position:-240px 0} -.defaultSkin span.mce_paste {background-position:-560px 0} -.defaultSkin span.mce_copy {background-position:-700px 0} -.defaultSkin span.mce_cut {background-position:-680px 0} -.defaultSkin span.mce_blockquote {background-position:-220px 0} -.defaultSkin .mce_forecolor span.mceAction {background-position:-720px 0} -.defaultSkin .mce_backcolor span.mceAction {background-position:-760px 0} -.defaultSkin span.mce_forecolorpicker {background-position:-720px 0} -.defaultSkin span.mce_backcolorpicker {background-position:-760px 0} - -/* Plugins */ -.defaultSkin span.mce_advhr {background-position:-0px -20px} -.defaultSkin span.mce_ltr {background-position:-20px -20px} -.defaultSkin span.mce_rtl {background-position:-40px -20px} -.defaultSkin span.mce_emotions {background-position:-60px -20px} -.defaultSkin span.mce_fullpage {background-position:-80px -20px} -.defaultSkin span.mce_fullscreen {background-position:-100px -20px} -.defaultSkin span.mce_iespell {background-position:-120px -20px} -.defaultSkin span.mce_insertdate {background-position:-140px -20px} -.defaultSkin span.mce_inserttime {background-position:-160px -20px} -.defaultSkin span.mce_absolute {background-position:-180px -20px} -.defaultSkin span.mce_backward {background-position:-200px -20px} -.defaultSkin span.mce_forward {background-position:-220px -20px} -.defaultSkin span.mce_insert_layer {background-position:-240px -20px} -.defaultSkin span.mce_insertlayer {background-position:-260px -20px} -.defaultSkin span.mce_movebackward {background-position:-280px -20px} -.defaultSkin span.mce_moveforward {background-position:-300px -20px} -.defaultSkin span.mce_media {background-position:-320px -20px} -.defaultSkin span.mce_nonbreaking {background-position:-340px -20px} -.defaultSkin span.mce_pastetext {background-position:-360px -20px} -.defaultSkin span.mce_pasteword {background-position:-380px -20px} -.defaultSkin span.mce_selectall {background-position:-400px -20px} -.defaultSkin span.mce_preview {background-position:-420px -20px} -.defaultSkin span.mce_print {background-position:-440px -20px} -.defaultSkin span.mce_cancel {background-position:-460px -20px} -.defaultSkin span.mce_save {background-position:-480px -20px} -.defaultSkin span.mce_replace {background-position:-500px -20px} -.defaultSkin span.mce_search {background-position:-520px -20px} -.defaultSkin span.mce_styleprops {background-position:-560px -20px} -.defaultSkin span.mce_table {background-position:-580px -20px} -.defaultSkin span.mce_cell_props {background-position:-600px -20px} -.defaultSkin span.mce_delete_table {background-position:-620px -20px} -.defaultSkin span.mce_delete_col {background-position:-640px -20px} -.defaultSkin span.mce_delete_row {background-position:-660px -20px} -.defaultSkin span.mce_col_after {background-position:-680px -20px} -.defaultSkin span.mce_col_before {background-position:-700px -20px} -.defaultSkin span.mce_row_after {background-position:-720px -20px} -.defaultSkin span.mce_row_before {background-position:-740px -20px} -.defaultSkin span.mce_merge_cells {background-position:-760px -20px} -.defaultSkin span.mce_table_props {background-position:-980px -20px} -.defaultSkin span.mce_row_props {background-position:-780px -20px} -.defaultSkin span.mce_split_cells {background-position:-800px -20px} -.defaultSkin span.mce_template {background-position:-820px -20px} -.defaultSkin span.mce_visualchars {background-position:-840px -20px} -.defaultSkin span.mce_abbr {background-position:-860px -20px} -.defaultSkin span.mce_acronym {background-position:-880px -20px} -.defaultSkin span.mce_attribs {background-position:-900px -20px} -.defaultSkin span.mce_cite {background-position:-920px -20px} -.defaultSkin span.mce_del {background-position:-940px -20px} -.defaultSkin span.mce_ins {background-position:-960px -20px} -.defaultSkin span.mce_pagebreak {background-position:0 -40px} -.defaultSkin span.mce_restoredraft {background-position:-20px -40px} -.defaultSkin span.mce_spellchecker {background-position:-540px -20px} diff --git a/library/tinymce/LICENSE.TXT b/library/tinymce/LICENSE.TXT deleted file mode 100644 index 1837b0acb..000000000 --- a/library/tinymce/LICENSE.TXT +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library 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; either - version 2.1 of the License, or (at your option) any later version. - - This library 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. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/library/tinymce/changelog.txt b/library/tinymce/changelog.txt deleted file mode 100644 index 69b7ae50c..000000000 --- a/library/tinymce/changelog.txt +++ /dev/null @@ -1,477 +0,0 @@ -Version 3.5.8 (2012-11-20) - Fixed bug where html5 data attributes where stripped from contents. - Fixed bug where toolbar was annouced multiple times with JAWS on Firefox. - Fixed bug where the editor view whouldn't scroll to BR elements when using shift+enter or br enter mode. - Fixed bug where a JS error would be thrown when trying to paste table rows then the rows clipboard was empty. - Fixed bug with auto detection logic for youtube urls in the media plugin. - Fixed bug where the formatter would throw errors if you used the jQuery version of TinyMCE and the latest jQuery. - Fixed bug where the latest WebKit versions would produce span elements when deleting text between blocks. - Fixed bug where the autolink plugin would produce DOM exceptions when pressing shift+enter inside a block element. - Fixed bug where toggling of blockquotes when using br enter mode would produce an exception. - Fixed bug where focusing out of the body of the editor wouldn't properly add an undo level. - Fixed issue with warning message being displayed on IE 9+ about the meta header fix for IE 8. -Version 3.5.7 (2012-09-20) - Changed table row properties dialog to not update multiple rows when row type is header or footer. - Fixed bug in hyperlink dialog for IE9 where links with no target attr set had target value of -- - Changing toolbars to have a toolbar role for FF keyboard navigation works correctly. - Fixed bug where applying formatting to an empty block element would produce redundant spans. - Fixed bug where caret formatting on IE wouldn't properly apply if you pressed enter/return. - Fixed bug where loading TinyMCE using an async script wouldn't properly initialize editors. - Fixed bug where some white space would be removed after inline elements before block elements. - Fixed bug where it wouldn't properly parse attributes with a single backslash as it's contents. - Fixed bug where noscript elements would loose it's contents on older IE versions. - Fixed bug where backspace inside empty blockquote wouldn't delete it properly. - Fixed bug where custom elements with . in their names wouldn't work properly. - Fixed bug where the custom_elements option didn't properly setup the block elements schema structure. - Fixed bug where the custom_elements option didn't auto populate the extended_valid_elements. - Fixed bug where the whole TD element would get blcok formatted when there where BR elements in it. - Fixed bug where IE 9 might crash if the editor was hidden and specific styles where applied to surrounding contents. - Fixed bug where shift+enter inside a table cell on Gecko would produce an zero width non breaking space between tr:s. - Fixed bug where the advlink dialog wouldn't properly populate the anchors dropdown if the HTML5 schema was used. - Fixed issue with missing autofocus attribute on input element when using the HTML5 schema. - Fixed issue where enter inside a block contained within an LI element wouldn't produce a new LI. -Version 3.5.6 (2012-07-26) - Added "text" as a valid option to the editor.getContent format option. Makes it easier to get a text representation of the editor contents. - Fixed bug where resizing an image to less that 0x0 pixels would display the ghost image at an incorrect position. - Fixed bug where the remove format button would produce extra paragraphs on WebKit if all of the contents was selected. - Fixed issue where edge resize handles on images of wouldn't scale it with the same aspect ratio. - Fixed so force_p_newlines option works again since some users want mixed mode paragraphs. - Fixed so directionality plugin modifies the dir attribute of all selected blocks in the editor. - Fixed bug where backspace/delete of a custom element would move it's attributes to the parent block on Gecko. -Version 3.5.5 (2012-07-19) - Added full resize support for images and tables on WebKit/Opera. It now behaves just like Gecko. - Added automatic embed support for Vimeo, Stream.cz and Google Maps in media plugin. Patch contributed by Jakub Matas. - Fixed bug where the lists plugin wouldn't properly remove all li elements when toggling selected items of. Patched by Taku AMANO. - Fixed bug where the lists plugin would remove the entire list if you pressed deleted at the beginning of the first element. Patched by Taku AMANO. - Fixed bug where the ordered/unordered list buttons could both be enabled if you nested lists. Patch contributed by Craig Petchell. - Fixed bug where shift+enter wouldn't produce a BR in a LI when having forced_root_blocks set to false. - Fixed bug where scrollbars aren't visible in fullscreen when window is resized. - Fixed bug with updating the border size using the advimage dialog on IE 9. - Fixed bug where the selection of inner elements on IE 8 in contentEditable mode would select the whole parent element. - Fixed bug where the enter key would produce an empty anchor if you pressed it at the space after a link on IE. - Fixed bug where autolink plugin would produce an exception for specific html see bug #5365 - Fixed so the formatChanged function takes an optional "similar" parameter to use while matching the format. -Version 3.5.4.1 (2012-06-24) - Fixed issue with Shift+A selecting all contents on Chrome. -Version 3.5.4 (2012-06-21) - Added missing mouse events to HTML5 schema. Some events needs to be manually defined though since the spec is huge. - Added image resizing for WebKit browsers by faking the whole resize behavior. - Fixed bug in context menu plugin where listener to hide menu wasn't removed correctly. - Fixed bug where media plugin wouldn't use placeholder size for the object/video elements. - Fixed bug where jQuery plugin would break attr function in jQuery 1.7.2. - Fixed bug where jQuery plugin would throw an error if you used the tinymce pseudo selector when TinyMCE wasn't loaded. - Fixed so encoding option gets applied when using jQuery val() or attr() to extract the contents. - Fixed so any non valid width/height passed to media plugin would get parsed to proper integer or percent values. -Version 3.5.3 (2012-06-19) - Added missing wbr element to HTML5 schema. - Added new mceToggleFormat command. Enabled you to toggle a specific format on/off. - Fixed bug where undo/redo state didn't update correctly after executing an execCommand call. - Fixed bug where the editor would get auto focused on IE running in quirks mode. - Fixed bug where pressing enter before an IMG or INPUT element wouldn't properly split the block. - Fixed bug where backspace would navigate back when selecting control types on IE. - Fixed bug where the editor remove method would unbind events for controls outside the editor instance UI. - Fixed bug where the autosave plugin would try to store a draft copy of editors that where removed. - Fixed bug where floated elements wouldn't expand the block created when pressing enter on non IE browsers. - Fixed bug where the caret would be placed in the wrong location when pressing enter at the beginning of a block. - Fixed bug where it wasn't possible to block events using the handle_event_callback option. - Fixed bug where keyboard navigation of the ColorSplitButton.js didn't work correctly. - Fixed bug where keyboard navigation didn't work correctly on split buttons. - Fixed bug where the legacy Event.add function didn't properly handle multiple id:s passed in. - Fixed bug where the caret would disappear on IE when selecting all contents and pressing backspace/delete. - Fixed bug where the getStart/getEnd methods would sometimes return elements from the wrong document on IE. - Fixed so paragraphs gets created if you press enter inside a form element. -Version 3.5.2 (2012-05-31) - Added new formatChanged method to tinymce.Formatter class. Enables easier state change handling of formats. - Added new selectorChanged method to tinymce.dom.Selection class. Enables easier state change handling of matching CSS selectors. - Changed the default theme to be advanced instead of simple since most users uses the advanced theme. - Changed so the theme_advanced_buttons doesn't have a default set if one button row is specified. - Changed the theme_advanced_toolbar_align default value to "left". - Changed the theme_advanced_toolbar_location default value to "top". - Changed the theme_advanced_statusbar_location default value to "bottom". - Fixed bug where the simple link dialog would remove class and target attributes from links when updating them if the drop downs wasn't visible. - Fixed bug where the link/unlink buttons wouldn't get disabled once a link was created by the autolink plugin logic. - Fixed bug where the border attribute was missing in the HTML5 schema. - Fixed bug where the legacyoutput plugin would use inline styles for font color. - Fixed bug where editing of anchor names wouldn't produce an undo level. - Fixed bug where the table plugin would delete the last empty block element in the editor. - Fixed bug where pasting table rows when they where selected would make it impossible to editor that table row. - Fixed bug with pressing enter in IE while having a select list focused would produce a JS error. - Fixed bug where it wasn't possible to merge table cells by selecting them and using merge from context menu. - Removed summary from HTML5 table attributes and fixed so this and other deprecated table fields gets hidden in the table dialog. -Version 3.5.1.1 (2012-05-25) - Fixed bug with control creation where plugin specific controls didn't work as expected. -Version 3.5.1 (2012-05-25) - Added new onBeforeAdd event to UndoManager patch contributed by Dan Rumney. - Added support for overriding the theme rendering logic by using a custom function. - Fixed bug where links wasn't automatically created by the autolink plugin on old IE versions when pressing enter in BR mode. - Fixed bug where enter on older IE versions wouldn't produce a new paragraph if the previous sibling paragraph was empty. - Fixed bug where toString on a faked DOM range on older IE versions wouldn't return a proper string. - Fixed bug where named anchors wouldn't work properly when schema was set to HTML5. - Fixed bug where HTML5 datalist options wasn't correctly parsed or indented. - Fixed bug where linking would add anchors around block elements when the HTML5 schema was used. - Fixed issue where the autolink plugin wouldn't properly handle mailto:user@domain.com. - Optimized initialization and reduced rendering flicker by hiding the target element while initializing. -Version 3.5.0.1 (2012-05-10) - Fixed bug where selection normalization logic would break the selections of parent elements using the element path. - Fixed bug where the autolink plugin would include trailing dots in domain names in the link creation. - Fixed bug where the autolink plugin would produce an error on older IE versions when pressing enter. - Fixed bug where old IE versions would throw an error during initialization when the editor was placed in an size restricted div. -Version 3.5 (2012-05-03) - Fixed menu rendering issue if the document was in rtl mode. - Fixed bug where the hide function would throw an error about a missing variable. - Fixed bug where autolink wouldn't convert URLs when hitting enter on IE due to the new enter key logic. - Fixed bug where formatting using shortcuts like ctrl+b wouldn't work properly the first time. - Fixed bug where selection.setContent after a formatter call wouldn't generate formatted contents. - Fixed bug where whitespace would be removed before/after invalid_elements when they where removed. - Fixed bug where updating styles using the theme image dialog in non inline mode on IE9 would produce errors. - Fixed bug where IE 8 would produce an error when using the contextmenu plugin. - Fixed bug where delete/backspace could remove contents of noneditable elements. - Fixed so background color in style preview gets computed from body element if the current style element is transparent. -Version 3.5b3 (2012-03-29) - Added cancel button to colour picker dialog. - Added figure and figcaption to the html5 visualblocks plugin. - Added default alignment options for the figure element. - Fixed bug where empty inline elements within block elements would sometimes produce a br child element. - Fixed bug where urls pointing to the same domain as the current one would cause undefined errors. Patch contributed by Paul Giberson. - Fixed bug where enter inside an editable element inside an non editable element would split the element. - Fixed bug where cut/copy/paste of noneditable elements didn't work. - Fixed bug where backspace would sometimes produce font elements on WebKit. - Fixed bug where WebKit would produce spans out of various inline elements when using backspace. - Fixed bug where IE9 wouldn't properly update image styles when images where resized. - Fixed bug where drag/drop of noneditable elements didn't work correctly. - Fixed bug where applying formatting to all contents wouldn't work correctly when an end point was inside an empty bock. Patch contributed by Jose Luiz. - Fixed bug where IE10 removed the scopeName from the DOM element interface and there for it produced an undefined string in element path. - Fixed bug where the caret would be placed at an incorrect location if you applied block formatting while having the caret at the end of the block. - Fixed bug where applying column changes using the cell dialog would only update the first column. Patch contributed by krzyko. - Fixed bug where the visualblocks plugin would force editor focus if it was turned on by default. - Fixed bug where the tabfocus plugin would tab to iframes these are now ignored. - Fixed bug where format drop down list wouldn't show the currently active format for a parent element. - Fixed bug where paste of plain text in IE 9 would remove the new line characters from text. - Fixed bug where the menu buttons/split button menus wouldn't be opened at the right location on older IE versions. - Fixed bug where Gecko browsers wouldn't properly display the right format when having the selection as specific places. - Fixed bug where shift+enter inside the body when having forced_root_blocks set to false would throw an error. - Fixed bug where the jQuery plugin would break the attr method of jQuery 1.7.2. Patch contributed by Markus Kemmerling. - Fixed so options like content_css accepts and array as well as a comma separated string as input. - Restructured the internal logic to make it more separate from Editor.js. - Updated the Sizzle engine to the latest version. -Version 3.5b2 (2012-03-15) - Rewrote the enter key logic to normalize browser behavior. - Fixed so enter within PRE elements produces a BR and shift+enter breaks/end the PRE. Can be disabled using the br_in_pre option. - Fixed bug where the selection wouldn't be correct after applying formatting and having the caret at the end of the new format node. - Fixed bug where the noneditable plugin would process contents on raw input calls for example on undo/redo calls. - Fixed bug where WebKit could produce an exception when a bookmark was requested when there wasn't a proper selection. - Fixed bug where WebKit would fail to open the image dialog since it would be returning false for a class name instead of a string. - Fixed so alignment and indentation works properly when forced_root_blocks is set to false. It will produce a DIV by default. -Version 3.5b1 (2012-03-08) - Added new event class that is faster and enables support for faking events. - Added new self_closing_elements, short_ended_elements, boolean_attributes, non_empty_elements and block_elements options to control the HTML Schema. - Added new schema option and support for the HTML5 schema. - Added new visualblocks plugin that shows html5 blocks with visual borders. - Added new types and selector options to make it easier to create editor instances with different configs. - Added new preview of formatting options in various listboxes. - Added new preview_styles option that enables control over what gets previewed. - Fixed bug where content css would be loaded twice into iframe. - Fixed bug where start elements with only whitespace in the attribute part wouldn't be correctly parsed. - Fixed bug where the advlink dialog would produce an error about the addSelectAccessibility function not being defined. - Fixed bug where the caret would be placed at an incorrect position if span was removed by the invalid_elements setting. - Fixed bug where elements inside a white space preserve element like pre didn't inherit the behavior while parsing. -Version 3.4.9 (2012-02-23) - Added settings to wordcount plugin to configure update rate and checking wordcount on backspace and delete using wordcount_update_rate and wordcount_update_on_delete. - Fixed bug in Webkit and IE where deleting empty paragraphs would remove entire editor contents. - Fixed bug where pressing enter on end of list item with a heading would create a new item with heading. - Fixed edit css style dialog text-decoration none checkbox so it disables other text-decoration options when enabled. - Fixed bug in Gecko where undo wasn't added when focus was lost. - Fixed bug in Gecko where shift-enter in table cell ending with BR doesn't move caret to new line. - Fixed bug where right-click on formatted text in IE selected the entire line. - Fixed bug where text ending with space could not be unformatted in IE. - Fixed bug where caret formatting would be removed when moving the caret when a selector expression was used. - Fixed bug where formatting would be applied to the body element when all contents where selected and format had both inline and selector parts. - Fixed bug where the media plugin would throw errors if you had iframe set as an invalid element in config. - Fixed bug where the caret would be placed at the top of the document if you inserted a table and undo:ed that operation. Patch contributed by Wesley Walser. - Fixed bug where content css files where loaded twice into the iframe. - Fixed so elements with comments would be trated as non empty elements. Patch contributed by Arjan Scherpenisse. -Version 3.4.8 (2012-02-02) - Fixed bug in IE where selected text ending with space cannot be formatted then formatted again to get original text. - Fixed bug in IE where images larger than editor area were being deselected when toolbar buttons are clicked. - Fixed bug where wrong text align buttons are active when multiple block elements are selected. - Fixed bug where selected link not showing in target field of link dialog in some selection cases. - Use settings for remove_trailing_br so this can be turned off instead of hard coding the value. - Fixed bug in IE where the media plugin displayed null text when some values aren't filled in. - Added API method 'onSetAttrib' that fires when the attribute value on a node changes. - Fix font size dropdown value not being updated when text already has a font size in the advanced template. - Fixed bug in IE where IE doesn't use ARIA attributes properly on options - causing labels to be read out 2 times. - Fixed bug where caret cannot be placed after table if table is at end of document in IE. - Fixed bug where adding range isn't always successful so we need to check range count otherwise an exception can occur. - Added spacebar onclick handler to toolbar buttons to ensure that the accessibility behaviour works correctly. - Fixed bug where a stranded bullet point would get created in WebKit. - Fixed bug where selecting text in a blockquote and pressing backspace toggles the style. - Fixed bug where pressing enter from a heading in IE, the resulting P tag below it shares the style property. - Fix white space in between spans from being deleted. - Fixed bug where scrollbars where visible in the character map dialog on Gecko. - Fixed issue with missing translation for one of the emoticons. - Fixed bug where dots in id:s where causing problems. Patch provided by Abhishek Dev. - Fixed bug where urls with an at sign in the path wouldn't be parsed correctly. Patch contributed by Jason Grout. - Fixed bug where Opera would remove the first character of a inline formatted word if you pressed backspace. - Fixed bugs with the autoresize plugin on various browsers and removed the need for the throbber. - Fixed performance issue where the contextmenu plugin would try to remove the menu even if it was removed. Patch contributed by mhu. -Version 3.4.7 (2011-11-03) - Modified the caret formatting behavior to word similar to common desktop wordprocessors like Word or Libre Office. - Fixed bug in Webkit - Cursor positioning does not work vertically within a table cell with multiple lines of text. - Fixed bug in IE where Inserting a table in IE8 places cursor in the second cell of the first row. - Fixed bug in IE where editor in a frame doesn't give focus to the toolbar using ALT-F10. - Fix for webkit and gecko so that deleting bullet from start of list outdents inner list items and moves first item into paragraph. - Fix new list items in IE8 not displayed on a new line when list contains nested list items. - Clear formatting in table cell breaks the cell. - Made media type list localisable. - Fix out of memory error when using prototype in media dialog. - Fixed bug where could not add a space in the middle of a th cell. - Fixed bug where adding a bullet between two existing bullets adds an extra one - Fixed bug where trying to insert a new entry midway through a bulleted list fails dismally when the next entry is tabbed in. - Fixed bug where pressing enter on an empty list item does not outdent properly in FF - Fixed bug where adding a heading after a list item in a table cell changes all styles in that cell - Fixed bug where hitting enter to exit from a bullet list moves cursor to the top of the page in Firefox. - Fixed bug where pressing backspace would not delete HRs in Firefox and IE when next to an empty paragraph. - Fixed bug where deleting part of the link text can cause a link with no destination to be saved. - Fixed bug where css style border widths wasn't handled correctly in table dialog. - Fixed bug where parsing invalid html contents on IE or WebKit could produce an infinite loop. - Fixed bug where scripts with custom script types wasn't properly passed though the editor. - Fixed issue where some Japanese kanji characters wasn't properly entity encoded when numeric entity mode was enabled. - Made emoticons dialog use the keyboard naviation. - Added navigation instructions to the symbols dialog. - Added ability to set default values for the media plugin. - Added new font_size_legacy_values option for converting old font element sizes to span with font-size properties. - Fixed bug where the symbols dialog was not accessible. - Added quirk for IE ensuring that the body of the document containing tinyMCE has a role="application" for accessibility. - Fixed bug where the advanced color picker wasn't working properly on FF 7. - Fixed issue where the advanced color picker was producing uppercase hex codes. - Fixed bug where IE 8 could throw exceptions if the contents contained resizable content elements. - Fixed bug where caret formatting wouldn't be correctly applied to previous sibling on WebKit. - Fixed bug where the select boxes for font size/family would loose it's value on WebKit due to recent iOS fixes. -Version 3.4.6 (2011-09-29) - Fixed bug where list items were being created for empty divs. - Added support in Media plugin for audio media using the embed tag - Fixed accessibility bugs in WebKit and IE8 where toolbar items were not being read. - Added new use_accessible_selects option to ensure accessible list boxes are used in all browsers (custom widget in firefox native on other browsers) - Fixed bug where classid attribute was not being checked from embed objects. - Fixed bug in jsrobot tests with intermittently failing. - Fixed bug where anchors wasn't updated properly if you edited them using IE 8. - Fixed bug where input method on WebKit on Mac OS X would fail to initialize when sometimes focusing the editor. - Fixed bug where it wasn't possible to select HR elements on WebKit by simply clicking on them. - Fixed bug where the media plugin wouldn't work on IE9 when not using the inlinepopups plugin. - Fixed bug where hspace,vspace,align and bgcolor would be removed from object elements in the media plugin. - Fixed bug where the new youtube format wouldn't be properly parsed by the media plugin. - Fixed bug where the style attribute of layers wasn't properly updated on IE and Gecko. - Fixed bug where editing contents in a layer would fail on Gecko since contentEditable doesn't inherit properly. - Fixed bug where IE 6/7 would produce JS errors when serializing contents containing layers. -Version 3.4.5 (2011-09-06) - Fixed accessibility bug in WebKit where the right and left arrow keys would update native list boxes. - Added new whitespace_elements option to enable users to specify specific elements where the whitespace is preserved. - Added new merge_siblings option to formats. This option makes it possible to disable the auto merging of siblings when applying formats. - Fixed bug in IE where trailing comma in paste plugin would cause plugin to not run correctly. - Fixed bug in WebKit where console messages would be logged when deleting an empty document. - Fixed bug in IE8 where caret positioned is on list item instead of paragraph when outdent splits the list - Fixed bug with image dialogs not inserting an image if id was omitted from valid_elements. - Fixed bug where the selection normalization logic wouldn't properly handle image elements in specific config cases. - Fixed bug where the map elements coords attribute would be messed up by IE when serializing the DOM. - Fixed bug where IE wouldn't properly handle custom elements when the contents was serialized. - Fixed bug where you couldn't move the caret in Gecko if you focused the editor using the API or a UI control. - Fixed bug where adjacent links would get merged on IE due to bugs in their link command. - Fixed bug where the color split buttons would loose the selection on IE if the editor was placed in a frame/iframe. - Fixed bug where floated images in WebKit wouldn't get properly linked. - Fixed bug where the fullscreen mode in a separate window wasn't forced into IE9+ standards mode. - Fixed bug where pressing enter in an empty editor on WebKit could produce DIV elements instead of P. - Fixed bug where spans would get removed incorrectly when merging two blocks on backspace/delete on WebKit. - Fixed bug where the editor contents wouldn't be completely removed on backspace/delete on WebKit. - Fixed bug where the fullpage plugin wouldn't properly render style elements in the head on IE 6/7. - Fixed bug where the nonbreaking_force_tab option in the nonbreaking plugin wouldn't work on Gecko/WebKit. - Fixed bug where the isDirty state would become true on non IE browsers if there was an table at the end of the contents. - Fixed bug where entities wasn't properly encoded on WebKit when pasting text as plain text. - Fixed bug where empty editors would produce an exception of valid_elements didn't include body and forced_root_blocks where disabled. - Fixed bug where the fullscreen mode wouldn't retain the header/footer in the fullpage plugin. - Fixed issue where the plaintext_mode and plaintext_mode_sticky language keys where swapped. -Version 3.4.4 (2011-08-04) - Added new html5 audio support. Patch contributed by Ronald M. Clifford. - Added mute option for video elements and preload options for video/audio patch contributed by Dmitry Kalinkin. - Fixed selection to match visual selection before applying formatting changes. - Fixed browser specific bugs in lists for WebKit and IE. - Fixed bug where IE would scroll the window if you closed an inline dialog that was larger than the viewport. Patch by Laurence Keijmel. - Fixed bug where pasting contents near a span element could remove parts of that span. Patch contributed by Wesley Walser. - Fixed bug where formatting change would be lost after pressing enter. - Fixed bug in WebKit where deleting across blocks would add extra styles. - Fixed bug where moving cursor vertically in tables in WebKit wasn't working. - Fixed bug in IE where deleting would cause error in console. - Fixed bug where the formatter was not applying formats across list elements. - Fixed bug where the wordcount plugin would try and update the wordcount if tinymce had been destroyed. - Fixed bug where tabfocus plugin would attempt to focus elements not displayed when their parent element was hidden. - Fixed bug where the contentEditable state would sometimes be removed if you deleted contents in Gecko. - Fixed bug where inserting contents using mceInsertContent would fail if "span" was disabled in valid_elements. - Fixed bug where initialization might fail if some resource on gecko wouldn't load properly and fire the onload event. - Fixed bug where ctrl+7/8/9 keys wouldn't properly add the specific formats associated with them. - Fixed bug where the HTML tags wasn't properly closed in the style plugins properties dialog. - Fixed bug where the list plugin would produce an exception if the user tried to delete an element at the very first location. -Version 3.4.3.2 (2011-06-30) - Fixed bug where deleting all of a paragraph inside a table cell would behave badly in webkit. - Fixed bugs in tests in firefox5 and WebKit. - Fixed bug where selection of table cells would produce an exception on Gecko. - Fixed bug where the caret wasn't properly rendered on Gecko when the editor was hidden. - Fixed bug where pasting plain text into WebKit would produce a pre element it will now produce more semantic markup. - Fixed bug where selecting list type formats using the advlist plugin on IE8 would loose editor selection. - Fixed bug where forced root blocks logic wouldn't properly pad elements created if they contained data attributes. - Fixed bug where it would remove all contents of the editor if you inserted an image when not having a caret in the document. - Fixed bug where the YUI compressor wouldn't properly encode strings with only a quote in them. - Fixed bug where WebKit on iOS5 wouldn't call nodeChanged when the selection was changed. - Fixed bug where mceFocus command wouldn't work properly on Gecko since it didn't focus the body element. - Fixed performance issue with the noneditable plugin where it would enable/disable controls to often. -Version 3.4.3.1 (2011-06-16) - Fixed bug where listboxes were not being handled correctly by JAWS in firefox with the o2k7 skin. - Fixed bug where custom buttons were not being rendered correctly when in high contrast mode. - Added support for iOS 5 that now supporting contentEditable in it's latest beta. - Fixed bug where urls in style attributes with a _ character followed by a number would cause incorrect output. - Fixed bug where custom_elements option wasn't working properly on IE browsers. - Fixed bug where custom_elements marked as block elements wouldn't get correctly treated as block elements. - Fixed bug where attributes with wasn't properly encoded as XML entities. -Version 3.4.3 (2011-06-09) - Fixed bug where deleting backwards before an image into a list would put the cursor in the wrong location. - Fixed bug where styles plugin would not apply styles across multiple selected block elements correctly. - Fixed bug where cursor would jump to start of document when selection contained empty table cells in IE8. - Fixed bug where applied styles wouldn't be kept if you pressed enter twice to produce two paragraphs. - Fixed bug where a ghost like caret would appear on Gecko when pressing enter while having a text color applied. - Fixed bug where IE would produce absolute urls if you inserted a image/link and reloaded the page. - Fixed bug where applying a heading style to a list item would cascade style to children list items. - Fixed bug where Editor loses focus when backspacing and changing styles in WebKit. - Fixed bug where exception was thrown in tinymce.util.URI when parsing a relative URI and no base_uri setting was provided. - Fixed bug where alt-f10 was not always giving focus to the toolbar on Safari. - Added new 'allow_html_in_named_anchor' option to allow html to occur within a named anchor tag. Use at own risk. - Added plugin dependency support. Will autoload plugins specified as a dependency if they haven't been loaded. - Fixed bug where the autolink plugin didn't work with non-English keyboards when pressing ). - Added possibility to change properties of all table cells in a column. - Added external_image_list option to get images list from user-defined variable or function. - Fixed bug where the autoresize plugin wouldn't reduce the editors height on Chrome. - Fixed bug where table size inputs were to small for values with size units. - Fixed bug where table cell/row size input values were not validated. - Fixed bug where menu item line-height would be set to wrong value by external styles. - Fixed bug where hasUndo() would return wrong answer. - Fixed bug where page title would be set to undefined by fullpage plugin. - Fixed bug where HTML5 video properties were not updated in embedded media settings. - Fixed bug where HTML comment on the first line would cause an error. - Fixed bug where spellchecker menu was positioned incorrectly on IE. - Fixed bug where breaking out of list elements on WebKit would produce a DIV instead of P after the list. - Fixed bug where pasting from Word in IE9 would add extra BR elements when text was word wrapped. - Fixed bug where numeric entities with leading zeros would produce incorrect decoding. - Fixed bug where hexadecimal entities wasn't properly decoded. - Fixed bug where bookmarks wasn't properly stored/restored on undo/redo. - Fixed bug where the mceInsertCommand didn't retain the values of links if they contained non url contents. - Fixed bug where the valid_styles option wouldn't be properly used on styles for specific elements. - Fixed so contentEditable is used for the body of the editor if it's supported. - Fixed so trailing BR elements gets removed even when forced_root_blocks option was set to false/null. - Fixed performance issue with mceInsertCommand and inserting very simple contents. - Fixed performance issue with older IE version and huge documents by optimizing the forced root blocks logic. - Fixed performance issue with table plugin where it checked for selected cells to often. - Fixed bug where creating a link on centered/floated image would produce an error on WebKit browsers. - Fixed bug where Gecko would remove single paragraphs if there where contents before/after it. - Fixed bug where the scrollbar would move up/down when pasting contents using the paste plugin. -Version 3.4.2 (2011-04-07) - Added new 'paste_text_sticky_default' option to paste plugin, enables you to set the default state for paste as plain text. - Added new autoresize_bottom_margin option to autoresize plugin that enables you to add an extra margin at the bottom. Patch contributed by Andrew Ozz. - Rewritten the fullpage plugin to handle style contents better and have a more normalized behavior across browsers. - Fixed bug where contents inserted with mceInsertContent wasn't parsed using the default dom parser. - Fixed bug where blocks containing a single anchor element would be treated as empty. - Fixed bug where merging of table cells on IE 6, 7 wouldn't look correctly until the contents was refreshed. - Fixed bug where context menu wouldn't work properly on Safari since it was passing out the ctrl key as pressed. - Fixed bug where image border color/style values were overwritten by advimage plugin. - Fixed bug where setting border in advimage plugin would throw error in IE. - Fixed bug where empty anchors list in link settings wasn't hidden. - Fixed bug where xhtmlextras popups were missing localized popup-size parameters. - Fixed bug where the context menu wouldn't select images on WebKit browsers. - Fixed bug where paste plugin wouldn't properly extract the contents on WebKit due to recent changes in browser behavior. - Fixed bug where focus of the editor would get on control contents on IE lost due to a bug in the ColorSplitButton control. - Fixed bug where contextmenu wasn't disabled on noneditable elements. - Fixed bug where getStyle function would trigger error when called on element without style property. - Fixed bug where editor fail to load if Javascript Compressor was used. - Fixed bug where list-style-type=lower-greek would produce errors in IE<8. - Fixed bug where spellchecker plugin would produce errors on IE6-7. - Fixed bug where theme_advanced_containers configuration option causes error. - Fixed bug where the mceReplaceContent command would produce an error since it didn't correctly handle a return value. - Fixed bug where you couldn't enter float point values for em in dialog input fields since it wouldn't be considered a valid size. - Fixed bug in xhtmlxtras plugin where it wasn't possible to remove some attributes in the attributes dialog. -Version 3.4.1 (2011-03-24) - Added significantly improved list handling via the new 'lists' plugin. - Added 'autolink' plugin to enable automatically linking URLs. Similar to the behavior IE has by default. - Added 'theme_advanced_show_current_color' setting to enable the forecolor and backcolor buttons to continuously show the current text color. - Added 'contextmenu_never_use_native' setting to disable the ctrl-right-click showing the native browser context menu behaviour. - Added 'paste_enable_default_filters' setting to enable the default paste filters to be disabled. - Fixed bug where selection locations on undo/redo didn't work correctly on specific contents. - Fixed bug where an exception would be trown on IE when loading TinyMCE inside an iframe. - Fixed bug where some ascii numeric entities wasn't properly decoded. - Fixed bug where some non western language codes wasn't properly decoded/encoded. - Fixed bug where undo levels wasn't created when deleting contents on IE. - Fixed bug where the initial undo levels bookmark wasn't updated correctly. - Fixed bug where search/replace wouldn't be scoped to editor instances on IE8. - Fixed bug where IE9 would produce two br elements after block elements when pasting. - Fixed bug where IE would place the caret at an incorrect position after a paste operation. - Fixed bug where a paste operation using the keyboard would add an extra undo level. - Fixed bug where some attributes/elements wasn't correctly filtered when invalid contents was inserted. - Fixed bug where the table plugin couldn't correctly handle invalid table structures. - Fixed bug where charset and title of the page were handled incorrectly by the fullpage plugin. - Fixed bug where toggle states on some of the list boxes didn't update correctly. - Fixed bug where sub/sub wouldn't work correctly when done as a caret action in Chrome 10. - Fixed bug where the constrain proportions checkbox wouldn't work in the media plugin. - Fixed bug where block elements containing trailing br elements wouldn't treated properly if they where invalid. - Fixed bug where the color picker dialog wouldn't be rendered correctly when using the o2k7 theme. - Fixed bug where setting border=0 using advimage plugin invalid style attribute content was created in Chrome. - Fixed bug with references to non-existing images in css of fullpage plugin. - Fixed bug where item could be unselected in spellchecker's language selector. - Fixed bug where some mispelled words could be not highlighted using spellchecker plugin. - Fixed bug where spellchecking would merge some words on IE. - Fixed bug where spellchecker context menu was not always positioned correctly. - Fixed bug with empty anchors list in advlink popup when Invisible Elements feature was disabled. - Fixed bug where older IE versions wouldn't properly handle some elements if they where placed at the top of editor contents. - Fixed bug where selecting the whole table would enable table tools for cells and rows. - Fixed bug where it wasn't possible to replace selected contents on IE when pasting using the paste plugin. - Fixed bug where setting text color in fullpage plugin doesn't work. - Fixed bug where the state of checkboxes in media plugin wouldn't be set correctly. - Fixed bug where black spade suit character was not included in special character selector. - Fixed bug where setting invalid values for table cell size would throw an error in IE. - Fixed bug where spellchecking would remove whitespace characters from PRE block in IE. - Fixed bug where HR was inserted inside P elements instead of splitting them. - Fixed bug where extra, empty span tags were added when using a format with both selector and inline modes. - Fixed bug where bullet lists weren't always detected correctly. - Fixed bug where deleting some paragraphs on IE would cause an exception. - Fixed bug where the json encoder logic wouldn't properly encode \ characters. - Fixed bug where the onChange event would be fired when the editor was first initialized. - Fixed bug where mceSelected wouldn't be removed properly from output even if it's an internal class. - Fixed issue with table background colors not being transparent. This improves compliance with users browser color preferences. - Fixed issue where styles were not included when using the full page plugin. - Fixed issue where drag/drop operations wasn't properly added to the undo levels. - Fixed issue where colors wasn't correctly applied to elements with underline decoration. - Fixed issue where deleting some paragraphs on IE would cause an exception. -Version 3.4 (2011-03-10) - Added accessibility example with various accessibility options contributed by Ephox. - Fixed bug where attributes wasn't properly handled in the xhtmlxtras plugin. - Fixed bug where the image.htm had some strange td artifacts probably due to auto merging. - Fixed bug where the ToolbarGroup had an missing reference to this in it's destroy method. - Fixed bug with the resizeBy function in the advanced theme where it was scaled by the wrong parent. - Fixed bug where an exception would be thrown by the element if the page was served in xhtml mode. - Fixed bug where mceInsertContent would throw an exception when page was served in xhtml mode. - Fixed bug where you couldn't select a forground/background color when page was served in xhtml mode. - Fixed bug where the editor would scroll to the toolbar when clicked due to a call to focus in ListBox. - Fixed bug where pages with rtl dir wouldn't render split buttons correctly when using the o2k7 theme. - Fixed bug where anchor elements with names wasn't properly collapsed as they where in 3.3.x. - Fixed bug where WebKit wouldn't properly handle image selection if it was done left to right. - Fixed bug where the formatter would align images when the selection range was collapsed. - Fixed bug where the image button would be active when the selection range was collapsed. - Fixed bug where the element_format option wasn't used by the new (X)HTML serializer logic. - Fixed bug where the table cell/row dialogs would produce empty attributes. - Fixed bug where the tfoot wouldn't be added to the top of the table. - Fixed bug where the formatter would merge siblings with white space between them. - Fixed bug where pasting headers and paragraphs would produce an extra paragraph. - Fixed bug where the ColorSplitButton would throw an exception if you clicked out side a color. - Fixed bug where IE9 wouldn't properly produce new paragraphs on enter if the current paragraph had formatting. - Fixed bug where multiple BR elements at end of block elements where removed. - Fixed bug where fullscreen plugin wouldn't correctly display the edit area on IE6 for long pages. - Fixed bug where paste plugin wouldn't properly encode raw entities when pasting in plain text mode. - Fixed bug where the search/replace plugin wouldn't work correctly on IE 9. - Fixed so the drop menus doesn't get an outline border visible when focused, patch contributed by Ephox. - Fixed so the values entered in the color picker are forced to hex values. - Removed dialog workaround for IE 9 beta since the RC is now out and people should upgrade. - Removed obsolete calls in various plugins to the mceBeginUndoLevel command. diff --git a/library/tinymce/examples/accessibility.html b/library/tinymce/examples/accessibility.html deleted file mode 100644 index 69059403c..000000000 --- a/library/tinymce/examples/accessibility.html +++ /dev/null @@ -1,101 +0,0 @@ - - - -Full featured example - - - - - - - - - -
                -
                -

                Full featured example, with Accessibility settings enabled

                - -

                - This page has got the TinyMCE set up to work with configurations related to accessiblity enabled. - In particular -

                  -
                • the content_css is set to false, to ensure that all default browser styles are used,
                • -
                • the browser_preferred_colors dialog option is used to ensure that default css is used for dialogs,
                • -
                • and the detect_highcontrast option has been set to ensure that highcontrast mode in Windows browsers - is detected and the toolbars are displayed in a high contrast mode.
                • -
                -

                - - -
                - -
                - -
                - - -
                -
                - - - - diff --git a/library/tinymce/examples/css/content.css b/library/tinymce/examples/css/content.css deleted file mode 100644 index a76c38a2f..000000000 --- a/library/tinymce/examples/css/content.css +++ /dev/null @@ -1,105 +0,0 @@ -body { - background-color: #FFFFFF; - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - scrollbar-3dlight-color: #F0F0EE; - scrollbar-arrow-color: #676662; - scrollbar-base-color: #F0F0EE; - scrollbar-darkshadow-color: #DDDDDD; - scrollbar-face-color: #E0E0DD; - scrollbar-highlight-color: #F0F0EE; - scrollbar-shadow-color: #F0F0EE; - scrollbar-track-color: #F5F5F5; -} - -td { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -pre { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -.example1 { - font-weight: bold; - font-size: 14px -} - -.example2 { - font-weight: bold; - font-size: 12px; - color: #FF0000 -} - -.tablerow1 { - background-color: #BBBBBB; -} - -thead { - background-color: #FFBBBB; -} - -tfoot { - background-color: #BBBBFF; -} - -th { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 13px; -} - -/* Basic formats */ - -.bold { - font-weight: bold; -} - -.italic { - font-style: italic; -} - -.underline { - text-decoration: underline; -} - -/* Global align classes */ - -.left { - text-align: inherit; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.full { - text-align: justify -} - -/* Image and table specific aligns */ - -img.left, table.left { - float: left; - text-align: inherit; -} - -img.center, table.center { - margin-left: auto; - margin-right: auto; - text-align: inherit; -} - -img.center { - display: block; -} - -img.right, table.right { - float: right; - text-align: inherit; -} diff --git a/library/tinymce/examples/css/word.css b/library/tinymce/examples/css/word.css deleted file mode 100644 index 049a39fbd..000000000 --- a/library/tinymce/examples/css/word.css +++ /dev/null @@ -1,53 +0,0 @@ -body { - background-color: #FFFFFF; - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - scrollbar-3dlight-color: #F0F0EE; - scrollbar-arrow-color: #676662; - scrollbar-base-color: #F0F0EE; - scrollbar-darkshadow-color: #DDDDDD; - scrollbar-face-color: #E0E0DD; - scrollbar-highlight-color: #F0F0EE; - scrollbar-shadow-color: #F0F0EE; - scrollbar-track-color: #F5F5F5; -} - -p {margin:0; padding:0;} - -td { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -pre { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -.example1 { - font-weight: bold; - font-size: 14px -} - -.example2 { - font-weight: bold; - font-size: 12px; - color: #FF0000 -} - -.tablerow1 { - background-color: #BBBBBB; -} - -thead { - background-color: #FFBBBB; -} - -tfoot { - background-color: #BBBBFF; -} - -th { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 13px; -} diff --git a/library/tinymce/examples/custom_formats.html b/library/tinymce/examples/custom_formats.html deleted file mode 100644 index ba9d1eb0c..000000000 --- a/library/tinymce/examples/custom_formats.html +++ /dev/null @@ -1,111 +0,0 @@ - - - -Custom formats example - - - - - - - - - -
                -
                -

                Custom formats example

                - -

                - This example shows you how to override the default formats for bold, italic, underline, strikethough and alignment to use classes instead of inline styles. - There are more examples on how to use TinyMCE in the Wiki. -

                - - -
                - -
                - - - [Show] - [Hide] - [Bold] - [Get contents] - [Get selected HTML] - [Get selected text] - [Get selected element] - [Insert HTML] - [Replace selection] - -
                - - -
                -
                - - - diff --git a/library/tinymce/examples/full.html b/library/tinymce/examples/full.html deleted file mode 100644 index 84b76ca7a..000000000 --- a/library/tinymce/examples/full.html +++ /dev/null @@ -1,101 +0,0 @@ - - - -Full featured example - - - - - - - - - -
                -
                -

                Full featured example

                - -

                - This page shows all available buttons and plugins that are included in the TinyMCE core package. - There are more examples on how to use TinyMCE in the Wiki. -

                - - -
                - -
                - - - [Show] - [Hide] - [Bold] - [Get contents] - [Get selected HTML] - [Get selected text] - [Get selected element] - [Insert HTML] - [Replace selection] - -
                - - -
                -
                - - - - diff --git a/library/tinymce/examples/index.html b/library/tinymce/examples/index.html deleted file mode 100644 index 6ebfbea57..000000000 --- a/library/tinymce/examples/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - TinyMCE examples - - - - - - diff --git a/library/tinymce/examples/lists/image_list.js b/library/tinymce/examples/lists/image_list.js deleted file mode 100644 index 7ba049a24..000000000 --- a/library/tinymce/examples/lists/image_list.js +++ /dev/null @@ -1,9 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There images will be displayed as a dropdown in all image dialogs if the "external_link_image_url" -// option is defined in TinyMCE init. - -var tinyMCEImageList = new Array( - // Name, URL - ["Logo 1", "media/logo.jpg"], - ["Logo 2 Over", "media/logo_over.jpg"] -); diff --git a/library/tinymce/examples/lists/link_list.js b/library/tinymce/examples/lists/link_list.js deleted file mode 100644 index 0d464331f..000000000 --- a/library/tinymce/examples/lists/link_list.js +++ /dev/null @@ -1,10 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There links will be displayed as a dropdown in all link dialogs if the "external_link_list_url" -// option is defined in TinyMCE init. - -var tinyMCELinkList = new Array( - // Name, URL - ["Moxiecode", "http://www.moxiecode.com"], - ["Freshmeat", "http://www.freshmeat.com"], - ["Sourceforge", "http://www.sourceforge.com"] -); diff --git a/library/tinymce/examples/lists/media_list.js b/library/tinymce/examples/lists/media_list.js deleted file mode 100644 index 2e049587c..000000000 --- a/library/tinymce/examples/lists/media_list.js +++ /dev/null @@ -1,14 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There flash movies will be displayed as a dropdown in all media dialog if the "media_external_list_url" -// option is defined in TinyMCE init. - -var tinyMCEMediaList = [ - // Name, URL - ["Some Flash", "media/sample.swf"], - ["Some Quicktime", "media/sample.mov"], - ["Some AVI", "media/sample.avi"], - ["Some RealMedia", "media/sample.rm"], - ["Some Shockwave", "media/sample.dcr"], - ["Some Video", "media/sample.mp4"], - ["Some FLV", "media/sample.flv"] -]; \ No newline at end of file diff --git a/library/tinymce/examples/lists/template_list.js b/library/tinymce/examples/lists/template_list.js deleted file mode 100644 index e06d35788..000000000 --- a/library/tinymce/examples/lists/template_list.js +++ /dev/null @@ -1,9 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There templates will be displayed as a dropdown in all media dialog if the "template_external_list_url" -// option is defined in TinyMCE init. - -var tinyMCETemplateList = [ - // Name, URL, Description - ["Simple snippet", "templates/snippet1.htm", "Simple HTML snippet."], - ["Layout", "templates/layout1.htm", "HTML Layout."] -]; \ No newline at end of file diff --git a/library/tinymce/examples/media/logo.jpg b/library/tinymce/examples/media/logo.jpg deleted file mode 100644 index ad535d671f3282f03cac284e0640f88b3e54bed5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2729 zcmaJ?c{tSj8vp%fqZ!*UB3T>BlFBv_F)cLyxbIJU85pN=vza;N8>=iK|;=RWuIKHvBGKJVxKeBXcG@B41_Z;SwPM+x=> z0E7U*MX>=JJm3ZZhy8@u!zJP3vq=IDm)L~b^b;r^6h=k{qa-gY{~yfXDgXbn@eDvq0(*e(P!J73&>$2IZm@wI0DwTCAnKF>I^!^UWrAUv1kx zwFLfEYc7@&F?8vNYjKO*&d>jy@yQa3)IcciDpX1v6p7{`qvx&Fe-hywQ`=6SNU? zkb56O^8kpFkwj<-z@j@oV<5?807A}KP&u7FLAl|-P($(+S!bclhlQh$=8fg zqhkfl2qH1Da}DE+QD4=A}%dh!PC~hZ|-`XPzT*Xb7;^LP3Yojwl zub=xiyxugFa{V9QoCheEMzA8Y+Pc}0-`if;sW+RPj_V!yN*@zR1CZf;Ggq$i_ur0{ zST&2A$wExtM_vZ;dWD#NIyyKqnRY5>Ct>fNO7$4Sbv^uH9#vxlFgV|nN0bbE!1a<)AUKQ9)JqOLau7_6h3Myk;)6SJ~VD=y_lh0&Bq!Chyu$ zb!Bni+-YVee||ts__!6RWXN%P+%k}}q5&+mJeu^z>6|0Dm`AgwRELR**Dg4^dTH($ zCxWEVls|$#pLl<=I%W6;>0CtiJy$yq`^C3&_8DsdV-2f%*Be&b|9mp{`opG4(y*70 z%ltF9TYd*uqDA|!U}uy(Do!y^EUwvSOaK1a?$Mdn!_oCOgu8gwGefE6iN2h>k=4~J zX3X%*{3MA`SoklC_0YHpXR@& zH>!R3-tDy$exrQt)p+mBu@2@Ym4mEv}fh5Z$T`w{-Jz z3V%ij3)My8BgM4dmj(`6VK!RRx_~Z3Y^d8a2j!y#7+3;Lq6B=>^`&J4fXc3u)T29Z z4rD`-H~Vt+qm$RVwWGFjQh8C%f;gmkb~@twbg~V~pfbs}p40RG6TBtt z%tFB94In9~E#&EE7F}~OBfQA%2=91|;_?j4zq&R3A7wvUyY$%gAJ0`ps*zJ8@8YO$ zw5hg}mI;_HRt}{r$qRfxFzU6gw7np|X4uKbLonP$`HeYv-a!<)KP<%M-c&)(`Rs)D zwqTr8Zgma+OYG9c@iNA>ok&`Ze(mS)Au`3A^qsix8D3}XAIsfa6y`*x1zBHR5~>GH zME`18pEgBOUd`}pH`zhnt#?8v)crl7Dw$4U4Z?#c6%C&D_gmQkAvz_vzRJk(PUG>! zy?YVv&e|mRid1#0gm(UEc~>IIv^k7hBw}BkaOKjA{rl*ZqpRsxJj+j&&gN^k&ReS! z4(IYVhxI?u*#7uabYR05ui7nlrOMPcvN+7qlG+>D=knFTXrJNDEVK;z7k}uzBDY^Rp7@k|{ zC5y^a{%53b%JE_*hxI&R*aYvYIxT?#F|aDm#ei$74q)_y4za=x`&reZ2ThdH zMPNXk4w~&*hwdB?NH8$*vIOX$d36-3rF8S@IKj<3&3>`!6AY<-%0h^41S|PsFqV6s zZJA1)(pYFioW-4IJw6(|QW;-cT_Cg!nRiSb3(a-*8BwDL(^co4pXK`K_{)Z=9yT^X z&^-U>4d1Py@P@aVxOFxnoc#S}!@!>o-CyGrKep9QMp68fJsU|H+y(_TLg z-8_^m$#AIScIDE!b|zu_+?XlQvi&*5-whw3jv9T4t(lL*o=#^j*vy19zEZhLqCq{g zBa^d;VRdQ$`&$M~J(IU!?(KV+t?xC|`z~!ozhYMbjXDk9e^oIa8zfBXsf|V2tJ^j$l6h!9MGp%Il@&7?_xL zBCQYCc#RJeOe{?=%NmzE7VJ@$kzY> diff --git a/library/tinymce/examples/media/logo_over.jpg b/library/tinymce/examples/media/logo_over.jpg deleted file mode 100644 index 79fcd884a4d8adb002219f14a12c57b584abddfa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6473 zcmaKQbx<7L6Yb&-!QBEu0xa$poJB%d+&w^$h2Rh*NO1Sy?knEI)aCPweau= zug_PDi10rkz5?m>M*bgA{{ihk{Cnkf)+>*Mij0K(|1kee`Tq}Ix&XMS01m)C0vs*? z9v2P)7w)AG&;bCzApsEJ0RI6I0SOre6#$R+n&vC_&;AEQIQajuXm0>;2(Rg&AtECo z;r^o$;1QAFkOBB8cm$}p5^uTaxTOe*XgSr)R2?P3^k}Ch-vi!#b&8i(&*@$__0O%% ztLx=459HNgAbw5e)fXZHA`%87!arB9F#x!Dh)A?=@sT;X=p;5cxd~1kzx&7a z{NA7^LNPs8GwYTjd|3cszNQY3i+~Fd2k227YK;<*3RV{|1~G9tnJAcLr9dFPtqG1Q zHimmf1RW%2HZv^L^6~-+?gtXPU)HDiM#8}U143H1<^@jZS{wxiKRqzzZ-+rmf73zN z{#7IW;6#D`8C~js93OshIWx%JsAwvP35@BBf&Qu4jM`O%85G~slQ6wLVDwq6gCM^S zbm{Aa4$dpIJbcmycbMZGuPfLJoDU^m`ud`SNx*5R1v+O(1ItZmjmP~PCJG6Qf0nzQ z}K|To<-glwK1Sj6KMvp zZ&F|Tj$!l-4CKIAgef3wPivX;{?T?-J$GjPi3(-4p%*^XEFGj95G0q=1Vfj7wh^<$tRNs%Z7@@1~*M_QfH7^r}jZNT|R~ z;=DHd`$O!Ic*g1*v(&o64nbj$3t>IO!n|CEap{Z-&C<8%0M*%T0P6v*=<2=r~dkVO*GIo!4hbPWUd*g4YvbhHW zhkUUeuAfsP@WvH@eXcs7i@9w_cJfvtW>U{vtjY6sUAVV}aRF9@=v#HJWwOxTj=afO z#dz@T%1of0Zbh05sHU2BI^vAh^fTG-HpkBqDywN^Dac9B&HcsV>c*q}^p~#Kz}%;3 zoF%BTVdKaAb4$bS>_z9FO!p3QL5>Yw@;Ql_`9xCZBMlhClKa{;t3w}*q)CN2+n~!4 zzvVvM`-Xc4N8(OPA}m$XbBl1f;3-k%k6}8=!Q3wtBIlR*@k6~;zKnX}z5u$8JdV|> z{}g*bgkipS-e>ExvLh_X!f=LL>*UCLv_%0?yO0+E(*#uR$rT4@V#{+KYS{Z*yaX|W z_<=B0mUjE$VaaR7WplcBYw`u)?0bXx0=Q4-E-;#FDf{;o!S3JyMm~ZZP?E%Uj7}cA zCo8k6T%$$dT56ylWZ|Yg$>^R0ieA7iP|f-Rcmx_kmS{P865x1#!%lnFjM{q9wKVU2 z?dlkoNpSyYb&52nw3LCrL&+Vtp>O&)-KGAX7P$2!tOhYLMv>Ry>I*n?;_R3x1mj(X zlVY@nM0L(Yqk|2rqZ!@bVxWUN^22E!RrXE`sQ3{aIB}buWQ~Z?!O}ZD39~e#QL?NZ z7wB5eBGk`%_xOD%SY%jbQ2P9IyRP%CB(F-0i}#@|tiQ6j$o7_;DP5V<=Rk{ct&lsC z^QRX;Yr{{5(^{#JL)`8PZVzCJPsdXVnM}?NA%&fEisisf) z7XtllASV>kY`rzS=uZ7nh3SttZwz~tO_G}AM__~@vXD%W{c zguz$**Rz6CQzzRv5skg9rm)xN8}czJ*a!^Fwiu;4k$nFRH^*A`jX6Z20@-24-ZkCs zp@rI)B>RN&xAf=`HGNJ0)ua6jAZ_{n%U!D;1jK>cDWbxDuJ*C?RI6(xUHOo6#{Tzt z*d+PawUmtd>?UU>@s@3J7x^g&2G){Djpn%LLTc|RKDy~ zo=}}?I}VY|OmBi${|7$(nhR1ra!5k+#`Co`3)XIn+$|-azwkamL=49HX+rHRl<|0Q z17(kX*={i=e%adTYj?eC-EYA240+-Y63G1}YcO5tkPZkwv@>G2`?XuxiL)B%bYpmeXzhV} zKZJ27=62&P{y2U60I^M63RxEVxW9YHGGNG1Au3$UJATv1Q(5B^5OKarTP`{&+{52s z437^qKtQK-9Wk2Qa}gU5Wi-w7mW>i*ym(R)8{GE1c-kPLn;D{@QmM*XtWfMOPYEy7 z&1LxMr_9@N`MgzMbXj>eI$}G27~5gI`Hj&ZzsgN^Rh1f&1C7+YZJZhK^tM{2q!c$f z$3wr1)m@3j`6#%|3-^JQx8zXU{7nfd&{XHmmhI)Gu zi7b55S9F>-@Ymw%O~{M{GO%nal?8DR(WlrkuT-kG zDZ}CU2o_FbVN*=j&#^ngP)@R?zD4f(6@~24nT>4|Jt)VU2MNx|Hi}=TDnJIs(1Sza zufb_Wp7pTxRfFZ}2##g%FKaCvPR~@<`*D+w6R6CQI2o#Al*FzT0h^WKieq3PQnn}R zB3}>I=7V}#wAZoTw_9iDPY2=F-TO8h8SWtwZTpTf-xSk?w(I>C zvfXo`L3j1?ZdQvFc_3OXj<2HEzY?Qd)I#(Y*xD)+h3*Islre=0ATL}$$Hbjbb;L*L z5h0Q%<1x}fy&cG~7S)hl)Na%5wYK*(FEc`!XJDWGxB30Mw>0o}ZNUpUw5Z3Z?`% zVe~0Ae5Ua`t2e8d3I4piEuoej@N3R+MluWrd9Chs*ZLffqMx4+mg^?Y2%DO|Z2}iN zdHliRAyFcb2YB;JhOLH=6H#_}wCxC+GiHe5r$sC}`W0R>L@O#rC!49ut|$RoPrzl2 z=$ze$Z&#B?tqUqe&t*DX-(CPiLz+&RVwcF<$@P_kkH$6*_KLrdTehZeuRGfDq#vo$Q0`v;?kw`g$V!daBO>;n4!zwWoBtK2ehJLwes4*fLdFcH7&A=v-eZKN4P8=;Z^~84Pw(-NRjx$& z#!+yW>{NEP74HUGQ@XXv6?@v?+bRl&hC?m*bB(y|l;18{E>?Dz+#>RT(h13}4qOgv zqBC9qqq=q?%NP0nANF(NR+68pcDEior#AK2Li4jgMTbLK4~LX`XJ7xa*$GW!Y1po8 zPGi`^rUM#aydeRNmn*!#u%}XfiHrv{G;0U?RW)-x*g?bhoGBaHtYOW3WAT7|6PxMROK|yG@BF^xWzzADHdF4z=WF+ z5Kz8s{ChZd#6h1Ek(n-`7>bcr<3OO7TAr6uEQ|$Q%$f4|uZ~OWe9YoaPB8Tzj`;MZlx?Fp7zpo@ z|9+nEOU4Z3PWDte3UY>ErwIJX+VaKZ$%pJTfyGPWrzLZE6R! zxe=oHNW_sX%%YJtpf)%dvv-wt>Wv~R6f#q3+1LFy?~AbAJ~79GQc-H@<{{w3GR+uZ zSj#)o;R3waP#euLpzv|J3}yWYc)`cQJ({1;`lbpu0}VJQ3Itzc#Sb z(>(_b8vag>-%HnpM86PZ(_2TZs>Swu)5zB95PR7Xd8+-gV4}sE=GYtWJwSFUU1CeG z+(&&QT(PmM>K$JF5oUmHWLvd!gmnQIhgozXDn`%{!-qhMKmDZb*>hz8gJMEUp^&~W z>K5Y?Y>7esL@2RUaaGmf{%GUzN@=nqLxbGO5V5g<0HpFm=?pBY2*pzH8nZJERmeN$ z`k!yCjNW;Ils&AK`)qX(2;a*i56n^{n92+`_C-7Lmbsw!!IL0tu$!F`1Lht-h@G;? zfgIAl@v;pMWvoJ!M)prKp)>BE2Vx{DtV2kw1@mOu^nOTU1SD`w$nw_d`F+NSl~Ew# zty0M7hC@{l(BWkIC~`0!LZTB2Abk_Ft~=HZLd0sdjfd|Nic3X70Lp5(y|>TClN3P0 zU>hU?`0L~dSjWV`+zm8aTy$q(HbCoooxH432FD>H9k+{`qs47$nN9;@C`3rNOxISG zP)^ZWL%}}TOJkZZQ@}h{5C}=F!4s#MMQ#}%uh%NPkCk!c( zJi2gj*~YQCTH*!^kEda?XuUyqrn#UJRWE9*zTDM0oglxV*+w|d_E{d$gJ?NsGFH09 zAvU9HG$${fofkx?*j}ZcC-t_pmX5QR&<#~XIlYG81+1aq|IHDpcu~r^m$kS*F@@0jQoX~29-Ziuv1YJqJ zKrAJs?(*yHPGS2Mm3oHth(?HMeS*4!7R@8%*IHyU7X!I*)cGu-yM}GPl;p&bEf*=7 z`Y|PE6pD*8evV7as^7qDS3~$t6Sg28{tCnfRKmmvR>E?-zHKjaV*ibKYGb4} zzv_KghiGpdi2b3@ms6;yL6NaE^Fp>VA3 zzU5}2aAzlM=XG_ca!@`HtnboYHyxOmKWGjrs~&XY3MMiek)?ecO)-~}Z%MqCH=}%8 z5T-ae8KR&rJ=s+v=kqaIU5Zw=7s28Rp|&(paNgcPIlsFc1ZB~A0Sx$5$&Zj&jBvVc zF_n+vuq||J8;bM~MiX|(cUEBdjAU36+Z`leS8_VcV`F^P8{0|ag41lstw>6p+Z!Z& zYZdmsLB2FfMlIGwa|XZu_xO2^WoRycLrRW#R&2W7&TCU;#2s4Y-8?n`iqjtP}-9sna(d zQAMNsNssRuVTB!?W@oV%mUrTfH*BjN^>6G3D@xpbZl3Ayo;$;QMeVQIl*kNFRPQ(@ z&K1t9RC!JMryz?hzIK5z3vQnyio>ni+OKtnu$^MJa!_Us=ab{8vQ;PL7ImK!Ut{}5 zG_H&zGnNQMN<5Pvyp?v&Cn#6UqB_ z+l85083&903mF&XPZ_JQig!P^%>QaZgva--ye<3(KKjRvPxv>p(HIY9oDv#V*!+>Bd^2G)Bd5l-I7L;#?X}gJuWk;nbdkZ z(7YpO1q)K4>nWW7o!4I0EH;}$kHKoHCYRqyQ9ywE&vnUL2`HGx9CQ+H8f&J`HtZskf2r z3|2%R>5PZhhJQr4?&BChtqT6+kfvj@O&!rOni)}PaVv}HdgEIX!Rz22%^{4r52lDj^$7}P&jDVdmf zp~wUJCG?E&XZ+apU%hwpA2J*$K0TYA2~?RT_*i%m?4 z>t0rpm*`iInWshW^#Ij?twNn#Ep{Rm29>HN7q*AN-YjLd`&80E4({1}c3 zX)8bE>Bz7vny!77Pe9``(u-TEj+)W=heT&!^23rmAxHfhM&Woi1VUuo^_lBcUFn2+ z2&14+zD^nUW&ezmzN2WI;+$Hg3#--{vh=qeZ9iPxN&WcnVlViQf=dPooKcG~XW4Y*Jw%JHhVFOsGm(Cz z%q)FyNqlSNG8Rn!eLudi!ba0U5@=n7ycA=M${|n*0Eky2RGgG4uj;#j{&@2D$i$UWlnLyqJ3EVGZHnIB~^FE9d@*+xc?)K z8G+=jRTGdOanNkX<_#U-b}7!?T@z-|T)wLsMu;z8>u59QcSEJ>pcp5@iqv#FGvsx4 zDCnl|6h{L?)t+PVCssGjtQ96nMXN~$8|kxKeZJU;HejxV zxt7Y1l_Z9c9MQO+& zI%{ZFf=%hJeLi4r*5+onX|Wccab2mXO>c)VS4)iA0@ih4&3{2Xignysn%#=5Vav3^ zMFWy6tnL_b?z0&}r|Uu`K205_R0ixuBfPfZQHJ;J?Ji<>hvw7F@3-*@Np&OHCTX*6 z$Vz|GRjL08RZ)amWvSpOS64Ii@az|(MAi)5u56`+ul6o@Joyw@CKq!z!*8$h(K}q2 zwy_x_MF&S$tBJ*=%UziyC+|e#9}p6a!(vXTl3l2$R!r|Jlv3*;RI6@~Cm=yp_|5By zJ$(+GdqSl2d&djypSml9k#^9N@agWf0QFS{ymJRdv7%hN; S-qS7kw!Q$6SxdEE=Kl{(%`j~M diff --git a/library/tinymce/examples/media/sample.avi b/library/tinymce/examples/media/sample.avi deleted file mode 100644 index 238bb688a5bd844ec8ada2d20bc4c796c7ccafe3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82944 zcmeHw33yf2x%NqNGVOCtaxyZ6kcm0Wg8{-Q$`mSS1XPB|3?_^r1jxu72p}j9jN*VI zh~m)Nid9-`Q4!HvFSRscYkRfYR$E0>p!wf-?fqr1eG+N^|K9)k|Es6>M)v!D-&$v% zefC~!eee4AS~rXuKK!<;LtH~Aj7lFfD*wjK;V#$QnM;bMEt@yDugm2ca&@fh`4k-B zfBq5?M+sk)ZUn^}Crm}}D;oN$2R>W>`j zE^o#o`+q}2hK8X0><*}_18DiY5Lc8c7uq(=c4lP_|EqSns`-EXkNIC79zTBEb^Le7 zkAL>s!^baP414$@{&O*m{~s1sR>nX4C+wTD!-vDZxroF3{IIZN$HKz0v%|u2bHl>k zew%-9182XTo12?`?AWo~{QUf57xTmNFCIoo_Fu?LX-_&UTx`HnuBh>-fKP^LW~yaNC372p_nUyl&i{DsTrb?-iN`Zb9dKzpwCxLmh; zvV6DW-x^O3Uk(0U?TPWl8lgVF5#w78T;cKhl7X8UUS9?93XkDy1)ORaz7@bFo@ieN zaHbLMD*;{%+!nYU@M7Qvo+w{O;7&%AZvk+TC&JeSxT_K2D*~Pe+#R?F@I2tzo=9I$ z;9f?gZ#M7@;6A`t0nY%Q2LHam{op?hxWE(c%LN`_g!>ABrvMKG9t1oEcoOhn;32@1 zfNus~hvS=ZJQ2qmaXb;n<8izN$K!FFkK^q)&d2ffIKB(V*W-Ac$L-r`xP9Yrd>#1R z;IG5+7@Xs7oZlE6=fNiopSKf#VeriZHws+1#f5_#1#Se&M}oTtf03wX1i0bwi#Ec1 zcY}+D-*9l(dcu5O;JfhWh3#5!!{8SKyaRte_zeShHMm&V?*JDIj=$|tl#K@_7YEx= zaD(BO2)qq{3Gf>XZVs9G}E-UmWM)_!N$FaC{YxPviJ19QVQTTR856<6fxeZPe2X$31cU4vu@` zxCeaRg-;J0cgOKr9CycYHyqdDxEqeU;`khnyW+SDj(?BiE;#Ot;}3A$SsjP^{)BVq zakeMa_aTn6aoh<$AHt^-jyvM`&p7Ug;|@6f1jik4+#bh&#c_Kax5M$LIBtjIwmAMf zj@#n64URv@aT|3U>N}76d7OpMx`5*>9B0Dk0(>%YoPp!7ah#!!Lwy(F!{c=LU&e7d zj?>_C89r$^ZjIx59Jf}-p*RkO7f~uo)EjP~RG?PM&kfI33egq;8&Qh#i~>plYNBrc=(ay*M%gl9 zi-GM*$frEpz|#j$C-N#=JJ`IiT?u)VX9swC;ORt$vUP&ZfbB{sT6uPcXEZ#CYK;i* zE)8!qq8e}%>@|kr-3@yb{E0Uh9tU1$_!@8|?CXpe?;iL^!k>7p5$nKf48H@f2HtD= zN5Frz5$D|p9D(xx4qj!%H~5FE^6}pLP(B>xo5l&spLRF=*BA-P-~E4#6IFdIAEv%< zqN*>`N&P;w;|uwGu1!{n z5REZ?uEf-$6z>Dur`AYPcgmHR%_zmY&Gy-hQoKK}#B6~N`()ea-(j|*)V+>UO)<${ z_TqNUx1-dzGjX_ole{&CUzG^)#Nz%+@@_O@wHme=$zJyOcAeYd6UZccIRdbK?tss~ zV(x^`osLqCnH})qn8B{ODJI#w-QjZ=O8qP5ZuoHIVb|Q4xd%SCJA8D8_cQSpc*y-3 zi0_4cvt|#(J7KTY?7MJB3Fh;;6L=Hs^8C@h@d|i1>@}J_5buF~gJ#z;+ZW<>uuJ>0 z7wv%)CwkXv_I@>08hTM8U5DoV4>>&<{j{D|c|Q-f(as{xXf-iWc9E zR^DdWuWY5C@?8O6>20)iW9$W*Ai2OzHlkvhn^q~>>4B12 zk<`<$&wyPw99zm*4WEb42=|Z0IL>SF<_Iv{_Xs}cdhjyd zBhT^Uqwv20|8k_uv0);3H}GTdzY+h2gEz;Q9Cf;VN8o=W>XC705@O7w;Kn1Sn6<|sH!edqD`F2o!$(>@+{j+r^S<~7L&mhm;~ zyTQUOE&KJr=GfekzV#YbVUPFO1ff)nQ ze+c}ufZG7mJ{XuW5@RRgf$%40T=gXC8vxAMiZK^|kN&`nyBLohg}omzV=~5SPr#l7 z%y^A)9C06D#&V4D9tZ9X%s7wnAML&H`HTTOEA0071U6$u)4x0Xi5XKqj?e1`%(#;A zChwUpz>GN=ixOu8GahA}`WSF0V8*J9VTn5cGmd3^dl>b#!~Mh;~Cp; z2G;@{<9NpV&A@Fj!u-uqj`2Qq0nrMQ;5P^y^@9ZXu@_GSNBw|0LmV*24Dl#C6r8C? zkYiM3>Jii}7;|xq!Z>gk{F>4?OdTW?I!IW94$_of(v+^!l>VaYGrDf0>p8m4qw7Dq zE~M*4x{eg6F$HQ+ff`kyh83uB1!`b{8d;!*7O1fWYH)!XU7&^+sPP4AfT9iF?lHB( z{hkote*AW>5Ne6#K`jy2Lccfkdq%&P^m|Od_w;*GzgL^Omz%ohn|d~aT4GR33~Gr% zE%E=ombe63#)IhbCGuK`=uB4==NlcBvOzney!l2~FGms*-xV1>l^$T@J}SB=W~5nU z^i|QjM43fKe-*9Ucz}w&1s58Fyz5avF(cn1V~C2jCF(6QhN|dVaG^0wMb|dIMn%`e zjJAu6YZaDgI}jHdBN`%YM*Bs;jLs$6FEU0dyNwM*e7OOf2hmt>6`k9DUT-X}6(e?X zR4(Qt!cH(cDNfXj1>l++Z34I$Z!5®vEs5iO=8nq_2fbAE3Yem|XCgxI_tB2Xt6 z@9lu{!cnDJ0-tO|mi!D+YL-BW=z=Jc%7bvl;GWX(QbfT=HCzJxgabG89)8OtsT9^2>E1gnpEzF` z&{|D>tOQ=;P#-r#8{xd4UFTN#P;s-F+u=ja%x1R3hpL&)+zE!dn9b|}LnX{+?gq2Y z!Q6}Ur@CeP>;l6l#%6Yd;XPzCd%^JTvzhyF^{7bM%>B6L)T3_D;>!K+a7MIJb8Oz@?Fv5Bi1N?0>SnuEiFT%o((R)B)4)qRRf%??i&Cee z`~@0crT7>qf>Hjd4&LwW3|kcV$qqgaJVYSyw^%&e-%5O+PT)N_Pbx6d4)gpw8eXpt z{u3O0GTJH++RiAbKBhnWflB-~?ZC%@r}850eHGe?wrI!V!H;wBDQFuF{322Q>olIv zdOG-I@MA2V{Ztk1bYx9EPR<4v#klJe3#mUuAT_IeJl7 zlu}^Gv)`;nUl5J!kcRq)!e9E!Rp`Gm;5#IM%K|sZ;;50XGOot=jPmD#lfHU2`oebL z`fJ=8V=%63l)taVQ7K)6J~bO$A8?|Tt~CbY_lj03i*W1FH+O>{l@@Z;OE;kZ?g6eF zI8jVD8drIHf$L&%R7`6z4(J0e8=NSnTa9ks9B>^qZoARh+YelOi{l9BPF%BGoJ$*U zqL|);K5-!YvMi2@>25qrL%^kjvlY|k-eKTcYuqEapNFHqRu)Ia^fG)}0*hK&4@{MX z*qlKQ0h0tqbkcgv;YazYu#hq5oWsCSOVPE`e;AQ|zr~4G`neI|4{4;7VpiL4=8I52 z6`k}_6B=o~!P)abg|yz_e0!ii%2|1*I?9=QTN|}!^_?^R)J5%V0B5FvGmGF#`36)& z?aTyc)`BymfjX$2?cmIWaArwR0p-=V^-syI&~q;I_=%e5Mfhjny6U+bdQJy*&I|C# zf)6#$^Ehs!j_uqKJ!eGECDC(C^xP9YCq>Uyp@#V(>KFa;PdFCsQgUAOTo^q^M$etm zb87Tl8$Aa{&&|04zA2c`XwKy7BN*rChO@%<$S0W3$SakJo}1%l zr|RfLSIS^?+87pna^_NSfia*#r(}FrfVgNo>=LIHAa=T4!&8lGl!hYq zsmAaI-IDQV0dzqsDiU{2HAX8P)5dv9O%YsRPAMxk9;q)HYCrsL8M_)r#3hG~#Si zrxER74l+lxp{LMK=ej~Gp-w2=T=;cE+)YJCxOvD(=>bhd=L(^{^n@Zpok#qNpfC1< zW+K7q{RI76q;5itB6>{7fEPG%P(PiA)UH?;jK4L6jHD1R8Pyi=>I zgtp;FT-r+AMS6*T-sOJg^pK15ErJfP!XKj$vmzH8Io_2PHm`9dp2(GcW)SGL^j1%a z&h!jWCM%&5IQ7gbBU?SIcBv|~4tF_fuCnGSY@ce}rT060s&PL)O8ecIX`!|$ z_TBi-x{|pcib#oOKY%B?*us3G4?-PT3@lIDVLZu;H2egv&jJlU1x0PXhJT1BwMfIy zqQ%kibGWNStz-*z3@YP1_)BZ_Q#@ljegSx{W?!w8z!(R&3cnC%CYZCvde~A{;k-KH z`Irq(T1TpX*-+J-Tr!kSuXmQ^$5y%==iCDvl}~Aj%kjCr&;mNScyI52!LipUv&zmu zebO_O;Th_V&v0_hprZN$xD@r>#E&W<)%|olv(r(Z^i*ZIyAp8T^b@Wey@O!(j%C0s zBfVj{@dF30KyO2T+S&J3pm(Cb^tP3l#iCtsHD<+lJ&4(lSEKi%U3zjVi?kE7*QbI= zEXv+GD24nj1lQo%=Wj^N@x&&hhx(mG&D)CSg?Wy|RPye?)608LR6OQZF43?(R&lj&CjoGXF- z3dSS_Rk~oNVDPQu;9JMv*SC((BM#=fF6PM396?5?nOydOGUv-#SbN6T9D}+MTgStv z>A7Qb)XGeaWcV~S1I;n@p_41e~hjZ&1Fqg*nFl2KEeK8DoD1oMmB-*)IUM z1C}xRd6bt~ciO*zy`yDk4DdN{XJCl|HbJSG4z8=kF|ODIKkHljN$nHDKi9yfs+`H+)!}W25^JHjR@cdqCUy|V2rs1u^KZI z^57>i<`$gG0B}EWaPi1$h*IwXi67sQ>x=p%Q-$&F?ckUtk&m(x?~-FS#rOb@Sr?K; z!x(%U{Ca}B8GaInlj{y{l7mY?d>ZASqH){dmyL6o8o*&K5dW@8e56hJ@tEY!)^Q21qt@gu-z!k>D8@JkURrh{W#C|t48OJ&aJy2BD=R;Hj% z(JH8wEP?ve9A&9*h+eV;iZ8Q+7)J`X7+EvSNLuRPMj(STTD?nX`;A7{m9Dldf?n%Z z?=8~DRJay{3-voQ(iS5Ur;1~1LyMr?I(?dA#(B#EN?jk2*|yNQp%Ihckn3ii5wk+W zkU_NEQP)B!FR_To8?!ADhdbFt@NI1=P5O6;MW#|ar9bJcA9^$1j0)fvqmCA6Cz*8? z-^k{N@)+rl$35T;`0OQk`k99nhb%C6!#9ib%>Unm~e$bJudHrPbNfOokgAF>!a zRHE{(aa@I^4gP^V{iFPRS9OD{MLa>Mp-`J!mURSkc3}V=eV*0xn-K)MvJ5J%Cc;A$tA*% zt%|g|n^0c@I4ZKjalHg`Y>|ZHx(4xhUUZJD7LcQQOF#Asg&N0| z2gp&`r5}5!?ND-K(K4{bl%9v{2#{mTD%=kE#h|CwIll2vj!G~6*n{2;KQB18)Y60A z3(kWlTIY6J993ZP+YQcu(kdK#^F8=Be0g(2t`7lZ#Sn zql_Z%habjd%1^il!G&oYMs!cq#b)Gqej0b_4PtA26n0w82B2q8|DQhwkrvl5mj9hnu>qc-L3FdPXrvr1H z3Fdlpor+9gS)=hV>{+Ov>r|NQScLoA0&^V;=8tn7jP~&F0nFTT;*P*v2ZMR%Tt`FJ z$zV=8*X8I8dso;w6ZQn`U4gp*bNxoH)4_E&IxB3h+tCAkG;y{X@q{Z~C>xmh@#eZ7 z_Ii$7Cq&i(Vc*1cM6N=89pKM?i|dT^1#S<_K8@>;a9xph!0hjcbAj6eGbfVkm~dT^ zHVT{Tnhe7E5NF|hxK0YSp)6p&8(^+`Vz2o~d^O5vz|MCHxGoEIBVu!%m2jmQ$@-7x zx-0e?kn|sc^5(iN<~lH=P@b6YIB*@A(ZI46q`B^ky&5F#V_=u{Ac?O7<~lNbx58Xk z#$FSWc4|pncZP3i5Z?gY)Vek1IyYQP$6g!KT=&La9g^iIz|QPS=2QL<*Xt%=j=7jo z$?G!#_Y*O5D*1a(2v{YO_tcH>k@b4Gz7OA9;k}uUnRPen(^rao6rYg~dn9-F*b^X@7KF*aR$uT#AdM?#lVvf2+yX7_E zsGFF|E$!5^M7QN{#wdW8x-IRDDrA&SJEI62yBpScViZ6-qbrF5cn>iGBW6@VJ0mxV zDtOHq-8F?7rO?hOQKA&C^}|S#m{HFhM4-9wVZb{xiMnYVqpfMs zfI5L=^ed6ot$2gEJwAg`vTy~+Ol$)`;TYxJYIMh&ZSIDZzQ`3o-)jv&M&}aw6&QV> zQ-n9H5ypt~R_J>zz%d_6B1vX=CWE6YU~~NuvAdNfXLAD(O@}vdjEJWpe}!3YR4pX> zora9i82CB4A!@xW=H1zT)DXk{!ZA9Z4$X~ga#356=zKbIXt2JOpDK)SGr)zzPdKUv zGm(44HN)1zPgH?f_>DZcu2^N&!Ouq29gp82+`mrqo`bkC8Chy!eyUDV$6Q3&E$|zL zHn7x9ZUfsASx3~sMEfWLmx64u4H`EeTq|UZ>D)qmP73Z6eu|V`thkm+!xC;OxR!{O zd5*#@M=VQ@-;x})qkT|Uu68i(tS#u^)iuB-m8g4j7@( z2c7B|+l#mWZ47Ir`TYSL+mBF0=&aG!JRd}9H&~~N#n_%7k7$_!A-+l0H%BleP^xX;7v@v@xG}eF3#z6)1 zC_kvU>UuFNbQ$K1V!_Aayowzv?P@T1jFiQB7OQY|q5R;i1HX4Qe*bWsc?^m=%T(je z3WehAYjm~weyV(St~Z!ziVTr5Xs1xh*Zx5i94e0ZPRpI(mq zIX*2{X8JX#%6xjtaKD8jSCCJmJOSnS{^4i|_;lMG*A+}x*{C{aApf&g^Q%C8UOaJI z0yw_Cyxrp1g3#|VV0p4D@OvHBFyA0|;#lt?&CWN;oj6v#2_W@VqrQWdKikJD{CW=q zOS?w9j(NY}Id8D9g8xGr=6b{rT9|D$@%_NkCUbq_{Tf~a%$#7_*;f$n1(x=I4KknE zuL)j@eu&Di;B~<4M~T^Y5wri5{%AeQJ8?gy>WX~>{Hf>?vybE(*X-}5f2;xKctG$* z^o@eqM-y{AA${>CV5+i$YcUffnBxIrj#s4L-;DlO$6J6ozM-Ati!GRcn++`Ei><)3 zEX?uBR`lsJfn|JhJMat*Z^N4#f;s-#2358r)}@>V9~lGH8*MDa5tXfTUI{sKL7ga= z8Oo~|gKH`)TGkt0Ac+fX6nuYM_7n)dza3mdQrEeH8mMTX$G_v5p<&1?()XhYLr#&s zAI%U%07HRqMt{ir<7(hxz!QO~gY>AdM*!yob4|&Sz@vb#2j;qxqk;3F zQ;Y-V+LAbi=40VevZsykiQu_@t?X;V zYdReMfqJU&x~6(7e5awjXsXkJXW)B?raA+7Ca`F#Gl6FTi>5jYcs8(Ts(7flt%(06Q2^)}!__=~1m2wVg#nrad7eBf^Qe$-Uw11|s;O?3hALSWHU7XmK= zriR)XqoGB>96u6MQ(X*9Ehih8eU^!BO?3(E#VFqqc514{z)OKeQ(X#N0^A;UYN{o` z%YfSfQ&U|ATngM4n3`%S@N!^ksBQ51%Ym7NK}=0`1u%7*EMRJ?Cbl)zm9Uqgd_AKbSRptiET}_8g@p5qN%O| zW(+5qs)=n)bv5ja=tNUp1I*}6#!fn>rn(k(#&R5KaTOgC+nVY+*w@1@n(BIBsw|?Z zn*O$?%FkaLpsDgZfN!L!n%}jtrpjvuTO&=C*B-V;nks)YTz8)b=Ou4KaUUM@w{&W% zweVdDo1PO(ZZpb?rpkE_#+9O}>X;+-EwFEeT{Kl4bIiXL_S<0>4fRTxF~#lh-v)n) zCv?mhWgF~_X(dLv5@yV^9sYN~Ut%5|GlseY_B&yh7^({D2HI2ySB^L`T;mw4l|k_e z1-AobB|hUyhfZcWG>p&&AI5~s@uqf&|1Ol0D6kZ7(6JW5%kXw6&xn{&=rX8=#1dte z;O$ag0l`a=3CJsEc<*|>*N4g@ooFC3a8?*ej+yo(X} zN8`JYljwU1qIVB;###p#10^;^txrflssQwhwK!1%mY}|Ps2CejRygJ!Cg2JNa*5z- z0{oJp8u7_vSt=Wgan8*wPSgl;&7o7$&&h@On*}JL^b7^dr(b**;aA7%NdDv|ST|U< zBu-y9G7*y+cq%=Mp=&n7T@q^XqT&e8x479t{kyyy{%rAV{{-mAZYY?EP4W@o*<#Y) z)K$4MD0TKoOM$g@t1DTOkR|7a_G#{AVwWk#`CugAkH+`p=QL$W2vGcr@#Ms#jDa#v zEwC8BR@}E(nk&^`c0{p1XDNPlj9vUqSz6#;bVF~A3wZl}DegRsgPO3Ez~cQDOA79G zH+0IlfRzMF@C-yl!Q|&~2EsnKWw3D7MNbo!R6Jt_Eav(Lc9~KNBX)7NRvVSv)=3CohL;*i`K+z(+UnsVgws5Q%RPcs481Ht{<*=DA*FoXS_^ zY>IvU%wP@0AIk(<;$ex$RSdK+lQk6gRusxP%g_?0v|~GW)x3|H=Ng8V(0KY z(9V02S*>ogs!qL^d97}1eGU8knc3>b)!maApx`+1P5(mrp#oNZiL9 zC&*LEj8{H8Y{hIY30K1F&~dpx)%}{!T43s%Qf3`6^-W^7dc@Q>r4?c(>>dqo0N$

                ;>ldUd9La0dsy= z@P0h&)Q5>V7P%kxB48PdJP1s^SFoP-%CXG>*k{8oW1B~C{(?DHI*98_EMuiZn3v(_ z3$8cXS%@PqTe)?jD=D{5n^U=UqM(i&)NzBktc-_(>u~Nwd`its-={^-Kh*OQgF0?g zdjYi!=Cb1c(eDlYp3(0m{T}=N?FAI3v>T`PYU(?>?#ed-AHg#zx@#+Bo*aZOB)Ti} zyog12O#^-uSajD63ybcWh58P`F1jo8$qu1@(OuiYei&GCSv$b~82m+dWu6+b=&sqo zM}S3l#m*KAi|*PD^*s)|=&s#iC#KFy-L)s|PoUi;rtZpoIbzXWdt3gUVCTCOeU#nS zU2`nl0e0rH_CtL~QGa`2_G$fLCvFE!-E{!$PXdeXia7~|+rUoU6>}26w(dFv_$lBl z*r~f>jzalo0&@-QVW{sZ)R&=fDCQ|le`4yc)asu`dC^^mE4!_`jkYv47u_}AvJ+Ex9dFeqy6bqW zKI*Jo+Z_8rs`8?{-elD$y6Z&XCviU!GnbX+j|S+jH-b9?pTJz!8&Nm%SsUfD@|+)q zeW?h*wk6m9oa@pp&~FEmuQsQ67D{SPYEJao)di-5ibLN2v{QGK+GL@#LkGE`|t2O zN`xJVS6KdH55y}GA+kQ&sVI~Ivp!J-%B=E&%PoH!o7Yru1?>Dj--at;f55U+Evd5n zMd9E&kF1_LK28q!!C-6sS~ZSO4wS?TFb{~)`6j}awTRxeD*nfHsJmWWSXg8 z*RH1qrFak6%tn+7WSRx+N3;n()NSliwP2{+=uESKebzU_XQ#tw3z&Ny%vLZ|cr2}(($AKQAa$&iiu=Ax{$=PU7D+Tm}GgKLTTo7PH26F;utNmY%Q{Y)9w z4VeWj{Y*L57Wp>JeykiTe9nZw^jlov^V=|c$_itY%DR+(F>nP?9kb`H#Cq2=P`~uN zI%ZE^iMJM}!!A8}72a&naWz(2VR_m)GN{H1qO{A%U={Z96U>puTI56%%SfXZS*1F@ z8~q?vOxm5Apc4fZ!k|JJR0x9#p{~;C>W!}I=xUFy0tGWYCDYUW9nbU(^$kMQ&b3?v zcZJvQ0sY?4?-~7G((f_--V5#)?)K&4`s%xh>AQ^SyN~I+lIgpZ>ARTeyPN5|p6R=x z>AR%qyQk^9s_E-E^UZbHg^fzzpD@nojB}>S_aTl&;rkHkSts!NN-6pZD*DPQdLKkJ z@9&zD_c@N+pdPAt=TSe8vv7O?$5}Y0dUpXnnK;&WuhVz6(|5bmcfo6ova&m#bKgAY zo_fxeyq$aTIrr&v?&0TrKjca~0Xp{#bnYkU+-vavkDYqLd~QE>WDL;WLVOYa&jXY< zKi04N2Y#Pe{9aVrsK#-nL0or>;V6`A%GIk~3q^fPQj9Ci@cHnjxjByIs)g`sP~chu zU$!vE#jWs8<|SYm7q^D}qK3I*;@1}DIGg)~eg!P!>^3O>rG+_eZx1`MjN7?4=ocF1 zzM%iGFyjEO5=ks^0QUp^%)*Q-xZ32Wz!F#V!sq=}!(6rUFBWFp(igZdGFEiWtv|S) zh?%JQNIb)pGP%zTbr{j&27${)97VlE;w0|>*&g{tR6~RtigRdVv{hP%=yKP%PU{J5u!!{(A87Du*#aDIMe)-*Qz{KllX1n^Zs~rkwzuYq4?dI-Q@0 z^W%DKTn~@>2>ls%-vWORc&?pCUgGJ=;Q9J(3!IbAPX!+ZfAV?;P62qn$J`Rysm@OW zA7S}#v+Ae5FcZ96^A}xU7S0nlzp97+!egHyfN7r!U{6 zWwu^pHbiCjIeETk8;TrF^B%Czc{P|Y+y~}8WAoUh99e(vM*LdEhvC1x_iX=lVE7ik zlU=X81KAB=L*eVx2W!BFG-5ZR#SpDA4!TJyv@~0rLRuhNs=haD`o`lDZ8~cpwuWpugUZdYnFu_1DH{*!Wv)#y6GgV4ia= zu7&doZbBxg^ZIW>uBRxhd~#~g*7Et1=U@ZA0ar<&R;qJu+}~77gTsIFmYNYbCuL0)+N1asXV$ohuE48^eJUc$6mkPHUW#hq7 zGqpLc0vn@rQk_cz$2?GSY*SaEElmbTy;R!MYH%%3A2m~*YYC3Jsm`UKEVWXdYXy#a zDLJqtK^n~lYWL=2Dst?E)(1m2bX|VnSDw} zWm#&R%zDkTGXA7Lti&BjZXwFrToO1VfJ+7!-M~@jtiZE`m7g7Nv{z!jDg$dP26?)GDd9${2-qYO6LLuC!BP zj(Mt}eNuarF%Ne~63j6a@vX4S7-|)?PaUrYF0kwzldZ<;FjIkLOtu!<=oAZ^+UHR3 zWMCQNt%o)`Ny9Z*twu1_&W+fs{btx@*0vVfsbG#gw_t^Un_!o5=XPkRf;m>*fpH75 zj9s}CQVqsNtb?5Fg|r>NK^|-|;N>kKWUu>z`yoZ(iZGAC8AUlGENAqk$7OoFrpIx5 ze5c2KdOWDdiF*8~?*OaEn|d6o$ESMSs>idzx88$qz3Y0Hu7d??WK;0A@<2QZqM?1a z_d}Wx%$7upr{5bvEtGGPQt5HNt8%<9&OdawlT!P;Yd?H4*{D|9*r#&4 zh#3v7MwGV~c8Pk{0P9L7HI&_!ozd7@L^{M0b*%%|70q>s5_f9$^}zR9n9<<|M1sT; z8P)((qxd$w5q42H8JTWEG)OE_Dfe8WRw8&a`~@>w=Ke;+676yyBWe(W@5J}j@eW`r z5@Np#n0f>;m4Lf(J%}YjzsIr*z89Ekg^iuc;ZE4uVvBtju&x&Bm}0vS_NvFq84XgvWXsjArQCX}SE;$%1Ce&ntq>m0r{xJ#&8J6UEvhCzom zbr`$m^-u`HpfknHu4v?&0tLs(mO&$GgH!CPAl-i|p8Tf1}VC2}AFpHVoVsO$PtWZi+qRJW+j_Yw` z;1^t^`H{;6N5#taYY8qsfJ;%_0?n@s*Oh+rEspKvN@R&=;ukLhCv9Ju#T7cZRQUN- zW}^6&Llw)!uSiwQ=F-5$G;nOY%c1R3-J1tLX|Kzn?q*twns61!w4*}D&n3rxgB;ss z=_e|n0<#?!T!}Z}v4VrT2ZXCq%3Qd*1IV%eGPwx#8%iHmjhQ+>`c?jh!tvRQ1;^h@ zxYZU%#gd%af3`=<66sJ5*Wd~Df#WroeswM0@%Mt`H7CcudM#EwiMGC{^v~-s^A`n9 zR~Xl0<}V!mJg*!5I4W3=)lWjfQFWBD!3L;sR2>D^0ME8C#}yl~t|wJTQ581sO zBa}^0?IdH8cr(`J)G^oL6wI;DR%;ziQ5A2;{&}<$a}>1=Dj!u#Q5CmiO>Wu+--($| zem*hBU^{T#XctxSZu~B^6LU0o4}NoEQ5ARMe&Y8brmDCL_baikDsIAa!fT+birg=8 z0>+Io;B{5;4&2vx2dB|a>-XR~PX-?ie|d){5+l)iBLx4AvRJMv?^Z0<*unbp=9=<} z$cDiBI`HMnXY$rgk|zR;$B6VL;oP~7J=exG-~4grA~^FDoH-26{Dv!KLO63KocR>a z_`;co5mXoTEFC?2N6+ffBV0WTNY4(^vxf9+B0bAU&py(#lJsmPJ&P$9_f2!$XB_{v zz}>?vC$3l5%;K=>k8dD2u5FhHj^j?OnWNUV8w@VN;;0^Q4Lq)y7YB~*YCOsg1$Q<4 zVim_Y%k8@w+%RxHa2z-Dt{n#MT9owybF3|E_6>(0pP9Q+m#pt6>j84iFKYqH+JTH4 z`0R{AeR(Jw223stTpqYFcqeW*o|!Q?*0b95Y&Sg%PS1|hl_Fh13aX2eX*so7aJTiK zx`;89V?E5Ex)|n@^_cY;D}5$QpW)JHzVsO}eWpyGLDOf}^cgpOCQhHB(`WAV89nD* zpK~72*^4`ScxUhL92q!A4ObdpI7cGRQHpZ};~d>MM?QS#nWLfzH7YVkPT^|g)cAd8 zs-=zJb~Z<3k?1pIoE8nQOSq?H>?ZFy2h~M0j&Q1r--Z~i>_Bb>^JyefnT+VD8zRPy z8i#y8ytkI5a$@Mm2Ow=E(p>Jt(rl52wqi^_z~ zWg)_%`XJm5h?uhw@la17$A~r`TqbfG$Vv2Sa(x_mGWm$q({VoGh+rgFhEey8ijRRl zldgD)p2?>vbtcX69-{EEh`1T8I{mpbPpXPoZ9WmZ8~LEim@9aZr}8jfsUXZLOi}qa zq99Db=cdA+%8RZ_On`qY@YG&(6+-wF@VXK~o_R*8_}z8oLHO2CK6HK}{9D354ZNrl zRAz3n_;iaGHAVPLs5VqAY(5EjP%-$Ok{$fbsE2$T@KhDV-{fNz&xqURlW+}Uajzt+ zsGGd0S587rw6w!r&Jwm_H3=>ltG3v+{6hLOBo zrogI=Wtz4`_&dNxy+ALOjC&V5wZrBQu-$6a7>VrbIJI|&UCy*gxoK9Nad=+20x0>8 zsPBdbWi}R1BEK!PP-V$?=efc&y5~(rqk<>_qHX z7-*Yel?y?Rd92FKvdhtygmT?*$1-cnw#>9jHEoH<+7pSY)D%alSt!N5#uB| z-2|Vkc#p&XHqHMg?Gp-d{pjBb^$5>a_%_8i1Mh+EWb3%5e=|J$PX0Dze6zi1hW5f~ z;R^6#F&uTxR=+LR6mE}xSpSq+xWX*c9Br8gdYJwBGhhkDxiyEat!877bt`OKrI)rg zu#HDK>20RsZs2;n&C%+&!KdlADJU1M%C$i2?6ggS&5Lp^(2HaQ*lvc6Z!OT4uG!f8 zPK3>ma_p7TV7n3LBE9f<*y2%+w$=f*eAuARLAOm%yUDfE>>MSG!}o~53MVmm=3AjB zjDT+feDYDhj0VP{4(zuFO*a8Pt#CJoqW5+B`~W@%G+(ain~I(pItHFYr%xVyywDe; zQIGg=-!b_tj)F$wd?4yV7mmkw;R?EL=*u3oU-oEc1nObtaisETqt;~A?bpH{hn6NB z_B4#1xc?hJLqFV=+BWP-?mAIp5F$eDf-KZvM)X(Q}NxEzwkNmZwIZnE%ap8L!KIV zZ}1&)J=$YLM_zPqz7f7-1ewH7i~aKe74TFga2UszP<4otcU*crqtEA zo>!qR@}i?>z<)S?tNtj%_CoaZ)~J6ZTJVARV+$radMfSD_brF_N-BH3 z(HWyciG1cOjXgr;8wyvbH1?vufmwX~4AIf&XrF6ycG>?9 zZm#vYy!Nb*D%U)VUGygY{jRGt2Tmpr5IW7ipz!y|M_O z!Ox-ZzhdWGH8_3eTQ%^GwQFdaU0~JV^j%=pu*OkC)9gaaSF(7`@AkjLF0yLijFo-9 zWRsx8h2!5qOER=2u2zv8kmtJ?zEG54N%}V|ad=Ls@_N)~V9zl1>D*h%RDVq#dzfiw z#g&DjN1;S=KxQ!a!=fbu|2lJqx$Bi5=NpNCoteQ);TsD}H2!VM60S5`r=N;@@Q`A9dQ099wkZID059I(NWgEAQmY`Z${?e%up_eooHxle}m4 zIN~Sy$0ld`an4VAA$%vLA;(+)ijBP>_DjY68|vpe52ljLnLp_d7eR3|U`@aq45o(6 z*+1JF2^|-AE3Bq^?6gMX9&@9t-_nieSY_FpFGPL*HF?8Vs z{0T>0xEMNXBK|lBD5D*&K2DBvc*2!n9wZGjDrpTY)nKlj(;D*`tQ==kr7f=4$V5sI;8V=K2Yu1mpKYE7<}{e~Sj58PZ(aCkpCqYy5Gh zPLyEsYzNu*u^!>)gXfF^??U0J1asAT&NguD!+JysE`&c<*x^`={-OkPhhMJS#Bm$_ zMG5BW_=(oIkN(2X1)pq<5rwBB%+>ar;~wjZKk}jq&jz1@I}zOIj8!BX+uTLLnU4(>9J^`Q8QH{7p{%(( z19K7F{vV!8|N; zcM5Yi3TA0tXVu5uDwxBC9lBNhvI>N``-S-iDf7QZTXw!*%IvUF>ij~jU5mqfBVd0T z=gYTInN?=)zG3dR!HhHPAg*>&;BFkuM#B!{3TG%B=DQkLcJp8so4Nakxn>|U+_+2m z)A;^b@NWYQeNXL_&_-eIE@GA^X4YITuy&6Ynb6xm!sG zU~{(K@Xowyq?Gr&8-&fQ(Q12YS}y@h)KGZVZmuEWxvwYc5W)UI9S!Ax;n8~rT; z{hra^I?&%n(BD$f-(Jw)YG~@Mho;_+XzDEr^KFYTylsJz5}y0vILD^m%HZ1@G4R=e zKkOc?-rg|Z@(5FJe#l!Md>aHKTgAnpof(Sy_|`}wIA(N;Qs|;u&}sb*aTkrg%EuUo8eFu`V;k(~bTrlUX=sil-X`RJO8k%oI<@ z3U|~G$VsMnI#$7>Rv>XXGsV-fiwLy>olC>&dejPpW2Sf-R^X!^K#uwWv%=G`YM*EX z-_9`)Y=p`a78RRW-{e?Uv<#CQsr;Or0W~SN3El(6p|{F1w*8sa?S&H1wSkxHaAtca zAb*O=gXlYUc6gfrp7q4wFRc;JRV339WmBWD>)|{2e*FH)jri8!+u>U2{>%a$H8$ufM#kf5!PpC zgEKdseW|VJF%z8ZosHNG=m*;!EHl6}!LmoSYhd;EdoBpBD zlBlNI-;){Kw75~GB*4NlTwyvxwJUZRW@u+Z&yPkKDxgja_YL*JLM_v_P@iXv=Yxgs zN;I~_!ov2(wotpzK$$o^S!{J0TM}SlyP#W=araTTPE&WkZDGbXEmY3<95uEy$8Sir z(6%raI}K%8;!dF6*VvK*%S?xb8P%;(hWV`2^6WBVNy9xTS^1Kkor)3}xMQg+$rDTe zR_Hy*Q|A(%nb};2H4RV0lmNa3T4}EPq4UhlZjL*k1)gB$sY^Y~v~G@bNd(U4r zx;T|tN`I>1^iM)d-36_to^8DVpT~8ByPyYj^7JPk}e7zPS3bH}A-ju)ollbBCUYdU@h!+SkG zS4IR=@x7QyjkpIZ_OxtdHMMbC+v4}~ILa2_w{YW{#o>PLfd6_MtQ_MMpjJ~Scl*0y zPRggOGTNC2m7H&CgkVI$^AUbJMo)n}74zw6naGD?J>PNgm(kS>@QCA}FM{q(1HJ`49W`EZPaSdXaZvvKc|kHC7rIzJcBBl#$du6UlJpU=hfNZ!CmjQ*mZ z&qEJK-ir)z;i;eBhUboaEJk?bMJF%B^UCiPkBo1fpO1Tvd=fIgg{OW#A6J!pbG!pc zUi9;Yxc~V(v_fXL@LZW>A?|bX8Tj7hMJHd3-!dM2JKT%>UcxWI9YCJX6YpK})X$5d znkn)zl8Q!}px-i&&5&3uK%$(qRIRwC|V46m{tF4%nnz@P19iFL~^Sg2W zT{QD5;A;32Q!_WQxh5kub6%q=_?tUUhxsaiE8#DiIj?O6a2m=}GdHohgEcjC{wAE) z&VZe7cdrC4gFi7fbNMYZfvK6B*w)OK!=E$EZD8lyA;I_cj%u9fm z0k;FDX1)}-1h_pgHS=O%>?YBmnJ)pxyqT{f?9|K`11|yY1We7`#I|O>2=>J|AJNPg z0%NALA%}Yb@IqkG%;y6y02a-h^IY?RMKdo1E&>+Koby_Rz@nM+y{37%pSY$dHFNG3 z4Nk2$O3i#W@ErJyX3qJk*}$Ti&jg+YESmWY;F-XpnNJ6v0W6yNt-#YzKi5T-)m5$q zcP+ki3-J01E5ZkA=bT3w4*$TFR)h~+ZDj=fN5DUD#TAopyz0tG_>Y8t;L0oHM}ZGq zeTDNrqwpO?6BO-`{Al;64eBV*H4x&j49|k@TJax-F_>R$5WHE8L?>gA2 zcba9~zHz|RLd|o;JRUH0QeG3xLpA8`*8pSQ$u}N$>Z?}+W8TR(5tu8r3<1Wj^1hpa z&9$Jz@McZ8ZxXP%7Ic^&yVR@w)V{-OLH8(~?&|4srOdDTb=CP>T{R;M+Gg*V?mm9> zy~?z(r#7E!KFK%sOHU;2E#LC@?)lcGmj`UPckp||eiT~q;B#pe>$3k`_xiPKX;1gh z?ORe(dV0!*O9Owmw!`wrKAX9u{NOKl?D_QP=V>2S=kHx|ddi8I($buwZsR6@QuB1b zOJn|U?ChS;pHcR03;LFxD>+g6(~ok_?tD4@wX!d>Ce7QlKKJcY)wFkc)8BjixicqR z1@$>+$E6S6b>^k4qWSZxS57?jBii?8%n4`D^=}{kUIc?hSqWwH$rdr@R0B zoAtCm_j`Zu`m`HPET1xEVBx)A^*+2Ob$VIy+m~MZB`B|87B_R|k)38&zNL zxqRKFYbtMBoKO%p)eCNwYBdU)d zO?G|y*3gphk6v^gdhLnqnwmq#wl8)RzqMl75njjie_kq~{mrTnqrOvS=An;YGab4*N1))i?W^I6Ka(^Z}};^s{i8`JF$MN+&_c$tLqrNKL3~RpOn8=K2!hm z8LpaF9`987&ZtQ9zI$v_Rn67q^}qkxP|xSKk-bX`>P}2~r(^C5uMhFmmA^9o$nbxB zx_8C+*J)43^V?y{q*E_WtQ$CG$xGMmX_t3Z`6U0^lgZbs=X03Apn>P%f# zPRghscybeuE*kUo>xb`q;qs>6|Ln;&^}DvX>(6~Y|6E;N_ zU&OME(LWjY^7}8k>e626R#WqMXlZiwu}If%?mLe5BmJK{K9}~RV(W{l{aEziL(4)Q z-S=Yf`3^qc{}cL$-G7<#O#Rj0p#SRHsp{jqqRjht=2u5&Z|%};bzLQ&ukAk@?k>Gh zcPh8^!-0eMY#YDtx6N;VuX(Su%e%*C(w^=gnKQWV+=;sL&-S@|;+vW=0^Rha(Da}HF;n5I>-8-!}#L8O&_1wwCF<4U!q6$$X?*M2?PHRMgka=YJi>2gj`O!Kz<;m5FN@93KS7PaG$H=f^jEeyUz_ z#vfzHJlQz@c<1uVedp9^@rUR0%})+h@y9U44-3znKXGPWNWV+ZkDT(Ce-zCc^OJ*j zJpa(EkC^R4RPSfLzHqwW%S$ID(IS0C=>`SojSvj4M8jc@iRNA=!v&+lF?Sh=t7vF6X;Qv2!J5oJSu zz3K4E{y#S3kNbKJZ2e2bAK!R<1OJ}Xb>+^4Sl5tCUk`crg>yrDjC$!;h(GFI>6qEu z<@%`Cu4{fg`pu1V{`lsq?&Y@(3C0h>`0BeHAO2V3kJS7LTKrLP>iLHFqpTm5Ux zZnNW$uA8Dx)SdgZk2m3=f-y-SW#x_h;BxNxBdULA{Bm%9=}9By>Ry-Lskru7^GjEG z2hOV=@RuG9@kQ0dGp7#ywr=p@h^Q&GmvcRT{ovOdKgsy>C24;Oo_*&;K}Blc+Jk+T z=e;*B>6U@hHfI;#a$1ca(EeP`S$Lu)#vf(JR^ME>>$7=h-}^_+$+@pxWc=|Q;*Zz5 z9)G3uLRF6Uqs{rh`}F3V0iKIntoWlt)rS%87tfXLE3GPRKdRStt2>-oF{J%3|Fr(9 zZaccn>i^`ZBfojk)js=YU22X$7Ft^RN=CEr>T}1B{;m46%R7qI_~Yj8pNTUWlUo`2}4n=@ZKRg(JCK7YA>d#5tr z@t(*2IOJ08rMz0&sc*KOGU`O-vxlxaR^0vOi!}q2cJIFbpXDcWO??#lN&7#Po+vH- zqR)Wnn`UiV`$l5nAJZ?NEPicW+RvZtu>Efz#9n@JK?c+rEu_<%P+Q8^BSS}#oaHhzw~OD(nq_b&h5K@#+g%l z&y?g8z1Xti?1hWBJQwNP+-d*CO^iRD`j7j1Em=Do@yCm?r}ivPc;j5Lia&Pd{C!Qv zYd`LM;8!2SzF1UOnwgpzdhovf$&q(&`CEi*|BoH*!)u4t{6uj6L(TgH=Wo6v^IQK; z{PEJc5jmx2CY~rgU*G42*Iki+-Tc!0y%UT#UcbxKFCTz@*`e;^6PF7n4z6qW$yEdT z{$zgMA10mNU1~nx{h>cTGUd#PkLQ*Qp8V6j8HI0M%z8a+=^KYDPW^(=6~Om_vP*% zn(aqa?{`WrpRW7iBLg=5y(nUI?)HAqJ#@I{*psimL3&;I7!w@+*>I5Y6@(sx|B zmp{+SJ-Bw`H-peVasK1(1%pc7zIs2Fc^OXU!HL7ABL+YJ@+W<>myKRtI4S(V?$Yh1e);CnKGRd*Kb0QeuIDF3Um3^d zTr+k+=Jjh^&FiW31?Fc|mE^osmzST@X~Ti6LgKmsnU)b9{`|&SIJoo$|x8+U4b`-A2T%+0# zoL^nqhbN|tfA*@;HP1(+eEf2jr}vY!$KnQjlQ#O$HF1BakF9udWVg$MGb5^=?wOx9 zw`KK)&~IA)?C1+#_57cG(e17Iz=~-aWzRKluFrPk8?StMMbBpK#27 zJU80RzheCTt@9rz^!bnMKmX3kzvBEy>6wz#XO5)z8}J9te{{ZSbHYalI=fy`^B>Hw z*mSP$L`CWOKHgu9F7xcmD?3?r`LW!OSE~F9KHsGk1*gyaXWhV*SBB&lF0CF^yJPB| zo6`S7#V=jZek7hbcdF;~AN0xo#mMoyHYW9Iwcxk^DEm#ciZ57xP+i^WDbwq63a8zf z-D&N>ezhfg{#m#j`4ehv=)9o_{W`;iU_tnuSzBFEmbfwog z;ty;5uK3j?c~YP)Ri zcz4=&fX zf4_#$H=qCViVG)Fm;Em1*!ly8r}~<%xyE~+9X{RG9G^hnm|gJm6Za*3Ik2qwl}Wk7 zqi)N)JbL5d1HJAr%g^om@GFTgg?>=fXF&S_lTt=)o4+|{am~eFKE0apN0%vugDzwq zdi@;Y5AW1|GyfWP>c+=Dzvdy%f1DeN_+!@*cYW8gg{2o>@x0pp_idIR9`N_}1x5dH z@Qd*==SKAybpZ1pAI!bnzNXr1eD&)419Pt3{v_u=-amWivWEEMkeR=^YWJxXajo8a zAUOUAjz9hg{AOW%Uz#)SbZEi(fsa-1o9}(Tf904vp4^zdKKvd& zztk_Q_ST#--mDvVIO6@OW3KyU&r6>_wCfs%C-&**{vFeL^)_l(LT~Pi< zRmCrdKD+0tPXg@L=~Up2h&(?9wyoj+Ec zH|6es(*7LUw+peOPn3LlU;krkkM=EV|9O|PPCwhQyJ+;=a(>f)Ui|V$=hpN%T(YR3 zw&UE~!mza)J=gVC`YhYWx>C&l)}0xA=&C-;JvV&R<+VXiUTXQ=`(LQ@!}(XXI)1A6 zjitTvK6^g0_W9#Ib2Fc;z4++oD!*iZ#=$i7BB_Lt|r^5M4S?~W{=>S6m>kNmV6cV;K% zufKfsN1LhL1oPLw8~Oe7W-jmXCYB=T-hJkDKmK*&@0vs#kHc}fhJW3`<=U5E+gA?2 zKJ7_1-gdpqbxHHzG27)juGuG-V`VzcUbzjQso6IjaJeRE_K$wza&cE-Ilt@Pa=Ezw ef#CR$aDKGoeHNbo-Szkn-fIc|@BgPO@V@{gVhxr6 diff --git a/library/tinymce/examples/media/sample.dcr b/library/tinymce/examples/media/sample.dcr deleted file mode 100644 index 353b3ce67d2372f48acb3264f992f9a9d29115a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6774 zcmeH~cTf{vw#O4nXrUuDA{~TKLT@S%dPfLS1VZmMbPz(7-b*MVy@M1%Iw2rPN17Bx zP&$Z$B7y=>cXsye%=>5euiws_y?>nhy=TtMJ)d)C?wo6)s&U_g8352xR#Ww{_g5uP z00L8FiKK-jIK@O^K6bXM5%&UDY#oq6GAJEj6q6J_J`sL*Q1&QJ^Mw%MSF*^=EGGKG z%~wlHoskv0xQnlmiCK*F)dbx?e(>-xZ0%H5+VSuk+0$>@@!aOx*`cSapl5L0-q{1l z1aZfYa+4C<%aRrajRwn-4#WqMdZ@$)jpn@^J(ne&N&%~@b^_bBc<9qSjlDX`BDMIn zL&DOPlr;=Wm6-K!#rhKxCMRWN;0ZjsJUQ{{eb`aYsxO6`{V*FD`Ky$M$S6n$1ZYIL zZ0YMLDMsi5B7%Q&%u_koV0K^3$1AcgjbwIS|6Zqp%!15dv-HL_D6+9r2CmUmCdPuv z%p9aL$T%E~fDV#uFD;3bZ`sSDB4jdO@+OLH@@$`fL3gsVgFU7cg?eZ&P5k#n={Hq7 zjw4<+)H8-AJb83J03jrd%_{wc1d8x-L=Mae%4<_iIBz*^A-yOlC}}~cLiOK4*@oVB>Wd#Wq!zHi~F|npPpq7;5 zf`*EkDj;xW!9+0$qIRQUZSQDrFK^l6vqzjQjTjy^FLisp1jt%?N$#L6cOu`~vB#1i z!*I?*Y;L)z(b(^FDg_k}CbFXPf+?XD#%?pvd9Tw*6AD2(2yQ=+=3tNZAut`hMl8s+ z4)Bl^?jm&hFA&!c7M`7jBRp$VT{h*}H)-{2_1*Z&LYMB4c}}l`daTg1#F>X*LGKAd zm)9xQnO~2YPrjRU1baMc=tM|K-~8nHXm)+_(>s<#m8bQcs7fr$i`8j*fB%9f+)?lW zxhnFbL(BK(l7S%yQ){&YEDdrYRbUVQqr*G)UOlVt!YPXF-HHr-5_{%57wZ|{>XlZy ze(3|7U6X~qURQ+>=EaE&}zf1}4WHnO7)M1ha zNf|Br#y_|}q?FlV zg(0_HtBTif7bK{6sdh(rnDJq8uxgFS_LT3@Lsz#JbX1(Z=};!E|C^^yZ}<-*CvP$n z_tD%yjM?;bFCV8>!7 z>%Oaa5C>uEq}e`iw2M?iRrwe*!Ly1h`ZV_)Z5LeDHzlBmCvxK1oru<84#$X01q0WC zZ;Y~Arsz={laSH7~Va3V8?>nDcYGR(JqLtbU%j+R6cPDN4 zcwTK<%2W&hO`6Ker$0r+;Y6D}hiLX3G7VBkBxjx=VxhX-^2w2+bd1sGoMDX3?d#6l zd_R0iF(fj}cBX8lMtDKy20WKZI~>Sv1)tMCxqa zV*Wh3b!0e%oBdXR_Xh)xWpuoYw%9UcmdpB>+3XP9nWiYzdO*TVIeur#Ry7k5S8|s& zGA0*ikrS;g0<0S?=X4T93TaDqzCMAg{JIog>oviS2fT65*E+KA5w@;c7A3dyedXX# z7&i35OGU6}bS^#)1n(qgeP~qbdZ(za_7<@!cQ+vmkb|Cc{9Z6K&aOAeg z4>Dd55KjS-ocKF$J1yKlf`e8{oZH}(%Q?dyddUcPZ)RqLn@)6)q!P;SUt7ItCn!5G zS*_j-Wpx?Ja!r?B6cGeD!?bD7{l3koQg_{Q!JHzs{IPGcp*NbIS*)NWl%5iIaw8*I z8I7>MUD>H`saZ}j)e0g`{fJCa3sIEynXvuY2x7ViJn-eJwD)L0B%3zfLD(l4m6EAyt^mSQ|B& z!3T!yXUK7`mRy+hlS`Ah;t9PVt5C$e~0mvby4iO!O$1c)}wL*AJ%Ay}C*Z z)j9P(-h#w%Gzi zMcQhMc8kPHP-XQaKeHH%d9Rzg;aeRwAOnP0rmD0etA>Ye?9N0 zZ9+;-nf|Q~Bm)QVg96vpJ8;{VrU0z!)FGTTrf({NDamAQb|wm%KHP+JksiOXrl0ab zG8>K|rD8I;QyD}9mdbjj+&gpM)vU;H0T_KjdcM*r)h#DzwS0fJHm8=a#$~YU49%@Q z!?+UwAJjA(lD9MRg00!MR4~m4^D8>f$==y>qC{$?l~y-$C5|k%i|j47aOheOjd{-m zTeBHeU9hKqr51aWV(;aUQQ@V)sCdr0L!}U<3DU$|eBdvi1+KMA@h#%88feRourWI(R)&tfXctIHD-bf@{K6a&G#SEgWh!>CQ+mb^}y7Uu|eu(goUel3xV zArn68q5s1JJO;5Px1zz}WWOPZS~L(qr|enA~HS z;doz`dv3%cN+-N$)i{CWIDDV-prv6t9T6yOV%0&J*?e(!oRB!{_^Jx*lEy$D%-Uxv zF00q)HpAWGJaePPb_UVnI78l{QG}mZMA4kUqkK+KQI?#Z z%)U>5%@z}Fx<~b?g}KhaPl%$zl-9&{$xnEr*0{o9yMiZuiv1kd;=58gwli{z9HEZv z7rm$A7f#mSPxVDD+vocxSs!TRT>aXGU4;iueVbHyoc zmDcPyw!^ZY3W=KC&h{)>DP`}d=$k8)iR!z()V1wy3(|9{?@!SDk(!rq(NXZg6lUc- zUAth~WqWMzaGmtFZLKW~8BTH?bRwK4QXV3B6YzVYu|?V-?beYsWxP61r6{J*|`D5`&`zY9X|>#yh`02H68BwQPb zR}93=7NE6#8@Znjz$4fw%OC&%pC$>~dyQvmV*1c4$dHId&dNq1P5WLmHZ8~y2Aw#m za&Y{@NDCSBt*<@(!Zhr~#j2!rFTAbo>}86iHTBBbvCW8BrGp~{$#FJ8q%BvoptLBjH*GN7)VtS$`9?s{)z(M$97OO)>R)lTxvv3lESBfRp z(y@9;>v=RI5+OfuFH_&|HrtFy5#yl&g9KEx*vp*iSx>X`|xeJno_Cnp*JUe2!FJ@`2bD zL=2Egd zg7|eIkv=M92@!X^%_Aq)>uX+;QsU|B(Qib{Eo*=XG-FJ773dETF>HUki70OdsOH9} z&zYSNE^P<)#dzgVOmq`yut7sMd2e^5i_(@wDhc2zm+$9Eusb57zsHvF>_156adH{X z=I+*>)gN0yg4%c*8{-I}8(6mWmc+~ybmv+3{jqIt(bIRkfvQ3J@8cJy355+v&g)$l zAQW}CUxWl%{4zE(=@H@9s7dNAt)gvvK>FsiI`N|l$JB$Gs;?Q7F-Dc7kOZtunS~7Cv`WS0SZD}&^)BFWvOfdd`oh?dExf_!r5q)wD1V`-swI=$zJKKUr2k{J+W5cm+NsJIeqZav1r*|9f+@mR8DBGYyvuks&at@=uk9 zOH8BH6X;P}fY6TlajPxG!ll@&YMAfG?3z>df>>1@tOkvq_m%U3p`eqqC<(O?f@L_P zW)xMTXf2vAbRawSL|;OaU(0}o3Tx7tp3L+WN$CV-qrihTmq9sU)XGjw+%Q94-3uJX zD?R5GKDy!{hYVWMTb*d4L3?=qOaSl)=#D@at1n;;bD6gSp#`hB;i)}==|bcJigwc& zDB;W=z6|zrFL+@&BMf)CLVByVC_dZsgw$G8v<3Gb=$#49j_(Q1_X>n_`vZ&VBQdm6 zZbCZj#3~k-+3>ILZJ7{#E0E3ptMPwi?FNcD)?vg&`dbjzTMGj2*k@CWEV6nEbau$IRtvd~;Ps)Kmf3hG0+X{N2bolpgh zc_6ym-EJpIk5#oc*WY}TbNXO0 z{It|GaT_&Ty;TyHZK=X|j0pRv||=T?>9e)|0z%`fX849=;1^k%_eLZU(m96&EP znDOzywz72=Eb+jRjhR!92cp#yei1c~I4V%*9>A95+Lh|7j#3yJ=dCf7Y zSX8AAIemtnM6_S;c-kske;6m*yFWm-0yt44z~a)S#Rkgw0b)hH&8=a>n5j9*R{m_& z-^tm^PRR@#!OrDaInklY_CgR*6k+>Z?9I7HZmvj~S&Kw5X>jnOmFC!!UgO!xhg`M5 z3DjjO2XnIFIMucdRF%uv(UbFllDdQ|52!9D&Me@Y$2O zywrj1KqzfjCR0X?8t1({7h$-$3Vv_-l{!j9k{G#!sz|>PbGM8$r5`yt{XDLxvBK{J z0RWJWK3%m)8%rurLl~oXXC3wA;4$N;dD_Mj{JDmjRgJ@LBYA%9*}Pk!5*+~ru`Xtt z^G6Mc6eeFnU{c9K9&1Ex63HK+L}=|@C}7RkfJUH8J?MLm+Kz{Lox`M?b8`j8ugd9A zcc<=R1iF8A5FjVvmZce;MuitG5)@#jKvz;Zm7vs0BX8YDX1Cx>KFie(RTL@b)727V zqCuOXG_^K;KqWK_F;9pSn5Z0Pe1S}Gena&}xc zvL7B|h}ZeR5h?KIBzuYEKR|`hp-2E=ir|-;@zy^-?SIo^#sA0kpY8Y!)Br)_nX~;K uhW@iN{TH+Q4Rj3y{1@n7EZ1KU_TLWu1x5e2uKaI@{;hKT1;PK{I`lsm0{BP( diff --git a/library/tinymce/examples/media/sample.flv b/library/tinymce/examples/media/sample.flv deleted file mode 100644 index 799d137e67b109d5919ef0dae8a9d13e3134eb38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 88722 zcmeEP2|QKX_doZVuKAh?nWs!wnJRV7k;+(xl&doJWN45^mog+X8A_QNC>5om$u$=l zk|YUHQW_8$!ujuWbHn?+q103F{q6U8y2Dxbobx?vuf6u#`@5F@iZv)22!iOr{}4L_ zwIct5hK3m2-Bvnmx7W4bZjS*UFhH11JGR{Nb117(WzZ+Gy`)?%?p7g}a{H zCKT%P?RH@x)Z+0Y6yZ->O~|i}5H#po>9-_oU%%w@W^eqSEmy^H0eI{436x_+a>cd(NduXdAn22-L!?A%Li2( z&_UkJy+WPz@h@S%jS=^K2K(j)`1g?nz*RurPJxo~i#o1FX*LY-!eC!L+@!BWkmGLg% zRUq;bup%~{ULw~MiXlrF9uD>Q88fHICPP4&8e$!hy=!?=^^H-B_QQAvl&3#K>9PC( zHa`Owu`xxHwrs(85F%JoMBUv!B{GuI5fO4YnY(pi-}B zkaUt>6QYjj%5FMbwG$o#GB4S{A7&UvkfevW!y!l#oFC#Odh4_Eu=C(IKY59AJzT}E z>|5@qcE|4JC(qYigRDOA2;KuW^jci;Y3a*q7#uM9EDnA+TKyh&g_FiU_`HALHurRc{jnm_)}uVITL1fX zqweovhfy@@a+TQ77K<@bzyGU?1F#d1GK*KD9jeP6$c(tZzU|nPy=DOJEqOb33C@pf zTjkUNlSbhNpM~9a=HAAQK0Aj8s>A6&IlbQ}wWsWU%Nd_{Fn|9T)#JeCi*NJkcLxrX z_2GSB_Wes?{s9=qXW<*i@FV$^_`ZF#V`Ytsu6b{tS@6WIKkFQW{ph;a+xJ`q^{RbG zt7}r0ILYkbsNE>5)OsjM5&!nd+V&j@+RpKB{hoR4y5-|!Pk(>Kf@Id+1!|kERXi_p zJ?02Bl(@0DUf0R1M$o;GD@L@?zd5(-y03+8>Pb1({R8YJA2WCfVFhlE`$f7fJM;(P zH`c43Zo)Xob}Xokb*&os{27B{amOZiAM!_EE2u2COJkT}b5GQ_A_rvI^I)5nVW zt3&p_?Mc}rz}alTJWp4p*ftnXj8j+^b}Q*3_u5s}*?f)*X}8Ko2bjnE9Q`!k?`VBX z1)ICls_X_Yh>?$~VvtA5A=&%6<=rEMMWGTW0&xk3svdC89j4I0!n?M59$r3-5}sTI zZ)jHg%|CT3(kfEE)OE1rP);rHr*mTGnsh#%KyA2HjCXmqu-xDbls@2gqxM*7LDwTC zo~9r@rc-&lgdNU~;0Ho`A*!~qBw^j+>@88Q7ZY;KS(ISZT&CxN}G;>;B-s6$52g=6Ek5E(@bhl37Lv}+e{?zdv3#%tuOy;|=VDo0E3uG1{w zFBV$~ohy6ghUZ>b7D&2!xZ>`$((Im$XPc`clD0fZ?VIza_;TC650!d%t~exdXP)U- zgBL2IFR5}aX*tl%l49#oG*WbFZ&UM*t1-jDp5l#9d5_YcqP}=&dsWa$&Z^z1-Xrr2 zt=mhQH*jV+E%L}e8okL@VwLGBx5GK@3O2W#)Q)T9ZSFr#V}KREb4l|NyV;#*wTdW% z2L{WQs|hSyJjZ|g*;B5ydAB8_GaeikUYAka2=%Gx`L-*u-gr$cgF7BB(i6`-9fyCI z6sveQ@7?ZT^)jgCTjv}s9Ko|%8IgB44fp;O8|NwbxS__y<^#O%8-S+dy*CXw}W4{9|b zB*T5v8gV1fV@nliTU2N|*W0TUT6;Yp$yw$GzSWRgXvl?bD+y^CQ;y6#_a;@hHTd== zuXHPP7?qLk7M=y#Czgfv?T8SGvJ{JP(-JCZ_ABBIxo=|7$-X+WFr;j2{pH&5=QM6_ z;u}@igvQd;ZO)|!&k=t=*K28446%kvLGPU0;1vgaM*h%UZ?4F!ly@US#2pOn0YV*u z(H$Kh&gYz|Ge0C*-&tISaS0Ar!2M%`O!hP~W^&{K|muQA>w~sS+U^ zZSpG*H%H%hS5co&<19+&x$AASjq`>_w~IEb8d8rqDpyHg&c0HukKcE^Yh?_#oOk)| zl}&ubWosLj_NX0vxN~>Ypwp6Ob2%}&i20A7Se_+Wi446M%3t2c=|WgQRhmkRX%?B| zOtT(um7}Eb&PN0JMK(5;9Hf(|RvyuZu?Beb=t{WCh?E)X z&$_d9geu)q00-mVB&n$#-*RecYNDa)HGN4x7fmWO`iR+s=u0&k#1S*dKMV)w6`4m$ zT)fFtdqbv@O^%Snw%K)k--*M!G72JOwXlm1SG)B-(BZ!Ik>B)^fmFNFX-~c5p%->5 zeR}iW#x*&6W2t$qTWgi%qUM5uLpLSQ-Kc+AwD4VTf<50R-`J|gTWin-tksH@!LWj-x{RDaqsF#&BCLuqW5mX zZKDm$s%ZCX?Z2`nE>cA61lOF`j2~Rw1hSVZWk-iUx!X!5(41CtJ!dIC@tSMM0vFw{ zv4}@Pfkn*a-&@C%vM1sA6U`mBJ5w%sug;K*I|O09KU>5yVi+5j(&~ih2K|srniZ=D zectmwhv-U1muen5wBd>PW4i^;rv)~SQC+&Wj9~#xwTxkYk-=|a$AY?B!sTesD?KW{ z`)+vbWA5d^tlnc(Y&R;-ZBJctjk?n@tan4_{>rV9s}}mMeDJDxeQAHDMcRDq8B|8%(a0a%LUh*ks?Po~1+Q_MFhKEfW(h zapI}!$EZug7HOZDXxa*9>PFs?1*0tW@N)8e%d3kM@OUmK(pP17hi*xkE zKTuDtDt)wscl6`V^QtD+)UTiDU0mK0aO0VR;|)Q&Pa1DI<;umj^R8!>waAC4+WFJB z*e!Hwxb|Y|808BFD*KZvWh;xl-OFOB*2H(UZ5r6;v&YuDsA1Pi-=L>29$q({`^0bi zf@Qmuw&NZ149*CUPQU7FQ`~5rxgrbd$Ds;VywWyVdRL&CN`?e;l$|mC3nBYXnQ{JoXc;pVATa0)5gFPWsHpinN|4R579xiL|%>4q+++; z*H5Lxw-hYmOS>6=UFfpyN%Js*`SxK?p6oOAl2*{}`1*C_?=G9oyK~uVKk4|I3tRex zmpCj<61DuWM&O~f2>rRNtzBc-;|z1(t#XT{S3a@DWRuobU(qCgLxI-qo}p|S{5nI; z{kdWmZ`Roh-yh0tytDBM{-F?!;=?=cgIp>nGd&Y-;0dgsUR`GuUL?=B>tS=|OSuhg zDgN<;dw8N07aerLm8r7hTdHmzo9}La^)UTDr?Xc~bl6)%jAeZ*xl2zBFIO^YEYC-U z++RVQX9M-6-ORSCh~A5R%}sO0jNzF<<j`CuVyjpMt!R##IT@F$o`6`r5S2uZv#`0PRl$H?0l zCv(Sk`#P=n%6Xbwl|w5$lNV?a zR^-t$K9g1IzLLDseXG%up_^AVR-g)#E`m$wytcPgzi}Jqd-<(nx?XSjE1n;|n7Bf_ zzmA6FusqviaK7-GXRIkNy9OT_eY&C0bH68fWqBM&K;L{NYP4@3o=BgUj&}%9)r{Y< zy84#&aibQ=`r?zzm%XcawRYsu6PvP9KCu=yzIm5@O?ckP=*$ss7`>-_SC>l4>VB#P zI*?RQ$#z6^e~(7V16-lXg_6+~{?g}OQ_o+>B41(~yfMb!4!W;zc!zJ_`o?QYZ)(Ie zRTFM9iP^ldtGi>67wUvB%I`Y!ekrxtoLBJ|yx!?!wVgvm zMyqrVds?zx7E;aQKmRCX#Y&@^3v#Pno8PhVy(-vgF>Dqt$+z23(3HCAKx6cUTUqHl zSm)e6YwnPxyb^u-(-T@u`!u~b7i2d^a$Pv>_&8tWRimz&)amCfrN@gFwk=AS zYxVqo5-SmowPw(= z6m9Ta+cLC4P3C@!?v2&eyPut7x?M!OL>~6rN-uHwT>IiS>le>YHOw3I)>(aR|GqI( zHSI?i%o0eR@Y9@6+;=wMNPmC$f#jvd2iE4lUb1pm)Rilp2R5OFwm|mvgN1PgTtbqs zmkbkv)|4#V+&h;gZ?Oi`IUZ&f5h{(_ua>Uk2~+>%0Vzw*$&!)0qG4pahn?o~#yUwE zq2%OEF)`wuA*{RDl2tZ1@K?0citUVB^Ga9!{=E|fX}(cq4yV4Gdq2G9kyy>HllNB8 zt5}w8ck_tz#-=-uMwDGI?8(n~n$lTSoU(1_OH7c)D$gPAo6Wzy>riFUm)v7fbd+G6 z(Y2e%3Vv_-zB`g}rUx$C$}cH7)gJiNV(^XH6OXQulgo9ok0(6cwkFazwNjfd zvMaW8LwW2=exK?D)3m$2`$8-g2~}@;u6FustbS9n+dB3|xu0I-Rrh^4nqwaomzZko z&tI}hKrfjGAw3JzWD%pti)<_fm;`sFUcA{XO)yQkHUmMxNAE%gzH&#V8d3a5mSln+}N`Qf?h!(f{y7!%(f$w5twWHQnSSR$< ziG$f$cbUU^eG^y@Gu*Oy@WCVRVvET;R;$GpX+E#EzWAUwqM|g<7oIP%R@0{Q6iJSX z!Rz@)Uue5jt-Hxe$TsDO5nQ47Tgo6Ij+KA73w?b4;(m)PR!`A|MX|Yy-1eHR^l|Tv zvkcvRQQoa-Ov;jlEBvSyt~emqSS^eB!=2!(p|2N(6shO-FKLeK8EvR|s^j^w?EqSC zq~k=Q$C?P8kN5%9nNv%TI&4st<0RH!zsZ*ING?V<*zUv5w8QoHcdqaWSiiUQ%;5gz z1)J2*MV9j`9Ns)6`b7CjBn)fNK3``ZGO%HOs>s`QU>YLd^Hjuaf7%>}r33FHuJW4R zj5U~__DcD2%kYI$Ql%*}ug>Z(Z!{{j3qKZ?{rn}5F&!h!xD3+>y>8oUo~pY4!Jc?x z=3P-tCALcGctae=|(VMm&h7VNA|whEDGd_Q1&2Wwu?wj-y!__lt7&AiCewKj(QnK^yL;+&=Pb7S0f z1N+VE-WN!fW}S2rGSY3RvsAR8UCZ&9^V&|8H^(yS!y4$(kM8upP7!qRKAeX$s<5tj zV!i*h_HhwzQ!n*Zoxbzg+!nF&1cblezEk_<#`7{}A$z@dx8FN($mqJdwO+%s#i`VH z^m02j*3ZG;7T&f%_(OW?LiwU+3NP;46-vis*N4l@-Mh-mYXSX(`tTbA9-_)TESM-nt82sAQWjUW8^mc?MPeev#gwCBjANT38muMy zFUM^{U2$dq6mt{H;4t@^&5h1gp~Q_#ho0)ZIXdcuQf{V+%R0h-Gtz0q#xZ}{z;Evz z;EP7+x#th-6x@tBySc<_lUY@>&gnY=iN_Cuv>83D%S3C5NOuISUbM@AU!6}ro!!FMgai_mhVIdUlL zczK1>qhYpY6>XGt*9-ppBJYgd0H6mO9_=663o0Wro@mPi!dD;2f^%1>j zPs;s)P!=EQ=CVC5?*ni5SMPMgOk9ioyq7OloHSlncb;mV|LUzU9Sswi!csz*8J(!edIH>*QNFg$4e6<79sIyi2La0IKMLT zh8*X&hEOL&jLbd~#_>}fdp8Q3qI|9V{bHH12Kzu|Kypk>;(!m2R_H;MTFH{bM zG$J@cP|b-YC-wZ2*WjQE+Io?@f;=YLtobmUz7%x9#C5iY-EE$}kc|hlo<*=C@#2kO_$8f?)Uv5|2mP2(myTodVH~sibo; zj?`Ov`Vjq(?&sB=pO*u9@(MzO7<8=M_1JYzif|W>b1e+_CqxO2g@2ZYTY>aH&?qY= ztB~I&BYB#LI-_9p+j{ns6eP3!CnNby7lA;=AgzglL+T=4_drmJY7W%j?WN24v(A}7w!J0%lr`sQ;>8&+qXD-O!IF+H7QzoGiLdW2y2k5MK_twlapWxbaF5~cpeIVxqH;K` z-q|iR_QPoF!SGnS5Dhi{UK{yTfpoA_qJM*5$}; zkO+kB!Fn9r5mkj9P_DZ#0Tr06#Ld~2CR)ISL!(o8(Pz_S_dn+t2@-a@2E%=o`7r!K zaa_C=NY7-WAeo4ql!9aq(8)SJB|Ryuz0)|KR3zNQBh8geP6eO=sM)EY!$@P8*DR#06Ac@MFR`33d zB+$u>1X;;_HfC?N4gJ{i4E=*01X%rL{DLslPQb&( zw>?C;Xc>eh8BoP)R$;n$!$f4MyvYZa9hV(JL}#{9knBQEOX=Mgr`pMyJTT%cpB9pc zog|MqLp5hH`v(1$?Rh&aOIf#QyP^e4X_NKov^?4v7$XiG;ecTSf1r|=hIGK+HRFJc zNdtLKO(GQ>`!N=K?QZGn4au}YC>-g0+r6vB1|&I#LK5bbs}k6Ju!Gve0zvaPxRWA` z+|taoaU{w6kG>$8s$gV3$xg=m%fE+Ah~xg`H(lEoFQ~%Ch?no-27^t)PmrQdR}>@=7@15+RPdb5)X#j5zAjbl7Iq0eNa%d* zcm>r-AW##qkd^i7gdHbfxCjqyMB!!UQqUaeK}!xlG(Xrn7O1@Cz-H)&ekY zh57Kf*U;X$lSscC@HsziUZhqR(TF+q3E-c^1V^5OJu zU@3<~4+7Cauq}k#W^&k}Ah~cdlIe(@oS5SP&-}di^!-T�vucWHZL~;$=yoXvAf> za=!LxVJRjiRI-%5fBoBH+1HLTc;E%8&9(dD1q~4)bPxb>>}1ICzI`3STibY9eChpD z@dDD+cm0y-sEGSehXpG_%v*`+2|h4?OFQ?HTTiokdE{v`0D`ZPxK6)UA)QN#!F&<=1w0(|E(t(FV^tAF} z*xEa7!qf?atHL67vO71%L#+Ar*$iP?8Z9}}tEP}GAm4q^-+b8F^+Y&4xc9vt*;uCe=z&ZiA_&?TaziuOC`bk(C#C2l2^qVCzxb2h-#PC_LKQLh zj_g@_-o-0Lya3yHuP}6dXnPTLfgFvmrf8mU?C#N>3Xh|XFexJQ6f4TfLid3?U?cx(mI zGu9|brXXjeAbAPV$q9clF%Q_u>3KoQ5X6Se_ntU7Vt?DP-AV?BVnmAsIPXq8K_q0^ zhoeNbvX*U-GT-9^;ysEW%)^fW2-@eVA{t^HT^E&ehq)&Fmj4r+04j|!hfnVsE)`&jR#_H`CD%Gx2cq?5eRq5VaIcW%BkaijxMpTc~GjK_srkvp2f zMnSS3IVVLY!+<|YlAExTh!-@y*&^bZGa#{`(Y^-%MVWd0{*Z5v!iX>>aFlt3L%N?Puc;~aN{SSIgTWn0eO5BBu@h` zXp%n(VnOG3GhnAR#~}jGTpj4-@LnNarL5fLo!%%zU)~}dbznJXJPt!VF3h|5J@!T> z(y_}X3|%}Dk%#Eu*9Pq*R)NS5idw`$hIl(c(-M+KygY={WJ}R5^LiG%7puSl%M-2Ie^56X_+} z$&tRt2TnNJ91#;1FraS>w<2_lwi7M1p)TlIQ7^+%%>pn`^z#Sj!*F{GfCFj8;EK>e zykL@}W`1|bGj2J(c3KGMW$J+y%CgvKRE;D9G^aPb`VR0WNA(JjLEp3bCkBHkNRl~8 z6eNEa3u-{Tpy|(X$g!X!He88gS57tB)zH(Pab$ND-%`pii4j((g&yvZKQDi}3?51U z4cNITc7OpJQnf{;5(M+ zc|ggp6BU3$b6p7Bz@L$*N#g^;Kn<1?QzLNBpU@~sh9c*tAbAs+cTbGn0Lkx~cO!Eg z|6TL?0-he)(`j=VrHR9(SUuR;U5GP8MPM0(uNQ9>8D3E%NAm!9gh&Vicr>3I(!n8e z6l14(p^&ezL*IPy0$tojk8P$NV>lVK34{_~^k%2%hvP5|Z9kWGbjzeDW2L7Zr;!oPOiZ~_(urXcO0tx8T zX)Z-Wrw%Kein9j(7c*HcQqqH|+$2B#FA>yyB!4G0aN_!q(Nbg0XuzioOLdr{I80 zkEXv=-iqAMj5Z3A{m5A z>`lIgTLEk)b8>3g)@S8=vD)m4po8)Pg$kdH<{vMYZ#?j~%jGkQ}2 z`vAUA5&lU?%1lNwZ>pUHD`L~0ErOpV$AYG__}`-mq*H0ZDs4j4C8vj{6zas|MfhXl ztxlU3V9esBi9}7N3~Als)5nB>nG9+H`wkR--jdjO@21k3j3lxzXj07lJ0ci}PBI`m zdG3IZNYB4Savg&4**VF@GE1g2&0z>4<KM0_ zpQ3JH*WQONnF&`3GtD=+_k1s_Z^3?X>Y%Xef7Seq$k0{ zy1>Tv$CV3#=K$;jxy^7OgQAn(laVCv3;Ghlpbg5CUolNPN%n$}IZnkMBh1?8?enrt zsC1!t!kQk(wHw3<+%)zCYO|}n@AO_S@>8GZ1Nx`R)O|r@7iv0-<;eZaXrmw*g`Ab5 zlVC+`4~bKFeC(!!z=$(E&8QmqRazt#6sm&u$gkY7k!KLATv~|R?t0mV*oVWRaTrKW z?(Dtm)jsgEB(QT}Db+;On>_3G1D<)$(I`dB$C($NQ}LpYdGW56k-1%C%?kp(>NH0J zSW}Ley#TXzb&Mo<63BoBd~|XfMDA(E8U@KrmXoWkPjv~s>lYPso|ht5Dt3xJaWK~U-r%2 zU=U|xyEi|;`}rOEA}Yw4{(j1i8=efq3Bia%T3HqcANdU9j4v)ykSv{yB;uK`pGWa0 z$??f)uH)c7XC#5^BBO7I-z;Xa)j`#W;BuC=`$Gvh3#iqDHCbt6o+pUdav>4h4<$(; zz_@c9i_c^CK}cw*F4@ApJzvr_6~)xDLWD2kar(j)EJPwpM6TvgNtG6TA0AFGwg4km ze_SyBpWX(IAoT~0f@CZ59YrUR+2W)K2JnKuXB`KF*vUcLsWK6we~tkn*dQ93l_bLxTlu4 zA}CjxAqe7HCZK-vXm~KjmlY^vaI3}6i74?O-0MI45e3QN$w;0@R>Z!{7U>``b`Q^+ z*6IV|1(EaI3_e{Yz2l;s*_fX`Z+Zu_{NQFsq0=-318Rt?QZOyJdK)>MU*=C^*}|Swgu1Y&pPyNjvQ61I*-} z&*JdRnn{WmM2!rxUvv_1A12Sc?;tuky&YC$e-asSfIqn#<+egaR7*#|Abvyqvob5C zcm*Pqg-thi!KR!KhX=zLknSmTIDh2gI2K^XK6wkq=+!m$v{$9{{GuUjmME`dV8-1} zT1HylZgz2gYA?|pYG9oCL_NU@1v2^Ua=R$C)gTrm<^wMqhl6Y<{eYbu zv`n!M|1>1#jed4ifOlCo-&OA|yu!p+L>weMOb%{>4Xg)zz|bFmWMb3c%mVpECk-bf zN#3zP;ZLd~`+~k>y;~UQB$CBS@Xd}`%t17X7(s}7ecCsblb}i?OrkdWNcJZW;4}b& zP1~kMgZ_B2-1YAl%V!wJFLNB~jgyf?<~WmPi#5}q;~++ZOkoODDeeh8`ueqEH_jz6 zf{^>XBUYQ5piAA#LHBw&_aV`9Fr2CZwCeO404K7CkKD+PJ=qs=$7IE@Vc~$K6AT^!iIOfqfVTv@D;B6}p&#fG7Nu z93b)oqaYbK8A&7-G>QAr4RrE5{7F9$>8*<_BhFnY*0KHos+$XUdr{h9;x3#GL?DW3 z`-isGAREAr#jml7q1}BOpNTW}+z2DguJp#ixWO_sPV|>P;ByU(VMYt0$Pu~;x zFuyK?4{Fmi=G6$)}q?Q(R4^_6j=9cxmXjay(w-#7nrJhuR(4(t`iu z1brU6gTNeTb&7R$m(99Uqfo?VFMG*C{U-ZM1V1Vwf!Wfmv9=Mcc9#d_gH;?6MG!1j z7=I2kycd;%?l48oh>84OUved8E{43;zB#*w5UpPAxMlH-#TUQqY+S08XcJdLO?l1B9QSELc0 zX)Gy7PULX~3{V8gN%L-HvYnh3iv;Q2!gt%05Vu}t}ozb;dr#(A<%{_{-v z>;GA%Jk5+V<-cO-p9r4rA2Q{O5T-ozYcl0&5-02AEK?pq;~N{rPR=}29y@)e{K2qa zmnlzEgFFGs*!{Z*2C@^?dwP3%fj>!Jv2Hr@|Ai?}^Dkt|>;95Vd0O%$hoY0SO!;rL zk;viWc9M3cnDQdh<4pOL|52tq?JQG%8frL2grbw?$fuOvJip>)HZsdP@{L#qEQ`2(>K%r|pLcYp98uDBJsu>X`$0_&tco z+2dijn-W?jJ7vrPH#g_MHi6sA0~N;}Jx|3+vjNX|G@-tj-ml&76>ruiA z4F$=64^#f@mdabFfyMWUP>`Hu%6}h@UsfM5GtHD&|F1ITF|$nhAElGCO!*&$dc7H-HROqxx-XaLo9k7P(dd zuLwj1^JR$k?>k!lPE&~}bIso0Eb7=>nn*tn`U6C3E5b0}Y6UyE`~cC<3D6gPepU?) z3X*@tl#iMIPE;)MyO{F##xqCvi|=aW6A?A?R1&)VE?2klA*5YNHcM5G_yg3Ng2B&?`d_8CK|&jQ}!MDA$Xe~2l+;Xlcg zr~ikT@`!Uy=F$$?8uRYDa3K|@qK)50%NVxGWs|TzwdN`mZvV*?=csx4@UU1JNU-7n z7>Gl0pF1i1In7M~NZ(MOYd2isOPh^M<)&x1Q1VCMv(WR^*ybZPz+clt*q!9afw9X5L z6};e4L@)^s1g)z_2Jd!wRA~GekfvklzE6gN*BILxkxD~f!IWPBf@;R}0MDsO6GK397T7BmyQlm?w1EfJU6eXW z@YOvVU8{LC8zH8wEgJ+P@9&@%{shLG1Fdu3ey*UBJd|I z6oEfkGKS`M8MMcichqPV6Sh;e3Nu(;dTqTUF(1w(nF3d|-qFBk82kje5&r?r`}3cq z=;Rcp{Nb(xV@6rKF(O!+)EUodZmJ?qifHAIk$O4`CF<@Ghn?wy_K(8&X7){BpuSseA@_Rum-viYbqbIMa-o zfA(Yue^gWcKgyJ6s6l!FW$Y%`rJbk&`jeRQAWbwxgT+B`UDJ`MrSDIkA5^d=)^PAz zo*p6vS@22|#Jtas+qy3$ zG+_C+aw6{0A!kc8nXzbl-?b$Pu0fGRD=vQ`+wz8uc|3`)F|8RuD)-UPDxoosB;#K( z<&nA%)65q{js+prRHw1{|2aV&5}kZtBE>lJXpNGOFVzZHF*^MUm9wlmRFD`%L>HC^ z9n!UfM}3n((nL40iL~;qGpdl_WE3Q)Fy-@+SkOOHQ~p2ClxLj6ls`2!7DOUv6fv1j z4baaz2}YbBQ&XP#Pio40BcaV-qozFLEK~k_tpTNX|9qxANeAdvoh3Rg|4Y;xDewy+ za~zmIqlD$ki(tDNgCZ`0f>Zg-D~kF^ne@O==B4F$TEFvwTfjh72!7!iJl=@k3(Ysm zQ;_^cneqfsv-sLS8iln(*Jjd>vm`2M7VsuU#uiYb5aXVsJk z51d?69+o|%L#2K$gStSggVx@U>S{tI#-5nW=}%(YOX7%*(ubA@pre6u2ypDrJdjGekJoSIGraaSMG360|a+(>Bm4AFq`LA0lZ=En;GxUnm zyJwm5-wXISlFUDyDIbj0eCiIvua5b^aJe1)xs`z1LkD3YpBGLp4(Qx_dekW%ENHZg z@8Lo|pP)lTXD$qp%U^R_ugg1K0#eJZ$p!8lm;FgQ2bgD>@;^!^r!eIaw%w#Ef#kZh z-%$hf|5Z(S=Jm)Up~Qm7J5eWgSbfLtX!6*N)Dg?blNI0BVz{>3_A)A25_fUs2VZPD z&J=|+VG+4bF5}ti5tc-DWWL0_k>xb<_N<|rvzUE@{>t{e9hRl6TeMx#f~B;{`gB?z zZ48VN2aa&Suz^2tfG!Q`fWJsDN7@W`Z;G9qWy=4k-aUmWPp<(cx#za~?@7$^$*-&Iqdd6p^vqk4BM@bKH{^xKClK(oU{DEJTDbF&?l>Z+k`^FC_IyuXf|3={c=Wq&=GtZRI`ES;gXPITn z|BsS=;|Jq9NnU*T;+fAf<-ZX{ru^4w-k%>u(aBk+{GVg=b>C2s ztU(T^tUk;#<-ZQRDMwL|{8gCpzgzs51{cezNu+{fKgMFO-7Q_cA(=J^g(IDByLa{1 ztSOJ3Wy()cuxY#**GcRYraWnuDgW(IQjq+InDV&s+|hNB1AhFnZ|;IDA;N6;<_CB` zze8U{1v%5-PuX$9lVLa^7;F$9t}Kh2NDWH>G+Lx|cZQhMKA~Mf0=WTH1Z{ig@G=I} zd_p>k)GDO8p=@hA=b-RhNjn&Rc^D7FZSRo{L7=sMI}+b3K|yksDgUF8oWhikM>5p8 zijP+-pv}pXH=brj5oGa~2?zG7Jy~odZIoGIQml_Egp6^lyLI>?d1!r2A#{3sAWyVu zkJf*LDUY3bru=gq>H;|$Uro_WvpMuDRq=40HcdX*_Gbq==UnhV(#8mX%#?Tjb(!+m z8D`4wNjyO$WZ8$KM76S(ZICkG;{#ItD1rnGAO|$L4HAJi+oM6U<8@IvcbIF!Z}~sL z382y#bNJK`VGhuEFw&vWRP|z!%(YIeMGP0gzG{B>C*?~7R|*=%PR=srKjSg|zZ4{A znex-e@UtWZNix@uGFzNw%1;BVzruDS7Eya@MnKSFYf1hs(dRpUeVPY6&_Mx0ru{14Je z_L*nOTZo>9APX^QwS|Lwlb_GGG3Af_vP^mQS*HAt(#ct-{EtF%mMQaxyQVz*EK~kR>EtX^{zoC%iu@2|^^gF#W$)bGVR(QV?xU>Yd@m}~ksn8r?3jO< zEzSf}9IXPNTT(Zk6y6rG%9%1=gRIeIL|287n2>&muDbG2}l%K3$(|JwN$(d%#yJH;2L?uzl7NXD^E>!j1 zGv8KIp8t<)%5(hun(~~pO!?{P;ba+#PR=srC!;c**Aygw6{h^ZzNS3aEK`0udN^5T zTqn7vFy;T@n(|Mx3Ns8>e)PLjpiW&tlFP*HV>%nB2*1!GX&J-tM=*Jgq)ec(#PQM( zH$o%LNGnT@NMbe5@aglGEZWLRPfETu2kn4$=~={Z9Ue<7$cN$As%${Cy=7dUH2GHl z;nx%-{~@M47F<4qG+-tFK}~r`iiru8ET!*X|F&56wWACkhP%|}+KpL`!!SeywQ-PY zY$rpG_wDNt-rC0dFQ_TcHH9f(fMjnlJ4xYpzxlozpbSVIvE$2W^v4$WI+hD#EBgxB z5}1!3h#_@ipjV6sSrcuaW0Q2?;SfEod>FR&PMfF}Bn+Me7Re~mog3pJ*8KWxhA=IS zmK^C-Q^?bU8YBY-bTUI?$dZ;|<6d<>@B}=QV4&9IM&=Lx!+JRR=P5clg(*+Yax=@6 zpN!MrzosBL%as3ntp5543X=aOrhMS9%#`PvWy=4x#{K=b6rKE+G3B*>*_!fPvrPHF z*SfzxVq7P=XPNSUjnm(MOF?p$DgXCa{q+$PBxjr{|3tLC=bM8J21m0EfDt zKRAEVRIeCZIXZ|JOmfuB?+$s!EvMH`3*o#>J+MOgf0*(P+Q)!9zV#Pi%5(plnDW~T z`ym$bLV*HXG!=1&`U!)Bm99Q;`aD)V3|C7`OpyLshko?86rKEAru^9mA)-Xix1Jt} zK%j-eZ1LRrBS~8Fj|d zd8iZ{Am?KGf)ZiVjI&R3102!llO)Yo>mj<8R5X|ff6e*t@?V8m2=0&}c+AlkF+0Nj zI4~tD&K=&<7Xe7!6eRzGDUa#)m%q|M!~)O!DiJKJMBKt+j&mA#E;}PgeX+O4+z#BL zLeUe}jE$vTwOIq}?wjzK5--GtloL8=kh_0Bg5TGYR4A0UVI-B$?`Xf{6{&qk`?%j4 z$r@X`H#+Z089l1}f(YBnSH{(QNmoZlI5_4NBqqe9aR`PG-uZ6$C5RcxzHK6X~~* zAZV_Ly`1%1B1RRGxCV6Vn|cWan(=>UK5rbj;2CNZo&3U-H+e=xC$3Hmq)CR%gD*$4 zA`?WE9C9_&nJo%K|6l$Cy_+854u^PR5v(|g-umo3>^%6*PhO&24_C1(`uM9EDnA+TKyh&g_FiU_`HALHurRc{jnm_)}uVITL1fXqweovhfy@@ za+TQ77K<@bzyGU?1F#d1GK*KD9jeP6$c(tZzU|nPy=DOJEqOb33C@pfTjkUNlSbhN zpM~9a=HAAQK0Aj8s>A6&IlbQ}wWsWU%Nd_{Fn|9T)#JeCi*NJkcLxrX_2GSB_Wes? z{s9=qXW<*i@FV$^_`ZF#V`Ytsu6b{tS@6WIKkFQW{ph;a+xJ`q^{RbGt7}r0ILYkb zsNE>5)OsjM5&!nd+V&j@+RpKB{hoR4y5-|!Pk(>Kf@Id+1!|kERXi_pJ?02Bl(@0D zUf0R1M$o;GD@L@?zd5(-y03+8>Pb1({R8YJA2WCfVFhlE`$f7fJM;(PH`c43Zo)Xo zb}Xokb*&os{27B{amOZiAM!_EE2u2COJkT}b5GQ_A_rvI^I)5nVWt3&p_?Mc}r zz}alTJWp4p*ftnXj8j+^b}Q*3_u5s}*?f)*X}8Ko2bjnE9Q`!k?`VBX1)ICls_X_Y zh>?$~VvtA5A=&%6<=rEMMWGTW0&xk3svdC89j4I0!n?M59$r3-5}sTIZ)jHg%|CT3 z(kfEE)OE1rP);rHr*mTGnsh#%KyA2HjCXmqu-xDbls@2gqxM*7LDwTCo~9r@rc-&l zgdNU~;0Ho`A*!~qBw^j+>@88Q7ZY;KS(ISZT&CxN}G;>;B-s6$52g=6E zk5E(@bhl37Lv}+e{?zdv3#%tuOy;|=VDo0E3uG1{wFBV$~ohy6g zhUZ>b7D&2!xZ>`$((Im$XPc`clD0fZ?VIza_;TC650!d%t~exdXP)U-gBL2IFR5}a zX*tl%l49#oG*WbFZ&UM*t1-jDp5l#9d5_YcqP}=&dsWa$&Z^z1-Xrr2t=mhQH*jV+ zE%L}e8okL@VwLGBx5GK@3O2W#)Q)T9ZSFr#V}KREb4l|NyV;#*wTdW%2L{WQs|hSy zJjZ|g*;B5ydAB8_GaeikUYAka2=%Gx`L-*u-gr$cgF7BB(i6`-9fyCI6sveQ@7?ZT z^)jgCTjv}s9Ko|%8IgB44fp;O8|NwbxS__y<^#O%8-S+dy*CXw}W4{9|bB*T5v8gV1f zV@nliTU2N|*W0TUT6;Yp$yw$GzSWRgXvl?bD+y^CQ;y6#_a;@hHTd==uXHPP7?qLk z7M=y#Czgfv?T8SGvJ{JP(-JCZ_ABBIxo=|7$-X+WFr;j2{pH&5=QM6_;u}@igvQd; zZO)|!&k=t=*K28446%kvLGPU0;1vgaM*h%UZ?4F!ly@US#2pOn0YV*u(H$Kh&gYz| zGe0C*-&tISaS0Ar!2M%`O!hP~W^&{K|muQA>w~sS+U^ZSpG*H%H%h zS5co&<19+&x$AASjq`>_w~IEb8d8rqDpyHg&c0HukKcE^Yh?_#oOk)|l}&ubWosLj z_NX0vxN~>Ypwp6Ob2%}&i20A7Se_+Wi446M%3t2c=|WgQRhmkRX%?B|OtT(um7}Eb&PN0JMK(5;9Hf(|RvyuZu?Beb=t{WCh?E)X&$_d9geu)q z00-mVB&n$#-*RecYNDa)HGN4x7fmWO`iR+s=u0&k#1S*dKMV)w6`4m$T)fFtdqbv@ zO^%Snw%K)k--*M!G72JOwXlm1SG)B-(BZ!Ik>B)^fmFNFX-~c5p%->5eR}iW#x*&6 zW2t$qTWgi%qUM5uLpLSQ-Kc+AwD4VTf<50R-`J|gTWin-tksH@!LWj-x{RDaqsF#&BCLuqW5mXZKDm$s%ZCX z?Z2`nE>cA61lOF`j2~Rw1hSVZWk-iUx!X!5(41CtJ!dIC@tSMM0vFw{v4}@Pfkn*a z-&@C%vM1sA6U`mBJ5w%sug;K*I|O09KU>8AE9a_$;$XV$U81%{`wn7k2pi)cOvqwowIN z_#R6IU#R=#+l1`s15_f!61+_MnWh`ni-aAdU^H0+-I zN-|Vqe5=Q-FW)H30%O|(D=h1GctN12lXfsxq}cy1wf|2-NJ!-j60C8CP!pL*t%g1d zc&_!l<%$Gc@v-x&#i;^US}I%Kg4kI~?Ui29H6hLl;{Qqrx|8=FS+>UL*fz1$PgxMn z(7Vy->j;ZAyCy1~dH&=ub6lcuq;DETb9?4pDW+wNy*;N?t%izhUFNfEWq5oI+@s(b zWc8#mBYL6N0l@l0U;55m(jM8k_MdB1=tH5hEEfH#(c|OtGabtyb7#foJTTbb)VLez zs}UN#ur}GE%{Uk4DXiiv=qYR0{IcX}=hv;16@F{Y3UxT(Q~(2^zNMfg(;~*%5!y{J zz@VHms+g%>oGlSNYx79Cd)eE9>V8-6D8Y+e>}$G<`3zFQQ)iTSa9Vd>rT%^Q8{YfX z-%bEi3}SW=N4C;Tz*Fcv8CG3lNUB-yz`v5T-NxM*>0b)Js>0EpjmrB;F#EJ(MAmN- zGx|{o4e)DckMq&?0%zhogcNO2TV@MWooTUdf`zWz3G+%@cQ}yLtsR?S$ z4t8L~jj4xlLjfm6Z8b(isR5+hR5&F%_{%Sc7gB0jp=XrY0du6ZzSniSuw-2?dxNNU z5KhN5>psNkym`UC_49PmBQQ1BJyCcU$uB$ffYEoDt!y4)AKz+TSzJ!*#d6j9lbgLX zdtJLfmJ{;(BF%E*be#%;ciS!TySnJa!>-;a7-bt#UT()#WNTBN4(Iuf2mfDMUZ-r9 zgw@G`A6-|RNDgoTIoiPA_mY>lVtOx%NN9K-%{}Mg?8Zw_TpNdidGa~Z+dCwd2t9FC zcA2TdcD->C&QhzrMMNZUHE{z+;DLnh>E%b_MYUnFDT-8R9$So?!|Br_)xg z#`Qvo*aO~A{&C&TqYGP#+agZ}KJWkr$Ea@U1wQKPvO>7FBR{}LGhV{sUb73yI|bs~nzKCuKH z0(-{=x%eS$GB#C)@O+Q+vS(*dJlvVp_1I=a|1$Te3%86yQ5wb#e%_sVG zKDHMqvL>y}>;LrZpEz7nu9{%3=JhSvm%-Md+sdr+LMxLhIK(}>9Z`&RGbF2H5^JWf zoQ_l1fc&cB(RW%zlhJM=y!Ebh64`0}R2j6f=ReG*R{emNz9*q;kJaqIH;D+htQ5p6 zUC5Is43zVEgQ%HJrmXsEH`DQKYZffd@pTo|m)kA5B9+Bxw7SLPn5;lU5nHE_Nz|ml z%S;1LIKgvP>bd&r8>X2>VP(Z840mbwJD#CMk&p7T@pW6dnV>GM#JR>$;8y)nzvXhm z_U=a@-up0jJhr;>Khi74YpY+7+!sEI`i((>ciQ3#(^Wb-h1jzYriG~l$Mj|ByHelX zzXCi@pkUjpRLxn6Y2p{Cd$G$4eu+4r-}w(c?wr z7smmma}(gMok{r5@J0$}NeXCv5F|%OVNP^EZrZA?fyP|)IF&hp-y%Pqo+f@Mkm>ng z(yu%pBD9S^psLRLl0|*tFHac*=lDn8r^hTQPJ5h2?tg(!% z(uEwC-yxrFMr?l?nfc$CBE|W33-;06??PkShUhy@Mv)9j3)9^3Gkv$5c>W?Wl}B;` z(ggnwq0U$hk~Is56&@$=q;Facrf<*(k7j8X4IBl=8S-0<>>hsKi~#EI_WBv8uMLJN zC4YAbte3kx;|FO2gPI8S5Q3yT4UijgQI>1!0V?@=`g^o>c_`L#iI!Q*aHofK1%?@{ zm`F2edxB?75{G$W=!?;M!%;U4obUfSUayFXV0=~7GG4nw!2W{3I0=(LIy zr#{D-fNaHYh8V~Nf1V-+tlc$==-Z;8Km^1)VAEF&fuOcvqnHn2Uel(5))P&5SA451 z={0maO2X44b0p|~p$USarCoeSl|ln5Hv}g;!=7+aEdCOeuL$yQZirHD8C~yeyd-8H zKbU9PgktOoV3l7_%bV7dCY70!9>)KUuT0g}bphkt5%M_P)^n?=l}>`{@w~&c^5)*W zcxnSlN0iaSQ-E|Metec6Nf&4ZvyzLFL8!ad3-J~P#12m4?48*Ax0)mGf15HZ#(&8R zuYnH`CDMduk;LNvfQ}!#Hdmvx&?H9EdPTuo?rX;CUVftFP%JC_+G1L zp#V>g-!57j08`i}$o-JgTiAs~1_}Mu4rZ>9^r;@4#EnI=JH1KDIY3Jz*ySk0Fy614 z*LnVq!;qLV@w2=@Ph^v(IGpIX|Ks=gZK=3!iKbJ~V)EfFa%e%(?QG=(CeO`!UXH6l zlH!@{IY!ABna{RXVmuTfQ!Q;|Wz#%q;E(3V-bJxfW8Uh)k!AsXB^N7xw;L zU=+tTyMJ!lPpXSpd0#)+)2@t!awiv>Kvn50>Q6#?>SctQ(p8-F~UCE^r7vSUf=dTYjkQNDJCFHVnA$Gq~($frUkE(Cx^$+$_+Sw&LPG}Gskkj8AMbs07o4Nm0OX>FwVwv3I?*3DP( zA=WaN3yQm+Z|yNe7I8A*pUB&i?QfuV9V+K<_igX1A()Jnv5JVcq;GF}jcjyA78Sqt zM@kc=syXaIS3At(GjWxq%FW$G%PK=(krHRK&?@6-&E7E-S*tLa`s1K(#A{zR>CJq< z6mV|ze`2Kg1~)UnFoPEX`powRD~)nLSpLRdYpMDN(W&H zSgB^$d>a-*WtD2Xu}*CQyX2mFIIZN{+XdauA8{;YAqTa7MR#WS9;Sq@NA&*vV9mlJ z=B^9zId9rC16MdqA<}a>=Y>6|Yh0L{y`hU55U>5FfOb3?$Uy=73+b@iaP|FUeW$)B| zPNFH&=QU0ewaJ}3$io~+JDq0~9&BLsW-B_4=gb_`sV&Ou0?WP`Ql|gEXcc{sT*gDq8`z*vVNf zL_}e8T4y@Hp#w_UeHxGD5H@xmPaMp-_|xBUKdSw7)Y}>NKe$+OZ>*`8lp|(~up0YQ zn^Xl@@A)#qDR~LREOWsy&WxI{3^50C`(Epslyb0F)j&6{EuF!C%kGR;+Y*c&mMF^^ xk|g!F9}S@Tj0?b!22lU=A6KpWkcTkjZ|vV@i2ke3|Nq6g|5tQA+!luNKLBO(df5N~ diff --git a/library/tinymce/examples/media/sample.mov b/library/tinymce/examples/media/sample.mov deleted file mode 100644 index 9c0a0932c5be644ceca99e48cce317b0643918e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 55622 zcmeFYXIPWX*Drb}gb;d%P=tiuJ4%(%t2B|Klu!jhIsyU`dPfulR0LE+P^u_JTIeW9 z5d?fhdPk*7lXC7@p67Z0=X&1{`&|3O+1DQYWzDRaS!>OjnS0jUi2wkgT>OK*ef&`< z6fqG%pum4gGy_+?ysm*PkE_>Qod{LULjC>(007hy0Lae+5RiFHsQH};<$tIDC}aLz z_jewY^D7Yn08yvEuf021wDx!Zsgt@HauD-N=TB{5)!*%Z_WG&fKlJ=*`AaMSVE$x& zQ66U}e?KtG?(E?Qj^$?pCH$8AQx=ibRVO!lum*M2=|9KLi2;D@U%dc8!PUvbmr%Is z>f!6>72s*_?d?HBU_c=JEUI9^8Fe0HJE6`wgA!3X_MT22&R`Gdz*RR-7qA_T-_>6l z2%W$r|3{(|DAC@-&F{BF2q+PQ{3TJ|gv6P{(z!{3n6Bf65@p0Rbrlkpn^k#2FCmAVfe&f#3ka3W884 z{2PQegnC5~(jer2Lk*;QAdEohgRlaj3&H?|+;0%-2s|+m3Lpq_WI=F&0C@n`&)?DO zx1kIGK#Kwa*3*3g0LG^PzwGckxda!Mp!X|53&e>hK^o z2^j$C;bs443IAk(<0R1kX?HXHYC?AZzu(}R(5X5gC4i9r z-z|Re|M^6ooPY&1C{-PD4nuJ=4UqAJv>1t1+dx17m_Q$CJlNnrcjqmT2d+L?yyHK+ z_9n<9C0nd2kSfhc01I zfA}ykPY7KIeByuc32g~w0-sR-r#%A9|B*xB{oxZrq(6M}fAJ~6{2%$0|Kd}D`9Jch z|HY>P^MB;f{)-QWB7gJg|Hc0^PS8%M<$r``goCFRgb@fZ^aAWbaQ-e6C>sbcJOj8v zoB~0ZWL^+~AVNXNfB-`^01UqXFf98iM+KyW3({E-U}yvo!Ysqz`6!SQ_^}`e3y82_ zLO>7>ySpIjK30BHe8!O#*i1kz-1JOsahVHorVNS}c;6Qt!J zkEKh^&7eN{ima!mx1=0bKf_4&tvH_dl`oPc> zS_PI*gZu=LfRwm91N@zR zMNqn)j$$Y&2?>JPT*aRDR{#7(b9(ESpz`MIdT5*K^n|d4rR~ihsU+{WVniN?o)lbF zVg5@T8AiQ%X2PpeV*gc_SFcd*YZ2!gN!bUZABDXSFT``w5AS!hQD1u)eKYUJQ`N6K zaVHx4$DdES%9nyDXB~5&jqhul%unVo2YszFx-*Q17kxecsPE{fnt8+SzVD>pXK@yV z8nc!m=S+opt@|Eh>z`bh^-LSXU&(ViU)KsLSm+*7c{ds>GT6&7A6%H;xn!#r*@}Lr&JxK#zaEmx-SGN zbFT1TpNt;~J&|cJDo@Mk<9HL$GV;2!|A{m6YCHNAQu`5!-X5;cyU%gp!&39s>`C~3 z@z))ute_p%9_6rD-Up3{ge)#@uK~U?L=Zup zgfKh)O zI5W0OlppXijGHGph>s@9mgd`H54Oi<-bxpvlK*f(bReoQCcQEw)?%G%`YU{hZd%It zer=g|Fex!2=jHaD446)P_?xBu@t&9m)ADR$BaK>VWVt^i*rO%9LtHSBya@d8>RZWP zVzFpi4=x%@Z@!f3>AM@#I++O{``YVsp(`PC#ZX2JEY91xhio3z z_Dm*MUN$)Ny8x>&G4E$VYkg^CT`IZq)NBBNTu;3RUiVMDROX%K9_m3&(SS=DA{x%& zN`nYl-@4w^m=ElwJXXSlRaF2A`>t$xcZkE9o$&ymb*y2&Eb3`j!Q69a>8(Qa*{he0 zs|tZ7ETE*a_T#t;IG-EENqrnXtE?(|FHEIm?y}d6TMgUs3xK&6fN^<)b0eBa!WF4A zmc}P@Co)13(7>R}4ATXgK4WD|@Aw|<983w8Nj?wBbjs2MD&thOAD_(`0;*Jnl@=5i zP6oGqeLu+Aoo0`S5r1B*`sNffb|U$4wD7C_n|mA-4i9V-0#1*7y%0W?G7&ZXVzUndTZAVPzTuk=2M|R=zB`=D~s%)#S2UA)XJ|8i>fVib%Br~D!U5WwN zG4wHalGOX)sqt)|qW8aLeg7ogasG~$7Hc?Lt3)>al^)U8uNABiqS0%~)w>r*C+Uq< zQ!iwQQQ+dgls`)w#Xi~G$C!o5hlPgKL|Jq$9!^?dz^A54lO;gJXPRUDkSPL&$IS&x zctmMNI?VQoh(Nvv;v^GrB=LX)Lo1nl?i4H790ouw*a`khQP-}hm=lqsr)_QZkuX-H zp^1kvG10db_UP~KkdOX==o0(AS7*(PLATw za2r%x?$uct7s5Fx!8A%DgTyfjybRxTzYHzNHuZ}Yypr-FZ{*rQUkb4370+6@(Xt>{ zS4(_-#Q}3xkyj%AbN`66XxoM6SG6?|PgrFF-L2TZlRG0Hp5*Exj7=XTJYSAj2mJ26 zkZJA=e#7|SUHhi*!PmIsl}Wc-`O)C8MwiLX{k1N%G3#e*Mr^~_HN10!!8ZpLNk`JK zJD6*3BjEI2T>VN@`M~3sfD3hZ&=iECEOQhE@Rox?imJ6A1OYw+bOLY#UseOlZQlaa z-p(AZupjvf!1xS+#1pskBm=tM$VULt2ISLu9O$-Fsl@j7mX_vBr((L)9PnoGXarJX z;ISDtWA&;>BP7Y0eI=%YtFnDl?yED--R&8!gEZ~CLy32qoUXJa8#mdrk49_P_=Ad9 z4iF9znnE{AfzsmUpveK2WPAH_HV?X!&&_RHKg|jsI=<|e+K?|lNu%R+JHON@0Ez9= zzW+(&GpC$%s~p3Q^LWZ>qu zePgUPIN5G|vA;f9b$GMoj7a~~Utb2u+KPD8NC75+M|jLt@&sJ21c$E}Ao@`Q=%WEd z2wRZ%o=!`}8>Ar{Jry*fqK-z5Mnb^0+P;wKIfXlBSUWAef?{_$Hrssw*-u$;i%?z(e=1T4z5^zZ!cJ`c`f}+Oz+~G;=N_eR$VkQMhho_Y}KC zW8U>|=`#F*ic5A3JMlP<>kDkx82`FKZ+iJ`hPgVER8T#2Ra@pryUc(wS zBvQ>JTsGG}G3FPbBzEC*jJ+-AhPKJl5i?u{HEw!-C{*p>X`d^$CRF76p$6uHTpw0l zfCot~;k{<;0l48dV>&TzPuKCz{BPr>W9p`$=w6^}uX+H11E!#&aiFgl?-Dr>){y`& zahxhQigV?)2_?@702Te*6%ycv^3AtD9Kt z{pnD=T(S97qiUD|QC3|Pd@l!30kKXO zuI~#EgO}Une$R#-w~r-{0M?su{Hx+EJ<96p2qQDlA21XeflwnMlaTRvUHA-7f}_;g zc`PB4^$a(_7!M2qtd0`3S(4{W01a{tZ!p|8;jKkM<~qQyN!-_(e*FCRdbRBT!@qJ+ zs2wj6c_hGLU<}Z9{ucV(qbLQs9NH>$yurYih1$oG~t>_jwYg_ z!3EKUUQWglijblR%sN_rmb8Iz;UtF;k;OAmL-l5vS-_$pdWPnwGJzL{m$Q;fl9@%_ zJJv@Abn=0a6)ET=lDIH$UKz%x5dPVMLm4{fH7HElwuEXG!1J5D&^pXk{Mxni1wbic zXAVp_Ta5_{K=o+gZ}k+AqBc+)qsiZ&wSiqn#^6HU34{ILfTaQOXQR4)=llu(APFj~6J5#Y)6_{;aKJY%G|-oi)j9KAF@2L?{A z-#?>vgFK@IZ96L(iV?bQ6?Uqc2Te8dS+j@YprGd{{h619joNK+m}G=%^$gN?n9WY9TCqUI|fwUnWP z4@kGW@dep{Jga}&G4Y2finkIYDb_fXsrbXU5y1noFC6yB+6R{hMLvIc|H}L3%gJ2_ z29`laix2!pMfu@+LjViU)u(U~0B)Xgw(Mm3?7iV?J3*#Ao@uG^$H?AY{Ya$^J-2O@ z97jn6&dJBnnm6H&`$zQ4*o0mZZPt%YN%94!YUpD#C(YK6C1snkV7eaH&*X+ZJ?bL5 z#38PNqSC&QDfh~|A_E6sa-+-vh)UB8xxR$9>scBWW;Q9<4zk!;rKU)gB0CoXq`0~? zq<1*mj``W`$Kx;;?hdOBprYYu7!GJfK*PH^mTKRUlo6ZZo+kSO)F|Ms)D$$^YO zO$cClVtcqM@=FYaDQ?5sFnF^9S_Bdz8w2nTYTz6X5t2sh+IR*$#S<9da_ttg;i43t z3TZ~(e({}do{9KylLSw7L)i71&7|iwJAbVX&sQ`j3E(;0B^t`5NXqq4ZTm$pjme3i ze;tcbQA0{up2^g`iq1k_vaJg`=q$?-4;22UX!`b^D{H~figbES?e4)Rrb9`zeD@>M z^k;@$q$nD}u#tCM?T@WCGIK{Sd=AfwyE8eM&Fzc(_Pv<3uB5&H?3Zn9MA&B5+2-=a zL4_uHrq3aV^~a6-+X08X#!LJ)VTTKz`FE9+^2=Xl=ir6jQPI%F4--k?qH*5Di2|ZJ zutvlVRte>+w=Ln`PPPV+p1@JCH&^j#GlychhbtKXh8WKUoyLQ%;!V_axMgWw86&JPyNF0td_?H4qpj%zbN*4qQ{Q& zap{L+a_xszsQ5@?Kso#w-)^!ygSp~L)g5B<=OI64yJBxmB6x$BSB}FC3>Ee6U$}61 zHstI3d&tFx>kpI)x9E8bAZD{t0?BXbr(!5a$1m` zO3Zx>*3IiVc9{sE1I$oo zAJBH!J*T~HVOUEh18g4q)_(H4eX5zY(G?2Ckc5sag@kbQrcMDw{tCjQN1Z0FWDU~j z*qHCuc;tg7_vuDA|E+18ofP1i&pmdne3p1{2f`uwWC*~n2&V`P&=FJ9kfi5OcmSd& zSL1F&5BPhMv}F@{$i2Y_F6qn9x7h%*Z($KL9ACKf|FHt9~38qCs3db(C* zmBObv7i>g0NuvSRKL`0K$TK6%0AI5`Zr$M6Y)N2waN`&^{nNYAz z`R8btLoe%qIu>Us51T@nJo3rV#P{SL1lx1p4=x^~Yt8Ru%9pI*oHB{-J0lq{&tD9G z7yB4LuqI1*b4pO1f%{uE59HY`P<45z1I(VLL8@Rzo0-4utA2^|;PK^gJWfJ$SE&J6>S4pE zok+Vb97mn%{h+5`rCNDvVX*^AbXWm)rvS}(0=OL_Y^6IfU|9(AYzVZYEUQd#&yqfy zAq@%lE1vvRZGyC!NbWM6d=9_ z^}xEY6e@YQAc-x`1AeazS(#6c4o}I8YxD;m&kx+%J)~e|=@}lm-vj$-yF875fuKa@ zYZ&hhpZ6+&b(|pOh=~(UlZM5@3fS2AFP&xzr+I+~)e?+;h5N^7VaRhv%m9}duYVi< z{(mb{M1OUKN8Mn@Q*>S~=#4t*Cc)X)G>StNCPE^aqQ)eM z(!8c?InQ3`C;zDFdn_`kazt0|{ov`-y*x4uK^mxg2XRl(;vCvnb&CfrsR36VzK^Y$`^KZew0{B4Lg`kOaNWHXc3^wv}rz@I4bgSI!S z=ei6oa$*~b=L2R7`jz+S$TLH>)ugV>}N#N1bTxnAc+RJ(DR$KjfNu5Ecg!O{o)-V1ObAeO#3A1kA zxS>CwM2v~bX!l^ZFFyN?gp-Kw$Mjh7h^kfu(I^;W{%Zh@{{&-x=(QktWFAZF9wd#} zWh#*=uw&Z)0Y(C#A(Eb>dK7dkgE{F&O{+E-cX%mQ8#t?4Cav&i3Bsy#6**f)iIA$-~kieIq6LjK~~; zjHqCb3DK{6sROi!`wZN$V;8B3=@>=7@nD3_6|XA2t5|tDw(oow`-k4%vD!-uV7^Q0tx-19v=_~tGgXS}XS2Waj&e|>QU1zp5%q6M0{9Jddek<;^ zQhMLCKB*n5v3M-PCwk6SxIo0E?Y#b_&*73st25&%V-CQ_wQDh-J-9wjtkGcVa`VD} zEY{?82AJPBwBHNzpY9$Pkt)b({WM8KSrI6Hh-4jEas{57+#Sa9(qzLQLJ+DL;usZWsn*s-Oou!- z)Sk5_msnFrba<4CR<42ZF^=^u&3M@UT=b>gS`&{d4QphE&lZKcN-~v&y0F1hT@XvYV=b5l;~M~>RNRT7j00Z zd)rA^utU-9=TmvjA@$CcQRJ)m^{x2bE#jk)#B^PidK;9M~00UFB^n+(AH zFfz9Z<1+vh&*RPVz5_%SEBQoatu?w2p`YyxK1KvJkF|qO8H%GPwFK9t5V=KHvKy$= zAO%Dipretu@sQf?Vzsj;b7g3?_=ztq3QB9v(@^|V8NPmF->a)XqHnf>@@8DvlnO}y6?VF&f7hzTd5 zdxtbDYOfG0p+}BgkyjsRogLChT(7WdD*x+UHah1^m}up#d>58?I!G43%1P}T_tLC+ zFP#uE8S(NL(RQ&YlHMP zef1UYf!~T#8H|#DH0k(gSg0Or4y!D`l|Izq+2%vt}i9{2@ zp-W_@J)bNM!SA!{4D2`G=>@1`Dw!8@YW6zlk|MjubG2UcRo^StbQ@04STr3_?dC}d z2F4XexVPJMKEJ55Rn%I$`!P&r&anT^^|C`pw#(H4@{_b$$9#E8P7LQQcA9$pA->yv zg;~fR0g3UPKr&Rr*deci%<1)Y+Z)O2WP%26uVyjx7cV$`T#Kcx2!HTK&(Q2s1>14e zO2SPSAy=$yyaMM^lzgODQzHXz*APgjB{3?mA$MEoXDniq;389e(tQqQl2!B3qSN0>hE;Mq9wV zl`0>SLM;GP*yykU)Ow5U5SEnOqS6%dy=Xm4;wb>i0PO+~1{d@?4m^w)ypEe;?6B0* z{jCjaSsYWVT5g)=oN#O$t<%}99#Rg*ppB|tJqmV`Joxqo$CbqZrPjumEDpVcK=7a*iq_BL%1ESI46_WY)qcq|byH2V}FCGECoZ+Fg z65TW+YIvc7@y(&@aQgwCQ|EgPum*)4%5xKKp~4=5ZkB%Tebf(0aNYf1^m$#bJ2wkZ zkn=E7b{-W*^$YNDkd7*S?{;iW`|SzjKL=SXq~sxZ7}sX4B?b8b=IW-Bc4@sPP&x_d z^<%QXNOjjqIq2(W&p@3#+Jf)Ry-WBjD{dfQ$2k$tXT;|o%Z#mQp%>Zebh;W(O83dMFD z^4Z6K2P$tF{(k9Vh2Bgf_-UG&CR}B&%nMM{V6oKbDm+P$GeM8R1eTmR$3%(ky=9~L zKENEjiA*o{=&&q4IN0B2Z)hnIFGJ7yFnd>;ur1lN9KKfTGmE~ ze<$VjCzHRq37)gbGgUM~cYt zqQ?8;jCSKQt3)P#M4jQoVkRIlLIv>8N+Ij7XStN;b{By`{mr47cUva|;gUbykhNDdqh=xqyX_dzDn-!p_hyvb z>qUwrl~^4ZUIz}eb!y@lVGuD^$2(5S{q>fV z61|=OXPgZNpuA#mlzM>sUUHMi$-$M~8%OOG8{CkM@yX7!bw?9s&8)V_(&1E{yNtS1 z^6I#CrbNmIkto%u{)DKOsWkP~&@=v-qR{T11q7XP#KN@Y>Yl`bq-S+^UA^vXX+2l{(anSOPM z7rklP#NakGsP#ax;1WO3L&FhE`TGqpJ*4#VpXs*7UZ&ae^PvI9a2E8*h(D$K8Vt77VK?xMB_68h zX1q!1X%?Z$LVauzrd=&*d(H33gy;*HJdM~qS`EE-_Ij>3Iyaq_k--#7KVs-3)!CAq zK`mA+!b;zd-&*$alXx?3C^_=FdPuRx=7-OhxkvctR~%#&+n#aBUX>`ckzQ65yR6Hl zB~L#3@#{hgmbS!>;{G6)vr(T&Hf6*n8AqY>p-cfo0Cq^kODex>W~5CjgyX`D*b#|* z96a~e+M|V(7XQ8WOur8;;6R61gO2_ygOYojnREaz5X~TVZo&iD%cqJmX%exOX{d-X zRCOi8-5l&Q4-dL!Te+)RV5>v23HdOVZ;(FKUXdS+v<_4|?seDY_u%Jia$$gyF@g!un3j_U@mZ-9p^`z7$ucJEBB= zU_zy;)*4dt92^cr5}aRmz)i&+e_Is$@|ayboAGO~lo(mX-Zz*IzCwhl)=vX+(M4wx z_uVG=jMMr>4j49@mW%`w?GgMQ*<#{XZX22l!h9BFkAPZ zQj89XoiCM0-?c=n%aTe=2%pXz=dm;;TW8A9h~jj*wvVIO{k#Ct8{oy`w_Qy%E=L`& zFDY?+4be{Co=zQ2<+U}UNDP%{O{NYgbuNT70;5 z`mLL`v_l0`ZYQK9JgyIc&#j&Kcr3^$v6N-JocQ`;!4>%`|$ z1IymeM=m?0boK9rk#zT3;~p-QmvR}U1cGVDsh5q)JnR1pGW^j4&G?7?i&>5X$ORNvN;&uL)0 zdg57s*gc)Fi<0dWlLA9O(YsMBfWB^Hd|A~^uBkr?{a!>hF@p`IAfk4~nJK`NI zc%SH@q{Ee2zM*!4A0XR*)X65|I~;*BP5v&>?i zRN_^a7Ndo_gR>-a5wIF%09_H|h~E&xr!Xc2b`&n!ISBgMme37kIj)LEEN^VTIt?|Z zx22ZLyR&_Pj;Qa+MRSb-C;qydPd*4E4A14bnho>M`c4RWh$TyNaVO7Ym1IBC6sV=% z)4|~qdXSHcHx#tuV+03@W+Wyq(!5Mc;B^E#>$K7iu3(LqkqocQK_8|5mWx(|Ik%mDdC`1wT?$6F&@FyRg0w9wEG=E9g z8?wTYp7WzDwZ<|JKMi%Oz`wnKzU%pDP^(ncL-EMScIrd%erP}LlFXwNI^VPwq?7gA z6ZMgS2HNU7qhlkkdFSAxtgl}G5Nyez)A%qs;~Sxf@0(SR>0I3t)|Gq28szx;&7)-c zoq&`0W5uAD(dinGuf2-~HN-MGKf=u?U)=bfPQ-so#^gRu<4GJ$fIRG#<&ZlXZFJrH zo@I(4Jg9)(C201u);Jfc&eIB;>&Vt|;?Uu{MzMC**ueb`QnvwjUX$fn3>y(z&Ht;J z{wo`UYW62C@fsmB=LxSelLqOC~3ekU!2AtyHE(k%D*K2}~aZaT>_M(Ej{|O)9x_w?vparuWu3Sy*Sq^IbuUSZ|V%AJny8lujtv zeIx3wxKSW95nr`<0E23NnOHMZOPdsq96KfqdSPiSx6iq;R^Ae9dE+mm%fa z8nP{d-{1LWKKgi<#?dkR8tOIFT=C=RlODa2YJv5Sj%Ztr`uU#9it$PXQEom~WJ`sY zK%0M}=Hn+h3-7d^g}@qVH%cCoy_>hnR&V{GxpquM3iymXZw(U*ItoG%-Erq*HodGb zld(Z7i)xlHnp2ecxMLjom{g-nyxYd@^MQ7885#GvnnR zsVh72oQk9?Z~!WUVh7~JsKj4I-D$t(ar{(SgsBphepDa5KSvT{NpqJ*BY7SD71`gC zE}8dH2xAJznL@MKBZ`o*Fld?qOj_a``EYa4?crA#~+LEVV7C>S|~p zU-he6mX^H|J~f5E2r^(MhqWw>?NHhX@6zpP?J_2|72SGs4Q4#3sRf4~D|*i3D7VP$ z4o^-LGO6W;Ig*!}Pl9B{oK;ib=v&=wuAa~!mrsd5r|xEcxm|#EDowLRd+&2)*IGs| z>#sYF4Wvx;_W?UvZoOK~KqTj*tqOt2zIifQel`^Mk^;UU90ko^83`1cr!j@&2N3+9 z+@elddn|d7!I>|Z)*kh5YQ^HJ*{56`l8JUtqRCD&GtQHCt~57)#(;j{2T$mkVeo{m zQz4g2y}=~Pkg0Zyhh~GmPL+Flnxs&mu)?FZqZ4cjxq{xqgUidh2WRr(LVMh7uT1RP5&<%SalSVu^)Ml?JN#jy+ZhUb~%m z2Bxu>MWssZs4x8P<>?IsD~s-BDd#b7PTkl!As^l|eCiR8Oynu!g^n{ducZ6z-y^$@ zC2Jiu7Da_`^N|+lP-GZ4?u<{L04YrKaedT@m&fhF-xc^(n}!GFzh;aSbIn{8W4Z0} zLg3ZWh2D3|aZBr_Hb-lmG7?^!*OYGZ64A;9UQ~2g84%ydPDiAZ+S9b!p%QlD-pUNB z&`&)}GV1$KD)kQH6!9LCoXvZ=-u#P2fzOXP1j(~tC4TYLBSY|A$9m8i!=i8$cae6$28Fk4P7 z6)wq~WeQ1EB*yt2Z~+O8Y8bjoejbzEcu(i#4w|{SO2X%mKeBf#VCFKade1p?#|ibY zT4tdBcyV6D&tws0aq0@`a-wDKr4-vso$?=#fcPXOgMNb?p!d6pBdOT=p;j>R_qJyy&z$%y zpvFu}mYjxwOvui6NQZzJc|9gFCosz8?V#*bSh?MU?@+?oA` zPXGkMt1^0Rbz*YeK`wr?UuCWUS46Z<1<>Lm;-)&_1J;c6#9z<$Y_gs5!*BYW9oxlQ z-7N=ftb{mcy?KBs!63Nfm>AbzH@w8tCSp{!*{g{h*k=uu$oBMHp^j!QwiNmeZ}LVL z(`ywfEzU=^muS5xuejHYi&xOXKA8B_60IW>Tf3%SCfir=?i~HyHk7z<&CYRBVDo?| z)S4yI5tYkUME9enhebaB^2L~iM^_&!tG>@L5mUp~#(0-(?0KKxk|=WKB-w3z#Yh2_ zCi1>rHd)`T-(oqyQ)JEga2m%OJ#~+PuQo%19VXPIyrDJCbvXv?vwN6+?B&7P4K))t zy?dn(?$Z0_s%!ZcY$1SuQYMogAnDyj8tyTenM0m*ZTkpw|BJDZx! z2_NW@HEMslT{P9cr#9d59b6uv;I7HRS)F}(r7k7k*nYD;GtwBt88_=6sBB~FAZFK+Fxs^ql?rLu0Mf%CUgnaJXuzM(L6+gHzdbw78fb{ zGOI}%Xx=%+rm~?;f>Sfl+9hwy?0ON;&^mR&S)DZ+*+P>|o2 z#P+VxLJY?@LfV~}0&U;|x5z33IoIx>3fcTJ2?fQcgTb89m2Ycw6V9v2fyApn_sKE( zV1PJ!&pR8TZ7v%GbMK(EF8W8>TZ3$|-b6S)apEo1+Mk zgX0otZSI;KKXHnu%vXlk`R=LJQn79_?0&dut6KXhkIauKuEM!X z==1!n@=aD+VZfv5EvkP_(K9p(XxW4rKck0W;5eJor`b2e9C{h1&zrn12>HgpTqTpw z!}wT*-91u~VMAY3QuAImCr%SuEq-zLb5pO2D>goemrQOl5Kuqmm~`%#Cc^*|;&NB? zJ+dv$FVK=pprt*J>WEBPevb}FJAX+2+PTu-HaIkm7vicpxlY3{;l6Nq4|@(OcYvha zcpCR6Uzk}Bc24j=T3WEfEr;5IV_`bd$1|aPcpNJbWhglRI#mhY>W_spx#R9wx?H z+FZH$$Rn6}?Z?*ic&^?Gz2{|^b3EE3Jc--#UW4prcqd0IuEhMty0_;VYKlM^uuT3kbe!^Mi8j099+;`bXvf{B?RM1EbfX-A-P;T>vPsMi) zd-k%kR@dOt#ee|imq&h_%6qX;^&c?3-MlkfJHrui?&eos);-q41?OhvS-vFO)?8Tq z>fwPBkYgZ27<688Exwyh<=#xD;ip2cyjOymzUid;g@R>KMKV1csp=drXreN!NQ%8J z=!CE&#k!tzr{Du7G7N_*yB}hCBVh6!N$hzzZc~bA_tau{DzP!Z@p??3GiNew_gw&J2%ItGXg~tJy7;{8{1~K872; zAXS~Rf=0lmxjzTzU#HZ84Lk%Qo7&d=k0)m8i%{zpRKug0H!h4q;h-+$e_(J&B39EGkJ;EJZAVmn6CN=jYw==AfE z5tNNSn|13(>cclyS1x^bhvkW%Hkx{D$6Vjy@-TJ1C8>Vh!}gmAvW%ZbCNG?KGQM3V zkHH7&DVJ=4{q|yNv_%xFyRMGdBfLxwhm^}=s>%dIpi4(N@gEYQ6+W72KHJ3E?Q4Y{ zXFVks8&tksn`JY7uuIc0FZ1IW{d_j z?e&X1da4LhvYzO7e&(k4vat+hdt(4cC&r&LVox~9HA8@fXlgGsbrrc6(;>zOnt%e= z@s=4FGJV_0y!Q4*075*}v37K*bbI=l{qdfg4|r}tCeepeu&iU@>>P;pL+lfMhzA1v zGC@`Tj5h)@mRwo45*!Y&vZaV2F4 zm99Nq&_BN3n<#k!a~wt7JRCl7hmNfMG|N^^%7Tw8m*5pT9n_W4F7wqcicjdcBCtckVKk7dG}seqAFiQgIB!Ar4b)$BZ1C`=-&* zX$G2#keFx^FWbXCw0VQoxjA-at8eTgL7Ox$mJk;A8k|&v>|d=bkvDlL6Sf55E37_1 zSLNW6$d|(DX2(QwO5kef`}0dIZpNF`s<~e?Dy<6yTSJ#awYxvO4{mBGpjmflSlYPF zxPvgOw56fS(LG@~M3;~52?z#Wk5UUcDc3bHXI^X?SbNsY_inTao_B}io*F;t_0v` zh$J$YMaQ=*=7gV`>sDJ*Y~xLa?gE}17}tYURFfTatcos6V^JE0e!Rt z%jyW7JjrCV`8LB|;f*k8gQ5!yU|F3h=WEcoT^xqmJa?r+Jb+F8$mCVNir6gX`FHAQ zn%W%=IAu+suR!p#%&OBI)O<*T{AMbtl(6^dwe^To@4^zblS)$xuDoA=S6?nTgZ^eB z=lo@W9&m#l3rCncN>M+ka*V|55!(+b;;2Svm)9DmKX`o>*H z#_YM5?mwW}OpqX~(luP0v0tacNm%n(V3;HoRVQ(n>=!uB36}3o_xba;9}6tQ?vlOd z;7{J|(!7tnvz!zL8(_yp%WI}A$f%3-y0Fjsu2spjBm45cSZf?PT~iCaQg$wMIOj

                @yVEt5wGVG&plY!P?04 zV!@NpR6tU&_wKEmAENLM$B2kn^SF}Fv6E0FL?C>7iw6X2P#pM|J&=?YthErhk-w{+!_n4#@e!oB=UHJ*gHllk#g zVlBP5lAmw-hHBBVwbPxXZ<@<Qw)$lz*9hH>AG4i7Qo`t(IPf+pT#zhx_O6 zOtFyiI?U}R!Jt$Rjc+D~Utu0AY5B#+J?-wV{vVp&f+3Es>DnD&a2woVaDr=acXxM( zK#<@*_~7pD1PGqs?k*vL1oseJg3FovdB5`mMt1kE)zz!2uALD8uOK!I%Ys&Dm^o?r zRbH;c=VjPe7fH5H$Lw+H@^+{)78a+l=lgw02DH|fUPN%rohT%{+EycGVm>;r*t#pH zzw?^-f6?-k{=aDHz$0u*&s1K>k7LMhhz}&H|L-;bANA`AELuXSF0HvvEorEk58}cX zz~SQ8dnc1}0S|A;{cDE4vs-kO*_8PZIeM!OXg zP^ip4aZ`uvHox4*%|SLyPMg|?(k^MmlI6CVu>;|J*hd7Yo*!!J*luf!TEdFg^bV@< zPPye`Jq3x>+h?^@NTTVaBwz~{gKdYie#MXnKj!D%-RhV6c9GXA|7 zP84SwTb2)sK6*WW6=?<7_x+jlNpL8_h_7F%Fx3Iy5`ew#QET?wha4DYWedt()cB!# z(2)8WJ~2D1(9ARc+`goix6cLA!PS z5A)Ysm;TsE5cyX)bjMjBpQ_27*vHa*9*SA=c6^Q1V?DSjC=dyX{0V&kLyhaQ8d&}* z^B#a)c2X)Hx}`L@XVSE4+8sYffIOPaS;6$~@03>xE+|)a`Sj1`!tRplPYD&tDYIoC z092m>5+4-I~cMIPA>Op zGj()=VXXq2ts5?~$&UrzrFsrag>|w=rHQ!22T^B;8~;i}x)S-|){Tyr>JPMoehAJ` z;|S?e=P|i1VfDy;GD65|u{6c}TY=()ZyS2bqnqigR{n}b{IrQ3svnQ67Oh)z5;W)d zJ~sEE3F8mR8KI#usS%RliPQJ*KkDTN3kF<^i}Ns~x8eMMOh=8^u~6cgsuDJ5L}BUD z(kA2pNJv7evc#6~0QC47lRPxpItaJ`88F0HhqLt7XayiJPw)@v!WV$%_DTT({&mto zECy&lsld5h?H`SBH&G+*ySF3zLI4n)(Eo-)*y5$7BsFw+VHcJ_GPE&X0tW@e+KG^v zqYNp%e}W(gqWdn9nxsesN&xVk(tIqu;Fv)}Ux80&EhU%-WBxM)HEopokN+_G!>M{{ zP?a7LO|`1s5QVVHIlRi@2GQRg{`gbOjz=#`Xw4aLW|%m zEPwY9?;(uuCvshsxcQ2rsN)FXFgexSmDh_Ybh!e~m#6f4)x?c<3?EL9cO^$4sJ zW?xLfDj-o>GKL&0waF9aE)nBvnybh#59qs7_?NAzI?ROI+J-*C?+(6t)hT1N&XL}% zRPuo-?6D$JW`7z4^I?@3J&V1I6$G;WiAIswI#Nt)c{mPd5&}#u{B7_EZd!r};-{S~ zd6S2KR5STdLB?rQ@ab^<3QKWRt)O+;G~nN5&BX?g3BhnVPbc_eC;s5kGCz>OKPJcI zjE{rM`TFSt0|11!tk4dtW+75&Hp!F@1NarNDFF_UWPo(a7K9rcLjwEv7DC){(hP{X zJyZjhy`@257$xriW?boDGp=~b|NjVS=W)&3?Qr9t>N5!x9X`BV7i1%d3^Kei1V@4N zG-~KHF;qqK@Jrs!U34So9`YPeKLNTx`(6F*HN1@s;Ju0x<^L+Topx`ZFZO8s?}zvw z^S9%5WQ_!+V0Q(v#hk3$jBYnb5Vr_k40h^I@?(MEQ{2bbymCu4vEsZ( z+;$Ujr3^NFk^Tf&nUZ|F9R0v}U_LxDMt9nJ4ewNxJYTq9ct#BHH<=1%kYckqPZ0g~ z@9hQC!YaSz=>C21v2Mt;t#||Ja{j`{vZKb#_GMFn<(J(*tbNV9WsjtS$T$uvH8s&C z{r`55zAWF4wlGcgXbd0COTF&Jg!>>ZuG#@oJV1|KUQ}hzdct(W3CU20Vd*|Y0pLArViguRISq7=@J2Uo8@+BL;5=! zT*9{7CAvpLx)QaoOFrn}6-!*2y^DjocN5RR__ z*MQM?piS)P61jNqVigj&MTWWleNIkMPJJa6Vr<0dbS2jP>W%#eq`#Tw<8)62W}i1fXt4Bji>`{ z9K+asHDkob+ULe+_cDev_msQo{%LF>i#~TeR575a8=B+-H{*C?C?Q(oOsJOp5BI~t zv9Di!AN*%PEod~j(CvU86SJFz#du`7R)D)%2xVFt!#7pHWdCIvS~`h}^bVz9%-b7O zSLE(7vv1a%i6^#~oRVyWg>s-wxUydq71F8o4i51&>R_`hnKN6GNxmq`+?~=vb%?{# z?o8K%#QyPHt?m~&g8>Ssw~T6oG@UHfExD_lyCrjqXOXHEDo=R6l=ogI+_FblP6PMA z8o^n`Kf3#BVw)UqKzUaCJA^JE9FS(0uy5{7^2$y`eDjY(kzxU>A0+Z{;7#b2yH&jA z4UjUW;gkPyV)HxQb|iJRlqE<&YyrDb*KDy!O|SxJDTb!h*}zS>tv>&K#d(x&5#w<7 z@@dki5v9lZX=(Y033qrvGu!z|DJYuCCOkoIc`%p!CU*cb$3aC>JHw?pkynUjn4B-b zCqp6)UrM(ollJ4Qt{M9WQ;B>uuiI@rX}O-a75SC8ao$*TVqUdyIZz`h9(e<8k-b?_ ziN!iG+Kapq>pyKSmdDQH=M;of6gLelfd-8IKJj-?uYk$otTZ!!>51fkP$>iT_d9Mw zXpz8DeIQSyfW3lmh-I^M`FAd^-`EP-$tn*_bdutP0D%ch=RmrX-fnp&_FW&u9Le|h>j?5+Uet1in_ z_G(sy)o_T|DpwswcVboyLm4{f5u90cmnCmID|n6D_ue_wenMfQNLTHb5%9e5V5)wn zi9p1bz}CLk0pt3;w^uN#6=Lx@rU%%-hts(md@Bjo=Yui6;FkV3#E<*m5I=A4)7!O) zSKND(jb_rfL)|g7>+Iy8S}5mzZ?hC;d?#o^CjFz>)MW5;9Bd&Ew&b}WUUc{?p(t&PWFu-@O~A} z-lR}8;BWLZSEBN1w!?p7Hxh%*4zbKHgQT=jt!QNq>0fs6xvhJUfE>6APa& z1U|q)tbPW+1plO~Q-8ZcYDD=f$|&7_qlZl?d5^3ff^rc~ObSQ)mnR;%x3gcqDrdwe z+CNAjW>Zwu>xZ6+saGVStgf<>iIb_Rmqb)zbt{Ornw>ET13uIpaJ9c2IhlpX5bE)n z0VS>`V_63uA8Uk)>TT%hEc%xS>GV`)M9YAM;s&Y%>sQ0Q`o6bUdHJyo+Qf;(ikZln zDU0dp?6lb9-lv+*k3q6u59A#Lmy4_C^lzjHFA5iRRlRH z90rqPu>%fQ+=-h2t9`s?xuNM(EWeLZNu?VV^pfuFjZbcuJb@kkEqvYrQxf8wQaa8X zMz(zClJ#qMM}&BRr22Ykq`ph)(*$S`zc5Y2K8iKfdV9@T2p1zFv>j&bvyLNwd~Em* zNjAw3*!=X(&d$;My}B*Oa)aS7@_1rtUTG<}`9O!DIN1BMBdYlC<#I@6O&~%dV~uxnzIgJes(Hw?JAELojpXA(DW1oD((vS0;hL9)Y8l(J7!o>UIhH zDuwahk+GyWn@;XHo0C{uErLQ@f~aiRr6`+{I1ykWj zi$OPaLn`t{SUdel0 z-dAEcqUGp_g2FRru42sy63o&4BZS__p#V3W#Nw~4s7xDf>FT!NLOvhz4NQ#kSgXQe zebxa0-(_5S5glw5Brt~!ijS&XarQYaMSa|`G45`pSMEaZKgS#H3C7;Qf|)xdO)E-7 ziEaaC?;oF~F(m%}Lg?J@;Pu5N2J}?^8}pE7d$5fhzQ?!^nwhh9f1GKd4C7`=5%-oz zqYf;jvqg&@g(o|OHFLIZuG40AR7fDnE&DzVN%HwlQZIMMpkAw>DTk_X8QTGbTnUPfEq1cu{XEwEo z8zyMOF& zoDaTLqnwARg@SGi<|b8$PmTE@I{4GKoB`ueI9-LebBsuQ6odGHo$V^CE$|}j&7G9TsgOI9 zy~o|Q>-QDG1w{XeV!NG(!6sHU_R_={7bOjU>UZc&v`q5$p}v+8s{L~IuXj%w^3pVo z1&gu!skzzY%EEo3)t>JWIg6p|=e+KIy98NPU6BWLxeRgG?euU_adlIOvpp*AdtqCH zbcA~AJxUSD$;@h_U8MC&V*9^z$cAN&5DSZ8d!q-o!>Iv(G5Td=x$doH|9W!0E5)CS zmYgzaC`(q9^pDRr)n7h{4)sO6NDb9Xi0&mzI4@cfu9|GW8;oX(=X)C|BfLKR^y^{W zDJe|fyO7GZaFel?|1#1Q#mGEwmaz*kTCv zPt~`Je7f_l4VpNGc+%;rranJcf?mYpQCc+kCVcLNaGY-1Iz_Uc3k&+Hu8X0rW303A z?IPeBTFHyWG1dP}H(0O?Nscv`$s3dgbLuL9B(_H~(u-J_hqX($TdbgoF{E2|@$v|T z2e_KP#%fGl&2S!S*<6w6SfRm|s3Th~pJvZAg9vU=B<5K5Ag~L<01K9QUJCF%sUv^W z=%T^Uv-EvL2W-~cJ@JmdcirmM9?vy83pT(4R|%uW0F$2et?dLFqsVNnH5~6Wq zzHZ!=FrY%0@tRqrHt9v_#Wgz!>Y7URL!!fECGbAU4L!OJ*Z~xYIc!8}w8HEoXf`x2 zLbt|g*nxfXC!Ck3-#=&tVd1PKsw7&gjc9MOYiHuFj1Yc%WK^TTeAts5ZxZ3_-jVx7 z=S(%{YYPk__28O0v6pt=ia+iVQ`Z-l^J}rueU|fE8>psU4f!21P$Cs83716qamuQj zoFYATgv43%$Rp&f5!$u}`Aa9AFuChF^(nQsy^x)%qEas8x25lV3Bjc02=@p@tPs7j zjzRs1qx&!}YHr19x+pqGvvJ6R?h?F768%X95Hq2hO4OW1$%0+3C@$cxh$z{?5Wqf) z>MhXII!Jv{8oR~gtJC1>^BtOoZlmk?@Y@Vc!YYhsr!9CSdfI@K@4XDZMT51eq~VEX zEGLok%=-%g9F(Cl#I)s)H^+#@uSx<+{oaHUK#wQ{s?rgdRSahY+vHpjC9OxT2;F~;`yB~18z;Pl8oiHeZfG~v*6}E|=HdyrJ-u>t6x>$IbG`DqDkOB!7B5J>r zDz!#tp46=|tLsPLnNX!_Xd|L*9J^GbSd{xhMjzWPyKc>gMLm2{y1|J?(61bx(?Q7= z5#eg@i3RIQvrW=oEs^Y2JnUWBgiA;P4i>0Ur&}oIu!S3uM?+TWBN3>nzKvL)+TXR_ zuEr~95~-2YqC75*F=3O{J^}ez=&~sg`d4X8>TK}hjkfJtk@2Ky+d4xoRDZX)_PP8%gVg7la0 z!p+;$FJvE>k9{{PynfLn%kSgkZqR_YrGVzL{ViX-D8LyCV_E^33 zEu6ajm3ehDl+De0ScAO-R=xdS695eicLa+-h6lFlDs8-NMt7Hwk^R$YqfDe$a~$cQ z(F4Z+jB5i}TqWyJ2yr#|!YbC+pz1&ZyJ-+oKNK6fNU#BkMbsvyp;aSW*<~&&#cVDr zbX$oj04=%jv+g26Zzkh1`{S{`j<8DZz8=3k?ikRIa#;$AkKcR!uN>+QBPs!to@OSN zI|ahyP~87ae0tz*+QArAX>uqpAjeqO3~-(J9ATv=Qu;fI@7ZCz23o}M%CL~!De`TC zuhVFz1$BH8;o~@z3F(9K6znD_C9R2c1 z_0djf^$DK`cX2Ub=^n?2?oi-M<80z1$Q?l@m*kV!brW;z2zbQRC|ucV(@^OERX&Yv z42oPq$DLwEAIEXg6s}}V?ApKPm@_n*xHRq4UEW~5@}o7R zaqAIXV$-5dql}k=S~9zgmcmRul>et?R)dIz8VfN_&DJh8-$!4_yg8%Wr#^JQ8dy*r z!h%W)prp5lLsgpm#QT%iKpdWUgJpe$Tn{+YAAEhD+=>0+S`Hd4i~U|K!o;sf2LazA ztNFUFsh7@IV)RQ$p9%WcT!wS_9kT#*`ya9rtkBj9D zrb6;naNrz2i5?SiwW4Yi4-g42O&8B>@qJ#hv`FqA5ZV6vbb$|cpGoAn`igZdy*8z* ziaxTl^}>66O__ZUuz`wP7zFC5QKSF3-wv@x)kxDR%t<6hTJ-F=m37t}lOy4@avkr^ zV{8J;_dL9q3vys5VZ{Lll0c0Gdk12UW0tjl^9*x-xSQYL?%zOK7SBt-EmbL0xuqLM zG2Z=#;aOhw5Tmdkd4FlpFibbj#C_1oMtl{RK01MlGxS5UZJpNin!E^NF-Is6@&yd) zUy}ad-J+b4bJiZ~&r}K+|72zf$l~|WZ9%dG#do(6^qjrLcfp$7+B!#E&UYFJ+UxX~ zMm)$xLip1#6n(#3G#YsCG?|^9|8bMLgGGIN16BlD!HCNdPV9)!AP$Zk)0*DhmfE-T ztwzx+MuPRRyuJ2@Vil^y|BGTQzj!oKMK}E;pKSg_S`pv#4FJ)-O?r7pMt?Zlt zr-R#h=u`br)V?yx*tlAC-gZW7M;9NwiTYpp3(gG&NdqRm?E>RaEFxrDrgykD&6HF{ zWLxw1P}xb37#bVe^lAa7>HlOx-uL9{HMVj{^yAiG+ zvEgJR5PeA6SM&WD1+Qz$TDvd@v{Ae^Mi>qrv_cX zZ&rRv-SA&igc%tu{r?abx}%G*_Ta9P#V98xPHU)K{QGk9WQ$qpde$kFtb{=`@*BLj zPA?$C_Td~uoA|rwr{p3{{AvADx$0E6MU~3ztfs5u7}hN~j@i;EP`a<~fx-KuDkiD* zy2+_QTRQF|Px)KYgW=;J0Swbd*YyH8ZD)TrR3GI$`8Gd_Hq3xQL9uJ_E2__XEB@`np7zxk z3ZYs~FEKlr2BwsbOzA6kO=HHxa;`Na`|Dse@C09^j5k!z?D^=^S5=_+E+d?Qn}jp% zb#wMWh7=#1=KEzU?DgLu|7%j!*K{`>294`avpvtkJQJ5C8apOU@S$Q`sQ7^^A^y*X zIqg4w8%Ve@dtqaf60pQx8n@RciqDw=+i5&HCQJm<5sZ-A@1I*_81~;@6?%9d;oiGV z;|_dxF?#aJoC=!5{ey(^$ADM1Mg_oUKa>Agmk4Pj&b2=KJTI6&(jq zWKW|M8f!dW{S)cXJm^Q|cI1>E`?|n&~qJ#1@4ZAnQG>DY& zznW2xp`oo`oU|3yBe~fRESv>90ec<7i9ZMRGA7(Ka9tBJ#0UiLnPk(ZvdR=KUyJ7RU!+zCz*;cxrnoP zd4sF8|EujoU`mpmj;h{7xJ<}>FfxN}y5)qkECi_{ycvF^$VGt*nIMY+R1C^Z>9#Ma;P2Iv9*}1GA z?h$5~hKb-p!j5+{wu28%tC;UTrMj_1e!Dzb`M(}30~jw6CM6SJ|8755QiS0=9GT`o z)1#p7d}1TX*IcDEqvkFOJt(~2y#%d0dRshD6YaF!1aZ}TMD;FUSUXk?;TD<=O7lH& zcAmPIwr}T~{=T6*$f}@TuA8~lyM}kOXps#4-aBrBVqvIFw4tuN#@ph6muSU0$E)Y= zNSr*n7?-9j#y2~^%gfR6Q)h>yw2C!_)O0?spJaCmno$uy1)U{=j`5|yBT%>;|jqIbCz@zU=k3=$I)yJeW;Qv08 z^wwJ@ZT+ePcHe>G?HG=rWaoNT7c#BxyG5Lu1a>jh9gIphx+-y7asb967aHY$W^N4o zOWI;|36&2EPe3C3{@$sW^E}b-V+2&FNl8Zln(q>v?neQUh992#=6;K2F+nkH7U$X2 z-)GBX6ehi29+iuR-Cy`zm}FQ3l#G(4ebLTb{^9?!)IfFacphl zQDZRwnd!JyGa&+M5sc`(qwax>>qyJXdu`EhujJfBsy8E{fw+;rb<$}sch7yJjpZ#8 zB(^8OYof2udQTk-7%&5xC?VL`yKjAcPYv;kKdRsc4Ib#@#?p%rd@(U(Y3p2`~5rVpFE&# zKWlb%Hwl4F(>4-|@3;>&-Ft4+?3q>DvZ|SeS(8TJjQ2^9h_*)Mnau{SpZO#jVV+;|?5^p8DT}z(*K;73Mn!SdChambcQKWz)f+<=l=6 zq^4!LPJx9_Y8!+`DS<9`R(o+R6t)kik!k!~+w=*T3IZ6=eDUVHdOCTaeJt~BRedNZ z>%0yTVK&Ld_4qzr*(DlSESyb&rfOIFoP1>vYljd2>s z4XU438%4_A)+6Cd*k-_d9C?rMc_Qy;h8ixPCFFOal=5ON zLHcyiEGt8qeYIh!nPn9Nv_1K`keAsu{yQUQS9^UJHH15~QHVB7v}JM{LY?fTm_nF` zc+4=iUvoo&s1k;rrwg3UVeT$M6wuFf3N7VR`A@_$U?S!L`IB+&Csf$I2O1@lLM#2E zP`?eiYmSx{v$Pq=;fvDF<8ZCBeJBEOi zd~{sR@~q0wg(4|B7XP-7vjtdfCEwWXc?BrTHnC2FymUgAx{9|GsfeRPXd5Oij*kkj z$0m07xiw4edx!T(ke@YdSNJ~AA5kri5ucAed)@ln&r#WMC2}okX8FNTCv*X)Nr67Q zZ!43ExZ$Cj1d931iDjoEltyt#A??mjz^Y{Fgj+XZKC{CnyfM^BeMX(G7ib}Nel~#! z`Es^Qx?f*n?`d5j-Lp51FK28`_~zFFXkyar=fu8?Z0K9!8`V{<$su%nFIcFoYW?#@ zE>&~{jNV|TBfKSYWt9GZ`X%un5E+(OrMzT)g);8l%U`>Aw3JSBlYM9iy!KAKu3HB~W`*a)3NfovOhK}o! zAVCX&82xZvJ|)g>Ldce$cWwR?X!n&suv7A$J=d8bJ^{OT@<^ zcalV0@5;@+;E|6bhFAx4Q+>gY3<=39TH|^u(^TOqu|SYJ=KmlO^s%az(akbo3q~?T zYt>9inJoaBnMZZ}pPdh6P;LCp(?Uswgy5=wg$xE3y|uT6TM2|yo5MXUAHEz5rvE97 z=gAicQ&=p;q0LAs#phNPXLGlUBwYWv0gr*}*1pI>f4K|nW&b{7kk<#Gcfxm&RgZ{B zL7}T2T%`XHazFEJO4^!SwI`H%gAdVFLjcL|4PV zx?&_X2CqW^yNyQ90N2+-fHIIsJ6Ev_N3JOfXU~uy}w@hnPMJIF!PL zFJZyZ*v~Mf8`b~;xX3m4tBM74djKpC3(Gjo>KT5(p|r7yQb}a7$s|hh>UoeP!Rp-w z#r%}y=mvf^keWQB>llr+(J2}3+NW9VC3j1PwmfS+I&!Rr&lm4UA>Fk2`jmKslYaQ9 zp0+}=mlV=7>V{N4oPgpS!I~i&U_pHM3Jm?yzJA4tdGv)Tf!-H>AjdK5uPE65V!Mvo+vDVun9hJI4(f!=&T}!txB$lVF%V%E165V zuiME|h*r9S$MgGVEvS+6s?G|JSy$F14Zkw0k$J73o~ay#4iU}{jl&KCx3__CA|Szp z%-S0w0l>2`{Ru!);R1-VQl0Y)5KR9~v%tClz`tE}|99PB4WE_<4vj__6!De-D8$m< zm`P)B9KY+SAAs5+&}c!U!Hk6n89(KuN1dRLy>(!843*tK7NukDZG7>DvU!#_)cq62 z!#KHb{VR#mnR|$y>kPoG6Esh}zGYpfH`EA9Ex-E}3_H0FIvfgXk`! z`0YBDTyhMp>T_IcO2+?E)c`;?U%fC*8$v{67sqs}!-Dh9Z4E=E>4dt}g?^{!LO-!$c{FJ)#utcm8eB?BHOw(O=0i}rE_O!2HF##|! z{6~g}(Wy)ZC*u=>@l}8Pl0Z5IQ}SXVI3UlR0pM#bYDXa0<3|z*y7EF>ijm`pTL56< ze=T)6k(Q-H2BQ`zhBf$_I@EB1?jutGBt;J#TZWv>-%M!m>2C;K!@Lrx1CtV$F~mxg z3XdOhFE*7MqRo~BfTqhyMFb|6(9r%gkc}nUyMM2pnu{}F4!jsrLPv+LYlD2UJO?|K zU6T>~Y8T;xwjQICOZ6TrdLeZ(0hX@RoA7c*=`x8D**K)h#G+!9?WNEPDWuVjGK}e- zZYY{*P;>NqeX;AKrCFfF(I&?P?#F^leVPx^D2jp`f6~A5k_Em0u~ks^ZnCfWJMGlV zzu5e&kClm|0q;{r%-#lK#8dk*WlWsT@>Ch=4QTa>T32-cw4NrO3%+m+XkK>Ki0jhQ zK#&f32aKsBaJf0UKmMBKGlA0pFy;2cYWr|C0Qepy1R}U$aPfRM;yVjuN(iMEqQkpl zU=$dxZ43loJ#}#jCj(=?z)Y-e7?&AK{CRYXtYAu65EX-LXl^McQ*zbWl;KsGv8ic+ zYElNC_xR6AcaC_%LzdxZVinp88Ou~TMTx1WLK0sokKV2x#T(~VN=tW0am#M{K2 z7x$v`Nm+aYd8Hy})GnlFChoK4%`93QX~^f1^3xRW%YhaVxSuNJ9k(TRv=Z%S+4l$JNRGgWZHLkdSbbo8;kYoR1q_tkCkn#an%ytVhRgikG2`(&~4T8m*tthCrytRimALsqEv55HWded{Cj*7#qM8 z(zZocj2q4h=&c_8$decb#pAZ$A*#F$TKz{fLSSPwRm$fwco_`5z?I1AS{8nf21^WI zV2NP_;7B)FVm#^s=u*?tUa*6qVv(go{TYLDI7f6TsEH&APFcQNjMwD~WW3Gap*yVf zCy|bjX`x+MWYpP);+g@2P?&sQ(UwOAAK@7Zg5^d8iBQ18u}g1mr+RkV&IRxwhXB=$ zH*!Sy3~zL2613A%N;Q7jP@glSV^-BM`3LQ!)r|;l$TB#9LilF-#SfPj`3TH*X=)-ZS+;#-FBVhZ(l3!=952Zn&|w*&Q$XLrhvFpq3Ajm@f@NoADtkj!2qYPV z4+8ddhC%}|<`c=O2Aq5nN4vw^6ItaAEp@ib|FO_spgT2N33WoHOH4vyk`vPq``pnq zbS$4Rq5_^dxa|7*tx2M9C24+YQpFA&#rL(&&s(ze_c&tYoj9+Nckjyn!6->*HRN&t z=en`o_v4uuHiTU8*z(rNtZ4InH4uDy5YX#=@G$aS$Vse*5M(5(7q+N^i~lHKjx3|D zP5xkN&bCKGQ2LAg;6zWVD09S!Ee5j&Zr{nu>Dm`@DQojFr0mE`-2Vv*Js5xiVOkup z#Pi<83)q#H?WfZrCE09SdQEsR2c_ykDFqBvMCI@uCUcSxKCFXy+2|@hV>cxDUSD{; zAdb?wo7Eii6o2(#MK95-H0a17H|GJCsgBZ|w3}u&7C+MTXeLqF_#86{J>@XncmTh! z4o1llFkARxcjH>0TZ}a7DblK>JE*M7Fl&s&=g!#2qVwpc8|~)lg=D>b5JX=6Y*$|@ zejnIykf2KOw#}rusEc;=y6OTvuiIx57BpoT3(?r$2MBi2WX*6Kcc zs8wjK{4d>2g<@uYxG{cSw-`>LcQblPnONq!hQIAmpottcK5g8ZSjp#K=I7gE_EQGT zNuPI_7!_-sW!Lka$={Fobh@k$5fE ztE#|{Kaybl-cN(hlL<#1oM#DPDCl^uH2xg1YiCAWiP-=ugP(W6?k`695pSO;hxN_A zaSL~dt8R(kV@^;15d!XZwjoUAnxh z)o={{r{W@WqUY!hd$jCMh*?7V#89yc5NrS}*VPpW52^%pmtl_&ex`afB(7IZ)#75( zQ%cpMX4R9*l*YNbk?|`I{ol+P9*kO#CjO7B-TlPVu(=zWaiYmjh)~?!7~4N0=pf6* z8JQF2!$(T};96o&h9dIOOMgo2-Z3a7?PY1H*!$o)CxmyTU-8xW?@lo^ln!4p3x9Vp z2(_J>jfhz6q)B7B>+I_N_qfi{J1CC=ez0Djxcxi#(B!z4J4+fFmjyG2+A#B$cwvq( z`y?GR)cHi-UvS$IS46E7J3p>bybBdu=fV7oD+6I$1b5=ZMdEjXj)JqYi8;PAX%~lx3W7J=I2C$gFw*NaE)dbFe{*XvlI8?EIUpU?S>JFU&{M zKgJR`o*zVK@uxan7tEPZR8u$!q@H>anjP~PR5;!!eoC@_DDVh;A$~71H0sCHEZNgduLE{e}*>R@4#r)K)UNdj0iY4+a_^5YWxA?mDmKp#jk#HUlU<$_}x)+ zI+a#e8TEb=sMNyEiSSvJxox|rZzk>K28&-erxS9k8oH{K+}Xa$b&*?0`3$at^-DXA zyEa@Ul|pHZ*=Ro%! zyNo~v$HY^5`@Dph?Q+%ctViRLT{VuIWDNP0h82OO61~%C?p{PV7g1S5Kj@R&?ae0|si%C?ux?VDhHs6L*GjuKxFJA^M-*pz z0e%s~{6qU{^lz_gLlnu`mx=fhW9f;!<}#CqXTTLw=7C5gtC)vNC>X^`A*LQ4gl(vV zX4B2eT>MtpY#5x#g;Y3~EB`e~Q<&veh>dH+l8DK0l7g=uilUfgH=s zz7??e3Gz5*vl63RmQ7qKGT}&6pP5Wm8y&&CCV^irN^xV1I!M z(_(|SV?2%SQNtY4BR-L|-M>jHnD#ogOrMxe!;}75sJ4XYi&cTv+lROrKFEM7D;114Q-ikpzxS%)_sZ$kK zIC=x)zl;{T!^xOxbg9+R6gvc$Xul{d;kV?LuR^E3mya$tAbTz|Fq)lbd|17FtIv^W zP>b}iq2NFPxZ}MO)01F!wi*WZ_i(-gS7Ju|C(6*vnxH`~RhX+s`&LV5~aZm=j5OEVhT^cGi8xI^3BnrKcdGpbv;ZD4j z&qbuC?M&#Z{%lcj%g}E=lxPhxJdoOy`ki9@8ZwQ~$KrjBp&Ed|Y4KTB>+<1{kcrsc zs9!D#i!*G3h>fOb>!(e}x3C>}&-(E)79$!ad1u8W%Kld=mtK@`iEKnpHtKIHA;+xS z)Tw=?Bhdg&n+qBESnO=Kt!`>pAQicq<0q0#v_cQ3+@8pt7*KihCkFg=T`& z6N5wks!N=pe~+GeE>j0xoa1i0LVBp@aom0Gxf55SJx43bv}Jf7r7%QCEK)be7SeY~ zj$B-cs!)^0e^51EBo`XUp@OiMDIIC-Kl*^-IfxW+h)xCY$ zTM{E!(8gK<4aG!zRJ?JD0T( zu3@b#xaedk*Hb{EMS{-M{p_cK*`$NIg?@MiCj-To+nDvH(2qGRy>}9MeYv~jcW$?& z0T&pL;Vs~XF^SseWSP%2;td^&Tca4LljtHYQJ0f{-Fv$D;h9xFQTc8L@eY_g0MWXTN^X|p z`j*bp!_Z3MUBWV*#)n_Rr}-E8TLPk%dXI&c5lzv3<%X_P(^W#RZ`|24?4CHpVLt7= zU)PJu!1i5iKW;XrdyL?gu)JF<@sG+i1?O@Q?mCq&N7iCT@~{16c-@ zQocMdEjA&sd}r3icV{gVu)G(2oo-(>djHNb%W}r2C$RR(BLU=l^v0z+P5%Rt)6r4n zG$V-)6&xeUIjrTUv%)+&o={UmoOJN!o=)>A+3_>c_iIb%cs$00<-)5uueG~ol+<@o zNL2y{;e=7ZH26_HwHnLc@v|sN6RbCM&(9C+j{kk_4Xl#4lyU zU~18Td6SADcvqv%Uq%8k++nTL;9mza`5HD2_36@cp9lC`FV|Dl=y(cV$`fh%+d^|{ z^f-jIKSZ7HcH6+@yc~8AlB9e?u(W!N*}bCg*K~$=qb<803H3JuwjGSZ=SaUiWMzS#0j!+1KnosVEQuq$M!co(DH4Am;qIev zZBb9pA6BrpXxZHg#$H%kX|C)l~F<_@Vp^4vdwaXt&PDkdNC`AwxQDqGP z{=$xl|Kv1SUzG=Uyx${TVTqOEc8A86Wh8=QI1_L+ShYWs#QzY7HGlxG*T|pn@N=LV=rVkmSRf6cHHE&5p{9 zB{|;>7k*#XrvV(fdyq0b^K958FT!iu9qiY_n@Tb88a~#>M+c~5AsM1N(~(YNz*|yM zMut&$4teM(kT3oR5CUO}vDPy)GUQwVo#Hg=|k(W{>WGZmx=c&YbgJ1hsK zf1Oa|5f2`WeHw$v6Nz``1vtL);^}e0c1rgoVRqiTO9HyA9rv*Re{8*VSXAE^@H+zo z3_XN&HJ8Y(A^*{4T91rpma;8bax3u4>@h2BL=K3Gd%U44_bspn`tdCB zjsTFzX?n=an(idkvKmvbIe)kN*0C?(>r?_k1Cs{7ZwBJk=_<=d>xa#c!=dFe=0Td} zi}(5UXs9~nC=OTg$BP%_uh1Txpmt zyi#zjsVp(;(>xRnz}gJ|&c`qB82)I?1`pG3eFDflY~v3-8jh~_f2rG3mDLcI)w|l2 znrb4-(H1RYjYmP1-RK`N{y?pWEJ`j&a>WSA$@H3JOC+c#+l(es@A~VO2hUAEC0|ld zfJQdxO3x*9bp(Mff#>NK;_JmCN@1GOu~uauLxyx_NZ;WASZycVXp;}t z?r@aZ0Uj&y2Oq-Wcl>wXqAK9VkuEtDx7*(5oKB^=_rbaw2zq$+L@@^0sXN@<^Ur+US(S6}L4V3$=(tRKmeo5=#>+(Tm zjrM5^QHPAP=2e<$5>>T(kYVbc7cvW9r1qKGs}qc-Ln%bmS4gwV?40iAFYP?rgwpMg zwNL?O;f=73hm2oqVi@Dc9K$$14i6+Rh9lC0+oiuBRj;fdR81D={^V~3 zUq_{!dAvVL8D3xN_SAQB0_7+zEL^jP_%n>=Dv?T$;e<7H`-2YgnAX`07PbphA7~J= z&AX@O$%S(}nUT;Hryv588Po^PwH9DSm~mpj0$dpq>4&Uhyrit6W;{+w)!o=nzD>P5 z5+BH-gEfWtQ(!}WF>nJH`nR#Ga?2>^L`G8`QBAJoOHGYPl$z8sLq0oL*T zG^~&0=ank29;NC>)tWqrtFdJ?gZIV%DvVdWh8FbxYyiwh)R?H<>P)kRzpzBu^DuOJk;5JS)cmJZEYS4v4cvo8Yiu zp4W+DV3PU!zWy?x(?bIUMfPfadp&y z)l^`LUlGgrNGPw8*#XVv-+j;zPU_mF8$`zCf^HUV1UaG1eETow1D=Kp#F)OvZ+hzD z9jH?cB9h0H{e2oJX~hAm6j#?6_mCAy84f=;@v5LG7hXI;TNhI$ zTs1};cdGv)-YknJptsmi2fNw01?z~-j;VPvqyA^3Y4@y+&Qtbb;^W9{p0-!~-)z~~ zUnE>r(76bNpo{t?p|)FApOuf3uX|_{CcCX84cukAhnH+Xcns5vjNc)Ku2>3Bx>3&(poC&SqWqZYBCF>PJRAt%uaEZ&k{FSH3C>tR zJY9bEu4eDmSi?p%)>y`VLN8D!3&E2WwQ%?$lanE0es9A61sMgnp3>xyeAx zszr8(p46JKTYM+lNV@(3b0roM2r1WCl_z9#mf6t}&!wMgomx8WO>WZBP^!GLqq5|Rcb>Gpcjl0JQRL; zs_c$1KQe9e!KBe?!g`>940HJ zdAd+6#|N2EUPOj|=-|AOO2c6y5&|aWzf#di#YCMyo(A`fzhFQYL+rSny#j&3=EA6i zDE$uGiUF*Xmw$37ig3z7?zN*T*=aYrt)@gmqVVLEp4O+po7XqQ3SLtYo#^vbqkiZx zO^(6pT(GD>VfJ+C3c$eu6RqBe-xG%#BQhg>=adQ*IyZmB5Y&q6vTk<=dxd#klv5i@ ztEv|k5ifL8d9`9o13Gb&JmD1!KJF;el?{4^Z9x3kD1zqM&1m2p8rGZi7^IPOP_?l6 z6w-JL<2VCg;nEYs1owl9@-tF<+&(A{la^2^yEG_X{#1)8;*r!@lOW*LA{&fL`o*$~ zKzyP2a;HC>W3<6BWmNE)K;_kjF!*iOkFZs;t7kz`73UInM;(e%bY-zou^@h|e2=xZ zXEnah4K7aXxk)y4#GTe-{(P0(AYh@vKR>FFkbF2Oz-bMNnjIntLVtwTM(s48J;p?~ z>xXh9-drExVW<;OI~Pamt=~Azhq_oZI48=~1P{HEx?OQ8Ri?v}{qEs_H^z z%J91k1Ept0qZ=%vvsY}#C*;+rBVuHV5&WNnynTB*`USUa;DP9cYAD zxv#Y|raxcdC*&~|L9d6YY1cEGR;eo=pU43vpQa}d6ijkvvUr@2J5nXCJa|;QYi^~Mq=y&F>PA}H^EaaEh2qSjBC4iS)}vB3>xhey7CdkWNiTp} z=`2<24C`S+xtbz^)pB+Bt65%w5U8WK;9?CZY9Tl9#+>XWz+eo{3ZBj{CAxLp?;t*n zvd=gV^;jZQMHs`sJ2_TnMunv1d*(;)?LFSYFuxIu@Gx*@ziO3pJB;)`{9E}}0OcBg zB+*Lso@-Qlb0g$WC(1)(2Ey5@JtRK;oO>D->USyvVJu;J$Jn4v)FF6g_17t;q6oL3 zj7}teY9@fciOa{Kayek7JYk=rvbpZTaz(P+mZ3o{7SWPWw*TFfFJEjLlAekB0u&>u z4eC7)4q%lZu>LJa$&NU%K*B~0G+yXeOHrB85SYg$eY#$erAJpA1}N|deKQXMhkN?T z1y{F4pf|KLfzU(wl^YAu_)LB3vN|fS!sCX_Xq#k%mcud{Kxz_d-&OFNDPODP^qM4V zWggMgOYZAhZChJA)-ZQn43-1Z9zoK<-004GXpaa&z5%{>qmQ=w;-&m1XuWtIIw!Fd zMKLULJSCN;HUZ}itaI?{5J+*c$$`mcrP@Bt19eXJw8UV0H>o>ujqki86&Hq7*O#74 zj1XUK2SF$(aULalDRBEV5-JD!g*BM%xgEND%bq2cuWod`qG>?baFCBdxRo^dqQl#3 z02XZ|ThoR=p-Y!gK^j&_P|yMc^?u#MOp=vKUVj&-Q723j(bz1$@;*;}yG^lxTo+8| zpVQLb%%rN7lTCVtA^S5;+``gqGT+;@)h4Lp9zGqt ze#;Lt$T_1yRc`?o-^NTe$90}NsD##y(XN#wk#?$hGf_~m3+XZ`srWO=aZAc9_yG88 z%G`(D4_WV!C$M8fO~yvpItO2+oVoNzGF^0Or=T_T#IvF-ahzgkmB~x9=$wmdQnJdQ z7OgX0-8h&-pM+H2ms)Pbo#)TtijjwKCi4NAQp)c5s>{TjMXBlVPbbH>v$vjvUNH!} zSaqO>Fc$9PD#k22yDu|9Sxa81akbSpNx{aIiSZ{L=u8*Y zJlxw&U3voD;pI#GV)cHYlCQ;OTq{uW)St{`gRz z+9x9MQxkn_V)-pFhBThr+0e;SI|Ujxw!X1%N#$a^yZ$4uiZiLomnld|(>Tpnl1CEZ zOOaGTI~;lZRf&fBqI*5otoGR}dC?$|q!(7PX7m_l>3E{OuClbeMy?f6lHO9SZdNNX zSRVPtOW(%L2B*UW7{>s;TWjkH_frp8sa-ar>1{&TG!&s+O)Kj*;Lh8(-xh z$W+MptlOs}*u_d$g~b#>p}%uf6R9|A!L=U-1WoogDAHFNLS?cJQg1|=)^%6h!w3GH zCRYzGX8-w0p`6(Hq4Bci!>Gnj5ycxX(?ErEvg!vD^S=&9uNti$^n*hgS5~OsT>85u z-+et^)KI=rBwPG?U~I~t{iW(-9{D$#I!JN0*hzDja@!Q7N?vN}Hbz7990skogD%}D zsut<9z1P<6l>LTgnm+V|xVZSqwhWCTVfBAm`>#>BY?*Q{J-Yn?$auznL0y zH7>d^>h0RhRhg8_A(Hbs=@i%*Z-?v#6Ur$<*t}1tnMu4xBbu#_f1OLuYrHV*XuEmn zM<8Oo*YlkRPqN8Jj_)-_R`MoTt#fhUU_YZh&)1pwo?JkM^0`glX!(2(+4X#meMpuw zxwC%<-TliS0Jfvx+xNcJOPs}^kKZ_)I!Hv~J-v|g7tV^CM{La*l3BFAI-IWY9QuRT zsSRULs65r}x}QW=E5{66IrolULpkL*kOfbCC~mpBa*L=sekghL~>1I&Rx7_NEJ zMH_Ig8c3x*!EGKi7)5ro_|}tP6if5$?G6Z!eY52Wo~i*kHaWHjB{td)(C*NmIW}ht zv?kZp-p&tm$__BxEM@&{dh9zlKtY%iZ}jKX6dL{IXBZi-gg^pUcN+r>1$pA#Ufc?k zY_wc%xM$zT<|-?&0le*)WsNYjeN+I!tPSs*^3aZx&gJVkJ!gQ?nJ(_}e{%O*g43$2 zj&iz|4lA)JO>f75IAjX>pcx!)CS&>4`LB>8%B|g_GJr)#{#@;7g<~HxNk&G4TotTZ zHq*yyM^YpiN0el$?edd?hi~49Zf7mB`~h7te&K;wbq%dxvHln@qfVp+;kBxqshOAq%C>q48KHt%yzfb}RZbm6DW z>f+a9UuV@%b57<+V@rq)k52s*C=K8F9J%lPL`?rQ;rIyo zPAN<=1xJd?CdcF}Ikb8^J|1qIK`%QFSaXaisQ2J;i*BzFHz`Uyx^Y>n7mAGRCgkbz z2?7fqdM%Q^@}1=Cic~Lhw5ZJAUqON)Kj>|~%QwaQ0m95(3EMeXTm{}^(ouXaY69Uu zOsyqibvujdSHX}-j3LEuIonklW~_xlgn_>(_A=Zq>Fht?Z% zGmiW3FG?6`)_Rqe(q2a*{~cKty$8=H^0Im!i+5JA&+S~VE=A!500$%(q{0(vWMlHwopf7aH2CQ1O{6w6@p?AkoI_G zz&29^1?zxiMuyiGJx6g-Dt2_3GSG;ouh{!lr*^ThhYeoYF1g!^S&+oKGWb_+OoPaE z@u$T8NEkGRwr9xUQzxq_{PHBLFGUI*CQjDlTo5J?g zmkb;{-FTdDC%K=$*vkQ6*u`Vj^Bl7X;d9iai5l1B32wfPmFK9yB>PIV*s6_Ao`L<` zN|`gV>(5Op(`USRUT%IR(9EZ?&&4(3-{eEyB=*}YbtD-`#z5+9pm~(r?7q#OCj3Ha zpEa!?tMVraID7K8P{>9G80Z zptMsxq-M97wD2v#d>Y0@J=@380<8f{o_Mgfs${WVFHz}1i(?fVBa6feBooi5nu;jQ zAkYkNB_|_3@S7huQzRtpx})_x(!=ev+b2P>z81M-etCs_FvxNkN%;K5cja}Tezy-8 z>`Sx+(tjLHem4r?47k!ix#~SmH}ay;%mI{<0XrF`@gMxc>i`$eqKyDE$(9*$NH_kD zGm8%tPe>I&=4K|TXu&~UgD671h`I&0LbWW_%+pj%5!=zt`Gno#cdIcn-qKoB-*FPl zs17oKAIJ_fC-O!hNjf260ah>Sz2?f9=G{#cK9i!!??MAylGtL6oM;RTW4?RbGf9P|X?UBU#>oaC(`=88bajk>je7ID;l~Vlt$~hVn+1VCF+OVO9 z=ek%Im8TgniLimyze?z%aF*WqM53j%_VH&Fp?#hz7IyO93O_Rke8*I*{g<`n_Stvh zqGs_{*du{w7x|R|=R7qbIa{9o9v;&NFzCOCJpBe{29%vq~;t0ajv30{m$Po=-OOuns6O3BEA2l z_dq+zK$d7ELRU2*p<|}$TJRgs({?cV>i~m7GnE)KODs~Y%0&D!>vdB}u7KXR%l^sU zVj4lIFLSgeA-&9;jGW)O2y1Fp+r^@YWyuQg$ND%-pB9ZSR?$`qOO^k~kTdNFe$gtE zZ?;6Ca)hJ^WNsnzvcoKWDbQ4vnb-hI41W-o;}|%mV9p%_hF&?3u3G}waM&q6YN9^^ zO<-Z-0q`Ad7+9=`fj(wR0J2sHYFZ01(!Dx}1h%67R6~K~QR|eunk$D1ZC*L{o#?ARHP^gijE zA29hFo)s6##a~ZnlbQ=Q;TcGMPd42tK|<4kwq=z+JIL^g@SO5Py6Qv2l;1hg;3 zL=A0zF-%1GjWayp@9^UKqtCSW0NEu`tPa2!fQy?xWu*dqH9BjVS}uxXV9|4h*V)){zT8#T}lk-El9b7867r^(r;q@}<%tX?A%%uVF|= zzp;zzPI03>Ms9PK!@7k) z=BAeKAk3eFFcB&nTZcAx+=jP4kFYVh5Yk;kW;h&NloUMqa=@?c0&$iN&0IpkFEbh4 z6-;=aT43?oHrBO7FsN)2^{9n4c@mOo{WgkQY!0o51sl0Hw1^*FkuagJ&X{wRq4N$~ zczZU!gZ#qMvD~GY)1ICshCA~LZ-6V5j~T%ic! zr(NFr>La#uC$*4}&q{kJ<@@mL#|%FEbxuo|)?Cv3$HG$gu8s3TjHAY%$9s2AY?Qd9U*ZUPjOLm!ncVM||<{t5tK9zOp z(v!6*)Gj?xgz+ehz>x%5dSqD%IjdoQ#J@}-uI^Fwx+oDwDYClh^rYyJ?dfX4Z60~Z z(R1&Ml$#-Va9f*xL<}2ky@?pE{tOG+?$$vEpD$RWp*i;W@%l`EMPCR2W1q?C4Wrnn z`gQIkC3(h8&s(0SrNsCdT2a9qxB3Z3DNxsmq6p*bi7&z|QLgZYc7+8gDJjB^?ScHC z5at>85A0>@d9a1Am>PHO@^KEXnhZY2B4b3`VuXy_yA-4ixDssUDi!o#Y`^#Mk8j1Q zxY^G7ZX;}~Jm{IQlD~8u~+)HBuP2(W`kBO{6f7p{DSN2 z!}gbaxa!90&rx0X4mH9l{Pt$B6BllOyW$Y$qTi`i=nwBDEI9{0U%WIJCns4f9ijD{dmWbYWHhsQ=g5`-O`hO@6({-2jPwH}<2!d>|>2ZEa zxHw0WaqlmUbUEb(!u^AC{P^dh6F6hmy4S&$xUe8gDpRG4zK%!6hyhn|vNC(F#eHP} z(EDQ){ev!Fi2xev9+{Ft;`8WI`X>4ym6&Tj`b;DLTlaP`t(M3j+yhApF>jj}EnWM~ z8KpUXPnw}%?quVsaY=s{?;FdA{@AWldrHsW-lB|G5y&;_YeVA%mO`4#w@vx5C0M6| zor3Gp!?0<85eY@eMrS>_rthPYs6!kM_J_D^CKs2id)sEdj3O0ygE8+A}rQj!QI%jr$!Kpbz75+`WTu>Of;YZWB2$#D4)X-3-Hah~eZE-fM#H>3t72Vw2ZDQu3z7i<%jrxa1G+BaK2V)=!FTS6RsMC`R zg->RO0p%NmriWGVV}9o<0{Rg{>6M3m0?z0j9?kiH&l<>&yL|k`a$PKnA%Q!|Bjy6! z4B!!k)>*zx-DA6$iniC?u9}q(mh26kux87uPLj46rK%xsmQOK)@VM6Y{z2_bFHtKzEHonEQ zzRJ&Wjh&|!15~FKd81}ytJqYZXZOcAa;VD+juU;awzGMLXzmY*gHYze2~b|=SG$FR zDX5=(_uTjUlq1gP4)~C_5*mfKuD4XO(REvNNHkl|Fir763lBtbV71OCvQ^r_a1(pi zCklx69&XXBqLE7IBgA%xnf}}vkP_H&?p>IV-ZT2axXCuK;RBj*0O0<3lAzmp z_dLs-FxPpFaJyN>PpYs(^)oU*^-N|+_yXE-$5V(*nn36A~xQjZ&{qIHHB zNrmVu7&tGAhydFYQJL_o*HH@k0tDG(P2?SCC&UbAeE8}!hvT0+?q|0?{L67-RtV{~ zAV;`|mxaG-k2FBT6A0N_ArsVdsshjJ=z7<-2JE5F)LJRgd1h0pO%*gGSX(nTGsfo1wcGs&peR@IXG;8Cu=Jirr1Wi zpYYhdHclFo)i-_iTLT(q1)bM72<;JKcPuB4MM>|Nf%!F+JW7?_lWug2_cY8J|e7}I?_sqCJ4bE-RgUNy^|DasjDdB>THG{ zu2myKTe8}Gz|;U^)Uh z;-{20^Z+b(gJ!5IcajEQ(H|BjyYKrgQLGH{5EiQ4=xqEuDkq=*Hg*(OUbKnd4@a!c zq-sgA|0u4t$T|X#yGSsLh>!VX>KZXLpLN>N_8v3Wuj0gF3VA1JV=+XA^>W2uwU@N* zk9S4I#nBxSa=L3CT9JcH$wbDeXxioq_#@eLNRlD!S)UG%Xtw&NM&hOKMuA5emNGTf zLQaqRH*Ql!0X|-e!zuqZmdJo*tbf-x7l)q*ny&wxG~;D+t^1)y4JB&SjOk*l)D0lm zeG+%>2MqJ3kCfQ`@g;yb<7v))_z_utV;Ev2mFf&rhnAE?a5S6%3 zQ;-%js&epcX?l=)5JHC(>B((bP)~gY_0*LC%3Dm`-8~l_+fFWadh975sjlS4$`~rm zKP$LES3)<6UdCLx#`NEv5jZF81fnct2G#_hcLLnhE!jSFab3OqSQAax=`=G%BEjm=*9+bH>@^s}ht@Mm|Kuc1}APztV?RN5pZ z#Cq3qAWvUg1L79hj;$&yPk|q={fOtn{OJ+lk)@f562jkV1r3xfrl{L&`T-pmdk~*~ z?23;)YGqLS(FtWgG2aI_)bjkns3zn0M{Eij;Jg(V#y|cOl39!>0o(PWi^urjcs*(d z@;vCeDhmnN@OH5kH(+vr2{MeFQ9uL5|qB2l-mmALg z$S`9qz8&4(OQrNS&3FwS(A)EKrGS_}P5ArWotT0)KJQ0%P*t8HG^7AR3Hveb8rsq= zXe;(ZH(;99fz-?LJCz>VwndunEL_TRYI+{NLi|2&aA<5}_j$hu>{SvM7zKW@5v+VOQ4J_mgA z4$Gru!ReTie$4^CglnV4bc!KdV)3*O(Pa!zy6Rf==<&C1Y?KJis+LA6%0`VbBa~-3 zTnd1}{RW3*vRVJMoM1x(Tjb#WbSK4G#YzQ42~Y3ryZ1E-W3^_WDg7IFocxP3!u{Jf zh88#C=_0t|CY8qn&rWYl@0vpOtJo_`gJ%o&|K2Siz_OBm zJ%n0t(Kfr?7csrJy4fUbmG85EoYa5*^V7|4?eskPM`;zM3RC8|)c@9R+>n;}WiMzv`c} z2O{s!Q4#>l_WpMZCg2g&C&Z{5Sp4?i4K$b{e4OJ@v5%UNPMH7$3vD(U{0LceLdj3& z)P?6`_}VG0B)cI~la*u<{G(4ZU$Xz!{5eur@gtEHdS1$=wB_=&b%P@R*WFo89?e5h z_Ov0HW1-I5jYMOcHxEVko?-_z#03}U>X9h{zdYo)H zqY-vSBAJiH`XC{rlzv79INC|_85p5PCSMhZi6|1Kd4^vFeHx=kmHZLHk8-7`Dh$gz z8b*xyIuoYC?M^!9T`om>|F4{A(8IQ%i+ z`wXjdxG3qm+KtN76C=pMoP>DOWt@H5g3_WpUrb$1*7AEXzmuB>pgkY4o%nrF0u6sv zUyw4+J}2Mnu3+;5Ie7c#g{G^3nIChaJ7^#ipZ|x+sw_8W1g6ejpCY;yr~=#BO`!bB zfGm`Wny-v23416l!z$eTbf^;K=f@@mmV3a;A{-4ZENI@1xsJ8v7PjN)#I~XQ*!~t6 zCT$5(lF8xMtOS~w1YEBBJnXSWvuLQzuhE>^Uv_*K4A^Zvg#aU=`Qr{{&8!cqq>z^(^Yq-$p+MuYa!;;3Dw;{rIyr?*O zAjpPY50U?3%Y7rit5S7}XRGJNP8PuK!Mav+RO#1}urLrhFID7-@$d8+0kE9s|F((y zt+>^Rdz(1urSJ8Ft2g+dYIgOsRV z(<0XK`U3S^GL)iBR448H%yT@9&%mC9n*2=T}qB+L#;t`*m9MMOC_&ylG!AF^7h61Us2s7neR6~&N?eh z$jBjevd`|>(uXXg|L6od%d!1i&m3(jJloy zrL*bZllGM{Zh*(Kd?BG!)#M}RCQL>C_hw3P&&>Uw#=lW2?d`WOGT66T#p;t-)?!0v4lljEHkNKXvq$9mL-;Ye zgOavdlgQM`Jf|5@{19`2-ywM3XD5t2_E|E&3L1+vT9BvE^gCeTYT{H|m;Yk}Drx6s z$Frf-Mlhz}VK#Di^}QZ#NSJ=$PrC&I=jtkosn?!?^6KB>s2m(OrpLn(XgK#@ZgH`9-f$Ep&p8O95iWi>FYLa}z*B@g8J^~`csQOn zw`9C}hYpATRR4$9;x>rf@yDX=HJA>@yuOW0l7C zO!k0YOaP!G)!A_|*2jg`>~Eu9S0a%!QiM3J`0}ebobsL)F=jnwa^(EE49iBBZyiev zX;v;cUo2dbuZ;&!zAyi(#eiA7Jxo0qo9$4povzO?7>w_J(yO^cM)5qDd-!s`oUH9p<3OvP65tgl5V0=uB zNzG)3?x8GBpK&gqj-A_prB*B{nq=So>#6jrIuu0g51+6-n3!=QNel@fD~uC}1Hah| z{|P6Sbg7iUgeer#5H5MH+1)(}HXk7Nrz88I%;z%x70_c?(DS=YyKKPjwtN}=ckFtWD|$EX><=!?79a6-2F*|~ zJ53l>;kFL*D<(BF6#rM`kEWotvMaid?$13NVM{WuNUQT=~1YN76>s;JT8fuP7 zU}6jqvq^w!UP=PV9D2%bTth`Yk=`xoKU-fzk>`Q<$tIxsHRuy+0*7n2Snhzm4?qM% ze%pkIyrfM28f?SM=gZoZSguXVGl}KpRnrmj`PZ&tUqM24jZ$GEs*(YewX3k7s zKS00OvgG?(t}HOnypmTfe~>${>Jc%&sxS7>nOo7WTnAb6rH{H4voC~zM^(cMiw##` zth=@5>hdswDPzuIl$V&72zyJ?^f4VZPKvc4~iL_qeE;K{xtys`4>?$ z(Up}PLekf&-{I>^v)u{S;MajdJ$c;1VY-z~DT~iBSl^|;6ZcI6R|kJD|KTS zB#5H;*wZMVD;jpPW$zy6?O!ds_*~ekmDGd6qngdZ6)tr(MThrAkB-nC4UHtupPDW8 zT=gy4ugqDifp^P>KVb1Td_nktm-q+S*9O2;k%JawIULi$NIL{M26)ot^%YqPDzg*9 z@qZH`S3!^I3%eEQ3!J7P=a>E0^Pqn3x}zbK?IV$K6e2=ejmRsDz)-BBU$S$R1kZx0 z6MK7Sj+&vgu$z{pcCxuv<6~2-t4)$IICP31FGTPd{np*zF!@)GFX=JI zp8*s!_+>*wbx3nMW8j1NnUgyW;>4#={5??mHipk z@z#IPaaep<$$9=HJh^29S+yRxRpgGowZj@mllo_n?yd&e)F}}E?C=H~MRxj~s%m6_ ztD`O#>yxVrWU;lz8P6imqZ3XnwLD03N`J&KJh@J9J^nD{wAH<2tMsU4h48`^IeQ5$ zx%|-^uQdb4%HhY44)PP$S0XnzOgymQ@}2z!82+J?6uM4r6d?R!Ai(p!bCxR5Z(RYc z)Na3)EuEG&a=@bF}uME(1^R;Pt=s@@k7s(JyQH4d7r5pe*__W%*dn_3!{ zCrZp8l+87WYUQL_Aq6jks@8uoV5;M&I^_(d<@OG8yx%7BL?Ua58z$72ab>H&a5a9A z=^v9kRQ-Mn?N?fr#|CkmvHmX2RDa>Ur_fPJOGJ77+^hW%W7jWSd@A@2@En{L+DNoX zM>FO`dBn!d;od8IIzF)08;nX|Z55lUHx8aY!KLqyWQ`-^-$*HRWIy63Xp zUBYtw+BVQx@{2R>(7|5u{0tocqyk|B%?aVc*)9Gy5ynVy_3+*Awon$X{{f`pidRB&}x03$!RzJyz9*Sd?j2w#?ePI$gRp~0u@(d zuYtj8IfkAb;E`ha7XkbQCOoewuwL%s_|COyu-`CIfW+?}*aKQenP6~HMpJ_Ru9tMd zOcl1Pfhm9h;BifgsY(hGj)#Hev2m*m->MIIAA#w=9_i^PvR|AyVo=AEdtY z=H#`6u#pmA5Q2k4;@F0NWN!3`3BOO!=bJA4J=G~MJ%hG1xQtHfd%e_550q{d#pzvV z!~6M#^~k>TIg<=W)jkr z;xpgiW}HajK! z`6g5@L})(EyY<2x7nnB7UZa62R9o(9j+PGBVo!R1euTN?L(#?32P}(;mNqW8y(OF_ z*`V%on2Ar;Ha@Tl8k#mvVg-;b^S{EZxW zl?8lvkZzAOqmfcGhkY?y#^}C!i`$(6V$uUg(?qu5OJ5T*O0E`5ut2NUD(Fl3QZrL@ zXRw=Xkn0hd-V=xq3Y~PhzBn>ZSwH#0P~co|l7m*ZUdvH?KCTDhow!F<)(Q0lbcpK!K`S2mP z%H9Kquj_M&a%3koNNzK3yfik{fN@B1} zgkYH^8AGV1;xMW-#~5(xO*S1#Zb=_2cdxPdN56NW92CQ}f+%$5*zC2jk+HGS-rd>C zIhP+WZ;dJ$Pc-5Nz#J4k@)ljxceQwgy{Z#ckDbgD8N@l!YuWK0OZsNZq4DjeLZQ6x`={T z5bJBQhU%N#E*;?Bhaw|o4+ z4#AmTRvF8HfaAJJq|O^e`ue-uZ7Na4Rb9XfM^W_FP(o5J>vs1C?X`c(z#ZLB{2=lVgE=OHfkGk98VKF4s}d*Lxb7Qt#`v)wSw!7?a5*Bri=JSu@!BM zEA#Zx@k=t9!%ItZ(PkoV8T{m>^mkw405T%djsoAhL`$(d%Jh`9o}1@OJ(V7zu-6vq zqg*st4;uvT=#cFb^PEEPPAXHpEt$b{2dhqAPR*y_d ze6p*1uoE5aC5%ZzOF!+6G{%kiuLC^FNes4Q#s{4<*V2aqA866^zb&hUtchnkQBuvA?X&?XdJPP{3;9EYn7}f zny%3s)I-JPmJBfrXgSGk)?ZM@ULRg@M5z|)H>V&G>6O2|;?r$8e-ebx@H6%e%fH21 zV4SPLRfw?NP1=0LBvlMx(0i$cmv^O)Y_2?>dP1I+Z!2{8s+nu?S@7%dE9p;l zt+>xl#NHy%YAp{QSFJWy-QZX_eX-$oYakoS{aWIP#}Du~Op_Og+zUm%jiJziwqnKy zs|Anu4WTt0Ixb!#?;LY4uBIz}$Q9Yb;~SAqF)hM#%}6-#0TnEh8`ro3S+III3quAZ zln8Yb?|Eik|5yZI6_sbCH9v}SSehk7&>Op5B*sStL~e&PH~VZ1!}yQI$0pLaakyw) znXn5k7AXMQ5N!k?ayd4;G1f5auw|F`CyIBD0>bW9#3JEGfMo{$b2G317X=F-LZM(m zLD1Ef(bS|*US^ng_u0kVsH}2`pYq8&Tk^0Tk`@Fndx-X1$}V?C52&VFf{nPwQq;vj z{n0i=TH1;Mbv^z)4Kyy`tc%Z^j`v=`eF*X%=b3hN80Ay`=mUbm`#x5Q%eV@;SJp^} zNJafihf>1`P(E?@>h?ksGnr0Ubyh^OA;%K4K&_wuMMhEN#J_@h3H4DZ_rI~hC?S+w zr{gtp#{i6OY1D^!_mIONsj~=V;PCxLtSGT4l-`LKd@1S$sXi38n))HFNp<%_@DbVg z1G|iEyil~P`#2;4iVBC4e(bG%*0%aLAM1YaB2E`2|3m#7=h(W#(En$krC2}{uemS{a94zpYeS$WvdAnPv4trda6lWj;-;+{tw-!OL#Sf z6Bl;I<+&a&67c_i#O=fusRP{$K3wva0H1*gbU-JH14Muh0N!Z>9yq)O4B(dez{TX? z007=IgA@S3!BEiMD8Lz_wm(VlfS27J;h8Xd7vr-3(`q%2HdnG7`F*|k$1gSmKV5kn z+0Pu{5oMrdr%@~et$hRDQ~|Y2K7Z@w??>$fKxZ#7@B#0M0NVHK^&@*|kb}-BDFzRJ zw*5(8mz4HjlW%E;KX8Lk=^;6jD+?MfR~})T({lgo^U%MGT9oHO4*%f=9Wsv`z##tt zPmG8AZ|mXJ;AF-NJk1#Fzo#Ga!RbH{Xk81`gX#P0WT7Liz>*tc-0J31a7q9fxa14m zz-)wpFFjBU1P)RIk7a~}So%7hnYKHx{4>l`n08|Mi3xQEnvWHLzUBuWdWXgQl_GHS z{qM6tW()*?hr|Js{P(W^(+}>SGCv+P@h1SZVkz9sEOMX}4m9#I(8%vc^cN*Ew+}x489Hu0st~Ma3lZ# diff --git a/library/tinymce/examples/media/sample.ram b/library/tinymce/examples/media/sample.ram deleted file mode 100644 index e2ce04cf7..000000000 --- a/library/tinymce/examples/media/sample.ram +++ /dev/null @@ -1 +0,0 @@ -http://streaming.uga.edu/samples/ayp_lan.rm \ No newline at end of file diff --git a/library/tinymce/examples/media/sample.rm b/library/tinymce/examples/media/sample.rm deleted file mode 100644 index 8947706e051d439d313c48c7eda99f2334d0dc61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 17846 zcmd74c|4TS`#*foVvQ^##u9_EXWy5YVeEsk6iPJ=q9prL$qce*PnNP1rJ_`p%Gf1^ zNGZxzD3K@;=6BDi&-e5Fy61eQ)vKz(Eu2*#|B4m0N-7umjD29jollf z0+s=9`o-J;0G#JJu%Vv5XHkwJL0;}>_}u9c6v$B2SiEtP`Yw*fc+fWI1h zJ~PSD!+Ep5UjOM<7(Mbo-C{(++-UlJ*b-;wa9CXhf&m%;4n`f|6OxpnqJly} z4N$u+LX*KaP{!N;rw6y+*^|B`cRxjMUq3HjfA6zk0sQXGD6$893IPC{rN5_Fgu92| z?ttlp07n9V1m<>f4?5`;f}&H@%b(;G3?@SX0Y_i|lYU+(OGlh7N>)P?W$h6VET<2? z12h5PFZs>R2Ay#aVdNJ%eAbubg$nl#@j)58lTM!uIveWmiLwa|_9f8^DT7?wC60Zl zyPt1JB%{l;s)slU^uB4tjPaFuMuJ%MjnQ{wSP#2))-(fKOFLSxrq@ zO+`f&rK+x{p{A#)PR|VjjK}7zr>{3ii2rXT^uRHgd-;0>fmM5=jCXq@?f`;^5Omfv zl;jnJ(oxb>Qc(iiLfN>JeEmbt2K&(4;s*d$Yp=-gvq7G_l%kW7k&5*Q4heE6?b3sh znhpSaP0sp9uu0h=tT+kd#Z5I{a7WD6ts%vs+Y7n+KJgy$l}UR4k#?S2zl9-zJ-ndGW` z95Ln_x@Nam@|s(B(My%9k_jGf&Y*4xJzU$PXbF3Kye|}j67iryWVJQc?N%pzI=lCB z?OT;_agFHYcGtuHihX*&G{__EeM`!4pUF-av+*N4c8XwE2eXBfy%@YUtr9Mf1Xk~R zHN@8do zjHvd4YGu!Io8B?D2;Vmex~bDmm}jZ(P~?Y}V=DJpaz|(-VtO_QVqd)kCXKh({=!*Iu(Yn)c;RAGq7a zZ}w0SGW*>opOdZl<(MAs;wLkGe0-Rh`ntonzM#!^>3PX?!4vo7QcAegXm&8dqs8_a zLu}$q#Tu+y3p2X2z#?~?DN!Lq8qm-my$QIopdZ?4ZY)i-pHlIYo6(2EBOD8&ZdhVo z{}@$0d#c0!W1~^O@fgXe$)3t7HPY3Ds<#kJt^WMT9jl6Twd=FJdD=sw>WlmbF!u6?CbSE#0RC*2dSgS>_57Gf}TOp5EUCrhr|S5V7vSl zPbyP~??=I%N(ub=O~=jhv>tm&hO7#-44TY_QN_F8A}`qG2IBQhuKRfeQLo#-9JUQ1 zx?JCiEIf<;MMyh67HTXW+^b9~xcDfS$@#a`@AqxTI`m9=dpwQ?Icc{Nj~p|`drkKB zb%zwU2}V^MSX89M>$GkZmUFAwB|MQ~n<<&$3l${jtlOVacPut8DcVW?L>1=B`2bU+ z*}%RbIr{Dxlq6KR5avE^r*!-@QNQWTQcbfv4hd^+3x=FL_pX0~-}cLqJ}LFNFntF4OKuPFz^&##y$8PuYo45AwE5lajO!X5ChCD-}Cffpbc*3%UoH;npB*{?% z?B))lo!JO@uFa!nN{JCuCsx=xqPt9RE4I_jb)$!VxO@!p<(D0ve{1&5Ve?`{)NAaY zoHWaFmEy1hF3P7MTPf*;tH*C~WnY@UX^ZuQLNsu{9p7wZ)G0mK@6sSHnB+@rcKfo) z8=&Q^*n;Y~Q*`ZQ=^@8=b9>B_<_hyHpH-I}ApLHRIh2t;^4&HdO7PUnQ!2Fy^A*^! zK1_22ZgU*P_Q`ZBFmRxfMgL}3R3}dyV`fHD5T?*L{qSgs|EAq%R^!r5{jm&z9;W0> zPswk+7uMgJMfE!jEjY^Rjj~>C71gs(y~pS5v~JfMucu-)t5(P-`D9V3^~PC{=p3)Z zOS*4i1O!P4R;lY_T0vgxXEnGvUR-kU>-!+`&Mm8}BQRm}>*AhInu1&*{H{L9%W>PC z+Rq4Lf$Hk*@KeP5GtQ$m5$}7A6YQwhPaih!=A(p?*vy5heP-2f*c;FBYPD}=57-|I z^ijAf_#INe2|vzs?q^Zuiz`hd>JTs8V*9c~UnUcg*B4Ns`yyvuEKV}Hf8iyd5vzE^ zv!8-blt+YIzl1q5DYco$?-<&5-tB6fN6jP2+&Qw#4_kROV%aKiJKkHap-wyn^+s)l zAh}*C*E7XGaI*5Zeb6P16NgMJ8X8V?8arP7p8mDWI{E2;(=KB`VuNs8mr~U}=Vi(% zSvVwK5F^0OV^sXoj_K`4>p;te(Dl%KnQ)L$E->dW-N9LqACoZ4xe(De)2kex4Ttxt zip0)Xyq@)a5*K&&^Nt;5#J#H9{&UL0^bfzw74z}O*k3f=+%B+mbFvMc{*b-xQw_w; zynbu7`Q>7VnTy4T(OwBeEbxkqXZ9wEb@?%ed(UtUKeZApbn&!3E&j9W^#!J*)1Pi0 zba9exRmE-iZHg9K3cbm^SrI#(6>(b`y75i6y$>K@k#&#;u5d%(y|2?_ySR$_D`vVq z6(=Q|rf=Un2O;P1h<)i@*Ndo}h>^b~wcr zE%4FFf%x@LVhuzn(`m~4Eyn)#jnWsbmFCkgZyp#aKLFCMp0S#P08lEX7z6%H0%YW5 zG!4?Nno2_ceONiw>yL|`E&2B zpPZ$wRT+LX+_RD^L)(_4(OwnPf7+-RJf<2d49EjqJG>`o+ww;A04? z1pq461#1iArQQIVsV%h?(5^Ofd%6w){ z__o^UvsT)xB&$Q_8*j&WczAfd5TXO1k+8$M}i(ztAl#DRz2g+mEiT>Z2 znS*}7jYF&?3XGe^^j>GfU{U3PF9IE^VD!9)Gr$BJFf8Kc{ zAB?xi%cO1E%k>DDDe3fi>^y&MnwE}I{#q)vT}pPYR=E&0dM7JT(3ds?_(JOVFC9J> zo-#X`V@3Mih$w3vx?=UUdmoco{3W^0?049HacSLHyQgofqgQtP&3L^yG%w4MZg*;m z#+&KBP3?$8D^Ln+Q;OH5Vq&%|IBH+E33W5MI4YHbRIw;Xr95K+x-X)PI&Jy@goN6g z{mf{@%Gd#z<@wu}C>FMftL78__;ay4sgt*$C=3VJ^{zx3)0sZ0$)uc`5qNJEFDl1M z3URc*)ug4_$sq~55`2C7+#Ju%yqs81X3^qjagta#%NqyWW!Qr=6^~5i-`z1&fG4r; zDVuwOvl493DD!P8J0jjqV%e*c(a3R>TSAJr&gCj;u<+HytTb8>@fw2%l zFTdB;>|OoMwBDKRXW{p9Dxq9kTUaZH^xfy=B=7zqt4%TUL#)RxYeQ=JRe58@52d&K z>QRI<3!@i?XkX)PgR0;( zN(xFOm`X^>DUZLyOsh+>uxK0WsmSiv)BXi0&OEXJO*5$GKYUT3Ail=v_~LDw*_T4d z@jSCyKVLrPeE&$1AeDySbh*!8MI2_Me0e)lj5kFwSZUAP2{IDo2sS|g|oL;~00bRqfujuv2b8+{YUA}lT)HR2!T(tV3b!Rfo; z&+^3U!Ao`Dn!1Z=R#FBfoB)wZ#QNY|kBwII(6(iB)=H*}$C;C(n;Uzks8|#1PiCRX zK{D6+)BUvd$4Yx?>qS#-AHjT)vyZ~hwqZ&LvTX2sBG2+=ZD%kg-1};FRf7;2VDtm8 zN=Sz1iEs@yzDM%5OJorPsd`k@ zRX|8QrN3bo(!udOi6SB*ziYBZzt7U?foCGr1q3*;N?_-{9XoIz)kzKtl$T@ZlPbC< zAbL^?(B}SS{O%u8n*=NC5JN0xaau{)zdR$cSc*O zkC-xA#hXN_BwlH_#2b>`h7jc6Py7B&HYY-#HucV4_IqGmezr7z8w8CH9W>BFx>7Pe zg8^80OKr$v>1BCUwyzeOgvcuhk;B=q?>xWV05xyTfy8j&qi2k}q)2ii_nSNb911S> zIiQ2vWsb;{IE^lNWo&7q6rB0-kh9_1Wwm&`wC*4)s2=E7Hrw^ODpQp_k~;VDn& z;X(3u)_^E&<3q8rl%^>(XG`(IcC>ju>?z$xWQ#}ObiVi^H9*o{fya;pA%7b4EMw$( z_rFV#y_X^@y3jPAc<3H6#wY_i_CfgF;>F3!jnXXYYSS=q?&$P2YN~%Gt<$JTVoF8m zzI(|2aDV<@Del;$nc?Y9j|}-7iB!{6wjUO31gpYs|0SLH(@+$aWoH_Np}oW^?d5)6 ze%RiNw|qv(W^e{+hUQU=p!x}!C5~Uc0L`h36~PNDnT+vX8SIJ;8T@f>ZLsnH&;DW2 zZ+s4I0_Lx7safVZFz2esVXH^{YtT!HV0Z7us9=h$HufNVp^O2;0J22oDeazD!p9`lg0~C6WFmR7k22R=!e= zEob5O=dfX=++zotT|@4r_P?M;YlZmsgkF{};2_*$rU)X~wruno5q7Pdip)jHVOe-G z6$!-%nN|9t*x7Q3nSAp%KxlsHQe#VhdHeL+Gsd@N&9b<@-17h_sbN z!r6fVTIy-L@i!`_tfv7LfXgl%-tKwa zsxhvez67Y*i0h7MqOo5KS9b_ zpgANdZsyRbS|ot2=EfZh}hF?SII6)Hv_uB#ea!IyizVlFo#6$!ILkmD&^~TEdu!)c{lrGiu8^l5loUQ zY)8iBkOq#R-H_~%^XX7f4u^`0+Gp|yQlpdjuKn<3mV|6y3g>|ew^-)@o`A7to67at za?6h<`#G(+0!$xC{)!`dhgecoi3{+7&ik2RaOO@I!~H#{;?D+H2lRRdxjD&M+3$SL zT3%^|-3fD|`cPcyDU}KyG<)494bClQY}($oR4>g_nym3k zU)o8f{!kRZX?7B-@<fj-@Zj_P zJbi2*$JG+TkS=u@Kw#HiTjfO4s9-0T{1K@MxT#Ij8# z4GK=?-^HRTHFg-|z>WkqtWi z@|0i0WnyN~?lf%GB(|*f(Lx%*H|@}64BP|z7{FBfnT+Inyr;2D15ELBR4hjdBIdGy z04!q^YI05k2CM)5*YhZxb$Vk=evkM(;Im7#(Nx&u>`@DjD?58`*By&qc<@=q%|craDAgT zpJP>vkWg1c*Cw9wd0m>dYY(lJxhshACfVa_tYYj@ItlC0fO%=cn6 zT}>%g$ha-ThM0j3Q$Yl(!1xF*_X8ejWtxVRIY^D-S1{hoyrD1Zqzb4E1`wynCMo;) z*r4|07crmR z6P#;(uSgyr;6C_^!;+HnbsyHI87(3oAq|YnG zFDbM00&e>Z2b415&&eIdzODc636ocl0ReoR%ePftk!^@)Xu1|o!8ZgthUN&_5%I!cxXG~7c;M&lc z-`E|ic9zVbHYqhQI8D{RS z1z?Z^3NU1VPFQ$4-OKX?m(I!CZcav&fZiI$B~1iHzvmUKXLZ4&|41HQlqr*kCrSZM zm$PEJ(SYj#mzZVta%&71h4i^=kI&8Ve(3_&DpE#__ib+}jC z*WqRM2ga9h#HV*%yi58bxlA*es>d*>%j^1XNf>he69l`nttD#h$O$9wr&}jp~H3L#E@4!fvt0>dOzH-@5D0?0hu4k zjXJr7Jk^aMTEp-a>yh;lcN7e6BEK$Nq;UeK6)bZbJcnKV`F_-jWwex z7Pmo3lFP!oxU15fL+hbEI7has_0sCG#~y2)E#x+KHA!*8IJ1ODd&S$1(lsdAywWfX z#oG9Ilde3KbPv-hAr9e7h+pmQ;i8=3Q=@{7XyB-xBs2FrtcOW9zx~Xq5bc@En~bKC4GXA`bJIK*3&T6{rujM;~gnG3Z8H4H4;wxIBkcusE5bG!ZMHtJ}VXvS&cR>b2vU{(d(4qgT?jr5D8}Z(oZ|UsPvB$mUh2N_Zyaz{?y( zm{KGYyJC)a>nkM|I+%anry4ZW7rBq^kvPJF<O7l^e?@Tz2b6N7LL${f9TdbB5}re#j>t8 zz~gaScTd!6dh*pFn^%s@1&~_cmf6PkN8yB!Em(1@(#8A!#z}W}t@E@ebn3)(m z(~-6po6R}5JTfr4D&D@lVpsp7@qXWih%BE&%pj{utiPe&=g)?QUmsrlsPdcJ$X+Q7 z!PG60z&zXZ-Sr44$)esTZ`Ma2Lf*HHr3IiUNw-tCRqu~`{(SK6-1+6S;;0ot3Tz)m zd?meaf<`ofn)S{tTsLPV71BRg{#pwm0~zZ~OtVAW0?~!WGSFe$%0x%!&MR zaHY6!c9Nx_`f6VFOk;cg)q(1(HDM&`L`U#OG97idJm0o%KD}hdZI`04a05Hbf=~GR zbt3vi(bOhaYx!2gBFRW@?28@qWuK3BkA6i)rj7S9{Lmt8V%L8M`2QN}@HCT&AGmSD zF;o4WVSg-Utxr%5cZV5N4^`n(F^DI3sV2-ELIjTkrm4D{0~XeU7c zN5YvO{p=k}Y}|}^OB-<0zb^CWbWh-x&-LctCclPYh4+PxtBp%I6x&urr=PyryI>~$ z{(zPXyK>s$^l!henr$sU1P7g8^zP>ormU! zMMW78eT|Jf{>l2^Km`aRRM0~EKq@Tc2~Bfx3acdXgyk>8 z{xh#4E=^MGUfylEI=%42F`dRVU0A2(=0(mFs?b#k_D@bghqq4GMqP>5fBfmWa=5_y z;O!ehE;9!S~cj2w4=3wGww2jf7 z808(09Jrvtp!2S^cCZRo#O3`Zs!+=$8-M)^cJ8jhuU~n1gAJ$m{IFQM{rVWR>elhc z*%P~r@zO@ayCy5%A)Q5@11wW6tQm#Wm-E;9ao5%4mn^-N{?Mw-d0E*v1dD<+W9k zxa4(LNpv!I)*ka}aw@O|R-W>GY2M*eUx!GvDpk-b+{5$pG^-@wzj#s5RA?0Gr^3aQChAM3C zwjkB08VZo`wDIISFELkc<$i_ax}YV7e5_o&j~t>E3VHgv4Bn&xaqL9 zw(crCJL6p7WXc@7?-sHS8J_x~Dd;@M<7uOGt`0Wq1Ggqm9jf%DKskb!F>X-^EzOO9=H#BSE#WPkVeoS%vh1Q11x9=1cC^bw1oI#=QA7dI=FPuH-YVL9BhG;`3 zzv*ov59Kt+w@8VFY2;(`8yqg93pLtq4`fnK@sS#|CwU#)T!PQYN9MIps+zeRsyb}# zv5>KC_2tg5>TmB}YR-g^8}7=yUr1Go&AkD{OdAk9nv{4i zh87Ur=nS3?0HD?k$pWE9f#Srm&*)I&>79&TYd(3R`sw{44{*auLdBgnymxA!6A;2OhxW2*QKWq>=Nx^b{l4n-%fN5zbo?P((e0J^=c~O$f5oFv(&^+ zr|gK5V;fuh@zMRpL*-8|7QKFY=56awNEj_NDt0T@iO6>9Foo-V_ckUCrnd$ zYLUTqQW~RCvOOn`)*SaQN)f(%ONf&l7jt`0ZfXEW-FJ^+A8pC$nP;QQw~mDvx-UJ) zX7_Sd-1N4)_hX;q&XQ!9(bY>~PWHgWIRA_&n)^gqVJ06>8+z${n88MFMV-ces4dWG zEeYezXG%HN7IAYZ(wsx2-FbXU?%V;>pUFRN-u;uVP;^GbP7vx{Uut5f@0~S@KhkwB zd(?&7m${AlZ2R!!VnUJW!FcKM&iYi+zF4}z?|*OYK>2;WJr9g{{5#5F|KAb1E`U%m zzNQnr!XBMuF4|vp!%(t4!~5x$BdB9RW2U3ov2r(LS@j~Ow!^HE2Tr}I{ z(~-I26XSs>_xP{zJQUWiWeqZ0NAj~+zixebD=(C{37%X2bq?`48EfTOZkz1sxT{W8 z1=X%=ynuAiEwR;)q;=*B)|!JV?PGD52GsJNCM(?4-P7ZogMz{|hYN2_1+S%_Pg~b1 z&JnqaENdw@Y-0@RL+2jdmNxl2)DN{jS+L*X`-cU6oJ_W~WqU>~=qD4{Ks!+-O3qiy zuTabKzUTE@riJJ%o6NdC1v8lew+4Zq8*Y#N;od`onu5ShO=O%0)%}BZRM12!T^Vuc z#N@iZmv-9xcC1j#Z|t7mm|Rt%^cewR`a+tJ(i3OEGJh5ei4TO=eajJbt_ z|1>{KE+850l@stZ-(xuUU{Cgk^Of}CT7Fr66(C!vTfsq%_-wYg(eAU%lYi2VX`9Z9<0v$V?< zb5Ujwjw7{4I4BBxmbU`Wv^8WD+?&v>9)1Y|qj~O#giR_h3=+#r&$6O}#zRJP2xzjocoq3~W_rwi&st??% zo`^bGrtLFG#F3Mh_Up%I7JlOnAVo zQ>8(aYw1x!%fjooAizZET8j=faKG9e%SMM9Z~gL8(_2Gw(KcTCMIpLS%cf9zSlgW!nDs{}VW8M0RMDhWs5ssz!NV<9c~PwGICb=rmcHT?fd-Idy;&N6#Y z4EHc-6H9kCZJ5RKA!4y)u1s8VTs~inS6cqXDiAbay?OX3*$liCDY7P$zBBr_2{cZk zlwV$8!T!I}S5{d)~=vh%yML-+=V$OZq~Y^ zvn^0g!U40t?P~NPd!D}x&$1|wK32OD0_HlVX@Li}$PgIxA{j)WaDb;I zLA)`u*tl9TT4$<5+CG6%7q>|qFwVw7 z6si^nc9ovAfjY(t4@vwk4)sqYivurAU#Gq`d%6W9%G)Occc_T~Bi9yeiUkvRyIgu7AP) z*^?@M=m@=a8jL9pUJF4%q0MBLm0b$+K#bwv$*6XiKPxK)(rap}{)`6_19JnEJ0XDI zp*qOHfRT0Ej>kO{_S9vGeKjWh$IFj0nQ!fEE*7#(vP37tM6j)fjJp1)by~w0xlkzJ zT3p6%zqTO|GJFe=Fae%&Z0xr92X-6|@63Q0Lw^7p5Xb-j6 zpvr52IT=3hd3hP|fTMOf^k2Np~0#i?b5xP8F zv`B*PvRUl}JJ3l-ff^1X#$faIcM~WuPnIwQep53byS;}&&%sCNAUnqao=p(s)?K%s z?(WO)7CmOvQ!469U?6=<&6FLOMe^=I^b#|8frsl?8+&fARl-6bB1eGa&j$(^b?v~6 z;UGRh;#|Ze($A6q5AGNwxUxr(sf3Izhh}_u9{#rk6CCJ-pxPlvED|9AUGz49Hf{JC zE4MhXx#zFU?!f3o&)|ha>j2ihe<2QKh7V?l!GLpgL3mGsQ|z4=Q4Q@6CoPXkHtPqM zA4Qut{irbdGz!c#lY9w9GtYKOfC3L>Tm!_#p&C>Hv0Xy(FtGyEJP=W9bS=wsFlaYkJ< zm@zAyK$m~-L>3+hW7sdQw6Ih_03y^wd;J?D*B^0E0zvtQf*SjzWlIKVD*;!^M3@oXWSi{=FnQn6Qua;z#4UuJXvrW&Va! zj22NQ72xdQa$eZGWF;0|o&e4AdtTk zV+WjA#l(RiIvD<&c60`eq9k&Gx9c<-M1+cjLEd9#pAddzlY*>{HL46tj;DBc();)a zfWsjwfVeU66q6zGm%^aFv&ctD0n-4_Uu6zVV&U`jK1Q%ocI9kG+ynz?(9wAj531>H zq6VLxy{qNPj&vJ8JxQ*_#XfrVn{?UOfBiy+{KF zp#YOUmR^WB8rs;&%?%OeW~(BUC%p79&l?>)OH!&LPyDAY3?K%9`q0PAC@3)<4WASP zjG&7E>kuPp0|kC*>B9<@0Kz!H7SDWY`1$iPA)cw)EPNaAIZykxJ4P|DIG~X%j@s3V z;F8OWzT{$&XB@~W#{m0au~z`r_tE!fz_T;|4&F0P*xaeTJD(8#XXc-`rtSmm=(U#z z<(RW(UWAq_o{tPWSm9THceLQLoy`;95LII}u0*xxh|Qr=Ohe-ytLI9GUEchz`CB^H z2obXCN@C?_t3@fwu01E#@WZ2BJ{-R4Hre9SIgjyc{vDg2jiwg!eUTNoJiU9wN6zY$ zTd_{amMQsUx9j3f-_Eu(US^ILEw#w1#;{PGiPU;XVs?O~`9o))Q}B#F%S$$nroIs` z#>4syrQ*)tRzARS9{+m?e_7|n25fF$S!BQyF|UIi8kKT{Zk1GHsWZ$Ri1RNmUD3e* z@_8Z6aX@FWvGHRM|LwQULt{>AvB_H@OGhHI)?F@?N6SOuve;B2cWAi8n1fhja`P({ zc@1MzgDtPk61x=%UXHdJ_?yq?+3vI4$CVp*uD)2FNjbb|V(6|26mYWF+TS8ob-JfI z$?s#?z`9w5>Rp|-XyhyZXz{{1#x6Kmvu0g6XkA{|GE;2Tms-)_l)@dLMjVYNCGF@4 zvzW+=b_g{OH=3T=vRh%z6MPo(zTo}{{xGSIyIWqTyYl2-YDuS;x7Is!h!0KlR>3C~ zT~g@9%_RSgSf1#_9F%2>MU3yf_x(T=^CaOxieWy*sd{R&P7ty5g;e-9wl7W9%7GGC zS{4Z5XmGXS4*8+?!2QNS`0GIrZZj1pcOg->z)}2<&MLSX%mZKisQ>O!|DLtfX<16a z3Xn5wY<`H`=W#990zAg5lTY2llT`u=XzM?afxGkN7<)R%_H`3J^Yx93e#$U^kjuGq zxRrC;MFCnlzqve-cCbKdHv3w4Mz`ddoq>NK?3Vi_{=1@`xGXolypJaqwxJ5{os8>lQ)GWrz7hLJe8I)`VRux!$k<6zX zF_k(w3?B#GzOj)0&#C@h`vyF#9Q7a1$KSvW3Kc`N=o3JAdVvmQ`c)(XjR@e{9ev)8 z7np!5rfsaivreYS^m8kNEAw;%d!ucoQ{AM-jtZk0>$Pq0^QqH?HwLQCS!yI~{g~3# zoiDN}5|Y_K;CogyZOc6Zcz)?dp^UZW*LQpTjviUH zoI)2D;j=%AenwOdp^IjIqqFP`vl%@GA5_c@%T7Vw+3CNeIfy;(dhP?Ft1VEyU$d2V z`R=+#;GNdyjUoP?X8yaLS1YBY4w@GY=Dmn1sg`HAZXdw7!&Jm*JLk?1X&KRqPe|2` zutk1D^OAU<&1eMl7!U_^7vBWDk2awd9g#^wZ#%i}oEKH(JtR+CeT^>A;7VoLZr9k> zmh68en&5RRoTgOtB1L-Z)pIU`sK-4S9oN>@-n7a5?JRg686rieFgucN_#&*3LcEn6 zbRdJ<(dx8?ijNxV!M+cDABtjanI7CA+;GToT6zz;go`)1VF!L%q(7EFWmDl}am2U0 z`8<-fny|V>^ zO%3lg-tVn+=?**b&Wp_~G*-RtAcT0$k#+Y-%C3CLS=E}!Je?YlpCl$H_V@pTw^$hY&}b{ysE>Z(arYD-@u&YvQ;2zvdwWo^6W9UAg7ukt9^ z2I%=j2+qG4R@Y2@ec;P|b+NU^0(S{lkL)6!b2c3B)%5{&V2;S_?F(u%FfT7dq5h@o zuE`Eo@_#F&zgfW{{_i)So{F(*6%p#vB!lcqKu9nuN@pAs{O{Iwoe2MwI9S(z`hx}K%z_S~ zJ>b7$pklSGz4r57x1c=FT_7d3LNq@)I<__iet623W-p!F}6wo2Zz8f zS;M8T*ZE5${VQSH==jzv(Rvx+3prT3;H!Qu|+)$}4SPh$*`BKT0NueH_uCqnrl513yax11pxcIB@F{Jbq5U7#|Ru9%h8W z2b||$2=v_m>WN@X_-}sjUwVKSoX!E$GDeur3;O@9V5Y~wL*anH2{6DxkAXXgfE)%4 afd8z5u|5U#zJmerzjg7^Q^AYT`u_o5(5;yO diff --git a/library/tinymce/examples/media/sample.swf b/library/tinymce/examples/media/sample.swf deleted file mode 100644 index 9f5fc4ac55e8b4fbdeb0f1deee0842885a09291e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6118 zcmV$HN@WY#B2&q}WLK1m zl&ys9LJ>nKQCSArlRc#DBzsx1WKHh${hjyy-N(I;d;hxrn8$O@%;$V&;mpfMU3pra^~cc+B&Temmd4X2v!)Fjkg{ zNQS2tIY%${#5M#t8(-(e!gZJ!ws#u_@dXJE2QFVFXo^}AVtFT&`=-(zn=IlQj7%vT z6_sh9wB(M)ew`iXw$bj4Fit+R5GDI#ys_&+fa-imZLN;xQt0OeFU9d&^#^BL^@DPH zwsKnYMClUyCBEv(lXiynX@&MYlsc+*|C!lJR)gG9k5@;xyDZN}RU$(<=lF7%VQ=-X zBc0NwrWH3E|1eHONH?nq`p*Zmo9);59hdX^>xSn?rRtWA+)=&Lu|HC0ir?XGsI`m~ z|8x>7iCvAq#frP=^vjk1!su0w^zHkn0!Pla(!Ly%yIC!}=X3Y*B2$egFVp~ zu^eM?vt~Xv+J}-E(P%BY|9ow)>R~jcxQN%0$*?1!tn#_Vqbu^H8Qq#Y;WG z4`;NUS3UjQT((OKxTrVgkY*}ADRlh^3JLBBO0y9(rGFf=6nM>Ktm{>Of{LcTPNAGs zShw?*9D>=PA`{)jTd3kE#^U*_3BSf*V*?Mo@ptWg(j5n_Z7OcYC zVwQ$9Zt9)9=@fCMNHgU2rq(nj@=$52+m-z^vYPbWh7Th@-C#)$&d?;w??1mskLxB| z|B!-+)%>KqnSzcQMOpKg;U$ixo}tSA<@I>8ERJn^=Q`_%(Sj1kS7SpK&eCkZFn-uy zDoscMZxoBOzQt^IlxC}~(bZF*t|y*6FzEDMb0CAqnlSfc!ud^({CV>Oy#tZuXA08S z9FFuo|HD(zuf0QTFkg6vVwl$UVJRiP+vonLzzOe0ZPL}5g9CNvcj+njhyS#iDiiqf zq5oLgH$|Lg{JM;L)pdv6BB^yH>M@kMp2mfs09TyDFW+3r)uWDs>#N=ODCYVs;-(z~ zz6(hzdq)}x=g$Q}1sSYE5-E9e<|mI^ zCeuwY1qs)_&uh*9l15rFn~avIy;LC3wIj )q%)TeOOYy=ZS$iZGu09N~^`TXWJo zd*TQ-?(H{V;J7%&B?{o3iMC@*2m;Yj>l(L(v z&6hJQ4MMn@N7!f}HpUwtdtEilOZY?WCy!5adY2te%;85w?`03A?Ad0P5x2Yf(4J&s zuZi<3}D_(!P0BktN>#gQa$izxs8CmCR%EE4o@O4(|_}^hRGh zNEs%W8Eevbz8ln>$g#WYChzThx_0)ksBvgouKn1zD-IhW2Lq}UKTO%}(YDz&)tE$a zTJRF$8OZoDWI4HQz_`5iLYP3~U$9_!?(%;v z*#BJoUAF&qL0ypl{lg~ig9SZ(b}OWV@rIG`RHzU2MAVTdL5m6`z6sNm{A1YPrJa^~ zTI$lSKs|!?pVMMewDs7(W}+_bcYG{viLJX9YOAdANONpZnwrNHN9Rwk`Yx>DEfs{N zlgiAdWp@6Zh@N^pb)sdazfZ^++g!gfM+~H+enMbU1@^7EYFH$k!l-}6x_o5(#l8yErlm#Bri63`}a`RocQA7?-B(8>1LFiGsS= z*A>BPf&hJiYj<9TNU5!ldIGMs*hrmBloc_i)pZvYfebZ ze}xnM$s9CuI+Sdx|7e2!wqKQNBSt!t6?cbXg-L8KtTn)i6J=#pSFzkZVwI84J*a0N z7!T6$cIuPzQi!D=p;TzZ&h%{c-4ruKE9s#2hnKZ(uSJ<~L`DPCf$YN`+cZjXIm(pN^KIak|Jsd z(*@5xm!T6&3h$B=4bCR24>MP}ey*EtaXf!hnCYFoC2u2<9^b#wW^+QA?j)URvUaUP zR3m=$%$qnLiUxMYpg9WX=g^-WLpot*rGopZ#Rd`4eFiVSkO$QFoc+4S)Ue zWZ71dxTu3BQN0>3)i%)1z>$=b(oKjmp|3GNZC`0KeRkZ8oy;6+V|$IEEdI(n{epQ5 zvV{7@ms3A{W14)Q2=41+qd1w@og%sYHXQg~)G(T?^*UlQc(}mDEM9`^qKMOc*T}5w zD>V&w&AawJG8tjJT|`DJIy9z}FTRc$kE8F1Hr9Q5v|sO`@5`7Gsde(f&m!yDli}oJ z4yozfzUNA|1Vpkw#0$3XU9>&RBUP$*1xxSV{7YD%=&r^K#ouj7GM6pV4Do7jIZJg^ z^Za6rNL=}iUmETnzVUkO<>Gj_j!iy&jL{Y9prOWH3A^yotnXhnb~wxizOUrEb-qEJ z^!C*Vn?uMmy1JPFmr#dXx8+5adKE^0%XgtXU9MWc40Y~bV~#P(qFA1C9}>~Z-TXpL zvVKIN{#+6NWieX^w@Wo){`yw+OOXZM`6@;Q-p!+%BKK`E*3RN%4FO&lI+(lWg|o{9(^;?bfV9>_vHcd4{j4uCynciZ)2LfonCC&!WT1g^UX-Z z@#%xT&tenrn=g5nt~>~Ey>E7nQ&^^0rQz+#$x6zpTw9AW365D2CB`!i-a_Z4MpC9* zrVSaLJacZ9wiXtikSxCbUE@jO?`LOn7w%Hd-APi9nQAMw6d7U4a2oljMQSfS&#ulU zku*2S=6xXh^0-`qb)WH#9{#7;QZV@frw;>~R z4MR-l1SAYfiq^HZCdu& zWnyFKGE9iMxkIO(?r>h)lyO+^!{(&9sLeQmB=M+p5%mBm|B(UzH81ZWoZDt|_9XtVsJIDosza+ z>HEpoQ&768!D>l0+FE};{d()vhuc$=+utl0kTTNm5TiDRcck(4VP%7vLKx-iKzzXM zNgCg3-fS_h!lD_^-jbg$2!Yi9I38MZcGCSJG%Kl7c(ZScauQy!sKiTiZ?@}eNin=g zE+qpA!f|SUR`{rRubVEb*1KsVJikTZLpM%G;T{=#AZtVZ2 z(C^do;Fw~}t9??@)~EA!eea{oUJ?6pSI+2lxM|UM)~0B^7vtmN*WxY>6%p4XZ}IUZ zZf>rcx`_K+oa+?5B&j9Qol=z|lsFdB8F)zeG^+uY_x*irmtDJB!JkmsS$120UoH~$ zFZI=T{;uTutJLe}--y!9GFP&x1JPldWvP!~PX}qU(cw6UH)CA0y?LuKDS;AkM|fzJ z?G+z9Ap5%Ss%e&)jS7#u?pkMe;`8a8h{Uqy7uF};LW-n6tXyL2U!cEdJUdx@T`qE7 zUh(;o;q?3Jm^&40eM;9Job?M*6?a&NIB{qHOo6gv^n{7S3^fcoQ8Btcj#5ef4}~3HyQg#t@ubR6g7rYaFp0cg9O_`sy&AN(}oDaa={y$ieZ1<36EN*xrHIP*41Ze-d3rE7x1U zxlY2vzMcWP_582YW8ZO!pN_ViGs6Gj)Ftlb%V4&p8CIrmd=&nL=FX13Qb#qxa+(ju zhZ=W!Itf<@j&INYZMnuQC502HHCB?Y3{Yh+iVzxZrhk7k@=jWtLk@>?{~S)vq*iMR z+r-=0C~GLV?ARESRv>-C-Mzjj72SkMaP={$)w=_&&a_M7QRLW2Xyt z5vae>`9?mH{PCW_IBff&I|i<4iPe(gF}?46^Ya@PIZ`d~YGKdH%>A~6aUK>uQteX}2 z95aIhALkVH()VgL24g474sKtjTVhc@z&Sm=EOwSXvp3h}fNsBB=JmqFe&^&FMM;ls zC2scHg1l{~jh2Q#7tbF$U?>??O*!-hC+56UyTRut{cp+9s-?}L)t5-4ocbzQ6eGTS zMEtqIZGJjJW$&btb9uN=#9fX;=USY&>CXCw-~#uO8+j3-mRcJ9ql$a54JKAh(~1dIsv?dr6*{5IIMmP31()kDiSd>%kE6aR}jf1P2-fRayjoI)p!f zE_#GK281w11bZfgQ_Ki_n-JCkotqKfupoqNL9pG5pu&oAcN;=52Z9YJ z!int&yLKR~0NQsVG{O(S2UUb;Y6!Q~5sWktq%{$?obREgJ5_TK}r{a zMGs*dP^FLX!~o%jA%eji?H7gf!-cr5KwXjA=UxG%@IM%2|>gefz}0K z08s3T5bcKG;*Ows6=B~s1R4*7egMT2A@Vwc(+vc5F9e~R2)J7ay?}z-2;trcjy?!# zcMt@85jFtbcMs0<@$fWIadl&p_ zVH!|ZhL8#$^ga~`CY1<>s}R_#5hej2-Xo;cAl&|dU|fqJQ-`p%9^nU|rU45m9oS`a1x)vX9m+YoMiLNIJcIQSW1^B06MKxGHQlTL)|T?qQ!2$DSr%)JOB zfQmkZgnk5%0R-Kz2;zeXOy3ZO0cAr7kB1Sijv(laB8ZJ4FpML71H79+i2aV>{sTdK z5Y%E1+ZsA?7E7>ny^VIRxQ(1eyhe0YK3&gs4RX=OqM4ZmK0x6b zLd0(b$8`ktKL~;wM6}b&@PF>K{%^`jjA%1s4^UeX9Ab!&!etjW+Nf5tBAb#1Pc_#ri5Wh(f zzg`f(1`xjoAby#lc}DA%52Z z9T2~{5Wm3?zg7^x$`HQt#P1BC4&pZz;`cVhuQ9~0 zG{o-~h~IHQ6~u2M#IFa$uP(%|7{o6F#P1-W1mZUu;@1V@R|Dc#2;vum`0WPdLHve7 z{MteMszChihWK3pv_l1FL;MCo{F+1jDnk73g!r8UG(iQYL;U(e{E{Gkk3jsgLHtev zYM_FXAb!0dehnag4?z4fL;Q{a%AkTDL;Si!{Axq|ia`9*K>YRt3Za4{AbuSnepMlU z_d@)x13I9BbD@HRA%3kOew8792@t=FfEK9WET~{Vh+k8PUwMdM4v60wKpj+YDpc@o zh+kufUulTnEfBxsfGViqM5tg7h+kcZUonVZ28iE5KnYZEG*qw)#IFX#uMos92Jzbs z$b$+Fh4{6D_*H@U-3{@(0%(T{&V~vOg7`Iu_*I1X-3jqK2WWx{PKOHih4>{w{2qb$ zWrO&g1k^wUCqV^!LHrs({2qY#Wrp}20hB=nKZXi+hxpZo_!WWprGfbE2NXgDM?eKT zK>Vsg{O*PLT?ceP1?NHq2SWv0LHsI1{1PC37Xd9$!C6qjeo(=t5Wn&ezZ?+1Gk`j% z;8dvK+fc#A5Wmt8zgr-F#{pGP!HH189#Fx$5Wiv&zYGw+gMbpK;Ap5|7pPzjh+iRy zUku{68;}PT910a|2NkRW@w*%1cLmT66`Tzf90V0?4i&5j@w*e^cMi}56`T$g><$&I4HYZ`@k;~o+Ycy& z3XXsZc7O_2g$mva@w*P_fC|oq3J!(}wt@;)h6*M?{4N4opn|iYg8iU^O`(G2p@KOe zerEu6P{FBC!MCA;jiG|2p@O$S{Eh>vpn?;jf<2&ub)kaApn@47eg^?1P{Gkq!7fn2 s8c@MP)C$HkP~RL(ikhR0|K*EftpBZf|JSdB(NYilXKVLA0M`GW*v - - -Menu - - - -

                Examples

                -Full featured -Simple theme -Skin support -Word processor -Custom formats -Accessibility Options - - diff --git a/library/tinymce/examples/simple.html b/library/tinymce/examples/simple.html deleted file mode 100644 index 70720caa1..000000000 --- a/library/tinymce/examples/simple.html +++ /dev/null @@ -1,47 +0,0 @@ - - - -Simple theme example - - - - - - - - - -
                -

                Simple theme example

                - -

                - This page shows you the simple theme and it's core functionality you can extend it by changing the code use the advanced theme if you need to configure/add more buttons etc. - There are more examples on how to use TinyMCE in the Wiki. -

                - - - - -
                - - -
                - - - diff --git a/library/tinymce/examples/skins.html b/library/tinymce/examples/skins.html deleted file mode 100644 index c15085885..000000000 --- a/library/tinymce/examples/skins.html +++ /dev/null @@ -1,216 +0,0 @@ - - - -Skin support example - - - - - - - - - -
                -

                Skin support example

                - -

                - This page displays the two skins that TinyMCE comes with. You can make your own by creating a CSS file in themes/advanced/skins//ui.css - There are more examples on how to use TinyMCE in the Wiki. -

                - - - - -
                - - - -
                - - - -
                - - - -
                - - -
                - - - diff --git a/library/tinymce/examples/templates/layout1.htm b/library/tinymce/examples/templates/layout1.htm deleted file mode 100644 index a38df3e68..000000000 --- a/library/tinymce/examples/templates/layout1.htm +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - -
                Column 1Column 2
                Username: {$username}Staffid: {$staffid}
                diff --git a/library/tinymce/examples/templates/snippet1.htm b/library/tinymce/examples/templates/snippet1.htm deleted file mode 100644 index b2520beaf..000000000 --- a/library/tinymce/examples/templates/snippet1.htm +++ /dev/null @@ -1 +0,0 @@ -This is just some code. diff --git a/library/tinymce/examples/word.html b/library/tinymce/examples/word.html deleted file mode 100644 index d827b6fed..000000000 --- a/library/tinymce/examples/word.html +++ /dev/null @@ -1,72 +0,0 @@ - - - -Word processor example - - - - - - - - - -
                -

                Word processor example

                - -

                - This page shows you how to configure TinyMCE to work more like common word processors. - There are more examples on how to use TinyMCE in the Wiki. -

                - - - - -
                - - -
                - - - diff --git a/library/tinymce/jscripts/tiny_mce/langs/en.js b/library/tinymce/jscripts/tiny_mce/langs/en.js deleted file mode 100644 index 19324f74c..000000000 --- a/library/tinymce/jscripts/tiny_mce/langs/en.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n({en:{common:{"more_colors":"More Colors...","invalid_data":"Error: Invalid values entered, these are marked in red.","popup_blocked":"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.","clipboard_no_support":"Currently not supported by your browser, use keyboard shortcuts instead.","clipboard_msg":"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?","not_set":"-- Not Set --","class_name":"Class",browse:"Browse",close:"Close",cancel:"Cancel",update:"Update",insert:"Insert",apply:"Apply","edit_confirm":"Do you want to use the WYSIWYG mode for this textarea?","invalid_data_number":"{#field} must be a number","invalid_data_min":"{#field} must be a number greater than {#min}","invalid_data_size":"{#field} must be a number or percentage",value:"(value)"},contextmenu:{full:"Full",right:"Right",center:"Center",left:"Left",align:"Alignment"},insertdatetime:{"day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","inserttime_desc":"Insert Time","insertdate_desc":"Insert Date","time_fmt":"%H:%M:%S","date_fmt":"%Y-%m-%d"},print:{"print_desc":"Print"},preview:{"preview_desc":"Preview"},directionality:{"rtl_desc":"Direction Right to Left","ltr_desc":"Direction Left to Right"},layer:{content:"New layer...","absolute_desc":"Toggle Absolute Positioning","backward_desc":"Move Backward","forward_desc":"Move Forward","insertlayer_desc":"Insert New Layer"},save:{"save_desc":"Save","cancel_desc":"Cancel All Changes"},nonbreaking:{"nonbreaking_desc":"Insert Non-Breaking Space Character"},iespell:{download:"ieSpell not detected. Do you want to install it now?","iespell_desc":"Check Spelling"},advhr:{"delta_height":"","delta_width":"","advhr_desc":"Insert Horizontal Line"},emotions:{"delta_height":"","delta_width":"","emotions_desc":"Emotions"},searchreplace:{"replace_desc":"Find/Replace","delta_width":"","delta_height":"","search_desc":"Find"},advimage:{"delta_width":"","image_desc":"Insert/Edit Image","delta_height":""},advlink:{"delta_height":"","delta_width":"","link_desc":"Insert/Edit Link"},xhtmlxtras:{"attribs_delta_height":"","attribs_delta_width":"","ins_delta_height":"","ins_delta_width":"","del_delta_height":"","del_delta_width":"","acronym_delta_height":"","acronym_delta_width":"","abbr_delta_height":"","abbr_delta_width":"","cite_delta_height":"","cite_delta_width":"","attribs_desc":"Insert/Edit Attributes","ins_desc":"Insertion","del_desc":"Deletion","acronym_desc":"Acronym","abbr_desc":"Abbreviation","cite_desc":"Citation"},style:{"delta_height":"","delta_width":"",desc:"Edit CSS Style"},paste:{"plaintext_mode_stick":"Paste is now in plain text mode. Click again to toggle back to regular paste mode.","plaintext_mode":"Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.","selectall_desc":"Select All","paste_word_desc":"Paste from Word","paste_text_desc":"Paste as Plain Text"},"paste_dlg":{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."},table:{"merge_cells_delta_height":"","merge_cells_delta_width":"","table_delta_height":"","table_delta_width":"","cellprops_delta_height":"","cellprops_delta_width":"","rowprops_delta_height":"","rowprops_delta_width":"",cell:"Cell",col:"Column",row:"Row",del:"Delete Table","copy_row_desc":"Copy Table Row","cut_row_desc":"Cut Table Row","paste_row_after_desc":"Paste Table Row After","paste_row_before_desc":"Paste Table Row Before","props_desc":"Table Properties","cell_desc":"Table Cell Properties","row_desc":"Table Row Properties","merge_cells_desc":"Merge Table Cells","split_cells_desc":"Split Merged Table Cells","delete_col_desc":"Delete Column","col_after_desc":"Insert Column After","col_before_desc":"Insert Column Before","delete_row_desc":"Delete Row","row_after_desc":"Insert Row After","row_before_desc":"Insert Row Before",desc:"Insert/Edit Table"},autosave:{"warning_message":"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?","restore_content":"Restore auto-saved content.","unload_msg":"The changes you made will be lost if you navigate away from this page."},fullscreen:{desc:"Toggle Full Screen Mode"},media:{"delta_height":"","delta_width":"",edit:"Edit Embedded Media",desc:"Insert/Edit Embedded Media"},fullpage:{desc:"Document Properties","delta_width":"","delta_height":""},template:{desc:"Insert Predefined Template Content"},visualchars:{desc:"Show/Hide Visual Control Characters"},spellchecker:{desc:"Toggle Spell Checker",menu:"Spell Checker Settings","ignore_word":"Ignore Word","ignore_words":"Ignore All",langs:"Languages",wait:"Please wait...",sug:"Suggestions","no_sug":"No Suggestions","no_mpell":"No misspellings found.","learn_word":"Learn word"},pagebreak:{desc:"Insert Page Break for Printing"},advlist:{types:"Types",def:"Default","lower_alpha":"Lower Alpha","lower_greek":"Lower Greek","lower_roman":"Lower Roman","upper_alpha":"Upper Alpha","upper_roman":"Upper Roman",circle:"Circle",disc:"Disc",square:"Square"},colors:{"333300":"Dark olive","993300":"Burnt orange","000000":"Black","003300":"Dark green","003366":"Dark azure","000080":"Navy Blue","333399":"Indigo","333333":"Very dark gray","800000":"Maroon",FF6600:"Orange","808000":"Olive","008000":"Green","008080":"Teal","0000FF":"Blue","666699":"Grayish blue","808080":"Gray",FF0000:"Red",FF9900:"Amber","99CC00":"Yellow green","339966":"Sea green","33CCCC":"Turquoise","3366FF":"Royal blue","800080":"Purple","999999":"Medium gray",FF00FF:"Magenta",FFCC00:"Gold",FFFF00:"Yellow","00FF00":"Lime","00FFFF":"Aqua","00CCFF":"Sky blue","993366":"Brown",C0C0C0:"Silver",FF99CC:"Pink",FFCC99:"Peach",FFFF99:"Light yellow",CCFFCC:"Pale green",CCFFFF:"Pale cyan","99CCFF":"Light sky blue",CC99FF:"Plum",FFFFFF:"White"},aria:{"rich_text_area":"Rich Text Area"},wordcount:{words:"Words:"},visualblocks:{desc:'Show/hide block elements'}}}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/license.txt b/library/tinymce/jscripts/tiny_mce/license.txt deleted file mode 100644 index 60d6d4c8f..000000000 --- a/library/tinymce/jscripts/tiny_mce/license.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library 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; either - version 2.1 of the License, or (at your option) any later version. - - This library 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. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css b/library/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css deleted file mode 100644 index 0e2283498..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css +++ /dev/null @@ -1,5 +0,0 @@ -input.radio {border:1px none #000; background:transparent; vertical-align:middle;} -.panel_wrapper div.current {height:80px;} -#width {width:50px; vertical-align:middle;} -#width2 {width:50px; vertical-align:middle;} -#size {width:100px;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js deleted file mode 100644 index 4d3b062de..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js deleted file mode 100644 index 0c652d330..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js +++ /dev/null @@ -1,57 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.AdvancedHRPlugin', { - init : function(ed, url) { - // Register commands - ed.addCommand('mceAdvancedHr', function() { - ed.windowManager.open({ - file : url + '/rule.htm', - width : 250 + parseInt(ed.getLang('advhr.delta_width', 0)), - height : 160 + parseInt(ed.getLang('advhr.delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - // Register buttons - ed.addButton('advhr', { - title : 'advhr.advhr_desc', - cmd : 'mceAdvancedHr' - }); - - ed.onNodeChange.add(function(ed, cm, n) { - cm.setActive('advhr', n.nodeName == 'HR'); - }); - - ed.onClick.add(function(ed, e) { - e = e.target; - - if (e.nodeName === 'HR') - ed.selection.select(e); - }); - }, - - getInfo : function() { - return { - longname : 'Advanced HR', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('advhr', tinymce.plugins.AdvancedHRPlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js b/library/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js deleted file mode 100644 index b6cbd66c7..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js +++ /dev/null @@ -1,43 +0,0 @@ -var AdvHRDialog = { - init : function(ed) { - var dom = ed.dom, f = document.forms[0], n = ed.selection.getNode(), w; - - w = dom.getAttrib(n, 'width'); - f.width.value = w ? parseInt(w) : (dom.getStyle('width') || ''); - f.size.value = dom.getAttrib(n, 'size') || parseInt(dom.getStyle('height')) || ''; - f.noshade.checked = !!dom.getAttrib(n, 'noshade') || !!dom.getStyle('border-width'); - selectByValue(f, 'width2', w.indexOf('%') != -1 ? '%' : 'px'); - }, - - update : function() { - var ed = tinyMCEPopup.editor, h, f = document.forms[0], st = ''; - - h = ' - - - {#advhr.advhr_desc} - - - - - - - -
                - - -
                -
                - - - - - - - - - - - - - -
                - - - -
                -
                -
                - -
                - - -
                -
                - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css b/library/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css deleted file mode 100644 index 0a6251a69..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css +++ /dev/null @@ -1,13 +0,0 @@ -#src_list, #over_list, #out_list {width:280px;} -.mceActionPanel {margin-top:7px;} -.alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;} -.checkbox {border:0;} -.panel_wrapper div.current {height:305px;} -#prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;} -#align, #classlist {width:150px;} -#width, #height {vertical-align:middle; width:50px; text-align:center;} -#vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;} -#class_list {width:180px;} -input {width: 280px;} -#constrain, #onmousemovecheck {width:auto;} -#id, #dir, #lang, #usemap, #longdesc {width:200px;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js deleted file mode 100644 index d613a6139..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.AdvancedImagePlugin",{init:function(a,b){a.addCommand("mceAdvImage",function(){if(a.dom.getAttrib(a.selection.getNode(),"class","").indexOf("mceItem")!=-1){return}a.windowManager.open({file:b+"/image.htm",width:480+parseInt(a.getLang("advimage.delta_width",0)),height:385+parseInt(a.getLang("advimage.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("image",{title:"advimage.image_desc",cmd:"mceAdvImage"})},getInfo:function(){return{longname:"Advanced image",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advimage",tinymce.plugins.AdvancedImagePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js deleted file mode 100644 index d2678cbcf..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js +++ /dev/null @@ -1,50 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.AdvancedImagePlugin', { - init : function(ed, url) { - // Register commands - ed.addCommand('mceAdvImage', function() { - // Internal image object like a flash placeholder - if (ed.dom.getAttrib(ed.selection.getNode(), 'class', '').indexOf('mceItem') != -1) - return; - - ed.windowManager.open({ - file : url + '/image.htm', - width : 480 + parseInt(ed.getLang('advimage.delta_width', 0)), - height : 385 + parseInt(ed.getLang('advimage.delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - // Register buttons - ed.addButton('image', { - title : 'advimage.image_desc', - cmd : 'mceAdvImage' - }); - }, - - getInfo : function() { - return { - longname : 'Advanced image', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('advimage', tinymce.plugins.AdvancedImagePlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm b/library/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm deleted file mode 100644 index ed16b3d4a..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm +++ /dev/null @@ -1,235 +0,0 @@ - - - - {#advimage_dlg.dialog_title} - - - - - - - - - - -
                - - -
                -
                -
                - {#advimage_dlg.general} - - - - - - - - - - - - - - - - - - - -
                - -
                - {#advimage_dlg.preview} - -
                -
                - -
                -
                - {#advimage_dlg.tab_appearance} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                - -
                - {#advimage_dlg.example_img} - Lorem ipsum, Dolor sit amet, consectetuer adipiscing loreum ipsum edipiscing elit, sed diam - nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Loreum ipsum - edipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam - erat volutpat. -
                -
                - - x - - px -
                  - - - - -
                -
                -
                -
                - -
                -
                - {#advimage_dlg.swap_image} - - - - - - - - - - - - - - - - - - - - - -
                - - - - -
                 
                - - - - -
                 
                -
                - -
                - {#advimage_dlg.misc} - - - - - - - - - - - - - - - - - - - - - - - - - - -
                - -
                - -
                - -
                - - - - -
                 
                -
                -
                -
                - -
                - - -
                -
                - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif b/library/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif deleted file mode 100644 index 53bf6890b507741c10910c9e2217ad8247b98e8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1624 zcmV-e2B-N)Nk%w1VJ!eH0OkMy|NsB}{r&v>{Q3F$`1ttq^YifV@ayaA>FMd_=H}w! z;^5%m-rnBb-QC>W+}qpR+S=OL+1c3G*w@$B*4Eb4)YQ|{)zHw=&d$%x&CScp%gV~i z$;rvc$jHXV#>B+L!^6YE!otD9!N9=4zrVk|y}i7=yt})*y1Kf#xw*Hux3;#nwY9ah zw6wFcv$C?Xv9YnRu&}SMudc4Ht*x!BtgNf6tE#H1si~={sjjD|r>3T+rKP2$q@<&x zqobp!qN1Xqp`oFnrJ$goprE6lpP!zdp`MSWoSd7Ro12@UnwpxLnw^=MnV6WE zmzS58mX?*3mz9;3mX?*2l$4W`lai8@l9G~eg|M^H&l zLpBo?51@vfgB2q_TVh*dNP<;cR$Wg!vYsMHR!qvvOis>GNH`+ zJ3B|tqgANiBSy@x>Q#;x7+DuU7&rwlf#S04)VZvA$XoUy8Y&f7)SqP<}Lw@L# zA(@Cohl`6CZyedUu^BlmK|DG5$Kl2f8z@uCc)^k-3m7$G!njf7$;XhOW>^`rV#UFh zEN#eG;bP?tCs>{+)q)ceg9$aDAaTZ{MGK5rU8ty$qz8){MT#gHGX{#XEJHLonBXFa zj+#9GE&^pq!`qG`K5iiC!gq}sRY|1yD8?j++_^oR0g+)NNtZN`)08!0q=}AA4HhIo zFaa9NYu8%97=oos5f?O`lwre~4VfoIei+FyK|urxj@C(-q(sS(!$5uL3j&jg7&XY% zlr17;3GGL;2K8>CB87G97;W(2VZ((D+3Hz;L;bylfhf(kFNV8at)h;hdM z85WX(#*Hq@@BYePt3t_l{ zCL3|YVWydA0Fz{rTl65n00)c^)^-jJn1c zRVXtA6mkUMEDLU|v7{JK&_IJ2ciiCy7BOT1fdUBh8b=yrbYaCAchCU_7?H`b1`}4q zLB|_mI2!;7W4QCq6F1O+MW||6AwmKafUrReUA&QotxQZI8D$G)AuSVV@X<&A9v;~H zKnWjo&;bljq=29aCeV-t5GBYkL=Q}q(S~FLd2t39MyRmC%_GFHkPc7CfIt8P*emqV z0YK2j9A+kmW^!tn(ZmG+L=6DZR99W}8p9?Utr=#t@rE2=zxf3QQ(JBJ&<{Z2>8EUP zeX1B)2w_3gXV)D-0Tt+=#@cV-0f!PU#MglZ3m6b}0e08zK^x;9(u?Tga{%?&nNTXhcEuM_#J>yL>p*a zuZJ2pliCGSp!Ye8>YFq@)ZOW-uT~OrjFQK!)UyVGFt7ni'); - }, - - init : function(ed) { - var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, dom = ed.dom, n = ed.selection.getNode(), fl = tinyMCEPopup.getParam('external_image_list', 'tinyMCEImageList'); - - tinyMCEPopup.resizeToInnerSize(); - this.fillClassList('class_list'); - this.fillFileList('src_list', fl); - this.fillFileList('over_list', fl); - this.fillFileList('out_list', fl); - TinyMCE_EditableSelects.init(); - - if (n.nodeName == 'IMG') { - nl.src.value = dom.getAttrib(n, 'src'); - nl.width.value = dom.getAttrib(n, 'width'); - nl.height.value = dom.getAttrib(n, 'height'); - nl.alt.value = dom.getAttrib(n, 'alt'); - nl.title.value = dom.getAttrib(n, 'title'); - nl.vspace.value = this.getAttrib(n, 'vspace'); - nl.hspace.value = this.getAttrib(n, 'hspace'); - nl.border.value = this.getAttrib(n, 'border'); - selectByValue(f, 'align', this.getAttrib(n, 'align')); - selectByValue(f, 'class_list', dom.getAttrib(n, 'class'), true, true); - nl.style.value = dom.getAttrib(n, 'style'); - nl.id.value = dom.getAttrib(n, 'id'); - nl.dir.value = dom.getAttrib(n, 'dir'); - nl.lang.value = dom.getAttrib(n, 'lang'); - nl.usemap.value = dom.getAttrib(n, 'usemap'); - nl.longdesc.value = dom.getAttrib(n, 'longdesc'); - nl.insert.value = ed.getLang('update'); - - if (/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/.test(dom.getAttrib(n, 'onmouseover'))) - nl.onmouseoversrc.value = dom.getAttrib(n, 'onmouseover').replace(/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/, '$1'); - - if (/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/.test(dom.getAttrib(n, 'onmouseout'))) - nl.onmouseoutsrc.value = dom.getAttrib(n, 'onmouseout').replace(/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/, '$1'); - - if (ed.settings.inline_styles) { - // Move attribs to styles - if (dom.getAttrib(n, 'align')) - this.updateStyle('align'); - - if (dom.getAttrib(n, 'hspace')) - this.updateStyle('hspace'); - - if (dom.getAttrib(n, 'border')) - this.updateStyle('border'); - - if (dom.getAttrib(n, 'vspace')) - this.updateStyle('vspace'); - } - } - - // Setup browse button - document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image'); - if (isVisible('srcbrowser')) - document.getElementById('src').style.width = '260px'; - - // Setup browse button - document.getElementById('onmouseoversrccontainer').innerHTML = getBrowserHTML('overbrowser','onmouseoversrc','image','theme_advanced_image'); - if (isVisible('overbrowser')) - document.getElementById('onmouseoversrc').style.width = '260px'; - - // Setup browse button - document.getElementById('onmouseoutsrccontainer').innerHTML = getBrowserHTML('outbrowser','onmouseoutsrc','image','theme_advanced_image'); - if (isVisible('outbrowser')) - document.getElementById('onmouseoutsrc').style.width = '260px'; - - // If option enabled default contrain proportions to checked - if (ed.getParam("advimage_constrain_proportions", true)) - f.constrain.checked = true; - - // Check swap image if valid data - if (nl.onmouseoversrc.value || nl.onmouseoutsrc.value) - this.setSwapImage(true); - else - this.setSwapImage(false); - - this.changeAppearance(); - this.showPreviewImage(nl.src.value, 1); - }, - - insert : function(file, title) { - var ed = tinyMCEPopup.editor, t = this, f = document.forms[0]; - - if (f.src.value === '') { - if (ed.selection.getNode().nodeName == 'IMG') { - ed.dom.remove(ed.selection.getNode()); - ed.execCommand('mceRepaint'); - } - - tinyMCEPopup.close(); - return; - } - - if (tinyMCEPopup.getParam("accessibility_warnings", 1)) { - if (!f.alt.value) { - tinyMCEPopup.confirm(tinyMCEPopup.getLang('advimage_dlg.missing_alt'), function(s) { - if (s) - t.insertAndClose(); - }); - - return; - } - } - - t.insertAndClose(); - }, - - insertAndClose : function() { - var ed = tinyMCEPopup.editor, f = document.forms[0], nl = f.elements, v, args = {}, el; - - tinyMCEPopup.restoreSelection(); - - // Fixes crash in Safari - if (tinymce.isWebKit) - ed.getWin().focus(); - - if (!ed.settings.inline_styles) { - args = { - vspace : nl.vspace.value, - hspace : nl.hspace.value, - border : nl.border.value, - align : getSelectValue(f, 'align') - }; - } else { - // Remove deprecated values - args = { - vspace : '', - hspace : '', - border : '', - align : '' - }; - } - - tinymce.extend(args, { - src : nl.src.value.replace(/ /g, '%20'), - width : nl.width.value, - height : nl.height.value, - alt : nl.alt.value, - title : nl.title.value, - 'class' : getSelectValue(f, 'class_list'), - style : nl.style.value, - id : nl.id.value, - dir : nl.dir.value, - lang : nl.lang.value, - usemap : nl.usemap.value, - longdesc : nl.longdesc.value - }); - - args.onmouseover = args.onmouseout = ''; - - if (f.onmousemovecheck.checked) { - if (nl.onmouseoversrc.value) - args.onmouseover = "this.src='" + nl.onmouseoversrc.value + "';"; - - if (nl.onmouseoutsrc.value) - args.onmouseout = "this.src='" + nl.onmouseoutsrc.value + "';"; - } - - el = ed.selection.getNode(); - - if (el && el.nodeName == 'IMG') { - ed.dom.setAttribs(el, args); - } else { - tinymce.each(args, function(value, name) { - if (value === "") { - delete args[name]; - } - }); - - ed.execCommand('mceInsertContent', false, tinyMCEPopup.editor.dom.createHTML('img', args), {skip_undo : 1}); - ed.undoManager.add(); - } - - tinyMCEPopup.editor.execCommand('mceRepaint'); - tinyMCEPopup.editor.focus(); - tinyMCEPopup.close(); - }, - - getAttrib : function(e, at) { - var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2; - - if (ed.settings.inline_styles) { - switch (at) { - case 'align': - if (v = dom.getStyle(e, 'float')) - return v; - - if (v = dom.getStyle(e, 'vertical-align')) - return v; - - break; - - case 'hspace': - v = dom.getStyle(e, 'margin-left') - v2 = dom.getStyle(e, 'margin-right'); - - if (v && v == v2) - return parseInt(v.replace(/[^0-9]/g, '')); - - break; - - case 'vspace': - v = dom.getStyle(e, 'margin-top') - v2 = dom.getStyle(e, 'margin-bottom'); - if (v && v == v2) - return parseInt(v.replace(/[^0-9]/g, '')); - - break; - - case 'border': - v = 0; - - tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) { - sv = dom.getStyle(e, 'border-' + sv + '-width'); - - // False or not the same as prev - if (!sv || (sv != v && v !== 0)) { - v = 0; - return false; - } - - if (sv) - v = sv; - }); - - if (v) - return parseInt(v.replace(/[^0-9]/g, '')); - - break; - } - } - - if (v = dom.getAttrib(e, at)) - return v; - - return ''; - }, - - setSwapImage : function(st) { - var f = document.forms[0]; - - f.onmousemovecheck.checked = st; - setBrowserDisabled('overbrowser', !st); - setBrowserDisabled('outbrowser', !st); - - if (f.over_list) - f.over_list.disabled = !st; - - if (f.out_list) - f.out_list.disabled = !st; - - f.onmouseoversrc.disabled = !st; - f.onmouseoutsrc.disabled = !st; - }, - - fillClassList : function(id) { - var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - - if (v = tinyMCEPopup.getParam('theme_advanced_styles')) { - cl = []; - - tinymce.each(v.split(';'), function(v) { - var p = v.split('='); - - cl.push({'title' : p[0], 'class' : p[1]}); - }); - } else - cl = tinyMCEPopup.editor.dom.getClasses(); - - if (cl.length > 0) { - lst.options.length = 0; - lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), ''); - - tinymce.each(cl, function(o) { - lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']); - }); - } else - dom.remove(dom.getParent(id, 'tr')); - }, - - fillFileList : function(id, l) { - var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - - l = typeof(l) === 'function' ? l() : window[l]; - lst.options.length = 0; - - if (l && l.length > 0) { - lst.options[lst.options.length] = new Option('', ''); - - tinymce.each(l, function(o) { - lst.options[lst.options.length] = new Option(o[0], o[1]); - }); - } else - dom.remove(dom.getParent(id, 'tr')); - }, - - resetImageData : function() { - var f = document.forms[0]; - - f.elements.width.value = f.elements.height.value = ''; - }, - - updateImageData : function(img, st) { - var f = document.forms[0]; - - if (!st) { - f.elements.width.value = img.width; - f.elements.height.value = img.height; - } - - this.preloadImg = img; - }, - - changeAppearance : function() { - var ed = tinyMCEPopup.editor, f = document.forms[0], img = document.getElementById('alignSampleImg'); - - if (img) { - if (ed.getParam('inline_styles')) { - ed.dom.setAttrib(img, 'style', f.style.value); - } else { - img.align = f.align.value; - img.border = f.border.value; - img.hspace = f.hspace.value; - img.vspace = f.vspace.value; - } - } - }, - - changeHeight : function() { - var f = document.forms[0], tp, t = this; - - if (!f.constrain.checked || !t.preloadImg) { - return; - } - - if (f.width.value == "" || f.height.value == "") - return; - - tp = (parseInt(f.width.value) / parseInt(t.preloadImg.width)) * t.preloadImg.height; - f.height.value = tp.toFixed(0); - }, - - changeWidth : function() { - var f = document.forms[0], tp, t = this; - - if (!f.constrain.checked || !t.preloadImg) { - return; - } - - if (f.width.value == "" || f.height.value == "") - return; - - tp = (parseInt(f.height.value) / parseInt(t.preloadImg.height)) * t.preloadImg.width; - f.width.value = tp.toFixed(0); - }, - - updateStyle : function(ty) { - var dom = tinyMCEPopup.dom, b, bStyle, bColor, v, isIE = tinymce.isIE, f = document.forms[0], img = dom.create('img', {style : dom.get('style').value}); - - if (tinyMCEPopup.editor.settings.inline_styles) { - // Handle align - if (ty == 'align') { - dom.setStyle(img, 'float', ''); - dom.setStyle(img, 'vertical-align', ''); - - v = getSelectValue(f, 'align'); - if (v) { - if (v == 'left' || v == 'right') - dom.setStyle(img, 'float', v); - else - img.style.verticalAlign = v; - } - } - - // Handle border - if (ty == 'border') { - b = img.style.border ? img.style.border.split(' ') : []; - bStyle = dom.getStyle(img, 'border-style'); - bColor = dom.getStyle(img, 'border-color'); - - dom.setStyle(img, 'border', ''); - - v = f.border.value; - if (v || v == '0') { - if (v == '0') - img.style.border = isIE ? '0' : '0 none none'; - else { - var isOldIE = tinymce.isIE && (!document.documentMode || document.documentMode < 9); - - if (b.length == 3 && b[isOldIE ? 2 : 1]) - bStyle = b[isOldIE ? 2 : 1]; - else if (!bStyle || bStyle == 'none') - bStyle = 'solid'; - if (b.length == 3 && b[isIE ? 0 : 2]) - bColor = b[isOldIE ? 0 : 2]; - else if (!bColor || bColor == 'none') - bColor = 'black'; - img.style.border = v + 'px ' + bStyle + ' ' + bColor; - } - } - } - - // Handle hspace - if (ty == 'hspace') { - dom.setStyle(img, 'marginLeft', ''); - dom.setStyle(img, 'marginRight', ''); - - v = f.hspace.value; - if (v) { - img.style.marginLeft = v + 'px'; - img.style.marginRight = v + 'px'; - } - } - - // Handle vspace - if (ty == 'vspace') { - dom.setStyle(img, 'marginTop', ''); - dom.setStyle(img, 'marginBottom', ''); - - v = f.vspace.value; - if (v) { - img.style.marginTop = v + 'px'; - img.style.marginBottom = v + 'px'; - } - } - - // Merge - dom.get('style').value = dom.serializeStyle(dom.parseStyle(img.style.cssText), 'img'); - } - }, - - changeMouseMove : function() { - }, - - showPreviewImage : function(u, st) { - if (!u) { - tinyMCEPopup.dom.setHTML('prev', ''); - return; - } - - if (!st && tinyMCEPopup.getParam("advimage_update_dimensions_onchange", true)) - this.resetImageData(); - - u = tinyMCEPopup.editor.documentBaseURI.toAbsolute(u); - - if (!st) - tinyMCEPopup.dom.setHTML('prev', ''); - else - tinyMCEPopup.dom.setHTML('prev', ''); - } -}; - -ImageDialog.preInit(); -tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js deleted file mode 100644 index 5f122e2cd..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.advimage_dlg',{"image_list":"Image List","align_right":"Right","align_left":"Left","align_textbottom":"Text Bottom","align_texttop":"Text Top","align_bottom":"Bottom","align_middle":"Middle","align_top":"Top","align_baseline":"Baseline",align:"Alignment",hspace:"Horizontal Space",vspace:"Vertical Space",dimensions:"Dimensions",border:"Border",list:"Image List",alt:"Image Description",src:"Image URL","dialog_title":"Insert/Edit Image","missing_alt":"Are you sure you want to continue without including an Image Description? Without it the image may not be accessible to some users with disabilities, or to those using a text browser, or browsing the Web with images turned off.","example_img":"Appearance Preview Image",misc:"Miscellaneous",mouseout:"For Mouse Out",mouseover:"For Mouse Over","alt_image":"Alternative Image","swap_image":"Swap Image",map:"Image Map",id:"ID",rtl:"Right to Left",ltr:"Left to Right",classes:"Classes",style:"Style","long_desc":"Long Description Link",langcode:"Language Code",langdir:"Language Direction","constrain_proportions":"Constrain Proportions",preview:"Preview",title:"Title",general:"General","tab_advanced":"Advanced","tab_appearance":"Appearance","tab_general":"General",width:"Width",height:"Height"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css b/library/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css deleted file mode 100644 index 14364316a..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css +++ /dev/null @@ -1,8 +0,0 @@ -.mceLinkList, .mceAnchorList, #targetlist {width:280px;} -.mceActionPanel {margin-top:7px;} -.panel_wrapper div.current {height:320px;} -#classlist, #title, #href {width:280px;} -#popupurl, #popupname {width:200px;} -#popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} -#id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} -#events_panel input {width:200px;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js deleted file mode 100644 index 983fe5a9c..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.AdvancedLinkPlugin",{init:function(a,b){this.editor=a;a.addCommand("mceAdvLink",function(){var c=a.selection;if(c.isCollapsed()&&!a.dom.getParent(c.getNode(),"A")){return}a.windowManager.open({file:b+"/link.htm",width:480+parseInt(a.getLang("advlink.delta_width",0)),height:400+parseInt(a.getLang("advlink.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("link",{title:"advlink.link_desc",cmd:"mceAdvLink"});a.addShortcut("ctrl+k","advlink.advlink_desc","mceAdvLink");a.onNodeChange.add(function(d,c,f,e){c.setDisabled("link",e&&f.nodeName!="A");c.setActive("link",f.nodeName=="A"&&!f.name)})},getInfo:function(){return{longname:"Advanced link",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlink",tinymce.plugins.AdvancedLinkPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js deleted file mode 100644 index 14e46a762..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js +++ /dev/null @@ -1,61 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.AdvancedLinkPlugin', { - init : function(ed, url) { - this.editor = ed; - - // Register commands - ed.addCommand('mceAdvLink', function() { - var se = ed.selection; - - // No selection and not in link - if (se.isCollapsed() && !ed.dom.getParent(se.getNode(), 'A')) - return; - - ed.windowManager.open({ - file : url + '/link.htm', - width : 480 + parseInt(ed.getLang('advlink.delta_width', 0)), - height : 400 + parseInt(ed.getLang('advlink.delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - // Register buttons - ed.addButton('link', { - title : 'advlink.link_desc', - cmd : 'mceAdvLink' - }); - - ed.addShortcut('ctrl+k', 'advlink.advlink_desc', 'mceAdvLink'); - - ed.onNodeChange.add(function(ed, cm, n, co) { - cm.setDisabled('link', co && n.nodeName != 'A'); - cm.setActive('link', n.nodeName == 'A' && !n.name); - }); - }, - - getInfo : function() { - return { - longname : 'Advanced link', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('advlink', tinymce.plugins.AdvancedLinkPlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js b/library/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js deleted file mode 100644 index f013aac1e..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js +++ /dev/null @@ -1,543 +0,0 @@ -/* Functions for the advlink plugin popup */ - -tinyMCEPopup.requireLangPack(); - -var templates = { - "window.open" : "window.open('${url}','${target}','${options}')" -}; - -function preinit() { - var url; - - if (url = tinyMCEPopup.getParam("external_link_list_url")) - document.write(''); -} - -function changeClass() { - var f = document.forms[0]; - - f.classes.value = getSelectValue(f, 'classlist'); -} - -function init() { - tinyMCEPopup.resizeToInnerSize(); - - var formObj = document.forms[0]; - var inst = tinyMCEPopup.editor; - var elm = inst.selection.getNode(); - var action = "insert"; - var html; - - document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser','href','file','advlink'); - document.getElementById('popupurlbrowsercontainer').innerHTML = getBrowserHTML('popupurlbrowser','popupurl','file','advlink'); - document.getElementById('targetlistcontainer').innerHTML = getTargetListHTML('targetlist','target'); - - // Link list - html = getLinkListHTML('linklisthref','href'); - if (html == "") - document.getElementById("linklisthrefrow").style.display = 'none'; - else - document.getElementById("linklisthrefcontainer").innerHTML = html; - - // Anchor list - html = getAnchorListHTML('anchorlist','href'); - if (html == "") - document.getElementById("anchorlistrow").style.display = 'none'; - else - document.getElementById("anchorlistcontainer").innerHTML = html; - - // Resize some elements - if (isVisible('hrefbrowser')) - document.getElementById('href').style.width = '260px'; - - if (isVisible('popupurlbrowser')) - document.getElementById('popupurl').style.width = '180px'; - - elm = inst.dom.getParent(elm, "A"); - if (elm == null) { - var prospect = inst.dom.create("p", null, inst.selection.getContent()); - if (prospect.childNodes.length === 1) { - elm = prospect.firstChild; - } - } - - if (elm != null && elm.nodeName == "A") - action = "update"; - - formObj.insert.value = tinyMCEPopup.getLang(action, 'Insert', true); - - setPopupControlsDisabled(true); - - if (action == "update") { - var href = inst.dom.getAttrib(elm, 'href'); - var onclick = inst.dom.getAttrib(elm, 'onclick'); - var linkTarget = inst.dom.getAttrib(elm, 'target') ? inst.dom.getAttrib(elm, 'target') : "_self"; - - // Setup form data - setFormValue('href', href); - setFormValue('title', inst.dom.getAttrib(elm, 'title')); - setFormValue('id', inst.dom.getAttrib(elm, 'id')); - setFormValue('style', inst.dom.getAttrib(elm, "style")); - setFormValue('rel', inst.dom.getAttrib(elm, 'rel')); - setFormValue('rev', inst.dom.getAttrib(elm, 'rev')); - setFormValue('charset', inst.dom.getAttrib(elm, 'charset')); - setFormValue('hreflang', inst.dom.getAttrib(elm, 'hreflang')); - setFormValue('dir', inst.dom.getAttrib(elm, 'dir')); - setFormValue('lang', inst.dom.getAttrib(elm, 'lang')); - setFormValue('tabindex', inst.dom.getAttrib(elm, 'tabindex', typeof(elm.tabindex) != "undefined" ? elm.tabindex : "")); - setFormValue('accesskey', inst.dom.getAttrib(elm, 'accesskey', typeof(elm.accesskey) != "undefined" ? elm.accesskey : "")); - setFormValue('type', inst.dom.getAttrib(elm, 'type')); - setFormValue('onfocus', inst.dom.getAttrib(elm, 'onfocus')); - setFormValue('onblur', inst.dom.getAttrib(elm, 'onblur')); - setFormValue('onclick', onclick); - setFormValue('ondblclick', inst.dom.getAttrib(elm, 'ondblclick')); - setFormValue('onmousedown', inst.dom.getAttrib(elm, 'onmousedown')); - setFormValue('onmouseup', inst.dom.getAttrib(elm, 'onmouseup')); - setFormValue('onmouseover', inst.dom.getAttrib(elm, 'onmouseover')); - setFormValue('onmousemove', inst.dom.getAttrib(elm, 'onmousemove')); - setFormValue('onmouseout', inst.dom.getAttrib(elm, 'onmouseout')); - setFormValue('onkeypress', inst.dom.getAttrib(elm, 'onkeypress')); - setFormValue('onkeydown', inst.dom.getAttrib(elm, 'onkeydown')); - setFormValue('onkeyup', inst.dom.getAttrib(elm, 'onkeyup')); - setFormValue('target', linkTarget); - setFormValue('classes', inst.dom.getAttrib(elm, 'class')); - - // Parse onclick data - if (onclick != null && onclick.indexOf('window.open') != -1) - parseWindowOpen(onclick); - else - parseFunction(onclick); - - // Select by the values - selectByValue(formObj, 'dir', inst.dom.getAttrib(elm, 'dir')); - selectByValue(formObj, 'rel', inst.dom.getAttrib(elm, 'rel')); - selectByValue(formObj, 'rev', inst.dom.getAttrib(elm, 'rev')); - selectByValue(formObj, 'linklisthref', href); - - if (href.charAt(0) == '#') - selectByValue(formObj, 'anchorlist', href); - - addClassesToList('classlist', 'advlink_styles'); - - selectByValue(formObj, 'classlist', inst.dom.getAttrib(elm, 'class'), true); - selectByValue(formObj, 'targetlist', linkTarget, true); - } else - addClassesToList('classlist', 'advlink_styles'); -} - -function checkPrefix(n) { - if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_email'))) - n.value = 'mailto:' + n.value; - - if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_external'))) - n.value = 'http://' + n.value; -} - -function setFormValue(name, value) { - document.forms[0].elements[name].value = value; -} - -function parseWindowOpen(onclick) { - var formObj = document.forms[0]; - - // Preprocess center code - if (onclick.indexOf('return false;') != -1) { - formObj.popupreturn.checked = true; - onclick = onclick.replace('return false;', ''); - } else - formObj.popupreturn.checked = false; - - var onClickData = parseLink(onclick); - - if (onClickData != null) { - formObj.ispopup.checked = true; - setPopupControlsDisabled(false); - - var onClickWindowOptions = parseOptions(onClickData['options']); - var url = onClickData['url']; - - formObj.popupname.value = onClickData['target']; - formObj.popupurl.value = url; - formObj.popupwidth.value = getOption(onClickWindowOptions, 'width'); - formObj.popupheight.value = getOption(onClickWindowOptions, 'height'); - - formObj.popupleft.value = getOption(onClickWindowOptions, 'left'); - formObj.popuptop.value = getOption(onClickWindowOptions, 'top'); - - if (formObj.popupleft.value.indexOf('screen') != -1) - formObj.popupleft.value = "c"; - - if (formObj.popuptop.value.indexOf('screen') != -1) - formObj.popuptop.value = "c"; - - formObj.popuplocation.checked = getOption(onClickWindowOptions, 'location') == "yes"; - formObj.popupscrollbars.checked = getOption(onClickWindowOptions, 'scrollbars') == "yes"; - formObj.popupmenubar.checked = getOption(onClickWindowOptions, 'menubar') == "yes"; - formObj.popupresizable.checked = getOption(onClickWindowOptions, 'resizable') == "yes"; - formObj.popuptoolbar.checked = getOption(onClickWindowOptions, 'toolbar') == "yes"; - formObj.popupstatus.checked = getOption(onClickWindowOptions, 'status') == "yes"; - formObj.popupdependent.checked = getOption(onClickWindowOptions, 'dependent') == "yes"; - - buildOnClick(); - } -} - -function parseFunction(onclick) { - var formObj = document.forms[0]; - var onClickData = parseLink(onclick); - - // TODO: Add stuff here -} - -function getOption(opts, name) { - return typeof(opts[name]) == "undefined" ? "" : opts[name]; -} - -function setPopupControlsDisabled(state) { - var formObj = document.forms[0]; - - formObj.popupname.disabled = state; - formObj.popupurl.disabled = state; - formObj.popupwidth.disabled = state; - formObj.popupheight.disabled = state; - formObj.popupleft.disabled = state; - formObj.popuptop.disabled = state; - formObj.popuplocation.disabled = state; - formObj.popupscrollbars.disabled = state; - formObj.popupmenubar.disabled = state; - formObj.popupresizable.disabled = state; - formObj.popuptoolbar.disabled = state; - formObj.popupstatus.disabled = state; - formObj.popupreturn.disabled = state; - formObj.popupdependent.disabled = state; - - setBrowserDisabled('popupurlbrowser', state); -} - -function parseLink(link) { - link = link.replace(new RegExp(''', 'g'), "'"); - - var fnName = link.replace(new RegExp("\\s*([A-Za-z0-9\.]*)\\s*\\(.*", "gi"), "$1"); - - // Is function name a template function - var template = templates[fnName]; - if (template) { - // Build regexp - var variableNames = template.match(new RegExp("'?\\$\\{[A-Za-z0-9\.]*\\}'?", "gi")); - var regExp = "\\s*[A-Za-z0-9\.]*\\s*\\("; - var replaceStr = ""; - for (var i=0; i'); - for (var i=0; i' + name + ''; - - if ((name = nodes[i].id) != "" && !nodes[i].href) - html += ''; - } - - if (html == "") - return ""; - - html = ''; - - return html; -} - -function insertAction() { - var inst = tinyMCEPopup.editor; - var elm, elementArray, i; - - elm = inst.selection.getNode(); - checkPrefix(document.forms[0].href); - - elm = inst.dom.getParent(elm, "A"); - - // Remove element if there is no href - if (!document.forms[0].href.value) { - i = inst.selection.getBookmark(); - inst.dom.remove(elm, 1); - inst.selection.moveToBookmark(i); - tinyMCEPopup.execCommand("mceEndUndoLevel"); - tinyMCEPopup.close(); - return; - } - - // Create new anchor elements - if (elm == null) { - inst.getDoc().execCommand("unlink", false, null); - tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1}); - - elementArray = tinymce.grep(inst.dom.select("a"), function(n) {return inst.dom.getAttrib(n, 'href') == '#mce_temp_url#';}); - for (i=0; i' + tinyMCELinkList[i][0] + ''; - - html += ''; - - return html; - - // tinyMCE.debug('-- image list start --', html, '-- image list end --'); -} - -function getTargetListHTML(elm_id, target_form_element) { - var targets = tinyMCEPopup.getParam('theme_advanced_link_targets', '').split(';'); - var html = ''; - - html += ''; - - return html; -} - -// While loading -preinit(); -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js deleted file mode 100644 index 3169a5658..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.advlink_dlg',{"target_name":"Target Name",classes:"Classes",style:"Style",id:"ID","popup_position":"Position (X/Y)",langdir:"Language Direction","popup_size":"Size","popup_dependent":"Dependent (Mozilla/Firefox Only)","popup_resizable":"Make Window Resizable","popup_location":"Show Location Bar","popup_menubar":"Show Menu Bar","popup_toolbar":"Show Toolbars","popup_statusbar":"Show Status Bar","popup_scrollbars":"Show Scrollbars","popup_return":"Insert \'return false\'","popup_name":"Window Name","popup_url":"Popup URL",popup:"JavaScript Popup","target_blank":"Open in New Window","target_top":"Open in Top Frame (Replaces All Frames)","target_parent":"Open in Parent Window/Frame","target_same":"Open in This Window/Frame","anchor_names":"Anchors","popup_opts":"Options","advanced_props":"Advanced Properties","event_props":"Events","popup_props":"Popup Properties","general_props":"General Properties","advanced_tab":"Advanced","events_tab":"Events","popup_tab":"Popup","general_tab":"General",list:"Link List","is_external":"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?","is_email":"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",titlefield:"Title",target:"Target",url:"Link URL",title:"Insert/Edit Link","link_list":"Link List",rtl:"Right to Left",ltr:"Left to Right",accesskey:"AccessKey",tabindex:"TabIndex",rev:"Relationship Target to Page",rel:"Relationship Page to Target",mime:"Target MIME Type",encoding:"Target Character Encoding",langcode:"Language Code","target_langcode":"Target Language",width:"Width",height:"Height"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm b/library/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm deleted file mode 100644 index 8ab7c2a95..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm +++ /dev/null @@ -1,338 +0,0 @@ - - - - {#advlink_dlg.title} - - - - - - - - - -
                - - - - -
                - - -
                -
                - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js deleted file mode 100644 index 57ecce6e0..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var a=tinymce.each;tinymce.create("tinymce.plugins.AdvListPlugin",{init:function(b,c){var d=this;d.editor=b;function e(g){var f=[];a(g.split(/,/),function(h){f.push({title:"advlist."+(h=="default"?"def":h.replace(/-/g,"_")),styles:{listStyleType:h=="default"?"":h}})});return f}d.numlist=b.getParam("advlist_number_styles")||e("default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman");d.bullist=b.getParam("advlist_bullet_styles")||e("default,circle,disc,square");if(tinymce.isIE&&/MSIE [2-7]/.test(navigator.userAgent)){d.isIE7=true}},createControl:function(d,b){var f=this,e,i,g=f.editor;if(d=="numlist"||d=="bullist"){if(f[d][0].title=="advlist.def"){i=f[d][0]}function c(j,l){var k=true;a(l.styles,function(n,m){if(g.dom.getStyle(j,m)!=n){k=false;return false}});return k}function h(){var k,l=g.dom,j=g.selection;k=l.getParent(j.getNode(),"ol,ul");if(!k||k.nodeName==(d=="bullist"?"OL":"UL")||c(k,i)){g.execCommand(d=="bullist"?"InsertUnorderedList":"InsertOrderedList")}if(i){k=l.getParent(j.getNode(),"ol,ul");if(k){l.setStyles(k,i.styles);k.removeAttribute("data-mce-style")}}g.focus()}e=b.createSplitButton(d,{title:"advanced."+d+"_desc","class":"mce_"+d,onclick:function(){h()}});e.onRenderMenu.add(function(j,k){k.onHideMenu.add(function(){if(f.bookmark){g.selection.moveToBookmark(f.bookmark);f.bookmark=0}});k.onShowMenu.add(function(){var n=g.dom,m=n.getParent(g.selection.getNode(),"ol,ul"),l;if(m||i){l=f[d];a(k.items,function(o){var p=true;o.setSelected(0);if(m&&!o.isDisabled()){a(l,function(q){if(q.id==o.id){if(!c(m,q)){p=false;return false}}});if(p){o.setSelected(1)}}});if(!m){k.items[i.id].setSelected(1)}}g.focus();if(tinymce.isIE){f.bookmark=g.selection.getBookmark(1)}});k.add({id:g.dom.uniqueId(),title:"advlist.types","class":"mceMenuItemTitle",titleItem:true}).setDisabled(1);a(f[d],function(l){if(f.isIE7&&l.styles.listStyleType=="lower-greek"){return}l.id=g.dom.uniqueId();k.add({id:l.id,title:l.title,onclick:function(){i=l;h()}})})});return e}},getInfo:function(){return{longname:"Advanced lists",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlist",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlist",tinymce.plugins.AdvListPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js deleted file mode 100644 index a8f046b41..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js +++ /dev/null @@ -1,176 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var each = tinymce.each; - - tinymce.create('tinymce.plugins.AdvListPlugin', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - function buildFormats(str) { - var formats = []; - - each(str.split(/,/), function(type) { - formats.push({ - title : 'advlist.' + (type == 'default' ? 'def' : type.replace(/-/g, '_')), - styles : { - listStyleType : type == 'default' ? '' : type - } - }); - }); - - return formats; - }; - - // Setup number formats from config or default - t.numlist = ed.getParam("advlist_number_styles") || buildFormats("default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman"); - t.bullist = ed.getParam("advlist_bullet_styles") || buildFormats("default,circle,disc,square"); - - if (tinymce.isIE && /MSIE [2-7]/.test(navigator.userAgent)) - t.isIE7 = true; - }, - - createControl: function(name, cm) { - var t = this, btn, format, editor = t.editor; - - if (name == 'numlist' || name == 'bullist') { - // Default to first item if it's a default item - if (t[name][0].title == 'advlist.def') - format = t[name][0]; - - function hasFormat(node, format) { - var state = true; - - each(format.styles, function(value, name) { - // Format doesn't match - if (editor.dom.getStyle(node, name) != value) { - state = false; - return false; - } - }); - - return state; - }; - - function applyListFormat() { - var list, dom = editor.dom, sel = editor.selection; - - // Check for existing list element - list = dom.getParent(sel.getNode(), 'ol,ul'); - - // Switch/add list type if needed - if (!list || list.nodeName == (name == 'bullist' ? 'OL' : 'UL') || hasFormat(list, format)) - editor.execCommand(name == 'bullist' ? 'InsertUnorderedList' : 'InsertOrderedList'); - - // Append styles to new list element - if (format) { - list = dom.getParent(sel.getNode(), 'ol,ul'); - if (list) { - dom.setStyles(list, format.styles); - list.removeAttribute('data-mce-style'); - } - } - - editor.focus(); - }; - - btn = cm.createSplitButton(name, { - title : 'advanced.' + name + '_desc', - 'class' : 'mce_' + name, - onclick : function() { - applyListFormat(); - } - }); - - btn.onRenderMenu.add(function(btn, menu) { - menu.onHideMenu.add(function() { - if (t.bookmark) { - editor.selection.moveToBookmark(t.bookmark); - t.bookmark = 0; - } - }); - - menu.onShowMenu.add(function() { - var dom = editor.dom, list = dom.getParent(editor.selection.getNode(), 'ol,ul'), fmtList; - - if (list || format) { - fmtList = t[name]; - - // Unselect existing items - each(menu.items, function(item) { - var state = true; - - item.setSelected(0); - - if (list && !item.isDisabled()) { - each(fmtList, function(fmt) { - if (fmt.id == item.id) { - if (!hasFormat(list, fmt)) { - state = false; - return false; - } - } - }); - - if (state) - item.setSelected(1); - } - }); - - // Select the current format - if (!list) - menu.items[format.id].setSelected(1); - } - - editor.focus(); - - // IE looses it's selection so store it away and restore it later - if (tinymce.isIE) { - t.bookmark = editor.selection.getBookmark(1); - } - }); - - menu.add({id : editor.dom.uniqueId(), title : 'advlist.types', 'class' : 'mceMenuItemTitle', titleItem: true}).setDisabled(1); - - each(t[name], function(item) { - // IE<8 doesn't support lower-greek, skip it - if (t.isIE7 && item.styles.listStyleType == 'lower-greek') - return; - - item.id = editor.dom.uniqueId(); - - menu.add({id : item.id, title : item.title, onclick : function() { - format = item; - applyListFormat(); - }}); - }); - }); - - return btn; - } - }, - - getInfo : function() { - return { - longname : 'Advanced lists', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlist', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('advlist', tinymce.plugins.AdvListPlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js deleted file mode 100644 index 71d86bbec..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.AutolinkPlugin",{init:function(a,b){var c=this;a.onKeyDown.addToTop(function(d,f){if(f.keyCode==13){return c.handleEnter(d)}});if(tinyMCE.isIE){return}a.onKeyPress.add(function(d,f){if(f.which==41){return c.handleEclipse(d)}});a.onKeyUp.add(function(d,f){if(f.keyCode==32){return c.handleSpacebar(d)}})},handleEclipse:function(a){this.parseCurrentLine(a,-1,"(",true)},handleSpacebar:function(a){this.parseCurrentLine(a,0,"",true)},handleEnter:function(a){this.parseCurrentLine(a,-1,"",false)},parseCurrentLine:function(i,d,b,g){var a,f,c,n,k,m,h,e,j;a=i.selection.getRng(true).cloneRange();if(a.startOffset<5){e=a.endContainer.previousSibling;if(e==null){if(a.endContainer.firstChild==null||a.endContainer.firstChild.nextSibling==null){return}e=a.endContainer.firstChild.nextSibling}j=e.length;a.setStart(e,j);a.setEnd(e,j);if(a.endOffset<5){return}f=a.endOffset;n=e}else{n=a.endContainer;if(n.nodeType!=3&&n.firstChild){while(n.nodeType!=3&&n.firstChild){n=n.firstChild}if(n.nodeType==3){a.setStart(n,0);a.setEnd(n,n.nodeValue.length)}}if(a.endOffset==1){f=2}else{f=a.endOffset-1-d}}c=f;do{a.setStart(n,f>=2?f-2:0);a.setEnd(n,f>=1?f-1:0);f-=1}while(a.toString()!=" "&&a.toString()!=""&&a.toString().charCodeAt(0)!=160&&(f-2)>=0&&a.toString()!=b);if(a.toString()==b||a.toString().charCodeAt(0)==160){a.setStart(n,f);a.setEnd(n,c);f+=1}else{if(a.startOffset==0){a.setStart(n,0);a.setEnd(n,c)}else{a.setStart(n,f);a.setEnd(n,c)}}var m=a.toString();if(m.charAt(m.length-1)=="."){a.setEnd(n,c-1)}m=a.toString();h=m.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+-]+@)(.+)$/i);if(h){if(h[1]=="www."){h[1]="http://www."}else{if(/@$/.test(h[1])&&!/^mailto:/.test(h[1])){h[1]="mailto:"+h[1]}}k=i.selection.getBookmark();i.selection.setRng(a);tinyMCE.execCommand("createlink",false,h[1]+h[2]);i.selection.moveToBookmark(k);i.nodeChanged();if(tinyMCE.isWebKit){i.selection.collapse(false);var l=Math.min(n.length,c+1);a.setStart(n,l);a.setEnd(n,l);i.selection.setRng(a)}}},getInfo:function(){return{longname:"Autolink",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autolink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autolink",tinymce.plugins.AutolinkPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js deleted file mode 100644 index 5b61f7a20..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js +++ /dev/null @@ -1,184 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2011, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.AutolinkPlugin', { - /** - * Initializes the plugin, this will be executed after the plugin has been created. - * This call is done before the editor instance has finished it's initialization so use the onInit event - * of the editor instance to intercept that event. - * - * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. - * @param {string} url Absolute URL to where the plugin is located. - */ - - init : function(ed, url) { - var t = this; - - // Add a key down handler - ed.onKeyDown.addToTop(function(ed, e) { - if (e.keyCode == 13) - return t.handleEnter(ed); - }); - - // Internet Explorer has built-in automatic linking for most cases - if (tinyMCE.isIE) - return; - - ed.onKeyPress.add(function(ed, e) { - if (e.which == 41) - return t.handleEclipse(ed); - }); - - // Add a key up handler - ed.onKeyUp.add(function(ed, e) { - if (e.keyCode == 32) - return t.handleSpacebar(ed); - }); - }, - - handleEclipse : function(ed) { - this.parseCurrentLine(ed, -1, '(', true); - }, - - handleSpacebar : function(ed) { - this.parseCurrentLine(ed, 0, '', true); - }, - - handleEnter : function(ed) { - this.parseCurrentLine(ed, -1, '', false); - }, - - parseCurrentLine : function(ed, end_offset, delimiter, goback) { - var r, end, start, endContainer, bookmark, text, matches, prev, len; - - // We need at least five characters to form a URL, - // hence, at minimum, five characters from the beginning of the line. - r = ed.selection.getRng(true).cloneRange(); - if (r.startOffset < 5) { - // During testing, the caret is placed inbetween two text nodes. - // The previous text node contains the URL. - prev = r.endContainer.previousSibling; - if (prev == null) { - if (r.endContainer.firstChild == null || r.endContainer.firstChild.nextSibling == null) - return; - - prev = r.endContainer.firstChild.nextSibling; - } - len = prev.length; - r.setStart(prev, len); - r.setEnd(prev, len); - - if (r.endOffset < 5) - return; - - end = r.endOffset; - endContainer = prev; - } else { - endContainer = r.endContainer; - - // Get a text node - if (endContainer.nodeType != 3 && endContainer.firstChild) { - while (endContainer.nodeType != 3 && endContainer.firstChild) - endContainer = endContainer.firstChild; - - // Move range to text node - if (endContainer.nodeType == 3) { - r.setStart(endContainer, 0); - r.setEnd(endContainer, endContainer.nodeValue.length); - } - } - - if (r.endOffset == 1) - end = 2; - else - end = r.endOffset - 1 - end_offset; - } - - start = end; - - do - { - // Move the selection one character backwards. - r.setStart(endContainer, end >= 2 ? end - 2 : 0); - r.setEnd(endContainer, end >= 1 ? end - 1 : 0); - end -= 1; - - // Loop until one of the following is found: a blank space,  , delimeter, (end-2) >= 0 - } while (r.toString() != ' ' && r.toString() != '' && r.toString().charCodeAt(0) != 160 && (end -2) >= 0 && r.toString() != delimiter); - - if (r.toString() == delimiter || r.toString().charCodeAt(0) == 160) { - r.setStart(endContainer, end); - r.setEnd(endContainer, start); - end += 1; - } else if (r.startOffset == 0) { - r.setStart(endContainer, 0); - r.setEnd(endContainer, start); - } - else { - r.setStart(endContainer, end); - r.setEnd(endContainer, start); - } - - // Exclude last . from word like "www.site.com." - var text = r.toString(); - if (text.charAt(text.length - 1) == '.') { - r.setEnd(endContainer, start - 1); - } - - text = r.toString(); - matches = text.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+-]+@)(.+)$/i); - - if (matches) { - if (matches[1] == 'www.') { - matches[1] = 'http://www.'; - } else if (/@$/.test(matches[1]) && !/^mailto:/.test(matches[1])) { - matches[1] = 'mailto:' + matches[1]; - } - - bookmark = ed.selection.getBookmark(); - - ed.selection.setRng(r); - tinyMCE.execCommand('createlink',false, matches[1] + matches[2]); - ed.selection.moveToBookmark(bookmark); - ed.nodeChanged(); - - // TODO: Determine if this is still needed. - if (tinyMCE.isWebKit) { - // move the caret to its original position - ed.selection.collapse(false); - var max = Math.min(endContainer.length, start + 1); - r.setStart(endContainer, max); - r.setEnd(endContainer, max); - ed.selection.setRng(r); - } - } - }, - - /** - * Returns information about the plugin as a name/value array. - * The current keys are longname, author, authorurl, infourl and version. - * - * @return {Object} Name/value array containing information about the plugin. - */ - getInfo : function() { - return { - longname : 'Autolink', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autolink', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('autolink', tinymce.plugins.AutolinkPlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js deleted file mode 100644 index 46d9dc3dd..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.AutoResizePlugin",{init:function(a,c){var d=this,e=0;if(a.getParam("fullscreen_is_enabled")){return}function b(){var j,i=a.getDoc(),f=i.body,l=i.documentElement,h=tinymce.DOM,k=d.autoresize_min_height,g;g=tinymce.isIE?f.scrollHeight:(tinymce.isWebKit&&f.clientHeight==0?0:f.offsetHeight);if(g>d.autoresize_min_height){k=g}if(d.autoresize_max_height&&g>d.autoresize_max_height){k=d.autoresize_max_height;f.style.overflowY="auto";l.style.overflowY="auto"}else{f.style.overflowY="hidden";l.style.overflowY="hidden";f.scrollTop=0}if(k!==e){j=k-e;h.setStyle(h.get(a.id+"_ifr"),"height",k+"px");e=k;if(tinymce.isWebKit&&j<0){b()}}}d.editor=a;d.autoresize_min_height=parseInt(a.getParam("autoresize_min_height",a.getElement().offsetHeight));d.autoresize_max_height=parseInt(a.getParam("autoresize_max_height",0));a.onInit.add(function(f){f.dom.setStyle(f.getBody(),"paddingBottom",f.getParam("autoresize_bottom_margin",50)+"px")});a.onChange.add(b);a.onSetContent.add(b);a.onPaste.add(b);a.onKeyUp.add(b);a.onPostRender.add(b);if(a.getParam("autoresize_on_init",true)){a.onLoad.add(b);a.onLoadContent.add(b)}a.addCommand("mceAutoResize",b)},getInfo:function(){return{longname:"Auto Resize",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autoresize",tinymce.plugins.AutoResizePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js deleted file mode 100644 index 7673bcff8..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js +++ /dev/null @@ -1,119 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - /** - * Auto Resize - * - * This plugin automatically resizes the content area to fit its content height. - * It will retain a minimum height, which is the height of the content area when - * it's initialized. - */ - tinymce.create('tinymce.plugins.AutoResizePlugin', { - /** - * Initializes the plugin, this will be executed after the plugin has been created. - * This call is done before the editor instance has finished it's initialization so use the onInit event - * of the editor instance to intercept that event. - * - * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. - * @param {string} url Absolute URL to where the plugin is located. - */ - init : function(ed, url) { - var t = this, oldSize = 0; - - if (ed.getParam('fullscreen_is_enabled')) - return; - - /** - * This method gets executed each time the editor needs to resize. - */ - function resize() { - var deltaSize, d = ed.getDoc(), body = d.body, de = d.documentElement, DOM = tinymce.DOM, resizeHeight = t.autoresize_min_height, myHeight; - - // Get height differently depending on the browser used - myHeight = tinymce.isIE ? body.scrollHeight : (tinymce.isWebKit && body.clientHeight == 0 ? 0 : body.offsetHeight); - - // Don't make it smaller than the minimum height - if (myHeight > t.autoresize_min_height) - resizeHeight = myHeight; - - // If a maximum height has been defined don't exceed this height - if (t.autoresize_max_height && myHeight > t.autoresize_max_height) { - resizeHeight = t.autoresize_max_height; - body.style.overflowY = "auto"; - de.style.overflowY = "auto"; // Old IE - } else { - body.style.overflowY = "hidden"; - de.style.overflowY = "hidden"; // Old IE - body.scrollTop = 0; - } - - // Resize content element - if (resizeHeight !== oldSize) { - deltaSize = resizeHeight - oldSize; - DOM.setStyle(DOM.get(ed.id + '_ifr'), 'height', resizeHeight + 'px'); - oldSize = resizeHeight; - - // WebKit doesn't decrease the size of the body element until the iframe gets resized - // So we need to continue to resize the iframe down until the size gets fixed - if (tinymce.isWebKit && deltaSize < 0) - resize(); - } - }; - - t.editor = ed; - - // Define minimum height - t.autoresize_min_height = parseInt(ed.getParam('autoresize_min_height', ed.getElement().offsetHeight)); - - // Define maximum height - t.autoresize_max_height = parseInt(ed.getParam('autoresize_max_height', 0)); - - // Add padding at the bottom for better UX - ed.onInit.add(function(ed){ - ed.dom.setStyle(ed.getBody(), 'paddingBottom', ed.getParam('autoresize_bottom_margin', 50) + 'px'); - }); - - // Add appropriate listeners for resizing content area - ed.onChange.add(resize); - ed.onSetContent.add(resize); - ed.onPaste.add(resize); - ed.onKeyUp.add(resize); - ed.onPostRender.add(resize); - - if (ed.getParam('autoresize_on_init', true)) { - ed.onLoad.add(resize); - ed.onLoadContent.add(resize); - } - - // Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample'); - ed.addCommand('mceAutoResize', resize); - }, - - /** - * Returns information about the plugin as a name/value array. - * The current keys are longname, author, authorurl, infourl and version. - * - * @return {Object} Name/value array containing information about the plugin. - */ - getInfo : function() { - return { - longname : 'Auto Resize', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('autoresize', tinymce.plugins.AutoResizePlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js deleted file mode 100644 index 6da98ff33..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(e){var c="autosave",g="restoredraft",b=true,f,d,a=e.util.Dispatcher;e.create("tinymce.plugins.AutoSave",{init:function(i,j){var h=this,l=i.settings;h.editor=i;function k(n){var m={s:1000,m:60000};n=/^(\d+)([ms]?)$/.exec(""+n);return(n[2]?m[n[2]]:1)*parseInt(n)}e.each({ask_before_unload:b,interval:"30s",retention:"20m",minlength:50},function(n,m){m=c+"_"+m;if(l[m]===f){l[m]=n}});l.autosave_interval=k(l.autosave_interval);l.autosave_retention=k(l.autosave_retention);i.addButton(g,{title:c+".restore_content",onclick:function(){if(i.getContent({draft:true}).replace(/\s| |<\/?p[^>]*>|]*>/gi,"").length>0){i.windowManager.confirm(c+".warning_message",function(m){if(m){h.restoreDraft()}})}else{h.restoreDraft()}}});i.onNodeChange.add(function(){var m=i.controlManager;if(m.get(g)){m.setDisabled(g,!h.hasDraft())}});i.onInit.add(function(){if(i.controlManager.get(g)){h.setupStorage(i);setInterval(function(){if(!i.removed){h.storeDraft();i.nodeChanged()}},l.autosave_interval)}});h.onStoreDraft=new a(h);h.onRestoreDraft=new a(h);h.onRemoveDraft=new a(h);if(!d){window.onbeforeunload=e.plugins.AutoSave._beforeUnloadHandler;d=b}},getInfo:function(){return{longname:"Auto save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave",version:e.majorVersion+"."+e.minorVersion}},getExpDate:function(){return new Date(new Date().getTime()+this.editor.settings.autosave_retention).toUTCString()},setupStorage:function(i){var h=this,k=c+"_test",j="OK";h.key=c+i.id;e.each([function(){if(localStorage){localStorage.setItem(k,j);if(localStorage.getItem(k)===j){localStorage.removeItem(k);return localStorage}}},function(){if(sessionStorage){sessionStorage.setItem(k,j);if(sessionStorage.getItem(k)===j){sessionStorage.removeItem(k);return sessionStorage}}},function(){if(e.isIE){i.getElement().style.behavior="url('#default#userData')";return{autoExpires:b,setItem:function(l,n){var m=i.getElement();m.setAttribute(l,n);m.expires=h.getExpDate();try{m.save("TinyMCE")}catch(o){}},getItem:function(l){var m=i.getElement();try{m.load("TinyMCE");return m.getAttribute(l)}catch(n){return null}},removeItem:function(l){i.getElement().removeAttribute(l)}}}},],function(l){try{h.storage=l();if(h.storage){return false}}catch(m){}})},storeDraft:function(){var i=this,l=i.storage,j=i.editor,h,k;if(l){if(!l.getItem(i.key)&&!j.isDirty()){return}k=j.getContent({draft:true});if(k.length>j.settings.autosave_minlength){h=i.getExpDate();if(!i.storage.autoExpires){i.storage.setItem(i.key+"_expires",h)}i.storage.setItem(i.key,k);i.onStoreDraft.dispatch(i,{expires:h,content:k})}}},restoreDraft:function(){var h=this,j=h.storage,i;if(j){i=j.getItem(h.key);if(i){h.editor.setContent(i);h.onRestoreDraft.dispatch(h,{content:i})}}},hasDraft:function(){var h=this,k=h.storage,i,j;if(k){j=!!k.getItem(h.key);if(j){if(!h.storage.autoExpires){i=new Date(k.getItem(h.key+"_expires"));if(new Date().getTime()]*>|]*>/gi, "").length > 0) { - // Show confirm dialog if the editor isn't empty - ed.windowManager.confirm( - PLUGIN_NAME + ".warning_message", - function(ok) { - if (ok) - self.restoreDraft(); - } - ); - } else - self.restoreDraft(); - } - }); - - // Enable/disable restoredraft button depending on if there is a draft stored or not - ed.onNodeChange.add(function() { - var controlManager = ed.controlManager; - - if (controlManager.get(RESTORE_DRAFT)) - controlManager.setDisabled(RESTORE_DRAFT, !self.hasDraft()); - }); - - ed.onInit.add(function() { - // Check if the user added the restore button, then setup auto storage logic - if (ed.controlManager.get(RESTORE_DRAFT)) { - // Setup storage engine - self.setupStorage(ed); - - // Auto save contents each interval time - setInterval(function() { - if (!ed.removed) { - self.storeDraft(); - ed.nodeChanged(); - } - }, settings.autosave_interval); - } - }); - - /** - * This event gets fired when a draft is stored to local storage. - * - * @event onStoreDraft - * @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event. - * @param {Object} draft Draft object containing the HTML contents of the editor. - */ - self.onStoreDraft = new Dispatcher(self); - - /** - * This event gets fired when a draft is restored from local storage. - * - * @event onStoreDraft - * @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event. - * @param {Object} draft Draft object containing the HTML contents of the editor. - */ - self.onRestoreDraft = new Dispatcher(self); - - /** - * This event gets fired when a draft removed/expired. - * - * @event onRemoveDraft - * @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event. - * @param {Object} draft Draft object containing the HTML contents of the editor. - */ - self.onRemoveDraft = new Dispatcher(self); - - // Add ask before unload dialog only add one unload handler - if (!unloadHandlerAdded) { - window.onbeforeunload = tinymce.plugins.AutoSave._beforeUnloadHandler; - unloadHandlerAdded = TRUE; - } - }, - - /** - * Returns information about the plugin as a name/value array. - * The current keys are longname, author, authorurl, infourl and version. - * - * @method getInfo - * @return {Object} Name/value array containing information about the plugin. - */ - getInfo : function() { - return { - longname : 'Auto save', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - /** - * Returns an expiration date UTC string. - * - * @method getExpDate - * @return {String} Expiration date UTC string. - */ - getExpDate : function() { - return new Date( - new Date().getTime() + this.editor.settings.autosave_retention - ).toUTCString(); - }, - - /** - * This method will setup the storage engine. If the browser has support for it. - * - * @method setupStorage - */ - setupStorage : function(ed) { - var self = this, testKey = PLUGIN_NAME + '_test', testVal = "OK"; - - self.key = PLUGIN_NAME + ed.id; - - // Loop though each storage engine type until we find one that works - tinymce.each([ - function() { - // Try HTML5 Local Storage - if (localStorage) { - localStorage.setItem(testKey, testVal); - - if (localStorage.getItem(testKey) === testVal) { - localStorage.removeItem(testKey); - - return localStorage; - } - } - }, - - function() { - // Try HTML5 Session Storage - if (sessionStorage) { - sessionStorage.setItem(testKey, testVal); - - if (sessionStorage.getItem(testKey) === testVal) { - sessionStorage.removeItem(testKey); - - return sessionStorage; - } - } - }, - - function() { - // Try IE userData - if (tinymce.isIE) { - ed.getElement().style.behavior = "url('#default#userData')"; - - // Fake localStorage on old IE - return { - autoExpires : TRUE, - - setItem : function(key, value) { - var userDataElement = ed.getElement(); - - userDataElement.setAttribute(key, value); - userDataElement.expires = self.getExpDate(); - - try { - userDataElement.save("TinyMCE"); - } catch (e) { - // Ignore, saving might fail if "Userdata Persistence" is disabled in IE - } - }, - - getItem : function(key) { - var userDataElement = ed.getElement(); - - try { - userDataElement.load("TinyMCE"); - return userDataElement.getAttribute(key); - } catch (e) { - // Ignore, loading might fail if "Userdata Persistence" is disabled in IE - return null; - } - }, - - removeItem : function(key) { - ed.getElement().removeAttribute(key); - } - }; - } - }, - ], function(setup) { - // Try executing each function to find a suitable storage engine - try { - self.storage = setup(); - - if (self.storage) - return false; - } catch (e) { - // Ignore - } - }); - }, - - /** - * This method will store the current contents in the the storage engine. - * - * @method storeDraft - */ - storeDraft : function() { - var self = this, storage = self.storage, editor = self.editor, expires, content; - - // Is the contents dirty - if (storage) { - // If there is no existing key and the contents hasn't been changed since - // it's original value then there is no point in saving a draft - if (!storage.getItem(self.key) && !editor.isDirty()) - return; - - // Store contents if the contents if longer than the minlength of characters - content = editor.getContent({draft: true}); - if (content.length > editor.settings.autosave_minlength) { - expires = self.getExpDate(); - - // Store expiration date if needed IE userData has auto expire built in - if (!self.storage.autoExpires) - self.storage.setItem(self.key + "_expires", expires); - - self.storage.setItem(self.key, content); - self.onStoreDraft.dispatch(self, { - expires : expires, - content : content - }); - } - } - }, - - /** - * This method will restore the contents from the storage engine back to the editor. - * - * @method restoreDraft - */ - restoreDraft : function() { - var self = this, storage = self.storage, content; - - if (storage) { - content = storage.getItem(self.key); - - if (content) { - self.editor.setContent(content); - self.onRestoreDraft.dispatch(self, { - content : content - }); - } - } - }, - - /** - * This method will return true/false if there is a local storage draft available. - * - * @method hasDraft - * @return {boolean} true/false state if there is a local draft. - */ - hasDraft : function() { - var self = this, storage = self.storage, expDate, exists; - - if (storage) { - // Does the item exist at all - exists = !!storage.getItem(self.key); - if (exists) { - // Storage needs autoexpire - if (!self.storage.autoExpires) { - expDate = new Date(storage.getItem(self.key + "_expires")); - - // Contents hasn't expired - if (new Date().getTime() < expDate.getTime()) - return TRUE; - - // Remove it if it has - self.removeDraft(); - } else - return TRUE; - } - } - - return false; - }, - - /** - * Removes the currently stored draft. - * - * @method removeDraft - */ - removeDraft : function() { - var self = this, storage = self.storage, key = self.key, content; - - if (storage) { - // Get current contents and remove the existing draft - content = storage.getItem(key); - storage.removeItem(key); - storage.removeItem(key + "_expires"); - - // Dispatch remove event if we had any contents - if (content) { - self.onRemoveDraft.dispatch(self, { - content : content - }); - } - } - }, - - "static" : { - // Internal unload handler will be called before the page is unloaded - _beforeUnloadHandler : function(e) { - var msg; - - tinymce.each(tinyMCE.editors, function(ed) { - // Store a draft for each editor instance - if (ed.plugins.autosave) - ed.plugins.autosave.storeDraft(); - - // Never ask in fullscreen mode - if (ed.getParam("fullscreen_is_enabled")) - return; - - // Setup a return message if the editor is dirty - if (!msg && ed.isDirty() && ed.getParam("autosave_ask_before_unload")) - msg = ed.getLang("autosave.unload_msg"); - }); - - return msg; - } - } - }); - - tinymce.PluginManager.add('autosave', tinymce.plugins.AutoSave); -})(tinymce); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js deleted file mode 100644 index cbf5b61a9..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(ed,url){var t=this,dialect=ed.getParam("bbcode_dialect","dfrn").toLowerCase();ed.onBeforeSetContent.add(function(ed,o){o.content=t["_"+dialect+"_bbcode2html"](o.content)});ed.onPostProcess.add(function(ed,o){if(o.set)o.content=t["_"+dialect+"_bbcode2html"](o.content);if(o.get)o.content=t["_"+dialect+"_html2bbcode"](o.content)})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_dfrn_html2bbcode:function(s){s=tinymce.trim(s);function rep(re,str){s=s.replace(re,str)}function get(re){return s.match(re)}function _h2b_cb(match){var f,g,tof=[],tor=[];var find_spanc=/]*class *= *[\"'](?:[^\"']* )*oembed(?: [^\"']*)*[\"'][^>]*>(.*?(?:]*>(.*?)<\/span *>)*.*?)<\/span *>/gi;while(f=find_spanc.exec(match)){var find_a=/]* rel=[\"']oembed[\"'][^>]*)>.*?<\/a *>/gi;if(g=find_a.exec(f[1])){var find_href=/href=[\"']([^\"']*)[\"']/gi;var m2=find_href.exec(g[1]);if(m2[1]){tof.push(f[0]);tor.push("[EMBED]"+m2[1]+"[/EMBED]")}}}for(var i=0;i(.*?)<\/a>/gi,"[bookmark=$1]$2[/bookmark]");rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]");rep(/(.*?)<\/span>/gi,"[size=$1]$2[/size]");rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]");rep(/(.*?)<\/font>/gi,"$1");rep(/]*?width=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$1x$2]$3[/img]");rep(/]*?height=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$2x$1]$3[/img]");rep(/]*?src=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$3x$2]$1[/img]");rep(/]*?src=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$2x$3]$1[/img]");rep(/]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img]$1[/img]");rep(/
                  (.*?)<\/ul>/gi,"[list]$1[/list]");rep(/
                    (.*?)<\/ul>/gi,"[list=]$1[/list]");rep(/
                      (.*?)<\/ul>/gi,"[list=1]$1[/list]");rep(/
                        (.*?)<\/ul>/gi,"[list=i]$1[/list]");rep(/
                          (.*?)<\/ul>/gi,"[list=I]$1[/list]");rep(/
                            (.*?)<\/ul>/gi,"[list=a]$1[/list]");rep(/
                              (.*?)<\/ul>/gi,"[list=A]$1[/list]");rep(/
                            • (.*?)<\/li>/gi,"[li]$1[/li]");rep(/<\/(strong|b)>/gi,"[/b]");rep(/<(strong|b)>/gi,"[b]");rep(/<\/(em|i)>/gi,"[/i]");rep(/<(em|i)>/gi,"[i]");rep(/<\/u>/gi,"[/u]");rep(/(.*?)<\/span>/gi,"[u]$1[/u]");rep(//gi,"[u]");rep(/]*>/gi,"[quote]");rep(/<\/blockquote>/gi,"[/quote]");rep(/
                              /gi,"[hr]");rep(/
                              /gi,"\n");rep(//gi,"\n");rep(/
                              /gi,"\n");rep(/

                              /gi,"");rep(/<\/p>/gi,"\n");rep(/ |\u00a0/gi," ");rep(/"/gi,'"');rep(/</gi,"<");rep(/>/gi,">");rep(/&/gi,"&");rep(/

                              /gi,"");rep(/<\/div>/gi,"");if(codes!=null){for(var i=0;i","");codes[i]=codes[i].replace("","");rep(/\[\$!\$!CODEBLOCK!\$!\$\]/i,"[code]"+codes[i]+"[/code]")}}return s},_dfrn_bbcode2html:function(s){s=tinymce.trim(s);function rep(re,str){s=s.replace(re,str)}function get(re){return s.match(re)}var codes=get(/\[code\](.*?)\[\/code\]/gi);rep(/\[code\](.*?)\[\/code\]/gi,"[$!$!CODEBLOCK!$!$]");rep(/\n/gi,"
                              ");rep(/\[b\]/gi,"");rep(/\[\/b\]/gi,"");rep(/\[i\]/gi,"");rep(/\[\/i\]/gi,"");rep(/\[u\]/gi,"");rep(/\[\/u\]/gi,"");rep(/\[hr\]/gi,"
                              ");rep(/\[bookmark=([^\]]+)\](.*?)\[\/bookmark\]/gi,'$2');rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'$2');rep(/\[url\](.*?)\[\/url\]/gi,'$1');rep(/\[img=(.*?)x(.*?)\](.*?)\[\/img\]/gi,'');rep(/\[img\](.*?)\[\/img\]/gi,'');rep(/\[list\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[list=\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[list=1\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[list=i\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[list=I\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[list=a\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[list=A\](.*?)\[\/list\]/gi,'
                                $1
                              ');rep(/\[li\](.*?)\[\/li\]/gi,"
                            • $1
                            • ");rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,'$2');rep(/\[size=(.*?)\](.*?)\[\/size\]/gi,'$2');rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"
                              $1
                              ");function _b2h_cb(match,url){url=bin2hex(url);function s_b2h(data){match=data}$.ajax({url:"oembed/b2h?url="+url,async:false,success:s_b2h,dataType:"html"});return match}s=s.replace(/\[embed\](.*?)\[\/embed\]/gi,_b2h_cb);if(codes!=null){for(var i=0;i"+codes[i]+"
                              ")}}return s}});tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js deleted file mode 100644 index ed200e702..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js +++ /dev/null @@ -1,311 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -/* Macgirvin Aug-2010 changed from punbb to dfrn dialect */ - -(function() { - tinymce.create('tinymce.plugins.BBCodePlugin', { - init : function(ed, url) { - var t = this, dialect = ed.getParam('bbcode_dialect', 'dfrn').toLowerCase(); - - ed.onBeforeSetContent.add(function(ed, o) { - o.content = t['_' + dialect + '_bbcode2html'](o.content); - }); - - ed.onPostProcess.add(function(ed, o) { - if (o.set) - o.content = t['_' + dialect + '_bbcode2html'](o.content); - - if (o.get) - o.content = t['_' + dialect + '_html2bbcode'](o.content); - }); - }, - - getInfo : function() { - return { - longname : 'BBCode Plugin', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - // HTML -> BBCode in DFRN dialect - _dfrn_html2bbcode : function(s) { - s = tinymce.trim(s); - - function rep(re, str) { - - - s = s.replace(re,str); - - //modify code to keep stuff intact within [code][/code] blocks - //Waitman Gobble NO WARRANTY - - /* This doesn't seem to work well with - [code]line1 - line2[/code] - commenting out for now - */ - -/* - var o = new Array(); - var x = s.split("[code]"); - var i = 0; - - var si = ""; - si = x.shift(); - si = si.replace(re,str); - o.push(si); - - for (i = 0; i < x.length; i++) { - var no = new Array(); - var j = x.shift(); - var g = j.split("[/code]"); - no.push(g.shift()); - si = g.shift(); - si = si.replace(re,str); - no.push(si); - o.push(no.join("[/code]")); - } - - s = o.join("[code]"); -*/ - }; - - - function get(re) { - return s.match(re); - } - - - /* oembed */ - function _h2b_cb(match) { - /* - function s_h2b(data) { - match = data; - } - $.ajax({ - type:"POST", - url: 'oembed/h2b', - data: {text: match}, - async: false, - success: s_h2b, - dataType: 'html' - }); - */ - - var f, g, tof = [], tor = []; - var find_spanc = /]*class *= *[\"'](?:[^\"']* )*oembed(?: [^\"']*)*[\"'][^>]*>(.*?(?:]*>(.*?)<\/span *>)*.*?)<\/span *>/ig; - while (f = find_spanc.exec(match)) { - var find_a = /]* rel=[\"']oembed[\"'][^>]*)>.*?<\/a *>/ig; - if (g = find_a.exec(f[1])) { - var find_href = /href=[\"']([^\"']*)[\"']/ig; - var m2 = find_href.exec(g[1]); - if (m2[1]) { - tof.push(f[0]); - tor.push("[EMBED]" + m2[1] + "[/EMBED]"); - } - } - } - for (var i = 0; i < tof.length; i++) match = match.replace(tof[i], tor[i]); - - return match; - } - - if (s.indexOf('class="oembed')>=0){ - //alert("request oembed html2bbcode"); - s = _h2b_cb(s); - } - - /* /oembed */ - - - // Preserve HTML tags inside code blocks - var codes = get(/(.*?)<\/code>/gi); - rep(/(.*?)<\/code>/gi,"[$!$!CODEBLOCK!$!$]"); - - // example: to [b] - rep(/(.*?)<\/a>/gi,"[bookmark=$1]$2[/bookmark]"); - rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); - rep(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"); - rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); - rep(/(.*?)<\/font>/gi,"$1"); - - // Use [^>]* instead of .* to prevent a match against two separate tags - rep(/]*?width=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$1x$2]$3[/img]"); - rep(/]*?height=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$2x$1]$3[/img]"); - rep(/]*?src=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$3x$2]$1[/img]"); - rep(/]*?src=\"([^>]*?)\"[^>]*?width=\"([^>]*?)\"[^>]*?height=\"([^>]*?)\"[^>]*?\/>/gi,"[img=$2x$3]$1[/img]"); - rep(/]*?src=\"([^>]*?)\"[^>]*?\/>/gi,"[img]$1[/img]"); - - rep(/
                                (.*?)<\/ul>/gi,"[list]$1[/list]"); - rep(/
                                  (.*?)<\/ul>/gi,"[list=]$1[/list]"); - rep(/
                                    (.*?)<\/ul>/gi,"[list=1]$1[/list]"); - rep(/
                                      (.*?)<\/ul>/gi,"[list=i]$1[/list]"); - rep(/
                                        (.*?)<\/ul>/gi,"[list=I]$1[/list]"); - rep(/
                                          (.*?)<\/ul>/gi,"[list=a]$1[/list]"); - rep(/
                                            (.*?)<\/ul>/gi,"[list=A]$1[/list]"); - rep(/
                                          • (.*?)<\/li>/gi,'[li]$1[/li]'); - - //rep(/(.*?)<\/code>/gi,"[code]$1[/code]"); - rep(/<\/(strong|b)>/gi,"[/b]"); - rep(/<(strong|b)>/gi,"[b]"); - rep(/<\/(em|i)>/gi,"[/i]"); - rep(/<(em|i)>/gi,"[i]"); - rep(/<\/u>/gi,"[/u]"); - rep(/(.*?)<\/span>/gi,"[u]$1[/u]"); - rep(//gi,"[u]"); - rep(/]*>/gi,"[quote]"); - rep(/<\/blockquote>/gi,"[/quote]"); - rep(/
                                            /gi,"[hr]"); - rep(/
                                            /gi,"\n"); - rep(//gi,"\n"); - rep(/
                                            /gi,"\n"); - rep(/

                                            /gi,""); - rep(/<\/p>/gi,"\n"); - rep(/ |\u00a0/gi," "); - rep(/"/gi,"\""); - rep(/</gi,"<"); - rep(/>/gi,">"); - rep(/&/gi,"&"); - - // Hack to fix an annoying bug of TinyMCE where block formats don't - // work when forced_root_block = ''. So set forced_root_block = 'div' - // and then strip out the divs manually - rep(/

                                            /gi,""); - rep(/<\/div>/gi,""); - - if(codes != null) { - for(var i=0; i",""); - codes[i] = codes[i].replace("",""); - rep(/\[\$!\$!CODEBLOCK!\$!\$\]/i,"[code]"+codes[i]+"[/code]"); - } - } - - return s; - }, - - // BBCode -> HTML from DFRN dialect - _dfrn_bbcode2html : function(s) { - s = tinymce.trim(s); - - - function rep(re, str) { - - - /*//modify code to keep stuff intact within [code][/code] blocks - //Waitman Gobble NO WARRANTY - - - var o = new Array(); - var x = s.split("[code]"); - var i = 0; - - var si = ""; - si = x.shift(); - si = si.replace(re,str); - o.push(si); - - for (i = 0; i < x.length; i++) { - var no = new Array(); - var j = x.shift(); - var g = j.split("[/code]"); - no.push(g.shift()); - si = g.shift(); - si = si.replace(re,str); - no.push(si); - o.push(no.join("[/code]")); - } - - s = o.join("[code]");*/ - - s = s.replace(re, str); - - }; - - - - function get(re) { - return s.match(re); - } - - - - // Preserve HTML tags inside code blocks - var codes = get(/\[code\](.*?)\[\/code\]/gi); - rep(/\[code\](.*?)\[\/code\]/gi,"[$!$!CODEBLOCK!$!$]"); - - // example: [b] to - rep(/\n/gi,"
                                            "); - rep(/\[b\]/gi,""); - rep(/\[\/b\]/gi,""); - rep(/\[i\]/gi,""); - rep(/\[\/i\]/gi,""); - rep(/\[u\]/gi,""); - rep(/\[\/u\]/gi,""); - rep(/\[hr\]/gi,"
                                            "); - rep(/\[bookmark=([^\]]+)\](.*?)\[\/bookmark\]/gi,"$2"); - rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"
                                            $2"); - rep(/\[url\](.*?)\[\/url\]/gi,"$1"); - rep(/\[img=(.*?)x(.*?)\](.*?)\[\/img\]/gi,""); - rep(/\[img\](.*?)\[\/img\]/gi,""); - - rep(/\[list\](.*?)\[\/list\]/gi, '
                                              $1
                                            '); - rep(/\[list=\](.*?)\[\/list\]/gi, '
                                              $1
                                            '); - rep(/\[list=1\](.*?)\[\/list\]/gi, '
                                              $1
                                            '); - rep(/\[list=i\](.*?)\[\/list\]/gi,'
                                              $1
                                            '); - rep(/\[list=I\](.*?)\[\/list\]/gi, '
                                              $1
                                            '); - rep(/\[list=a\](.*?)\[\/list\]/gi, '
                                              $1
                                            '); - rep(/\[list=A\](.*?)\[\/list\]/gi, '
                                              $1
                                            '); - rep(/\[li\](.*?)\[\/li\]/gi, '
                                          • $1
                                          • '); - rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"$2"); - rep(/\[size=(.*?)\](.*?)\[\/size\]/gi,"$2"); - //rep(/\[code\](.*?)\[\/code\]/gi,"$1"); - rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"
                                            $1
                                            "); - - /* oembed */ - function _b2h_cb(match, url) { - url = bin2hex(url); - function s_b2h(data) { - match = data; - } - $.ajax({ - url: 'oembed/b2h?url=' + url, - async: false, - success: s_b2h, - dataType: 'html' - }); - return match; - } - - s = s.replace(/\[embed\](.*?)\[\/embed\]/gi, _b2h_cb); - - /* /oembed */ - - if(codes != null) { - for(var i=0; i"+codes[i]+"
                                            "); - } - } - - return s; - } - }); - - // Register plugin - tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin.js deleted file mode 100644 index 8f8821fd6..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(a,b){var d=this,c=a.getParam("bbcode_dialect","punbb").toLowerCase();a.onBeforeSetContent.add(function(e,f){f.content=d["_"+c+"_bbcode2html"](f.content)});a.onPostProcess.add(function(e,f){if(f.set){f.content=d["_"+c+"_bbcode2html"](f.content)}if(f.get){f.content=d["_"+c+"_html2bbcode"](f.content)}})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_punbb_html2bbcode:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/(.*?)<\/a>/gi,"[url=$1]$2[/url]");b(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/(.*?)<\/span>/gi,"[color=$1]$2[/color]");b(/(.*?)<\/font>/gi,"[color=$1]$2[/color]");b(/(.*?)<\/span>/gi,"[size=$1]$2[/size]");b(/(.*?)<\/font>/gi,"$1");b(//gi,"[img]$1[/img]");b(/(.*?)<\/span>/gi,"[code]$1[/code]");b(/(.*?)<\/span>/gi,"[quote]$1[/quote]");b(/(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]");b(/(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]");b(/(.*?)<\/em>/gi,"[code][i]$1[/i][/code]");b(/(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]");b(/(.*?)<\/u>/gi,"[code][u]$1[/u][/code]");b(/(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]");b(/<\/(strong|b)>/gi,"[/b]");b(/<(strong|b)>/gi,"[b]");b(/<\/(em|i)>/gi,"[/i]");b(/<(em|i)>/gi,"[i]");b(/<\/u>/gi,"[/u]");b(/(.*?)<\/span>/gi,"[u]$1[/u]");b(//gi,"[u]");b(/]*>/gi,"[quote]");b(/<\/blockquote>/gi,"[/quote]");b(/
                                            /gi,"\n");b(//gi,"\n");b(/
                                            /gi,"\n");b(/

                                            /gi,"");b(/<\/p>/gi,"\n");b(/ |\u00a0/gi," ");b(/"/gi,'"');b(/</gi,"<");b(/>/gi,">");b(/&/gi,"&");return a},_punbb_bbcode2html:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/\n/gi,"
                                            ");b(/\[b\]/gi,"");b(/\[\/b\]/gi,"");b(/\[i\]/gi,"");b(/\[\/i\]/gi,"");b(/\[u\]/gi,"");b(/\[\/u\]/gi,"");b(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'$2');b(/\[url\](.*?)\[\/url\]/gi,'$1');b(/\[img\](.*?)\[\/img\]/gi,'');b(/\[color=(.*?)\](.*?)\[\/color\]/gi,'$2');b(/\[code\](.*?)\[\/code\]/gi,'$1 ');b(/\[quote.*?\](.*?)\[\/quote\]/gi,'$1 ');return a}});tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin_src.js deleted file mode 100644 index 4e7eb3377..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/bbcode/orig/editor_plugin_src.js +++ /dev/null @@ -1,120 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.BBCodePlugin', { - init : function(ed, url) { - var t = this, dialect = ed.getParam('bbcode_dialect', 'punbb').toLowerCase(); - - ed.onBeforeSetContent.add(function(ed, o) { - o.content = t['_' + dialect + '_bbcode2html'](o.content); - }); - - ed.onPostProcess.add(function(ed, o) { - if (o.set) - o.content = t['_' + dialect + '_bbcode2html'](o.content); - - if (o.get) - o.content = t['_' + dialect + '_html2bbcode'](o.content); - }); - }, - - getInfo : function() { - return { - longname : 'BBCode Plugin', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - // HTML -> BBCode in PunBB dialect - _punbb_html2bbcode : function(s) { - s = tinymce.trim(s); - - function rep(re, str) { - s = s.replace(re, str); - }; - - // example: to [b] - rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); - rep(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); - rep(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"); - rep(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); - rep(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"); - rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); - rep(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"); - rep(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"); - rep(/(.*?)<\/font>/gi,"$1"); - rep(//gi,"[img]$1[/img]"); - rep(/(.*?)<\/span>/gi,"[code]$1[/code]"); - rep(/(.*?)<\/span>/gi,"[quote]$1[/quote]"); - rep(/(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"); - rep(/(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"); - rep(/(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"); - rep(/(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"); - rep(/(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"); - rep(/(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"); - rep(/<\/(strong|b)>/gi,"[/b]"); - rep(/<(strong|b)>/gi,"[b]"); - rep(/<\/(em|i)>/gi,"[/i]"); - rep(/<(em|i)>/gi,"[i]"); - rep(/<\/u>/gi,"[/u]"); - rep(/(.*?)<\/span>/gi,"[u]$1[/u]"); - rep(//gi,"[u]"); - rep(/]*>/gi,"[quote]"); - rep(/<\/blockquote>/gi,"[/quote]"); - rep(/
                                            /gi,"\n"); - rep(//gi,"\n"); - rep(/
                                            /gi,"\n"); - rep(/

                                            /gi,""); - rep(/<\/p>/gi,"\n"); - rep(/ |\u00a0/gi," "); - rep(/"/gi,"\""); - rep(/</gi,"<"); - rep(/>/gi,">"); - rep(/&/gi,"&"); - - return s; - }, - - // BBCode -> HTML from PunBB dialect - _punbb_bbcode2html : function(s) { - s = tinymce.trim(s); - - function rep(re, str) { - s = s.replace(re, str); - }; - - // example: [b] to - rep(/\n/gi,"
                                            "); - rep(/\[b\]/gi,""); - rep(/\[\/b\]/gi,""); - rep(/\[i\]/gi,""); - rep(/\[\/i\]/gi,""); - rep(/\[u\]/gi,""); - rep(/\[\/u\]/gi,""); - rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"$2"); - rep(/\[url\](.*?)\[\/url\]/gi,"$1"); - rep(/\[img\](.*?)\[\/img\]/gi,""); - rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"$2"); - rep(/\[code\](.*?)\[\/code\]/gi,"$1 "); - rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"$1 "); - - return s; - } - }); - - // Register plugin - tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js deleted file mode 100644 index 2ed042c3a..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var a=tinymce.dom.Event,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.ContextMenu",{init:function(f){var i=this,g,d,j,e;i.editor=f;d=f.settings.contextmenu_never_use_native;i.onContextMenu=new tinymce.util.Dispatcher(this);e=function(k){h(f,k)};g=f.onContextMenu.add(function(k,l){if((j!==0?j:l.ctrlKey)&&!d){return}a.cancel(l);if(l.target.nodeName=="IMG"){k.selection.select(l.target)}i._getMenu(k).showMenu(l.clientX||l.pageX,l.clientY||l.pageY);a.add(k.getDoc(),"click",e);k.nodeChanged()});f.onRemove.add(function(){if(i._menu){i._menu.removeAll()}});function h(k,l){j=0;if(l&&l.button==2){j=l.ctrlKey;return}if(i._menu){i._menu.removeAll();i._menu.destroy();a.remove(k.getDoc(),"click",e);i._menu=null}}f.onMouseDown.add(h);f.onKeyDown.add(h);f.onKeyDown.add(function(k,l){if(l.shiftKey&&!l.ctrlKey&&!l.altKey&&l.keyCode===121){a.cancel(l);g(k,l)}})},getInfo:function(){return{longname:"Contextmenu",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getMenu:function(e){var g=this,d=g._menu,j=e.selection,f=j.isCollapsed(),h=j.getNode()||e.getBody(),i,k;if(d){d.removeAll();d.destroy()}k=b.getPos(e.getContentAreaContainer());d=e.controlManager.createDropMenu("contextmenu",{offset_x:k.x+e.getParam("contextmenu_offset_x",0),offset_y:k.y+e.getParam("contextmenu_offset_y",0),constrain:1,keyboard_focus:true});g._menu=d;d.add({title:"advanced.cut_desc",icon:"cut",cmd:"Cut"}).setDisabled(f);d.add({title:"advanced.copy_desc",icon:"copy",cmd:"Copy"}).setDisabled(f);d.add({title:"advanced.paste_desc",icon:"paste",cmd:"Paste"});if((h.nodeName=="A"&&!e.dom.getAttrib(h,"name"))||!f){d.addSeparator();d.add({title:"advanced.link_desc",icon:"link",cmd:e.plugins.advlink?"mceAdvLink":"mceLink",ui:true});d.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"})}d.addSeparator();d.add({title:"advanced.image_desc",icon:"image",cmd:e.plugins.advimage?"mceAdvImage":"mceImage",ui:true});d.addSeparator();i=d.addMenu({title:"contextmenu.align"});i.add({title:"contextmenu.left",icon:"justifyleft",cmd:"JustifyLeft"});i.add({title:"contextmenu.center",icon:"justifycenter",cmd:"JustifyCenter"});i.add({title:"contextmenu.right",icon:"justifyright",cmd:"JustifyRight"});i.add({title:"contextmenu.full",icon:"justifyfull",cmd:"JustifyFull"});g.onContextMenu.dispatch(g,d,h,f);return d}});tinymce.PluginManager.add("contextmenu",tinymce.plugins.ContextMenu)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js deleted file mode 100644 index 48b0fff99..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js +++ /dev/null @@ -1,163 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM; - - /** - * This plugin a context menu to TinyMCE editor instances. - * - * @class tinymce.plugins.ContextMenu - */ - tinymce.create('tinymce.plugins.ContextMenu', { - /** - * Initializes the plugin, this will be executed after the plugin has been created. - * This call is done before the editor instance has finished it's initialization so use the onInit event - * of the editor instance to intercept that event. - * - * @method init - * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. - * @param {string} url Absolute URL to where the plugin is located. - */ - init : function(ed) { - var t = this, showMenu, contextmenuNeverUseNative, realCtrlKey, hideMenu; - - t.editor = ed; - - contextmenuNeverUseNative = ed.settings.contextmenu_never_use_native; - - /** - * This event gets fired when the context menu is shown. - * - * @event onContextMenu - * @param {tinymce.plugins.ContextMenu} sender Plugin instance sending the event. - * @param {tinymce.ui.DropMenu} menu Drop down menu to fill with more items if needed. - */ - t.onContextMenu = new tinymce.util.Dispatcher(this); - - hideMenu = function(e) { - hide(ed, e); - }; - - showMenu = ed.onContextMenu.add(function(ed, e) { - // Block TinyMCE menu on ctrlKey and work around Safari issue - if ((realCtrlKey !== 0 ? realCtrlKey : e.ctrlKey) && !contextmenuNeverUseNative) - return; - - Event.cancel(e); - - // Select the image if it's clicked. WebKit would other wise expand the selection - if (e.target.nodeName == 'IMG') - ed.selection.select(e.target); - - t._getMenu(ed).showMenu(e.clientX || e.pageX, e.clientY || e.pageY); - Event.add(ed.getDoc(), 'click', hideMenu); - - ed.nodeChanged(); - }); - - ed.onRemove.add(function() { - if (t._menu) - t._menu.removeAll(); - }); - - function hide(ed, e) { - realCtrlKey = 0; - - // Since the contextmenu event moves - // the selection we need to store it away - if (e && e.button == 2) { - realCtrlKey = e.ctrlKey; - return; - } - - if (t._menu) { - t._menu.removeAll(); - t._menu.destroy(); - Event.remove(ed.getDoc(), 'click', hideMenu); - t._menu = null; - } - }; - - ed.onMouseDown.add(hide); - ed.onKeyDown.add(hide); - ed.onKeyDown.add(function(ed, e) { - if (e.shiftKey && !e.ctrlKey && !e.altKey && e.keyCode === 121) { - Event.cancel(e); - showMenu(ed, e); - } - }); - }, - - /** - * Returns information about the plugin as a name/value array. - * The current keys are longname, author, authorurl, infourl and version. - * - * @method getInfo - * @return {Object} Name/value array containing information about the plugin. - */ - getInfo : function() { - return { - longname : 'Contextmenu', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - _getMenu : function(ed) { - var t = this, m = t._menu, se = ed.selection, col = se.isCollapsed(), el = se.getNode() || ed.getBody(), am, p; - - if (m) { - m.removeAll(); - m.destroy(); - } - - p = DOM.getPos(ed.getContentAreaContainer()); - - m = ed.controlManager.createDropMenu('contextmenu', { - offset_x : p.x + ed.getParam('contextmenu_offset_x', 0), - offset_y : p.y + ed.getParam('contextmenu_offset_y', 0), - constrain : 1, - keyboard_focus: true - }); - - t._menu = m; - - m.add({title : 'advanced.cut_desc', icon : 'cut', cmd : 'Cut'}).setDisabled(col); - m.add({title : 'advanced.copy_desc', icon : 'copy', cmd : 'Copy'}).setDisabled(col); - m.add({title : 'advanced.paste_desc', icon : 'paste', cmd : 'Paste'}); - - if ((el.nodeName == 'A' && !ed.dom.getAttrib(el, 'name')) || !col) { - m.addSeparator(); - m.add({title : 'advanced.link_desc', icon : 'link', cmd : ed.plugins.advlink ? 'mceAdvLink' : 'mceLink', ui : true}); - m.add({title : 'advanced.unlink_desc', icon : 'unlink', cmd : 'UnLink'}); - } - - m.addSeparator(); - m.add({title : 'advanced.image_desc', icon : 'image', cmd : ed.plugins.advimage ? 'mceAdvImage' : 'mceImage', ui : true}); - - m.addSeparator(); - am = m.addMenu({title : 'contextmenu.align'}); - am.add({title : 'contextmenu.left', icon : 'justifyleft', cmd : 'JustifyLeft'}); - am.add({title : 'contextmenu.center', icon : 'justifycenter', cmd : 'JustifyCenter'}); - am.add({title : 'contextmenu.right', icon : 'justifyright', cmd : 'JustifyRight'}); - am.add({title : 'contextmenu.full', icon : 'justifyfull', cmd : 'JustifyFull'}); - - t.onContextMenu.dispatch(t, m, el, col); - - return m; - } - }); - - // Register plugin - tinymce.PluginManager.add('contextmenu', tinymce.plugins.ContextMenu); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js deleted file mode 100644 index 90847e78e..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.Directionality",{init:function(b,c){var d=this;d.editor=b;function a(e){var h=b.dom,g,f=b.selection.getSelectedBlocks();if(f.length){g=h.getAttrib(f[0],"dir");tinymce.each(f,function(i){if(!h.getParent(i.parentNode,"*[dir='"+e+"']",h.getRoot())){if(g!=e){h.setAttrib(i,"dir",e)}else{h.setAttrib(i,"dir",null)}}});b.nodeChanged()}}b.addCommand("mceDirectionLTR",function(){a("ltr")});b.addCommand("mceDirectionRTL",function(){a("rtl")});b.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});b.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});b.onNodeChange.add(d._nodeChange,d)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js deleted file mode 100644 index b13401412..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js +++ /dev/null @@ -1,85 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.Directionality', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - function setDir(dir) { - var dom = ed.dom, curDir, blocks = ed.selection.getSelectedBlocks(); - - if (blocks.length) { - curDir = dom.getAttrib(blocks[0], "dir"); - - tinymce.each(blocks, function(block) { - // Add dir to block if the parent block doesn't already have that dir - if (!dom.getParent(block.parentNode, "*[dir='" + dir + "']", dom.getRoot())) { - if (curDir != dir) { - dom.setAttrib(block, "dir", dir); - } else { - dom.setAttrib(block, "dir", null); - } - } - }); - - ed.nodeChanged(); - } - } - - ed.addCommand('mceDirectionLTR', function() { - setDir("ltr"); - }); - - ed.addCommand('mceDirectionRTL', function() { - setDir("rtl"); - }); - - ed.addButton('ltr', {title : 'directionality.ltr_desc', cmd : 'mceDirectionLTR'}); - ed.addButton('rtl', {title : 'directionality.rtl_desc', cmd : 'mceDirectionRTL'}); - - ed.onNodeChange.add(t._nodeChange, t); - }, - - getInfo : function() { - return { - longname : 'Directionality', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - _nodeChange : function(ed, cm, n) { - var dom = ed.dom, dir; - - n = dom.getParent(n, dom.isBlock); - if (!n) { - cm.setDisabled('ltr', 1); - cm.setDisabled('rtl', 1); - return; - } - - dir = dom.getAttrib(n, 'dir'); - cm.setActive('ltr', dir == "ltr"); - cm.setDisabled('ltr', 0); - cm.setActive('rtl', dir == "rtl"); - cm.setDisabled('rtl', 0); - } - }); - - // Register plugin - tinymce.PluginManager.add('directionality', tinymce.plugins.Directionality); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js deleted file mode 100644 index dbdd8ffb5..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js deleted file mode 100644 index 71d541697..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js +++ /dev/null @@ -1,43 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function(tinymce) { - tinymce.create('tinymce.plugins.EmotionsPlugin', { - init : function(ed, url) { - // Register commands - ed.addCommand('mceEmotion', function() { - ed.windowManager.open({ - file : url + '/emotions.htm', - width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)), - height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - // Register buttons - ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'}); - }, - - getInfo : function() { - return { - longname : 'Emotions', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin); -})(tinymce); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm b/library/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm deleted file mode 100644 index 101355654..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm +++ /dev/null @@ -1,42 +0,0 @@ - - - - {#emotions_dlg.title} - - - - - -

                                            -
                                            {#emotions_dlg.title}:

                                            - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            {#emotions_dlg.usage}
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif deleted file mode 100644 index ba90cc36fb0415d0273d1cd206bff63fd9c91fde..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 354 zcmV-o0iFIwNk%w1VG;lm0Mr!#3ke00dJfFY%i+lrhK7V(RutUQJhPY;?(XfrsZKgL z7WLQ^zPO&zzav{)SL^9nBOw~z(=orMEH5uC-P_gr`uhCnASMa|$-iRw?m_(dUwU8) zq>Kx}s1_F$4FCWDA^8LW0018VEC2ui01^Na000Hw;3tYzX_jM3Qpv$_M?zI9i5=0S zX-{-uv=l3%&P0s%m9Ox_a(m_c|u z01g3U0`Wll5)poVdma=N8y<3f0Sf~hXmTC}2oxMW4FdxUj+z4<0}lrX2nP=qkDRIt z9Ge*(qzMrj3jrIOjvI{`5eWzt3`G_T8yChG8w(a19SkK12@M(+799Zr9n=~PzBCmA z5)BU-)YKUd4H5!D9|!^o9kWIe9SH(WDHRk92}DZ?3})2$P@$55g90f0N)ZA8JID5J Aw*UYD diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif deleted file mode 100644 index 74d897a4f6d22e814e2b054e98b8a75fb464b4be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 329 zcmV-P0k-}}Nk%w1VG;lm0Mr-&E)xPSit@9T3%;vR+|V+?t0A(pllJjXrMl7n=_A_a za^B+Su$LjvyC3@TIQZNZa##w=!k(SO^P#bO*w(eU#;{U83XFCU_V)J5wrb+;g2vkN z#>U24qVoOvY5)KLA^8LW0018VEC2ui01^Na000HX;3tY$X_jM3QUfCh%s^o(nF++< zc?Th6v=oL>*by8K!mhvwelUXuuW&&U9iGO3hM@>Njw{l^#0q9mWpcefdI;O$;efnY zkd~@r-o$*74FCWI1%d((4+jDz0va0>69^fI6%`W{8w!gU1pyL>prH>E0R<%k6Aq%H z4ij+^9TEwM5P}eh2@)L<~6+>@EpxfA0YrcPNsSu diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif deleted file mode 100644 index 963a96b8a7593b1d8bcbab073abe5ee4e539dbf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 331 zcmV-R0kr-{Nk%w1VG;lm0MrryDh>j~yq&6%75dW~z^P39(NxsGDE{UkxtkIEq(S-a zRKlwv+S=Lr?>hbYY~sQ?c3T&ZcN_Nh_EU3s(>Io6B&>WW`@bsw**)Ocy1bht z{*G6|uwwqUQ2+n{A^8LW0018VEC2ui01^Na000HZ;3tYwX_jM3YQ!c88=*-m*&&bO zILd=`w3KAC;8hxpif*w9ek6oqV-Z0L77fROK$BSR@5BAv-%C>6y>>#+D4e#&nz^qMDItlpp zTG728+|V&?R13PIEBW(C`uh6d*t-1sZ^XQv;oDD}iYLOV7uVO;{`xl4#4tJ{0;h@! z>)kdc3IhA?Hvj+tA^8La0018VEC2ui01^Na06+!P;3tYuX_ljS7!u|-O)I}TzP1q%xT4HOFwMJaO;2ml)!00$)141pU08x3594IX?4 o5YuAA8yXz~76K1c;3^jg77WP185Rf^u}23N0sR5^q(T4yJ1sVN5dZ)H diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif deleted file mode 100644 index 716f55e161bfebb1c3d34f0b0f40c177fc82c30b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmV-a0jvH;Nk%w1VG;lm0MroxK_>;q#>Sw62=mns-On=0wransPVevT^YK{Dy(0YY zH)vE6x0?;Wqb>gZas1^OT0si>`ugD5y87}*#H$s=yq(wA*8cf7{`y+(+9J7|9QfT7 z`ROHiU=Y&6FaQ7mA^8LW0018VEC2ui01^Na000Hi;3tYvX_jM3N`@u~nju9hSuh^r zIEcp-wA7(NL0~2d#RP+(G!CPPA>o*KJjv_CkucCA5=K?AfF#RG2V*8BU@jL304|4P z2;PGRF@bj$et;Jf2pR_mVsIA<85|n}kQ*Bq42Ovqj*yy>6P0=h3X&9Z01yyk~2N4w%7#RW^55W%`0vQ+-6(y_*2pqz~90*;x9}yM}%$UI(7t#$D mK_3Se1{4HKM+6iG7EmeH6$V631{L5n)#CyC0qx-*Apkoyg?w!Q diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif deleted file mode 100644 index 334d49e0e60f2997c9ba24071764f95d9e08a5cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmV-W0k8f?Nk%w1VG;lm0MrryI4TI-%dP0m5~*+Y`T~ z7Rth){q{I_X%*S48uRZ|(b3V&wIKTX`u+WJzo<^$#wuY;3W|Cf{O29IkTAcaE&lpe z+P*^H)-tknA^-pYA^8LW0018VEC2ui01^Na000He;3tYwX_n)75QgVvNQ`6#5gcMm zEEG~blgXokptKAJgCU?%JT?yos!R6cPtcQWh2siHlNI2L}ifQhgX02^InZ2?-ktkqVRyZJY^Trk|lv zovp437?1~d46O)?2(1i+2NDYk8<+_Kil!K!3njA^!I#dL8x<729}*B65mC=m5gHH@ iDi9P3f*VjB3KS4HDb_qqRul{0DIT=Nk%w1VG;lm0Mrx!QauaC#>Vb6G=_5=^YB^9wrc376Sb5I-qJGf@9vZ# z5WlKU(!eVB+7tfnDXp0zyB`?BZ5IChalob*`uh6d*t+@dKGHcU+L|83yq*5~IoH?L zy`?Gp<{bX|SpWb4A^8LW0018VEC2ui01^Na000Hg;3tYyX_jM3R?Bl7&r(q;SsVx< zNd$5fv{ZsKA$SlL3&KN~a1tZRf*~1Ltkx9~2uL3&z-yb0WJDRY082|tP diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif deleted file mode 100644 index 82c5b182e61d32bd394acae551eff180f1eebd26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmV-d0jT~*Nk%w1VG;lm0Q4UK!lp8=s;1-69HWK?p_PpF=Pd8~Ygtcnp*fHAL z**;z>w3iC}`fmL6IkKB1N;3zEa}&zKpsu1;_V)HocR5-{J~BcYvE`YXhBnc@CfU=! za(Ec zG>66zv=rqr;2j)}gKqE$ekcSD?}0=WLB?AWp85)qALd+P=4)6X4oXy{bw2>K^d$ z@6ERvva+(4ib~41YUkTEn1&#?rzrOHT>1I=Y*h`+%*@WtPUPg|!@EEI_d5LgZ>^Og z-qyBKJqy*wF8}}lA^8La0018VEC2ui01^Na06+!6;3tYxX_lj?7+U61R3gAaEg8x< zT>%mSfCwURnWQF&g=Q0ZxH1ulW`QtH0>O!5%iT_X0VBy_@EkOngU8?ye~=H!t21{= z9@Uj3a_UbE88~kh5Eq7rh!7QSBn1c?0|Off1&k^`5*QE<4-gmSR<4C>Dj%C>6W(lWoQPVevT^YB^Fy&h6M z4YZgH{O~qtR1(Ci8T;lQ`uh6d*t-7xar*K{#Jrulo-Wtd*44u?{`oh#n;gQXGXDEo z_}UUC3IeK%0ssI2A^8La0018VEC2ui01^Na06+!R;3tYuX_ljSEE482&%+G^XK%|f zLKbCc4u{4-u|QG~LqamSTo?@JM3OKZAr!|Z2IzP@fY`=CIg$vA3qm46TowfLCt29I z6pDKuvnf~)83+sm9yW#?9s>^(89F=~2?!W44-6Ox2^vNza}fp^9v&G65pp936%Gg+ z6HpTy2o4oGoh+>l3Q)KVQwybl2oo*<4a3D469|nfEii|MH4`}p1_cZp0ssj%2>=2d q41Na?)CpS;4gvxWVpZcR76uLludD?Q1{SnP2NnVU0rZ&)0RTIit8@_n diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif deleted file mode 100644 index 0cc9bb71cca4cdeafbb248ce7e07c3708c1cbd64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmV-Y0j>T=Nk%w1VG;lm0Q4UK`{WwN#>SnDDC*4*{OcpiwransPVevTQacIr@mkQp zCf(06s)_=>r7UYx48o@u`uh6d*t-7rH~ji<`P&oj;5Wp)o!8ga`SV6TA_BIW5#ZWV z{`*)c32kA}f=futY?#YE7kxGD|7L}4&OEDw$hkm+~<00QS>F_H?J#bz?uEHnl42f5(9 z5O)`6Q9V2o5;YVLUK)Y`7!Nr+4GMq?85s%^2?`BGDRU798Vn2?1`%>22R{iO0u>bk z9tlA?nk*O<3zHJH6&Mp5qALj)E(mxM!Y&vII4dm@1Ov{`f*8pL3xPEVUI>D>1_uxa kNm?`6VH{N6Di;P13m6<67z+;u7qCYM7XkVK^`jvGJD~P?KL7v# diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif deleted file mode 100644 index 2075dc16058f1f17912167675ce5cfb9986fc71d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{4~Nk%w1VG;lm0Mrx!CJF+^#>SU@3-{U*rx+Q^wrc$ABfqLn@9*x?z8(4X zSW-O=@){bmmI~g|GQXoP);cvj3|f1M8e@{G*!tYaiCEujj1NGxRN#6#tiCETo+{x{Hkzt z5k-kPvcD=V2nbmjCgL6k{uF&2nP-t0s;w<385Nx2oxDb z9T5Pp7qJl?3Kkh9oe2sCr5F$p7zPSlsUH*@54w*83=9Or4;w)r2pcU95(FL|1Th;< aDaRQH4;Tal7#Y$v#?=Au0pHUfApkpvZg^t= diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif deleted file mode 100644 index bef7e257303f8243c89787e7a7f9955dd1f112e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 337 zcmV-X0j~Z>Nk%w1VG;lm0MroxDi#99#>R?y8~4}{%C>6#>?OadPVevTr-=vi@LATn z4rERY-qJF+n+?CCE&B3D{{3Shh?>WT0o%`b%*Voqm`dL;(4F35y zc485^n;g!+Bme*aA^8LW0018VEC2ui01^Na000Hf;3tYvX_jM3N=AnuogqakNi<9X zK?&0kwA8^tNn{?C$|IAYI1ZzT!2>}iuMddFK#NEkRl!7%6brJAnUs;)XcnA}TNBSP zxQ9;SvEfwYeSaGd2^|LqU~(QF1qBxr3Ii7x84ZVt8wCTKoSYAqc?p`G2onnpk`IOl z1`HLGj}riN2p1K12N4z&8IBDc6tEWs859;JtRB6>lf+xO9}yT19toMv8wnl`7(pKg j7zPv!OGgY81{hE&(iR3pP6ig;HPPS!_yOwPA0Yrc)=Yf3 diff --git a/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif b/library/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif deleted file mode 100644 index 0631c7616ec8624ddeee02b633326f697ee72f80..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0ipg!Nk%w1VG;lm0Q4UK(ZVUl#>Sn03F^-g-qAA3wransPV?|t@9*x%vmQ`7 z4E*pcw3rOOq%3t@4*K#({N^40{c-yG`rz2Q!KfI-yq*61HrBop*VoqW<}&{JS@_x# zwwfF$4Fdh~IsgCwA^8La0018VEC2ui01^Na06+!X;3tYwX_ljiFp=e23$zWxW@`*G zN?2ty6iUNT!AMdPLn89IbS7WCB_mWF$+hzY-{PWkp(?(Xf;zbH~P z3jOdj?W+^YwrakfE8fyG&5jTBz!3WS`fgM_;MltQ+c}4GO8)(E`S3`@yq&d~5!ct& z)v79NObo)O7XSbNA^8LW0018VEC2ui01^Na000He;3tYwX_jM3QifI(nn6h_*=Wyk zUB{y}v=qYOIUF#R3dZPhAVv~H;(|a2yN_5FH&J0|$eJ3kw4gj1Y?v5d#>LMV12^6BYy$1)ZKA zga!|m2?POz0R)f>4+aPl8KD{gz`+G_9vLMFQU?RU!8uyH9}*i52|cC+7S0YEK_3Vk i1|APfM-Ltb8&4_H83sg61{vHn(cc000qNZzApkp - - - {#example_dlg.title} - - - - - -
                                            -

                                            Here is a example dialog.

                                            -

                                            Selected text:

                                            -

                                            Custom arg:

                                            - -
                                            - - -
                                            -
                                            - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js deleted file mode 100644 index ec1f81ea4..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.PluginManager.requireLangPack("example");tinymce.create("tinymce.plugins.ExamplePlugin",{init:function(a,b){a.addCommand("mceExample",function(){a.windowManager.open({file:b+"/dialog.htm",width:320+parseInt(a.getLang("example.delta_width",0)),height:120+parseInt(a.getLang("example.delta_height",0)),inline:1},{plugin_url:b,some_custom_arg:"custom arg"})});a.addButton("example",{title:"example.desc",cmd:"mceExample",image:b+"/img/example.gif"});a.onNodeChange.add(function(d,c,e){c.setActive("example",e.nodeName=="IMG")})},createControl:function(b,a){return null},getInfo:function(){return{longname:"Example plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example",version:"1.0"}}});tinymce.PluginManager.add("example",tinymce.plugins.ExamplePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js deleted file mode 100644 index 9a0e7da15..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js +++ /dev/null @@ -1,84 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - // Load plugin specific language pack - tinymce.PluginManager.requireLangPack('example'); - - tinymce.create('tinymce.plugins.ExamplePlugin', { - /** - * Initializes the plugin, this will be executed after the plugin has been created. - * This call is done before the editor instance has finished it's initialization so use the onInit event - * of the editor instance to intercept that event. - * - * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. - * @param {string} url Absolute URL to where the plugin is located. - */ - init : function(ed, url) { - // Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample'); - ed.addCommand('mceExample', function() { - ed.windowManager.open({ - file : url + '/dialog.htm', - width : 320 + parseInt(ed.getLang('example.delta_width', 0)), - height : 120 + parseInt(ed.getLang('example.delta_height', 0)), - inline : 1 - }, { - plugin_url : url, // Plugin absolute URL - some_custom_arg : 'custom arg' // Custom argument - }); - }); - - // Register example button - ed.addButton('example', { - title : 'example.desc', - cmd : 'mceExample', - image : url + '/img/example.gif' - }); - - // Add a node change handler, selects the button in the UI when a image is selected - ed.onNodeChange.add(function(ed, cm, n) { - cm.setActive('example', n.nodeName == 'IMG'); - }); - }, - - /** - * Creates control instances based in the incomming name. This method is normally not - * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons - * but you sometimes need to create more complex controls like listboxes, split buttons etc then this - * method can be used to create those. - * - * @param {String} n Name of the control to create. - * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control. - * @return {tinymce.ui.Control} New control instance or null if no control was created. - */ - createControl : function(n, cm) { - return null; - }, - - /** - * Returns information about the plugin as a name/value array. - * The current keys are longname, author, authorurl, infourl and version. - * - * @return {Object} Name/value array containing information about the plugin. - */ - getInfo : function() { - return { - longname : 'Example plugin', - author : 'Some author', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example', - version : "1.0" - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('example', tinymce.plugins.ExamplePlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif b/library/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif deleted file mode 100644 index 1ab5da4461113d2af579898528246fdbe52ecd00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 87 zcmZ?wbhEHb6k!lyn83&Y1dNP~ia%L^OhyJB5FaGNz@*pGzw+SQ`#f{}FJ-?!v#V)e mtsGNfpJeCKSAiOz**>0`XR2{OVa>-G_df0vaY"}i=f.getAll("title")[0];if(i&&i.firstChild){h.metatitle=i.firstChild.value}b(f.getAll("meta"),function(m){var k=m.attr("name"),j=m.attr("http-equiv"),l;if(k){h["meta"+k.toLowerCase()]=m.attr("content")}else{if(j=="Content-Type"){l=/charset\s*=\s*(.*)\s*/gi.exec(m.attr("content"));if(l){h.docencoding=l[1]}}}});i=f.getAll("html")[0];if(i){h.langcode=d(i,"lang")||d(i,"xml:lang")}i=f.getAll("link")[0];if(i&&i.attr("rel")=="stylesheet"){h.stylesheet=i.attr("href")}i=f.getAll("body")[0];if(i){h.langdir=d(i,"dir");h.style=d(i,"style");h.visited_color=d(i,"vlink");h.link_color=d(i,"link");h.active_color=d(i,"alink")}return h},_dataToHtml:function(g){var f,d,h,j,k,e=this.editor.dom;function c(n,l,m){n.attr(l,m?m:undefined)}function i(l){if(d.firstChild){d.insert(l,d.firstChild)}else{d.append(l)}}f=this._parseHeader();d=f.getAll("head")[0];if(!d){j=f.getAll("html")[0];d=new a("head",1);if(j.firstChild){j.insert(d,j.firstChild,true)}else{j.append(d)}}j=f.firstChild;if(g.xml_pi){k='version="1.0"';if(g.docencoding){k+=' encoding="'+g.docencoding+'"'}if(j.type!=7){j=new a("xml",7);f.insert(j,f.firstChild,true)}j.value=k}else{if(j&&j.type==7){j.remove()}}j=f.getAll("#doctype")[0];if(g.doctype){if(!j){j=new a("#doctype",10);if(g.xml_pi){f.insert(j,f.firstChild)}else{i(j)}}j.value=g.doctype.substring(9,g.doctype.length-1)}else{if(j){j.remove()}}j=f.getAll("title")[0];if(g.metatitle){if(!j){j=new a("title",1);j.append(new a("#text",3)).value=g.metatitle;i(j)}}if(g.docencoding){j=null;b(f.getAll("meta"),function(l){if(l.attr("http-equiv")=="Content-Type"){j=l}});if(!j){j=new a("meta",1);j.attr("http-equiv","Content-Type");j.shortEnded=true;i(j)}j.attr("content","text/html; charset="+g.docencoding)}b("keywords,description,author,copyright,robots".split(","),function(m){var l=f.getAll("meta"),n,p,o=g["meta"+m];for(n=0;n"))},_parseHeader:function(){return new tinymce.html.DomParser({validate:false,root_name:"#document"}).parse(this.head)},_setContent:function(g,d){var m=this,i,c,h=d.content,f,l="",e=m.editor.dom,j;function k(n){return n.replace(/<\/?[A-Z]+/g,function(o){return o.toLowerCase()})}if(d.format=="raw"&&m.head){return}if(d.source_view&&g.getParam("fullpage_hide_in_source_view")){return}h=h.replace(/<(\/?)BODY/gi,"<$1body");i=h.indexOf("",i);m.head=k(h.substring(0,i+1));c=h.indexOf("\n"}f=m._parseHeader();b(f.getAll("style"),function(n){if(n.firstChild){l+=n.firstChild.value}});j=f.getAll("body")[0];if(j){e.setAttribs(m.editor.getBody(),{style:j.attr("style")||"",dir:j.attr("dir")||"",vLink:j.attr("vlink")||"",link:j.attr("link")||"",aLink:j.attr("alink")||""})}e.remove("fullpage_styles");if(l){e.add(m.editor.getDoc().getElementsByTagName("head")[0],"style",{id:"fullpage_styles"},l);j=e.get("fullpage_styles");if(j.styleSheet){j.styleSheet.cssText=l}}},_getDefaultHeader:function(){var f="",c=this.editor,e,d="";if(c.getParam("fullpage_default_xml_pi")){f+='\n'}f+=c.getParam("fullpage_default_doctype",'');f+="\n\n\n";if(e=c.getParam("fullpage_default_title")){f+=""+e+"\n"}if(e=c.getParam("fullpage_default_encoding")){f+='\n'}if(e=c.getParam("fullpage_default_font_family")){d+="font-family: "+e+";"}if(e=c.getParam("fullpage_default_font_size")){d+="font-size: "+e+";"}if(e=c.getParam("fullpage_default_text_color")){d+="color: "+e+";"}f+="\n\n";return f},_getContent:function(d,e){var c=this;if(!e.source_view||!d.getParam("fullpage_hide_in_source_view")){e.content=tinymce.trim(c.head)+"\n"+tinymce.trim(e.content)+"\n"+tinymce.trim(c.foot)}}});tinymce.PluginManager.add("fullpage",tinymce.plugins.FullPagePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js deleted file mode 100644 index 23de7c5a1..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js +++ /dev/null @@ -1,405 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var each = tinymce.each, Node = tinymce.html.Node; - - tinymce.create('tinymce.plugins.FullPagePlugin', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - // Register commands - ed.addCommand('mceFullPageProperties', function() { - ed.windowManager.open({ - file : url + '/fullpage.htm', - width : 430 + parseInt(ed.getLang('fullpage.delta_width', 0)), - height : 495 + parseInt(ed.getLang('fullpage.delta_height', 0)), - inline : 1 - }, { - plugin_url : url, - data : t._htmlToData() - }); - }); - - // Register buttons - ed.addButton('fullpage', {title : 'fullpage.desc', cmd : 'mceFullPageProperties'}); - - ed.onBeforeSetContent.add(t._setContent, t); - ed.onGetContent.add(t._getContent, t); - }, - - getInfo : function() { - return { - longname : 'Fullpage', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullpage', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private plugin internal methods - - _htmlToData : function() { - var headerFragment = this._parseHeader(), data = {}, nodes, elm, matches, editor = this.editor; - - function getAttr(elm, name) { - var value = elm.attr(name); - - return value || ''; - }; - - // Default some values - data.fontface = editor.getParam("fullpage_default_fontface", ""); - data.fontsize = editor.getParam("fullpage_default_fontsize", ""); - - // Parse XML PI - elm = headerFragment.firstChild; - if (elm.type == 7) { - data.xml_pi = true; - matches = /encoding="([^"]+)"/.exec(elm.value); - if (matches) - data.docencoding = matches[1]; - } - - // Parse doctype - elm = headerFragment.getAll('#doctype')[0]; - if (elm) - data.doctype = '"; - - // Parse title element - elm = headerFragment.getAll('title')[0]; - if (elm && elm.firstChild) { - data.metatitle = elm.firstChild.value; - } - - // Parse meta elements - each(headerFragment.getAll('meta'), function(meta) { - var name = meta.attr('name'), httpEquiv = meta.attr('http-equiv'), matches; - - if (name) - data['meta' + name.toLowerCase()] = meta.attr('content'); - else if (httpEquiv == "Content-Type") { - matches = /charset\s*=\s*(.*)\s*/gi.exec(meta.attr('content')); - - if (matches) - data.docencoding = matches[1]; - } - }); - - // Parse html attribs - elm = headerFragment.getAll('html')[0]; - if (elm) - data.langcode = getAttr(elm, 'lang') || getAttr(elm, 'xml:lang'); - - // Parse stylesheet - elm = headerFragment.getAll('link')[0]; - if (elm && elm.attr('rel') == 'stylesheet') - data.stylesheet = elm.attr('href'); - - // Parse body parts - elm = headerFragment.getAll('body')[0]; - if (elm) { - data.langdir = getAttr(elm, 'dir'); - data.style = getAttr(elm, 'style'); - data.visited_color = getAttr(elm, 'vlink'); - data.link_color = getAttr(elm, 'link'); - data.active_color = getAttr(elm, 'alink'); - } - - return data; - }, - - _dataToHtml : function(data) { - var headerFragment, headElement, html, elm, value, dom = this.editor.dom; - - function setAttr(elm, name, value) { - elm.attr(name, value ? value : undefined); - }; - - function addHeadNode(node) { - if (headElement.firstChild) - headElement.insert(node, headElement.firstChild); - else - headElement.append(node); - }; - - headerFragment = this._parseHeader(); - headElement = headerFragment.getAll('head')[0]; - if (!headElement) { - elm = headerFragment.getAll('html')[0]; - headElement = new Node('head', 1); - - if (elm.firstChild) - elm.insert(headElement, elm.firstChild, true); - else - elm.append(headElement); - } - - // Add/update/remove XML-PI - elm = headerFragment.firstChild; - if (data.xml_pi) { - value = 'version="1.0"'; - - if (data.docencoding) - value += ' encoding="' + data.docencoding + '"'; - - if (elm.type != 7) { - elm = new Node('xml', 7); - headerFragment.insert(elm, headerFragment.firstChild, true); - } - - elm.value = value; - } else if (elm && elm.type == 7) - elm.remove(); - - // Add/update/remove doctype - elm = headerFragment.getAll('#doctype')[0]; - if (data.doctype) { - if (!elm) { - elm = new Node('#doctype', 10); - - if (data.xml_pi) - headerFragment.insert(elm, headerFragment.firstChild); - else - addHeadNode(elm); - } - - elm.value = data.doctype.substring(9, data.doctype.length - 1); - } else if (elm) - elm.remove(); - - // Add/update/remove title - elm = headerFragment.getAll('title')[0]; - if (data.metatitle) { - if (!elm) { - elm = new Node('title', 1); - elm.append(new Node('#text', 3)).value = data.metatitle; - addHeadNode(elm); - } - } - - // Add meta encoding - if (data.docencoding) { - elm = null; - each(headerFragment.getAll('meta'), function(meta) { - if (meta.attr('http-equiv') == 'Content-Type') - elm = meta; - }); - - if (!elm) { - elm = new Node('meta', 1); - elm.attr('http-equiv', 'Content-Type'); - elm.shortEnded = true; - addHeadNode(elm); - } - - elm.attr('content', 'text/html; charset=' + data.docencoding); - } - - // Add/update/remove meta - each('keywords,description,author,copyright,robots'.split(','), function(name) { - var nodes = headerFragment.getAll('meta'), i, meta, value = data['meta' + name]; - - for (i = 0; i < nodes.length; i++) { - meta = nodes[i]; - - if (meta.attr('name') == name) { - if (value) - meta.attr('content', value); - else - meta.remove(); - - return; - } - } - - if (value) { - elm = new Node('meta', 1); - elm.attr('name', name); - elm.attr('content', value); - elm.shortEnded = true; - - addHeadNode(elm); - } - }); - - // Add/update/delete link - elm = headerFragment.getAll('link')[0]; - if (elm && elm.attr('rel') == 'stylesheet') { - if (data.stylesheet) - elm.attr('href', data.stylesheet); - else - elm.remove(); - } else if (data.stylesheet) { - elm = new Node('link', 1); - elm.attr({ - rel : 'stylesheet', - text : 'text/css', - href : data.stylesheet - }); - elm.shortEnded = true; - - addHeadNode(elm); - } - - // Update body attributes - elm = headerFragment.getAll('body')[0]; - if (elm) { - setAttr(elm, 'dir', data.langdir); - setAttr(elm, 'style', data.style); - setAttr(elm, 'vlink', data.visited_color); - setAttr(elm, 'link', data.link_color); - setAttr(elm, 'alink', data.active_color); - - // Update iframe body as well - dom.setAttribs(this.editor.getBody(), { - style : data.style, - dir : data.dir, - vLink : data.visited_color, - link : data.link_color, - aLink : data.active_color - }); - } - - // Set html attributes - elm = headerFragment.getAll('html')[0]; - if (elm) { - setAttr(elm, 'lang', data.langcode); - setAttr(elm, 'xml:lang', data.langcode); - } - - // Serialize header fragment and crop away body part - html = new tinymce.html.Serializer({ - validate: false, - indent: true, - apply_source_formatting : true, - indent_before: 'head,html,body,meta,title,script,link,style', - indent_after: 'head,html,body,meta,title,script,link,style' - }).serialize(headerFragment); - - this.head = html.substring(0, html.indexOf('')); - }, - - _parseHeader : function() { - // Parse the contents with a DOM parser - return new tinymce.html.DomParser({ - validate: false, - root_name: '#document' - }).parse(this.head); - }, - - _setContent : function(ed, o) { - var self = this, startPos, endPos, content = o.content, headerFragment, styles = '', dom = self.editor.dom, elm; - - function low(s) { - return s.replace(/<\/?[A-Z]+/g, function(a) { - return a.toLowerCase(); - }) - }; - - // Ignore raw updated if we already have a head, this will fix issues with undo/redo keeping the head/foot separate - if (o.format == 'raw' && self.head) - return; - - if (o.source_view && ed.getParam('fullpage_hide_in_source_view')) - return; - - // Parse out head, body and footer - content = content.replace(/<(\/?)BODY/gi, '<$1body'); - startPos = content.indexOf('', startPos); - self.head = low(content.substring(0, startPos + 1)); - - endPos = content.indexOf('\n'; - - header += editor.getParam('fullpage_default_doctype', ''); - header += '\n\n\n'; - - if (value = editor.getParam('fullpage_default_title')) - header += '' + value + '\n'; - - if (value = editor.getParam('fullpage_default_encoding')) - header += '\n'; - - if (value = editor.getParam('fullpage_default_font_family')) - styles += 'font-family: ' + value + ';'; - - if (value = editor.getParam('fullpage_default_font_size')) - styles += 'font-size: ' + value + ';'; - - if (value = editor.getParam('fullpage_default_text_color')) - styles += 'color: ' + value + ';'; - - header += '\n\n'; - - return header; - }, - - _getContent : function(ed, o) { - var self = this; - - if (!o.source_view || !ed.getParam('fullpage_hide_in_source_view')) - o.content = tinymce.trim(self.head) + '\n' + tinymce.trim(o.content) + '\n' + tinymce.trim(self.foot); - } - }); - - // Register plugin - tinymce.PluginManager.add('fullpage', tinymce.plugins.FullPagePlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm b/library/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm deleted file mode 100644 index 14ab8652e..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm +++ /dev/null @@ -1,259 +0,0 @@ - - - - {#fullpage_dlg.title} - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#fullpage_dlg.meta_props} - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                             
                                             
                                             
                                             
                                             
                                              - -
                                            -
                                            - -
                                            - {#fullpage_dlg.langprops} - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                              - -
                                             
                                            - -
                                             
                                            -
                                            -
                                            - -
                                            -
                                            - {#fullpage_dlg.appearance_textprops} - - - - - - - - - - - - - - - - -
                                            - -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            -
                                            - -
                                            - {#fullpage_dlg.appearance_bgprops} - - - - - - - - - - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            -
                                            - -
                                            - {#fullpage_dlg.appearance_marginprops} - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            - {#fullpage_dlg.appearance_linkprops} - - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                              
                                            -
                                            - -
                                            - {#fullpage_dlg.appearance_style} - - - - - - - - - - -
                                            - - - - -
                                             
                                            -
                                            -
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js b/library/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js deleted file mode 100644 index 3f672ad3b..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js +++ /dev/null @@ -1,232 +0,0 @@ -/** - * fullpage.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinyMCEPopup.requireLangPack(); - - var defaultDocTypes = - 'XHTML 1.0 Transitional=,' + - 'XHTML 1.0 Frameset=,' + - 'XHTML 1.0 Strict=,' + - 'XHTML 1.1=,' + - 'HTML 4.01 Transitional=,' + - 'HTML 4.01 Strict=,' + - 'HTML 4.01 Frameset='; - - var defaultEncodings = - 'Western european (iso-8859-1)=iso-8859-1,' + - 'Central European (iso-8859-2)=iso-8859-2,' + - 'Unicode (UTF-8)=utf-8,' + - 'Chinese traditional (Big5)=big5,' + - 'Cyrillic (iso-8859-5)=iso-8859-5,' + - 'Japanese (iso-2022-jp)=iso-2022-jp,' + - 'Greek (iso-8859-7)=iso-8859-7,' + - 'Korean (iso-2022-kr)=iso-2022-kr,' + - 'ASCII (us-ascii)=us-ascii'; - - var defaultFontNames = 'Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings'; - var defaultFontSizes = '10px,11px,12px,13px,14px,15px,16px'; - - function setVal(id, value) { - var elm = document.getElementById(id); - - if (elm) { - value = value || ''; - - if (elm.nodeName == "SELECT") - selectByValue(document.forms[0], id, value); - else if (elm.type == "checkbox") - elm.checked = !!value; - else - elm.value = value; - } - }; - - function getVal(id) { - var elm = document.getElementById(id); - - if (elm.nodeName == "SELECT") - return elm.options[elm.selectedIndex].value; - - if (elm.type == "checkbox") - return elm.checked; - - return elm.value; - }; - - window.FullPageDialog = { - changedStyle : function() { - var val, styles = tinyMCEPopup.editor.dom.parseStyle(getVal('style')); - - setVal('fontface', styles['font-face']); - setVal('fontsize', styles['font-size']); - setVal('textcolor', styles['color']); - - if (val = styles['background-image']) - setVal('bgimage', val.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1")); - else - setVal('bgimage', ''); - - setVal('bgcolor', styles['background-color']); - - // Reset margin form elements - setVal('topmargin', ''); - setVal('rightmargin', ''); - setVal('bottommargin', ''); - setVal('leftmargin', ''); - - // Expand margin - if (val = styles['margin']) { - val = val.split(' '); - styles['margin-top'] = val[0] || ''; - styles['margin-right'] = val[1] || val[0] || ''; - styles['margin-bottom'] = val[2] || val[0] || ''; - styles['margin-left'] = val[3] || val[0] || ''; - } - - if (val = styles['margin-top']) - setVal('topmargin', val.replace(/px/, '')); - - if (val = styles['margin-right']) - setVal('rightmargin', val.replace(/px/, '')); - - if (val = styles['margin-bottom']) - setVal('bottommargin', val.replace(/px/, '')); - - if (val = styles['margin-left']) - setVal('leftmargin', val.replace(/px/, '')); - - updateColor('bgcolor_pick', 'bgcolor'); - updateColor('textcolor_pick', 'textcolor'); - }, - - changedStyleProp : function() { - var val, dom = tinyMCEPopup.editor.dom, styles = dom.parseStyle(getVal('style')); - - styles['font-face'] = getVal('fontface'); - styles['font-size'] = getVal('fontsize'); - styles['color'] = getVal('textcolor'); - styles['background-color'] = getVal('bgcolor'); - - if (val = getVal('bgimage')) - styles['background-image'] = "url('" + val + "')"; - else - styles['background-image'] = ''; - - delete styles['margin']; - - if (val = getVal('topmargin')) - styles['margin-top'] = val + "px"; - else - styles['margin-top'] = ''; - - if (val = getVal('rightmargin')) - styles['margin-right'] = val + "px"; - else - styles['margin-right'] = ''; - - if (val = getVal('bottommargin')) - styles['margin-bottom'] = val + "px"; - else - styles['margin-bottom'] = ''; - - if (val = getVal('leftmargin')) - styles['margin-left'] = val + "px"; - else - styles['margin-left'] = ''; - - // Serialize, parse and reserialize this will compress redundant styles - setVal('style', dom.serializeStyle(dom.parseStyle(dom.serializeStyle(styles)))); - this.changedStyle(); - }, - - update : function() { - var data = {}; - - tinymce.each(tinyMCEPopup.dom.select('select,input,textarea'), function(node) { - data[node.id] = getVal(node.id); - }); - - tinyMCEPopup.editor.plugins.fullpage._dataToHtml(data); - tinyMCEPopup.close(); - } - }; - - function init() { - var form = document.forms[0], i, item, list, editor = tinyMCEPopup.editor; - - // Setup doctype select box - list = editor.getParam("fullpage_doctypes", defaultDocTypes).split(','); - for (i = 0; i < list.length; i++) { - item = list[i].split('='); - - if (item.length > 1) - addSelectValue(form, 'doctype', item[0], item[1]); - } - - // Setup fonts select box - list = editor.getParam("fullpage_fonts", defaultFontNames).split(';'); - for (i = 0; i < list.length; i++) { - item = list[i].split('='); - - if (item.length > 1) - addSelectValue(form, 'fontface', item[0], item[1]); - } - - // Setup fontsize select box - list = editor.getParam("fullpage_fontsizes", defaultFontSizes).split(','); - for (i = 0; i < list.length; i++) - addSelectValue(form, 'fontsize', list[i], list[i]); - - // Setup encodings select box - list = editor.getParam("fullpage_encodings", defaultEncodings).split(','); - for (i = 0; i < list.length; i++) { - item = list[i].split('='); - - if (item.length > 1) - addSelectValue(form, 'docencoding', item[0], item[1]); - } - - // Setup color pickers - document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); - document.getElementById('link_color_pickcontainer').innerHTML = getColorPickerHTML('link_color_pick','link_color'); - document.getElementById('visited_color_pickcontainer').innerHTML = getColorPickerHTML('visited_color_pick','visited_color'); - document.getElementById('active_color_pickcontainer').innerHTML = getColorPickerHTML('active_color_pick','active_color'); - document.getElementById('textcolor_pickcontainer').innerHTML = getColorPickerHTML('textcolor_pick','textcolor'); - document.getElementById('stylesheet_browsercontainer').innerHTML = getBrowserHTML('stylesheetbrowser','stylesheet','file','fullpage'); - document.getElementById('bgimage_pickcontainer').innerHTML = getBrowserHTML('bgimage_browser','bgimage','image','fullpage'); - - // Resize some elements - if (isVisible('stylesheetbrowser')) - document.getElementById('stylesheet').style.width = '220px'; - - if (isVisible('link_href_browser')) - document.getElementById('element_link_href').style.width = '230px'; - - if (isVisible('bgimage_browser')) - document.getElementById('bgimage').style.width = '210px'; - - // Update form - tinymce.each(tinyMCEPopup.getWindowArg('data'), function(value, key) { - setVal(key, value); - }); - - FullPageDialog.changedStyle(); - - // Update colors - updateColor('textcolor_pick', 'textcolor'); - updateColor('bgcolor_pick', 'bgcolor'); - updateColor('visited_color_pick', 'visited_color'); - updateColor('active_color_pick', 'active_color'); - updateColor('link_color_pick', 'link_color'); - }; - - tinyMCEPopup.onInit.add(init); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js deleted file mode 100644 index 516edc74f..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.fullpage_dlg',{title:"Document Properties","meta_tab":"General","appearance_tab":"Appearance","advanced_tab":"Advanced","meta_props":"Meta Information",langprops:"Language and Encoding","meta_title":"Title","meta_keywords":"Keywords","meta_description":"Description","meta_robots":"Robots",doctypes:"Doctype",langcode:"Language Code",langdir:"Language Direction",ltr:"Left to Right",rtl:"Right to Left","xml_pi":"XML Declaration",encoding:"Character Encoding","appearance_bgprops":"Background Properties","appearance_marginprops":"Body Margins","appearance_linkprops":"Link Colors","appearance_textprops":"Text Properties",bgcolor:"Background Color",bgimage:"Background Image","left_margin":"Left Margin","right_margin":"Right Margin","top_margin":"Top Margin","bottom_margin":"Bottom Margin","text_color":"Text Color","font_size":"Font Size","font_face":"Font Face","link_color":"Link Color","hover_color":"Hover Color","visited_color":"Visited Color","active_color":"Active Color",textcolor:"Color",fontsize:"Font Size",fontface:"Font Family","meta_index_follow":"Index and Follow the Links","meta_index_nofollow":"Index and Don\'t Follow the Links","meta_noindex_follow":"Do Not Index but Follow the Links","meta_noindex_nofollow":"Do Not Index and Don\'t Follow the Links","appearance_style":"Stylesheet and Style Properties",stylesheet:"Stylesheet",style:"Style",author:"Author",copyright:"Copyright",add:"Add New Element",remove:"Remove Selected Element",moveup:"Move Selected Element Up",movedown:"Move Selected Element Down","head_elements":"Head Elements",info:"Information","add_title":"Title Element","add_meta":"Meta Element","add_script":"Script Element","add_style":"Style Element","add_link":"Link Element","add_base":"Base Element","add_comment":"Comment Node","title_element":"Title Element","script_element":"Script Element","style_element":"Style Element","base_element":"Base Element","link_element":"Link Element","meta_element":"Meta Element","comment_element":"Comment",src:"Source",language:"Language",href:"HREF",target:"Target",type:"Type",charset:"Charset",defer:"Defer",media:"Media",properties:"Properties",name:"Name",value:"Value",content:"Content",rel:"Rel",rev:"Rev",hreflang:"HREF Lang","general_props":"General","advanced_props":"Advanced"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js deleted file mode 100644 index a2eb03483..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var a=tinymce.DOM;tinymce.create("tinymce.plugins.FullScreenPlugin",{init:function(d,e){var f=this,g={},c,b;f.editor=d;d.addCommand("mceFullScreen",function(){var i,j=a.doc.documentElement;if(d.getParam("fullscreen_is_enabled")){if(d.getParam("fullscreen_new_window")){closeFullscreen()}else{a.win.setTimeout(function(){tinymce.dom.Event.remove(a.win,"resize",f.resizeFunc);tinyMCE.get(d.getParam("fullscreen_editor_id")).setContent(d.getContent());tinyMCE.remove(d);a.remove("mce_fullscreen_container");j.style.overflow=d.getParam("fullscreen_html_overflow");a.setStyle(a.doc.body,"overflow",d.getParam("fullscreen_overflow"));a.win.scrollTo(d.getParam("fullscreen_scrollx"),d.getParam("fullscreen_scrolly"));tinyMCE.settings=tinyMCE.oldSettings},10)}return}if(d.getParam("fullscreen_new_window")){i=a.win.open(e+"/fullscreen.htm","mceFullScreenPopup","fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width="+screen.availWidth+",height="+screen.availHeight);try{i.resizeTo(screen.availWidth,screen.availHeight)}catch(h){}}else{tinyMCE.oldSettings=tinyMCE.settings;g.fullscreen_overflow=a.getStyle(a.doc.body,"overflow",1)||"auto";g.fullscreen_html_overflow=a.getStyle(j,"overflow",1);c=a.getViewPort();g.fullscreen_scrollx=c.x;g.fullscreen_scrolly=c.y;if(tinymce.isOpera&&g.fullscreen_overflow=="visible"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&g.fullscreen_overflow=="scroll"){g.fullscreen_overflow="auto"}if(tinymce.isIE&&(g.fullscreen_html_overflow=="visible"||g.fullscreen_html_overflow=="scroll")){g.fullscreen_html_overflow="auto"}if(g.fullscreen_overflow=="0px"){g.fullscreen_overflow=""}a.setStyle(a.doc.body,"overflow","hidden");j.style.overflow="hidden";c=a.getViewPort();a.win.scrollTo(0,0);if(tinymce.isIE){c.h-=1}if(tinymce.isIE6||document.compatMode=="BackCompat"){b="absolute;top:"+c.y}else{b="fixed;top:0"}n=a.add(a.doc.body,"div",{id:"mce_fullscreen_container",style:"position:"+b+";left:0;width:"+c.w+"px;height:"+c.h+"px;z-index:200000;"});a.add(n,"div",{id:"mce_fullscreen"});tinymce.each(d.settings,function(k,l){g[l]=k});g.id="mce_fullscreen";g.width=n.clientWidth;g.height=n.clientHeight-15;g.fullscreen_is_enabled=true;g.fullscreen_editor_id=d.id;g.theme_advanced_resizing=false;g.save_onsavecallback=function(){d.setContent(tinyMCE.get(g.id).getContent());d.execCommand("mceSave")};tinymce.each(d.getParam("fullscreen_settings"),function(m,l){g[l]=m});if(g.theme_advanced_toolbar_location==="external"){g.theme_advanced_toolbar_location="top"}f.fullscreenEditor=new tinymce.Editor("mce_fullscreen",g);f.fullscreenEditor.onInit.add(function(){f.fullscreenEditor.setContent(d.getContent());f.fullscreenEditor.focus()});f.fullscreenEditor.render();f.fullscreenElement=new tinymce.dom.Element("mce_fullscreen_container");f.fullscreenElement.update();f.resizeFunc=tinymce.dom.Event.add(a.win,"resize",function(){var o=tinymce.DOM.getViewPort(),l=f.fullscreenEditor,k,m;k=l.dom.getSize(l.getContainer().getElementsByTagName("table")[0]);m=l.dom.getSize(l.getContainer().getElementsByTagName("iframe")[0]);l.theme.resizeTo(o.w-k.w+m.w,o.h-k.h+m.h)})}});d.addButton("fullscreen",{title:"fullscreen.desc",cmd:"mceFullScreen"});d.onNodeChange.add(function(i,h){h.setActive("fullscreen",i.getParam("fullscreen_is_enabled"))})},getInfo:function(){return{longname:"Fullscreen",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("fullscreen",tinymce.plugins.FullScreenPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js deleted file mode 100644 index 524b487aa..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js +++ /dev/null @@ -1,159 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var DOM = tinymce.DOM; - - tinymce.create('tinymce.plugins.FullScreenPlugin', { - init : function(ed, url) { - var t = this, s = {}, vp, posCss; - - t.editor = ed; - - // Register commands - ed.addCommand('mceFullScreen', function() { - var win, de = DOM.doc.documentElement; - - if (ed.getParam('fullscreen_is_enabled')) { - if (ed.getParam('fullscreen_new_window')) - closeFullscreen(); // Call to close in new window - else { - DOM.win.setTimeout(function() { - tinymce.dom.Event.remove(DOM.win, 'resize', t.resizeFunc); - tinyMCE.get(ed.getParam('fullscreen_editor_id')).setContent(ed.getContent()); - tinyMCE.remove(ed); - DOM.remove('mce_fullscreen_container'); - de.style.overflow = ed.getParam('fullscreen_html_overflow'); - DOM.setStyle(DOM.doc.body, 'overflow', ed.getParam('fullscreen_overflow')); - DOM.win.scrollTo(ed.getParam('fullscreen_scrollx'), ed.getParam('fullscreen_scrolly')); - tinyMCE.settings = tinyMCE.oldSettings; // Restore old settings - }, 10); - } - - return; - } - - if (ed.getParam('fullscreen_new_window')) { - win = DOM.win.open(url + "/fullscreen.htm", "mceFullScreenPopup", "fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width=" + screen.availWidth + ",height=" + screen.availHeight); - try { - win.resizeTo(screen.availWidth, screen.availHeight); - } catch (e) { - // Ignore - } - } else { - tinyMCE.oldSettings = tinyMCE.settings; // Store old settings - s.fullscreen_overflow = DOM.getStyle(DOM.doc.body, 'overflow', 1) || 'auto'; - s.fullscreen_html_overflow = DOM.getStyle(de, 'overflow', 1); - vp = DOM.getViewPort(); - s.fullscreen_scrollx = vp.x; - s.fullscreen_scrolly = vp.y; - - // Fixes an Opera bug where the scrollbars doesn't reappear - if (tinymce.isOpera && s.fullscreen_overflow == 'visible') - s.fullscreen_overflow = 'auto'; - - // Fixes an IE bug where horizontal scrollbars would appear - if (tinymce.isIE && s.fullscreen_overflow == 'scroll') - s.fullscreen_overflow = 'auto'; - - // Fixes an IE bug where the scrollbars doesn't reappear - if (tinymce.isIE && (s.fullscreen_html_overflow == 'visible' || s.fullscreen_html_overflow == 'scroll')) - s.fullscreen_html_overflow = 'auto'; - - if (s.fullscreen_overflow == '0px') - s.fullscreen_overflow = ''; - - DOM.setStyle(DOM.doc.body, 'overflow', 'hidden'); - de.style.overflow = 'hidden'; //Fix for IE6/7 - vp = DOM.getViewPort(); - DOM.win.scrollTo(0, 0); - - if (tinymce.isIE) - vp.h -= 1; - - // Use fixed position if it exists - if (tinymce.isIE6 || document.compatMode == 'BackCompat') - posCss = 'absolute;top:' + vp.y; - else - posCss = 'fixed;top:0'; - - n = DOM.add(DOM.doc.body, 'div', { - id : 'mce_fullscreen_container', - style : 'position:' + posCss + ';left:0;width:' + vp.w + 'px;height:' + vp.h + 'px;z-index:200000;'}); - DOM.add(n, 'div', {id : 'mce_fullscreen'}); - - tinymce.each(ed.settings, function(v, n) { - s[n] = v; - }); - - s.id = 'mce_fullscreen'; - s.width = n.clientWidth; - s.height = n.clientHeight - 15; - s.fullscreen_is_enabled = true; - s.fullscreen_editor_id = ed.id; - s.theme_advanced_resizing = false; - s.save_onsavecallback = function() { - ed.setContent(tinyMCE.get(s.id).getContent()); - ed.execCommand('mceSave'); - }; - - tinymce.each(ed.getParam('fullscreen_settings'), function(v, k) { - s[k] = v; - }); - - if (s.theme_advanced_toolbar_location === 'external') - s.theme_advanced_toolbar_location = 'top'; - - t.fullscreenEditor = new tinymce.Editor('mce_fullscreen', s); - t.fullscreenEditor.onInit.add(function() { - t.fullscreenEditor.setContent(ed.getContent()); - t.fullscreenEditor.focus(); - }); - - t.fullscreenEditor.render(); - - t.fullscreenElement = new tinymce.dom.Element('mce_fullscreen_container'); - t.fullscreenElement.update(); - //document.body.overflow = 'hidden'; - - t.resizeFunc = tinymce.dom.Event.add(DOM.win, 'resize', function() { - var vp = tinymce.DOM.getViewPort(), fed = t.fullscreenEditor, outerSize, innerSize; - - // Get outer/inner size to get a delta size that can be used to calc the new iframe size - outerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('table')[0]); - innerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('iframe')[0]); - - fed.theme.resizeTo(vp.w - outerSize.w + innerSize.w, vp.h - outerSize.h + innerSize.h); - }); - } - }); - - // Register buttons - ed.addButton('fullscreen', {title : 'fullscreen.desc', cmd : 'mceFullScreen'}); - - ed.onNodeChange.add(function(ed, cm) { - cm.setActive('fullscreen', ed.getParam('fullscreen_is_enabled')); - }); - }, - - getInfo : function() { - return { - longname : 'Fullscreen', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('fullscreen', tinymce.plugins.FullScreenPlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm b/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm deleted file mode 100644 index ffe528e41..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - -
                                            - -
                                            - - - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js deleted file mode 100644 index e9cba106c..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.IESpell",{init:function(a,b){var c=this,d;if(!tinymce.isIE){return}c.editor=a;a.addCommand("mceIESpell",function(){try{d=new ActiveXObject("ieSpell.ieSpellExtension");d.CheckDocumentNode(a.getDoc().documentElement)}catch(f){if(f.number==-2146827859){a.windowManager.confirm(a.getLang("iespell.download"),function(e){if(e){window.open("http://www.iespell.com/download.php","ieSpellDownload","")}})}else{a.windowManager.alert("Error Loading ieSpell: Exception "+f.number)}}});a.addButton("iespell",{title:"iespell.iespell_desc",cmd:"mceIESpell"})},getInfo:function(){return{longname:"IESpell (IE Only)",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("iespell",tinymce.plugins.IESpell)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js deleted file mode 100644 index 1b2bb9846..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js +++ /dev/null @@ -1,54 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.IESpell', { - init : function(ed, url) { - var t = this, sp; - - if (!tinymce.isIE) - return; - - t.editor = ed; - - // Register commands - ed.addCommand('mceIESpell', function() { - try { - sp = new ActiveXObject("ieSpell.ieSpellExtension"); - sp.CheckDocumentNode(ed.getDoc().documentElement); - } catch (e) { - if (e.number == -2146827859) { - ed.windowManager.confirm(ed.getLang("iespell.download"), function(s) { - if (s) - window.open('http://www.iespell.com/download.php', 'ieSpellDownload', ''); - }); - } else - ed.windowManager.alert("Error Loading ieSpell: Exception " + e.number); - } - }); - - // Register buttons - ed.addButton('iespell', {title : 'iespell.iespell_desc', cmd : 'mceIESpell'}); - }, - - getInfo : function() { - return { - longname : 'IESpell (IE Only)', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('iespell', tinymce.plugins.IESpell); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js deleted file mode 100644 index 8bb96f9cb..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var d=tinymce.DOM,b=tinymce.dom.Element,a=tinymce.dom.Event,e=tinymce.each,c=tinymce.is;tinymce.create("tinymce.plugins.InlinePopups",{init:function(f,g){f.onBeforeRenderUI.add(function(){f.windowManager=new tinymce.InlineWindowManager(f);d.loadCSS(g+"/skins/"+(f.settings.inlinepopups_skin||"clearlooks2")+"/window.css")})},getInfo:function(){return{longname:"InlinePopups",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/inlinepopups",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.create("tinymce.InlineWindowManager:tinymce.WindowManager",{InlineWindowManager:function(f){var g=this;g.parent(f);g.zIndex=300000;g.count=0;g.windows={}},open:function(s,j){var z=this,i,k="",r=z.editor,g=0,v=0,h,m,o,q,l,x,y,n;s=s||{};j=j||{};if(!s.inline){return z.parent(s,j)}n=z._frontWindow();if(n&&d.get(n.id+"_ifr")){n.focussedElement=d.get(n.id+"_ifr").contentWindow.document.activeElement}if(!s.type){z.bookmark=r.selection.getBookmark(1)}i=d.uniqueId();h=d.getViewPort();s.width=parseInt(s.width||320);s.height=parseInt(s.height||240)+(tinymce.isIE?8:0);s.min_width=parseInt(s.min_width||150);s.min_height=parseInt(s.min_height||100);s.max_width=parseInt(s.max_width||2000);s.max_height=parseInt(s.max_height||2000);s.left=s.left||Math.round(Math.max(h.x,h.x+(h.w/2)-(s.width/2)));s.top=s.top||Math.round(Math.max(h.y,h.y+(h.h/2)-(s.height/2)));s.movable=s.resizable=true;j.mce_width=s.width;j.mce_height=s.height;j.mce_inline=true;j.mce_window_id=i;j.mce_auto_focus=s.auto_focus;z.features=s;z.params=j;z.onOpen.dispatch(z,s,j);if(s.type){k+=" mceModal";if(s.type){k+=" mce"+s.type.substring(0,1).toUpperCase()+s.type.substring(1)}s.resizable=false}if(s.statusbar){k+=" mceStatusbar"}if(s.resizable){k+=" mceResizable"}if(s.minimizable){k+=" mceMinimizable"}if(s.maximizable){k+=" mceMaximizable"}if(s.movable){k+=" mceMovable"}z._addAll(d.doc.body,["div",{id:i,role:"dialog","aria-labelledby":s.type?i+"_content":i+"_title","class":(r.settings.inlinepopups_skin||"clearlooks2")+(tinymce.isIE&&window.getSelection?" ie9":""),style:"width:100px;height:100px"},["div",{id:i+"_wrapper","class":"mceWrapper"+k},["div",{id:i+"_top","class":"mceTop"},["div",{"class":"mceLeft"}],["div",{"class":"mceCenter"}],["div",{"class":"mceRight"}],["span",{id:i+"_title"},s.title||""]],["div",{id:i+"_middle","class":"mceMiddle"},["div",{id:i+"_left","class":"mceLeft",tabindex:"0"}],["span",{id:i+"_content"}],["div",{id:i+"_right","class":"mceRight",tabindex:"0"}]],["div",{id:i+"_bottom","class":"mceBottom"},["div",{"class":"mceLeft"}],["div",{"class":"mceCenter"}],["div",{"class":"mceRight"}],["span",{id:i+"_status"},"Content"]],["a",{"class":"mceMove",tabindex:"-1",href:"javascript:;"}],["a",{"class":"mceMin",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{"class":"mceMax",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{"class":"mceMed",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{"class":"mceClose",tabindex:"-1",href:"javascript:;",onmousedown:"return false;"}],["a",{id:i+"_resize_n","class":"mceResize mceResizeN",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_s","class":"mceResize mceResizeS",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_w","class":"mceResize mceResizeW",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_e","class":"mceResize mceResizeE",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_nw","class":"mceResize mceResizeNW",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_ne","class":"mceResize mceResizeNE",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_sw","class":"mceResize mceResizeSW",tabindex:"-1",href:"javascript:;"}],["a",{id:i+"_resize_se","class":"mceResize mceResizeSE",tabindex:"-1",href:"javascript:;"}]]]);d.setStyles(i,{top:-10000,left:-10000});if(tinymce.isGecko){d.setStyle(i,"overflow","auto")}if(!s.type){g+=d.get(i+"_left").clientWidth;g+=d.get(i+"_right").clientWidth;v+=d.get(i+"_top").clientHeight;v+=d.get(i+"_bottom").clientHeight}d.setStyles(i,{top:s.top,left:s.left,width:s.width+g,height:s.height+v});y=s.url||s.file;if(y){if(tinymce.relaxedDomain){y+=(y.indexOf("?")==-1?"?":"&")+"mce_rdomain="+tinymce.relaxedDomain}y=tinymce._addVer(y)}if(!s.type){d.add(i+"_content","iframe",{id:i+"_ifr",src:'javascript:""',frameBorder:0,style:"border:0;width:10px;height:10px"});d.setStyles(i+"_ifr",{width:s.width,height:s.height});d.setAttrib(i+"_ifr","src",y)}else{d.add(i+"_wrapper","a",{id:i+"_ok","class":"mceButton mceOk",href:"javascript:;",onmousedown:"return false;"},"Ok");if(s.type=="confirm"){d.add(i+"_wrapper","a",{"class":"mceButton mceCancel",href:"javascript:;",onmousedown:"return false;"},"Cancel")}d.add(i+"_middle","div",{"class":"mceIcon"});d.setHTML(i+"_content",s.content.replace("\n","
                                            "));a.add(i,"keyup",function(f){var p=27;if(f.keyCode===p){s.button_func(false);return a.cancel(f)}});a.add(i,"keydown",function(f){var t,p=9;if(f.keyCode===p){t=d.select("a.mceCancel",i+"_wrapper")[0];if(t&&t!==f.target){t.focus()}else{d.get(i+"_ok").focus()}return a.cancel(f)}})}o=a.add(i,"mousedown",function(t){var u=t.target,f,p;f=z.windows[i];z.focus(i);if(u.nodeName=="A"||u.nodeName=="a"){if(u.className=="mceClose"){z.close(null,i);return a.cancel(t)}else{if(u.className=="mceMax"){f.oldPos=f.element.getXY();f.oldSize=f.element.getSize();p=d.getViewPort();p.w-=2;p.h-=2;f.element.moveTo(p.x,p.y);f.element.resizeTo(p.w,p.h);d.setStyles(i+"_ifr",{width:p.w-f.deltaWidth,height:p.h-f.deltaHeight});d.addClass(i+"_wrapper","mceMaximized")}else{if(u.className=="mceMed"){f.element.moveTo(f.oldPos.x,f.oldPos.y);f.element.resizeTo(f.oldSize.w,f.oldSize.h);f.iframeElement.resizeTo(f.oldSize.w-f.deltaWidth,f.oldSize.h-f.deltaHeight);d.removeClass(i+"_wrapper","mceMaximized")}else{if(u.className=="mceMove"){return z._startDrag(i,t,u.className)}else{if(d.hasClass(u,"mceResize")){return z._startDrag(i,t,u.className.substring(13))}}}}}}});q=a.add(i,"click",function(f){var p=f.target;z.focus(i);if(p.nodeName=="A"||p.nodeName=="a"){switch(p.className){case"mceClose":z.close(null,i);return a.cancel(f);case"mceButton mceOk":case"mceButton mceCancel":s.button_func(p.className=="mceButton mceOk");return a.cancel(f)}}});a.add([i+"_left",i+"_right"],"focus",function(p){var t=d.get(i+"_ifr");if(t){var f=t.contentWindow.document.body;var u=d.select(":input:enabled,*[tabindex=0]",f);if(p.target.id===(i+"_left")){u[u.length-1].focus()}else{u[0].focus()}}else{d.get(i+"_ok").focus()}});x=z.windows[i]={id:i,mousedown_func:o,click_func:q,element:new b(i,{blocker:1,container:r.getContainer()}),iframeElement:new b(i+"_ifr"),features:s,deltaWidth:g,deltaHeight:v};x.iframeElement.on("focus",function(){z.focus(i)});if(z.count==0&&z.editor.getParam("dialog_type","modal")=="modal"){d.add(d.doc.body,"div",{id:"mceModalBlocker","class":(z.editor.settings.inlinepopups_skin||"clearlooks2")+"_modalBlocker",style:{zIndex:z.zIndex-1}});d.show("mceModalBlocker");d.setAttrib(d.doc.body,"aria-hidden","true")}else{d.setStyle("mceModalBlocker","z-index",z.zIndex-1)}if(tinymce.isIE6||/Firefox\/2\./.test(navigator.userAgent)||(tinymce.isIE&&!d.boxModel)){d.setStyles("mceModalBlocker",{position:"absolute",left:h.x,top:h.y,width:h.w-2,height:h.h-2})}d.setAttrib(i,"aria-hidden","false");z.focus(i);z._fixIELayout(i,1);if(d.get(i+"_ok")){d.get(i+"_ok").focus()}z.count++;return x},focus:function(h){var g=this,f;if(f=g.windows[h]){f.zIndex=this.zIndex++;f.element.setStyle("zIndex",f.zIndex);f.element.update();h=h+"_wrapper";d.removeClass(g.lastId,"mceFocus");d.addClass(h,"mceFocus");g.lastId=h;if(f.focussedElement){f.focussedElement.focus()}else{if(d.get(h+"_ok")){d.get(f.id+"_ok").focus()}else{if(d.get(f.id+"_ifr")){d.get(f.id+"_ifr").focus()}}}}},_addAll:function(k,h){var g,l,f=this,j=tinymce.DOM;if(c(h,"string")){k.appendChild(j.doc.createTextNode(h))}else{if(h.length){k=k.appendChild(j.create(h[0],h[1]));for(g=2;gf){g=h;f=h.zIndex}});return g},setTitle:function(f,g){var h;f=this._findId(f);if(h=d.get(f+"_title")){h.innerHTML=d.encode(g)}},alert:function(g,f,j){var i=this,h;h=i.open({title:i,type:"alert",button_func:function(k){if(f){f.call(k||i,k)}i.close(null,h.id)},content:d.encode(i.editor.getLang(g,g)),inline:1,width:400,height:130})},confirm:function(g,f,j){var i=this,h;h=i.open({title:i,type:"confirm",button_func:function(k){if(f){f.call(k||i,k)}i.close(null,h.id)},content:d.encode(i.editor.getLang(g,g)),inline:1,width:400,height:130})},_findId:function(f){var g=this;if(typeof(f)=="string"){return f}e(g.windows,function(h){var i=d.get(h.id+"_ifr");if(i&&f==i.contentWindow){f=h.id;return false}});return f},_fixIELayout:function(i,h){var f,g;if(!tinymce.isIE6){return}e(["n","s","w","e","nw","ne","sw","se"],function(j){var k=d.get(i+"_resize_"+j);d.setStyles(k,{width:h?k.clientWidth:"",height:h?k.clientHeight:"",cursor:d.getStyle(k,"cursor",1)});d.setStyle(i+"_bottom","bottom","-1px");k=0});if(f=this.windows[i]){f.element.hide();f.element.show();e(d.select("div,a",i),function(k,j){if(k.currentStyle.backgroundImage!="none"){g=new Image();g.src=k.currentStyle.backgroundImage.replace(/url\(\"(.+)\"\)/,"$1")}});d.get(i).style.filter=""}}});tinymce.PluginManager.add("inlinepopups",tinymce.plugins.InlinePopups)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js deleted file mode 100644 index 67123ca31..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +++ /dev/null @@ -1,699 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var DOM = tinymce.DOM, Element = tinymce.dom.Element, Event = tinymce.dom.Event, each = tinymce.each, is = tinymce.is; - - tinymce.create('tinymce.plugins.InlinePopups', { - init : function(ed, url) { - // Replace window manager - ed.onBeforeRenderUI.add(function() { - ed.windowManager = new tinymce.InlineWindowManager(ed); - DOM.loadCSS(url + '/skins/' + (ed.settings.inlinepopups_skin || 'clearlooks2') + "/window.css"); - }); - }, - - getInfo : function() { - return { - longname : 'InlinePopups', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/inlinepopups', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - tinymce.create('tinymce.InlineWindowManager:tinymce.WindowManager', { - InlineWindowManager : function(ed) { - var t = this; - - t.parent(ed); - t.zIndex = 300000; - t.count = 0; - t.windows = {}; - }, - - open : function(f, p) { - var t = this, id, opt = '', ed = t.editor, dw = 0, dh = 0, vp, po, mdf, clf, we, w, u, parentWindow; - - f = f || {}; - p = p || {}; - - // Run native windows - if (!f.inline) - return t.parent(f, p); - - parentWindow = t._frontWindow(); - if (parentWindow && DOM.get(parentWindow.id + '_ifr')) { - parentWindow.focussedElement = DOM.get(parentWindow.id + '_ifr').contentWindow.document.activeElement; - } - - // Only store selection if the type is a normal window - if (!f.type) - t.bookmark = ed.selection.getBookmark(1); - - id = DOM.uniqueId(); - vp = DOM.getViewPort(); - f.width = parseInt(f.width || 320); - f.height = parseInt(f.height || 240) + (tinymce.isIE ? 8 : 0); - f.min_width = parseInt(f.min_width || 150); - f.min_height = parseInt(f.min_height || 100); - f.max_width = parseInt(f.max_width || 2000); - f.max_height = parseInt(f.max_height || 2000); - f.left = f.left || Math.round(Math.max(vp.x, vp.x + (vp.w / 2.0) - (f.width / 2.0))); - f.top = f.top || Math.round(Math.max(vp.y, vp.y + (vp.h / 2.0) - (f.height / 2.0))); - f.movable = f.resizable = true; - p.mce_width = f.width; - p.mce_height = f.height; - p.mce_inline = true; - p.mce_window_id = id; - p.mce_auto_focus = f.auto_focus; - - // Transpose -// po = DOM.getPos(ed.getContainer()); -// f.left -= po.x; -// f.top -= po.y; - - t.features = f; - t.params = p; - t.onOpen.dispatch(t, f, p); - - if (f.type) { - opt += ' mceModal'; - - if (f.type) - opt += ' mce' + f.type.substring(0, 1).toUpperCase() + f.type.substring(1); - - f.resizable = false; - } - - if (f.statusbar) - opt += ' mceStatusbar'; - - if (f.resizable) - opt += ' mceResizable'; - - if (f.minimizable) - opt += ' mceMinimizable'; - - if (f.maximizable) - opt += ' mceMaximizable'; - - if (f.movable) - opt += ' mceMovable'; - - // Create DOM objects - t._addAll(DOM.doc.body, - ['div', {id : id, role : 'dialog', 'aria-labelledby': f.type ? id + '_content' : id + '_title', 'class' : (ed.settings.inlinepopups_skin || 'clearlooks2') + (tinymce.isIE && window.getSelection ? ' ie9' : ''), style : 'width:100px;height:100px'}, - ['div', {id : id + '_wrapper', 'class' : 'mceWrapper' + opt}, - ['div', {id : id + '_top', 'class' : 'mceTop'}, - ['div', {'class' : 'mceLeft'}], - ['div', {'class' : 'mceCenter'}], - ['div', {'class' : 'mceRight'}], - ['span', {id : id + '_title'}, f.title || ''] - ], - - ['div', {id : id + '_middle', 'class' : 'mceMiddle'}, - ['div', {id : id + '_left', 'class' : 'mceLeft', tabindex : '0'}], - ['span', {id : id + '_content'}], - ['div', {id : id + '_right', 'class' : 'mceRight', tabindex : '0'}] - ], - - ['div', {id : id + '_bottom', 'class' : 'mceBottom'}, - ['div', {'class' : 'mceLeft'}], - ['div', {'class' : 'mceCenter'}], - ['div', {'class' : 'mceRight'}], - ['span', {id : id + '_status'}, 'Content'] - ], - - ['a', {'class' : 'mceMove', tabindex : '-1', href : 'javascript:;'}], - ['a', {'class' : 'mceMin', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], - ['a', {'class' : 'mceMax', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], - ['a', {'class' : 'mceMed', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], - ['a', {'class' : 'mceClose', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], - ['a', {id : id + '_resize_n', 'class' : 'mceResize mceResizeN', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_s', 'class' : 'mceResize mceResizeS', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_w', 'class' : 'mceResize mceResizeW', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_e', 'class' : 'mceResize mceResizeE', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_nw', 'class' : 'mceResize mceResizeNW', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_ne', 'class' : 'mceResize mceResizeNE', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_sw', 'class' : 'mceResize mceResizeSW', tabindex : '-1', href : 'javascript:;'}], - ['a', {id : id + '_resize_se', 'class' : 'mceResize mceResizeSE', tabindex : '-1', href : 'javascript:;'}] - ] - ] - ); - - DOM.setStyles(id, {top : -10000, left : -10000}); - - // Fix gecko rendering bug, where the editors iframe messed with window contents - if (tinymce.isGecko) - DOM.setStyle(id, 'overflow', 'auto'); - - // Measure borders - if (!f.type) { - dw += DOM.get(id + '_left').clientWidth; - dw += DOM.get(id + '_right').clientWidth; - dh += DOM.get(id + '_top').clientHeight; - dh += DOM.get(id + '_bottom').clientHeight; - } - - // Resize window - DOM.setStyles(id, {top : f.top, left : f.left, width : f.width + dw, height : f.height + dh}); - - u = f.url || f.file; - if (u) { - if (tinymce.relaxedDomain) - u += (u.indexOf('?') == -1 ? '?' : '&') + 'mce_rdomain=' + tinymce.relaxedDomain; - - u = tinymce._addVer(u); - } - - if (!f.type) { - DOM.add(id + '_content', 'iframe', {id : id + '_ifr', src : 'javascript:""', frameBorder : 0, style : 'border:0;width:10px;height:10px'}); - DOM.setStyles(id + '_ifr', {width : f.width, height : f.height}); - DOM.setAttrib(id + '_ifr', 'src', u); - } else { - DOM.add(id + '_wrapper', 'a', {id : id + '_ok', 'class' : 'mceButton mceOk', href : 'javascript:;', onmousedown : 'return false;'}, 'Ok'); - - if (f.type == 'confirm') - DOM.add(id + '_wrapper', 'a', {'class' : 'mceButton mceCancel', href : 'javascript:;', onmousedown : 'return false;'}, 'Cancel'); - - DOM.add(id + '_middle', 'div', {'class' : 'mceIcon'}); - DOM.setHTML(id + '_content', f.content.replace('\n', '
                                            ')); - - Event.add(id, 'keyup', function(evt) { - var VK_ESCAPE = 27; - if (evt.keyCode === VK_ESCAPE) { - f.button_func(false); - return Event.cancel(evt); - } - }); - - Event.add(id, 'keydown', function(evt) { - var cancelButton, VK_TAB = 9; - if (evt.keyCode === VK_TAB) { - cancelButton = DOM.select('a.mceCancel', id + '_wrapper')[0]; - if (cancelButton && cancelButton !== evt.target) { - cancelButton.focus(); - } else { - DOM.get(id + '_ok').focus(); - } - return Event.cancel(evt); - } - }); - } - - // Register events - mdf = Event.add(id, 'mousedown', function(e) { - var n = e.target, w, vp; - - w = t.windows[id]; - t.focus(id); - - if (n.nodeName == 'A' || n.nodeName == 'a') { - if (n.className == 'mceClose') { - t.close(null, id); - return Event.cancel(e); - } else if (n.className == 'mceMax') { - w.oldPos = w.element.getXY(); - w.oldSize = w.element.getSize(); - - vp = DOM.getViewPort(); - - // Reduce viewport size to avoid scrollbars - vp.w -= 2; - vp.h -= 2; - - w.element.moveTo(vp.x, vp.y); - w.element.resizeTo(vp.w, vp.h); - DOM.setStyles(id + '_ifr', {width : vp.w - w.deltaWidth, height : vp.h - w.deltaHeight}); - DOM.addClass(id + '_wrapper', 'mceMaximized'); - } else if (n.className == 'mceMed') { - // Reset to old size - w.element.moveTo(w.oldPos.x, w.oldPos.y); - w.element.resizeTo(w.oldSize.w, w.oldSize.h); - w.iframeElement.resizeTo(w.oldSize.w - w.deltaWidth, w.oldSize.h - w.deltaHeight); - - DOM.removeClass(id + '_wrapper', 'mceMaximized'); - } else if (n.className == 'mceMove') - return t._startDrag(id, e, n.className); - else if (DOM.hasClass(n, 'mceResize')) - return t._startDrag(id, e, n.className.substring(13)); - } - }); - - clf = Event.add(id, 'click', function(e) { - var n = e.target; - - t.focus(id); - - if (n.nodeName == 'A' || n.nodeName == 'a') { - switch (n.className) { - case 'mceClose': - t.close(null, id); - return Event.cancel(e); - - case 'mceButton mceOk': - case 'mceButton mceCancel': - f.button_func(n.className == 'mceButton mceOk'); - return Event.cancel(e); - } - } - }); - - // Make sure the tab order loops within the dialog. - Event.add([id + '_left', id + '_right'], 'focus', function(evt) { - var iframe = DOM.get(id + '_ifr'); - if (iframe) { - var body = iframe.contentWindow.document.body; - var focusable = DOM.select(':input:enabled,*[tabindex=0]', body); - if (evt.target.id === (id + '_left')) { - focusable[focusable.length - 1].focus(); - } else { - focusable[0].focus(); - } - } else { - DOM.get(id + '_ok').focus(); - } - }); - - // Add window - w = t.windows[id] = { - id : id, - mousedown_func : mdf, - click_func : clf, - element : new Element(id, {blocker : 1, container : ed.getContainer()}), - iframeElement : new Element(id + '_ifr'), - features : f, - deltaWidth : dw, - deltaHeight : dh - }; - - w.iframeElement.on('focus', function() { - t.focus(id); - }); - - // Setup blocker - if (t.count == 0 && t.editor.getParam('dialog_type', 'modal') == 'modal') { - DOM.add(DOM.doc.body, 'div', { - id : 'mceModalBlocker', - 'class' : (t.editor.settings.inlinepopups_skin || 'clearlooks2') + '_modalBlocker', - style : {zIndex : t.zIndex - 1} - }); - - DOM.show('mceModalBlocker'); // Reduces flicker in IE - DOM.setAttrib(DOM.doc.body, 'aria-hidden', 'true'); - } else - DOM.setStyle('mceModalBlocker', 'z-index', t.zIndex - 1); - - if (tinymce.isIE6 || /Firefox\/2\./.test(navigator.userAgent) || (tinymce.isIE && !DOM.boxModel)) - DOM.setStyles('mceModalBlocker', {position : 'absolute', left : vp.x, top : vp.y, width : vp.w - 2, height : vp.h - 2}); - - DOM.setAttrib(id, 'aria-hidden', 'false'); - t.focus(id); - t._fixIELayout(id, 1); - - // Focus ok button - if (DOM.get(id + '_ok')) - DOM.get(id + '_ok').focus(); - t.count++; - - return w; - }, - - focus : function(id) { - var t = this, w; - - if (w = t.windows[id]) { - w.zIndex = this.zIndex++; - w.element.setStyle('zIndex', w.zIndex); - w.element.update(); - - id = id + '_wrapper'; - DOM.removeClass(t.lastId, 'mceFocus'); - DOM.addClass(id, 'mceFocus'); - t.lastId = id; - - if (w.focussedElement) { - w.focussedElement.focus(); - } else if (DOM.get(id + '_ok')) { - DOM.get(w.id + '_ok').focus(); - } else if (DOM.get(w.id + '_ifr')) { - DOM.get(w.id + '_ifr').focus(); - } - } - }, - - _addAll : function(te, ne) { - var i, n, t = this, dom = tinymce.DOM; - - if (is(ne, 'string')) - te.appendChild(dom.doc.createTextNode(ne)); - else if (ne.length) { - te = te.appendChild(dom.create(ne[0], ne[1])); - - for (i=2; i ix) { - fw = w; - ix = w.zIndex; - } - }); - return fw; - }, - - setTitle : function(w, ti) { - var e; - - w = this._findId(w); - - if (e = DOM.get(w + '_title')) - e.innerHTML = DOM.encode(ti); - }, - - alert : function(txt, cb, s) { - var t = this, w; - - w = t.open({ - title : t, - type : 'alert', - button_func : function(s) { - if (cb) - cb.call(s || t, s); - - t.close(null, w.id); - }, - content : DOM.encode(t.editor.getLang(txt, txt)), - inline : 1, - width : 400, - height : 130 - }); - }, - - confirm : function(txt, cb, s) { - var t = this, w; - - w = t.open({ - title : t, - type : 'confirm', - button_func : function(s) { - if (cb) - cb.call(s || t, s); - - t.close(null, w.id); - }, - content : DOM.encode(t.editor.getLang(txt, txt)), - inline : 1, - width : 400, - height : 130 - }); - }, - - // Internal functions - - _findId : function(w) { - var t = this; - - if (typeof(w) == 'string') - return w; - - each(t.windows, function(wo) { - var ifr = DOM.get(wo.id + '_ifr'); - - if (ifr && w == ifr.contentWindow) { - w = wo.id; - return false; - } - }); - - return w; - }, - - _fixIELayout : function(id, s) { - var w, img; - - if (!tinymce.isIE6) - return; - - // Fixes the bug where hover flickers and does odd things in IE6 - each(['n','s','w','e','nw','ne','sw','se'], function(v) { - var e = DOM.get(id + '_resize_' + v); - - DOM.setStyles(e, { - width : s ? e.clientWidth : '', - height : s ? e.clientHeight : '', - cursor : DOM.getStyle(e, 'cursor', 1) - }); - - DOM.setStyle(id + "_bottom", 'bottom', '-1px'); - - e = 0; - }); - - // Fixes graphics glitch - if (w = this.windows[id]) { - // Fixes rendering bug after resize - w.element.hide(); - w.element.show(); - - // Forced a repaint of the window - //DOM.get(id).style.filter = ''; - - // IE has a bug where images used in CSS won't get loaded - // sometimes when the cache in the browser is disabled - // This fix tries to solve it by loading the images using the image object - each(DOM.select('div,a', id), function(e, i) { - if (e.currentStyle.backgroundImage != 'none') { - img = new Image(); - img.src = e.currentStyle.backgroundImage.replace(/url\(\"(.+)\"\)/, '$1'); - } - }); - - DOM.get(id).style.filter = ''; - } - } - }); - - // Register plugin - tinymce.PluginManager.add('inlinepopups', tinymce.plugins.InlinePopups); -})(); - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif b/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif deleted file mode 100644 index 219139857ead162c6c83fa92e4a36eb978359b70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 810 zcmV+_1J(RTNk%v~VITk?0QP$T|NsBgZf>Is3*B5?sT&&Hqoc$;Jkrt6&k+&QHa5gV zL)l77I5;@fLqpYMWVc- z$;Z;u(cpZ1*{!X#QBc56PRYv1%goBm&CA4*kj9vnyFxN007q4)xCFi000000000000000EC2ui03ZM$000O7 zfO>+1goTEOh>41ejE#Ddx`lYP=u<6#D$nuIz(SWI zEFA^}1Gr=fzyf({6gh@S$E;fb0W@inbw`OH0<0jyAcaV_tY`tu;Q-}9nL~DuW|c$B zfB{+;EgA@rVMxoncy#S%&Cx=|gM5Uj%<`AEF#ro5b_h^H$lZ~%j?uQsqv1gcLINnz z$V0lc>C>q5v`E0^fS@#T44@D}8^s49D{>FmJ;a6Y1;88FsF47UkqoaP7{SB5x%21H on;U^3X3&`#Kb|Dn&b_<$?>}ZBkL3i3`Sa-0r$^%&nWI1eJN~S2!T1AL!8o=VbdauRnv)25R3VTvA=Vh!~_a@6HSLb|**VT%3)4#v_zecXW!-k{VZ-e zYiw<6@2F~4>g?_7FYjibFlA~}%e0v@C(W8Wb*_&)DBrWN@OfznH1FT4{BUps!wTd|YdJ0002^_xJYp^u)%)d3$)z&B_1&{{R30 z000000000000000A^8LW000^QEC2ui0CWH_000I5phk>jX`ZJhqHH^=Zk(=iEn-2g z?|i>wBOI?nEEih2q)UH?AHyg7~@-@+VH6!(;c_ zxnl@0-@$+5z5y6S@uA0c2rFuI7V_gjj3zt(raakjrMZ$WvB8W9atTdoP;NHMsS_E` zo&bQ*s1XAOQ5i;$x=5;&g^B@Cqe`7hmFm-~ShGUCs0c-^w)`cdp#12=eOP%eQY|sD1+r)(d#BVZMbAD~4*IvE#>(BS&T|xw7TPlrL+3 zoO$zRs18Dl9!)zw58wX%{rd5@fPehOCg6KeHK5@Cf($n3po0lM*gyda7AK*C5k5#^gBwbip@gwr zxFA#zlxU)fn3pyG@#n&{$-F`k&?i#Os}T#YskFu{;S5}9I=NKOD% zl13IcK>xnz`3B3WgWQ!)wLkXuHnZ0c5HvW}0r6=_Zpm`ce)8x0(|!A=bwNAx@Vw%7Dp(bgC44=paU%GsGm?BAnBx(R%)rGkzT6lrjlmL z>8F%>3M!~kDPZcUsHUnas#2}$>Z=O03hS(=%1Z03TZN@7Sh{A#Yp+%P3hY!W2w?27 z$R?|-vc)dz?6bx;3+=SXN=q&OwHg>}*IdYMD_6JPx&>~yY8|WCxyGKWSi0&O#%{ZU z8SB}+^3J(S<94K>q#ugahfi?d(AAt1bTp(;R8!O__ z4hjuog&|&Ow1y6L_~6nY!bY^QK&A*J1XR};BaJ(@)KE`%6)&h8Wq?g93 z?c|kAwoPS{a3?9ZmalP{H`@ZtDW{vp&e>*|d8!$>oy!S+xSFqx+4!8sJ}PKTu0Ct)uD=R znI-zTdit_%`kX1XwzT=HMfsK@_J>ZF~`Wpm{14%#gX`?RrPxW_?tKTt2vcW z2>QE!xVg8it*iEY1oe3U*4Nd~$-n>r00000000000000000000EC2ui03ZM$000O7 zfOvv~gm?`F4o?Cg0#6PF4TX}EcwG(x5lCAjW+Pij5dscfl$1#VUuGE{0IjYW2VVk7 z5T%0+1Q8<=O0K@HMI#Xek);g`Mh92F%&$fa#ghcdz0KAc8w9nIO}f?A*AY#Uc?QbO z3RLO});$J!g;5v0=nMAj%^ep}gir!z-+rO6w*Un=4+5YJDiFZ~I2Q!xfRmu3z#s=| zihz4T@CCRUY8(uDQlbX9GX%kWEb(N}zkt6a5bW@S#*YBZWC(Bx@FPJRcY+3`q2d)A zmpx#*`mrL2J)uzF{Ai_fBnOke0ssw~U_pYYQE6~!DagSGIIXnWiQ2(U2e47_$%qtG zKtl_-P`Bc}lcVA-0SHd)Rj{DU-aA7Q5{fb)$6lukR^TP_fghoAf$`3v(q`|FciePj zJ`5Lzj&afk40%I3YKsBdC>>Kxp>@z91EARoLqLOw8Eg0E5TStp1}jr0SxLdA!VxyA zTM#iJc<2lS0|XplvLpqLZT(nO0fGgM1vVN!2oVuSgpdy!*jPa0LraD3QY1MMPyWV) z5M!Jt2O|PlAVvri?2tta_j#uua~06xgMa@$K*EIEGPkB#}sYrS(hdInBZpyW+|1vW7c?#%0ZK)9R8@uU$7A%*K`47Ku)&&@N8% zYK4`}Z?(#q)nzsJ;d4P#TS@)v!Eck-?^kOUr>&MXooZI6QXu6`cgvfGK6NyRP`l0I zbUL24e{$GuZ=Tk)b;~w3oNZk)lVQ14(q~xFwmqvbt?JB%Wl>kZ(_t4$`g=#dTP!FfZc90uIhs65nZyc!gn8KV?V^`fOK%epx0W~O)FaE->(0k z?N*!%1i?_`Kh=Lv7=%p(X0u)L3pjdSo+ZClpSM3^jOZ=j+CO8eJz!t zq0G`~;ye*V;nnyBVl=9W>Jj!cd0-F0N&tsQ8zkEnF;O24JZ?^&qO;nwIHcqN+QW1R89rxky}AI}=gmx4Tw`N1SlNC{7h0s;mS9Zt)}#|SIi=REJiRqNljiTH@k0@h zx>r*jSI^6*BI>TpNc;poVS4>2-YcJQ#?7&Nd)eix@@huXX@A74D!h?VgENw#pGCd% zsxdBiJjhjk58aQsL`ifN^D`QSq1}1pNdyf@Mne4A*(&$hR50t$mZ#==bMuuaZyc{W z3OccYpqV9ab*SFuDkp>y%A>aq7N>y#HQJSeP+30Wl?>dA3F_dI^EEnyd3AIUAW9 QatMOy3rC81I1F^)55?|uDF6Tf diff --git a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif b/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif deleted file mode 100644 index c2a2ad454db194e428a7b9da40f62d5376a17428..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 769 zcmb7?=`WiB0LI^D)(HC`v6*aD4AW#LGRb0Oi$tH~CP=nb%N%8n zy02ceuewTUUDeW|RaMp*TlLV6R$o=rQOY{@AME+?`}QQiCwU%4Jq)?`{5B8=ECT1T z+wH!7{zji$)-UA>D9({)xO1SJGLHK54Mat(}s4_unMiKjB85EHng*~!Ddt+?(c5uHG4ZI zsc>jP#5Y6w6Wj5!Y=0^oK*&D+R;Yh@ze z7vfi;qFW{owiOfGqcB@XkwUZ0j?Km4{qjE- z6c!Z|O1!?5l~+^}tE#*^aCo0?lZ$rLKBwT;dI+nLO(UEMvb-ad9elEWPw8Xg(t zx$y<#6T+{PQ@$ecjAT|iC%dxnP5yoH$I`OLFU5*drPiz>bidcu^@a^2v}rP3-`?4^ z?Cl>M-Z(n8ot*x$0~Z|;ku35!-qAHSQN*GM3tW8AN#VWJNrHQD+6qXfO_zB^6eFVU zOjzupAb0*`W8} zQVeE5Djt<a0+Owme6r2OGio7DoTWqkhGKj0`0*1-*<$#uL5YH*kC8Z>wpCvYO~asp;G r-~A;>$wp)vkltB=c_?k6Zw*FUgrbAm;sB08O9+}m=}H3OFd*zN8L+JA diff --git a/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif b/library/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif deleted file mode 100644 index 0b4cc3682a1c62b3583d83ad83b84fce14461ec3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmZ?wbh9u| --> - - -Template for dialogs - - - - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Blured -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Focused -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Statusbar -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Statusbar, Resizable -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Resizable, Maximizable -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Blurred, Maximizable, Statusbar, Resizable -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Maximized, Maximizable, Minimizable -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Blured -
                                            - -
                                            -
                                            - Content -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - Statusbar text. -
                                            - - - - - - - - - - - - - - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Alert -
                                            - -
                                            -
                                            - - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - -
                                            -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            - - - Ok - -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - Confirm -
                                            - -
                                            -
                                            - - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - This is a very long error message. This is a very long error message. - -
                                            -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            -
                                            - - - Ok - Cancel - -
                                            -
                                            -
                                            - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js deleted file mode 100644 index 938ce6b17..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.InsertDateTime",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceInsertDate",function(){var d=c._getDateTime(new Date(),a.getParam("plugin_insertdate_dateFormat",a.getLang("insertdatetime.date_fmt")));a.execCommand("mceInsertContent",false,d)});a.addCommand("mceInsertTime",function(){var d=c._getDateTime(new Date(),a.getParam("plugin_insertdate_timeFormat",a.getLang("insertdatetime.time_fmt")));a.execCommand("mceInsertContent",false,d)});a.addButton("insertdate",{title:"insertdatetime.insertdate_desc",cmd:"mceInsertDate"});a.addButton("inserttime",{title:"insertdatetime.inserttime_desc",cmd:"mceInsertTime"})},getInfo:function(){return{longname:"Insert date/time",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/insertdatetime",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getDateTime:function(e,a){var c=this.editor;function b(g,d){g=""+g;if(g.length-1){b[e].style.zIndex=h[k];b[k].style.zIndex=h[e]}else{if(h[e]>0){b[e].style.zIndex=h[e]-1}}}else{for(g=0;gh[e]){k=g;break}}if(k>-1){b[e].style.zIndex=h[k];b[k].style.zIndex=h[e]}else{b[e].style.zIndex=h[e]+1}}c.execCommand("mceRepaint")},_getParentLayer:function(b){return this.editor.dom.getParent(b,function(c){return c.nodeType==1&&/^(absolute|relative|static)$/i.test(c.style.position)})},_insertLayer:function(){var c=this.editor,e=c.dom,d=e.getPos(e.getParent(c.selection.getNode(),"*")),b=c.getBody();c.dom.add(b,"div",{style:{position:"absolute",left:d.x,top:(d.y>20?d.y:20),width:100,height:100},"class":"mceItemVisualAid mceItemLayer"},c.selection.getContent()||c.getLang("layer.content"));if(tinymce.isIE){e.setHTML(b,b.innerHTML)}},_toggleAbsolute:function(){var b=this.editor,c=this._getParentLayer(b.selection.getNode());if(!c){c=b.dom.getParent(b.selection.getNode(),"DIV,P,IMG")}if(c){if(c.style.position.toLowerCase()=="absolute"){b.dom.setStyles(c,{position:"",left:"",top:"",width:"",height:""});b.dom.removeClass(c,"mceItemVisualAid");b.dom.removeClass(c,"mceItemLayer")}else{if(c.style.left==""){c.style.left=20+"px"}if(c.style.top==""){c.style.top=20+"px"}if(c.style.width==""){c.style.width=c.width?(c.width+"px"):"100px"}if(c.style.height==""){c.style.height=c.height?(c.height+"px"):"100px"}c.style.position="absolute";b.dom.setAttrib(c,"data-mce-style","");b.addVisual(b.getBody())}b.execCommand("mceRepaint");b.nodeChanged()}}});tinymce.PluginManager.add("layer",tinymce.plugins.Layer)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js deleted file mode 100644 index daed2806c..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js +++ /dev/null @@ -1,262 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - function findParentLayer(node) { - do { - if (node.className && node.className.indexOf('mceItemLayer') != -1) { - return node; - } - } while (node = node.parentNode); - }; - - tinymce.create('tinymce.plugins.Layer', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - // Register commands - ed.addCommand('mceInsertLayer', t._insertLayer, t); - - ed.addCommand('mceMoveForward', function() { - t._move(1); - }); - - ed.addCommand('mceMoveBackward', function() { - t._move(-1); - }); - - ed.addCommand('mceMakeAbsolute', function() { - t._toggleAbsolute(); - }); - - // Register buttons - ed.addButton('moveforward', {title : 'layer.forward_desc', cmd : 'mceMoveForward'}); - ed.addButton('movebackward', {title : 'layer.backward_desc', cmd : 'mceMoveBackward'}); - ed.addButton('absolute', {title : 'layer.absolute_desc', cmd : 'mceMakeAbsolute'}); - ed.addButton('insertlayer', {title : 'layer.insertlayer_desc', cmd : 'mceInsertLayer'}); - - ed.onInit.add(function() { - var dom = ed.dom; - - if (tinymce.isIE) - ed.getDoc().execCommand('2D-Position', false, true); - }); - - // Remove serialized styles when selecting a layer since it might be changed by a drag operation - ed.onMouseUp.add(function(ed, e) { - var layer = findParentLayer(e.target); - - if (layer) { - ed.dom.setAttrib(layer, 'data-mce-style', ''); - } - }); - - // Fixes edit focus issues with layers on Gecko - // This will enable designMode while inside a layer and disable it when outside - ed.onMouseDown.add(function(ed, e) { - var node = e.target, doc = ed.getDoc(), parent; - - if (tinymce.isGecko) { - if (findParentLayer(node)) { - if (doc.designMode !== 'on') { - doc.designMode = 'on'; - - // Repaint caret - node = doc.body; - parent = node.parentNode; - parent.removeChild(node); - parent.appendChild(node); - } - } else if (doc.designMode == 'on') { - doc.designMode = 'off'; - } - } - }); - - ed.onNodeChange.add(t._nodeChange, t); - ed.onVisualAid.add(t._visualAid, t); - }, - - getInfo : function() { - return { - longname : 'Layer', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/layer', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - _nodeChange : function(ed, cm, n) { - var le, p; - - le = this._getParentLayer(n); - p = ed.dom.getParent(n, 'DIV,P,IMG'); - - if (!p) { - cm.setDisabled('absolute', 1); - cm.setDisabled('moveforward', 1); - cm.setDisabled('movebackward', 1); - } else { - cm.setDisabled('absolute', 0); - cm.setDisabled('moveforward', !le); - cm.setDisabled('movebackward', !le); - cm.setActive('absolute', le && le.style.position.toLowerCase() == "absolute"); - } - }, - - // Private methods - - _visualAid : function(ed, e, s) { - var dom = ed.dom; - - tinymce.each(dom.select('div,p', e), function(e) { - if (/^(absolute|relative|fixed)$/i.test(e.style.position)) { - if (s) - dom.addClass(e, 'mceItemVisualAid'); - else - dom.removeClass(e, 'mceItemVisualAid'); - - dom.addClass(e, 'mceItemLayer'); - } - }); - }, - - _move : function(d) { - var ed = this.editor, i, z = [], le = this._getParentLayer(ed.selection.getNode()), ci = -1, fi = -1, nl; - - nl = []; - tinymce.walk(ed.getBody(), function(n) { - if (n.nodeType == 1 && /^(absolute|relative|static)$/i.test(n.style.position)) - nl.push(n); - }, 'childNodes'); - - // Find z-indexes - for (i=0; i -1) { - nl[ci].style.zIndex = z[fi]; - nl[fi].style.zIndex = z[ci]; - } else { - if (z[ci] > 0) - nl[ci].style.zIndex = z[ci] - 1; - } - } else { - // Move forward - - // Try find a higher one - for (i=0; i z[ci]) { - fi = i; - break; - } - } - - if (fi > -1) { - nl[ci].style.zIndex = z[fi]; - nl[fi].style.zIndex = z[ci]; - } else - nl[ci].style.zIndex = z[ci] + 1; - } - - ed.execCommand('mceRepaint'); - }, - - _getParentLayer : function(n) { - return this.editor.dom.getParent(n, function(n) { - return n.nodeType == 1 && /^(absolute|relative|static)$/i.test(n.style.position); - }); - }, - - _insertLayer : function() { - var ed = this.editor, dom = ed.dom, p = dom.getPos(dom.getParent(ed.selection.getNode(), '*')), body = ed.getBody(); - - ed.dom.add(body, 'div', { - style : { - position : 'absolute', - left : p.x, - top : (p.y > 20 ? p.y : 20), - width : 100, - height : 100 - }, - 'class' : 'mceItemVisualAid mceItemLayer' - }, ed.selection.getContent() || ed.getLang('layer.content')); - - // Workaround for IE where it messes up the JS engine if you insert a layer on IE 6,7 - if (tinymce.isIE) - dom.setHTML(body, body.innerHTML); - }, - - _toggleAbsolute : function() { - var ed = this.editor, le = this._getParentLayer(ed.selection.getNode()); - - if (!le) - le = ed.dom.getParent(ed.selection.getNode(), 'DIV,P,IMG'); - - if (le) { - if (le.style.position.toLowerCase() == "absolute") { - ed.dom.setStyles(le, { - position : '', - left : '', - top : '', - width : '', - height : '' - }); - - ed.dom.removeClass(le, 'mceItemVisualAid'); - ed.dom.removeClass(le, 'mceItemLayer'); - } else { - if (le.style.left == "") - le.style.left = 20 + 'px'; - - if (le.style.top == "") - le.style.top = 20 + 'px'; - - if (le.style.width == "") - le.style.width = le.width ? (le.width + 'px') : '100px'; - - if (le.style.height == "") - le.style.height = le.height ? (le.height + 'px') : '100px'; - - le.style.position = "absolute"; - - ed.dom.setAttrib(le, 'data-mce-style', ''); - ed.addVisual(ed.getBody()); - } - - ed.execCommand('mceRepaint'); - ed.nodeChanged(); - } - } - }); - - // Register plugin - tinymce.PluginManager.add('layer', tinymce.plugins.Layer); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js deleted file mode 100644 index 2ed5f41ae..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(a){a.onAddEditor.addToTop(function(c,b){b.settings.inline_styles=false});a.create("tinymce.plugins.LegacyOutput",{init:function(b){b.onInit.add(function(){var c="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",e=a.explode(b.settings.font_size_style_values),d=b.schema;b.formatter.register({alignleft:{selector:c,attributes:{align:"left"}},aligncenter:{selector:c,attributes:{align:"center"}},alignright:{selector:c,attributes:{align:"right"}},alignfull:{selector:c,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:true}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:true}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(f){return a.inArray(e,f.value)+1}}},forecolor:{inline:"font",attributes:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}});a.each("b,i,u,strike".split(","),function(f){d.addValidElements(f+"[*]")});if(!d.getElementRule("font")){d.addValidElements("font[face|size|color|style]")}a.each(c.split(","),function(f){var h=d.getElementRule(f),g;if(h){if(!h.attributes.align){h.attributes.align={};h.attributesOrder.push("align")}}});b.onNodeChange.add(function(g,k){var j,f,h,i;f=g.dom.getParent(g.selection.getNode(),"font");if(f){h=f.face;i=f.size}if(j=k.get("fontselect")){j.select(function(l){return l==h})}if(j=k.get("fontsizeselect")){j.select(function(m){var l=a.inArray(e,m.fontSize);return l+1==i})}})})},getInfo:function(){return{longname:"LegacyOutput",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/legacyoutput",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("legacyoutput",a.plugins.LegacyOutput)})(tinymce); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js deleted file mode 100644 index 3cdcde579..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js +++ /dev/null @@ -1,139 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - * - * This plugin will force TinyMCE to produce deprecated legacy output such as font elements, u elements, align - * attributes and so forth. There are a few cases where these old items might be needed for example in email applications or with Flash - * - * However you should NOT use this plugin if you are building some system that produces web contents such as a CMS. All these elements are - * not apart of the newer specifications for HTML and XHTML. - */ - -(function(tinymce) { - // Override inline_styles setting to force TinyMCE to produce deprecated contents - tinymce.onAddEditor.addToTop(function(tinymce, editor) { - editor.settings.inline_styles = false; - }); - - // Create the legacy ouput plugin - tinymce.create('tinymce.plugins.LegacyOutput', { - init : function(editor) { - editor.onInit.add(function() { - var alignElements = 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', - fontSizes = tinymce.explode(editor.settings.font_size_style_values), - schema = editor.schema; - - // Override some internal formats to produce legacy elements and attributes - editor.formatter.register({ - // Change alignment formats to use the deprecated align attribute - alignleft : {selector : alignElements, attributes : {align : 'left'}}, - aligncenter : {selector : alignElements, attributes : {align : 'center'}}, - alignright : {selector : alignElements, attributes : {align : 'right'}}, - alignfull : {selector : alignElements, attributes : {align : 'justify'}}, - - // Change the basic formatting elements to use deprecated element types - bold : [ - {inline : 'b', remove : 'all'}, - {inline : 'strong', remove : 'all'}, - {inline : 'span', styles : {fontWeight : 'bold'}} - ], - italic : [ - {inline : 'i', remove : 'all'}, - {inline : 'em', remove : 'all'}, - {inline : 'span', styles : {fontStyle : 'italic'}} - ], - underline : [ - {inline : 'u', remove : 'all'}, - {inline : 'span', styles : {textDecoration : 'underline'}, exact : true} - ], - strikethrough : [ - {inline : 'strike', remove : 'all'}, - {inline : 'span', styles : {textDecoration: 'line-through'}, exact : true} - ], - - // Change font size and font family to use the deprecated font element - fontname : {inline : 'font', attributes : {face : '%value'}}, - fontsize : { - inline : 'font', - attributes : { - size : function(vars) { - return tinymce.inArray(fontSizes, vars.value) + 1; - } - } - }, - - // Setup font elements for colors as well - forecolor : {inline : 'font', attributes : {color : '%value'}}, - hilitecolor : {inline : 'font', styles : {backgroundColor : '%value'}} - }); - - // Check that deprecated elements are allowed if not add them - tinymce.each('b,i,u,strike'.split(','), function(name) { - schema.addValidElements(name + '[*]'); - }); - - // Add font element if it's missing - if (!schema.getElementRule("font")) - schema.addValidElements("font[face|size|color|style]"); - - // Add the missing and depreacted align attribute for the serialization engine - tinymce.each(alignElements.split(','), function(name) { - var rule = schema.getElementRule(name), found; - - if (rule) { - if (!rule.attributes.align) { - rule.attributes.align = {}; - rule.attributesOrder.push('align'); - } - } - }); - - // Listen for the onNodeChange event so that we can do special logic for the font size and font name drop boxes - editor.onNodeChange.add(function(editor, control_manager) { - var control, fontElm, fontName, fontSize; - - // Find font element get it's name and size - fontElm = editor.dom.getParent(editor.selection.getNode(), 'font'); - if (fontElm) { - fontName = fontElm.face; - fontSize = fontElm.size; - } - - // Select/unselect the font name in droplist - if (control = control_manager.get('fontselect')) { - control.select(function(value) { - return value == fontName; - }); - } - - // Select/unselect the font size in droplist - if (control = control_manager.get('fontsizeselect')) { - control.select(function(value) { - var index = tinymce.inArray(fontSizes, value.fontSize); - - return index + 1 == fontSize; - }); - } - }); - }); - }, - - getInfo : function() { - return { - longname : 'LegacyOutput', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/legacyoutput', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('legacyoutput', tinymce.plugins.LegacyOutput); -})(tinymce); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js deleted file mode 100644 index ec21b256e..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var e=tinymce.each,r=tinymce.dom.Event,g;function p(t,s){while(t&&(t.nodeType===8||(t.nodeType===3&&/^[ \t\n\r]*$/.test(t.nodeValue)))){t=s(t)}return t}function b(s){return p(s,function(t){return t.previousSibling})}function i(s){return p(s,function(t){return t.nextSibling})}function d(s,u,t){return s.dom.getParent(u,function(v){return tinymce.inArray(t,v)!==-1})}function n(s){return s&&(s.tagName==="OL"||s.tagName==="UL")}function c(u,v){var t,w,s;t=b(u.lastChild);while(n(t)){w=t;t=b(w.previousSibling)}if(w){s=v.create("li",{style:"list-style-type: none;"});v.split(u,w);v.insertAfter(s,w);s.appendChild(w);s.appendChild(w);u=s.previousSibling}return u}function m(t,s,u){t=a(t,s,u);return o(t,s,u)}function a(u,s,v){var t=b(u.previousSibling);if(t){return h(t,u,s?t:false,v)}else{return u}}function o(u,t,v){var s=i(u.nextSibling);if(s){return h(u,s,t?s:false,v)}else{return u}}function h(u,s,t,v){if(l(u,s,!!t,v)){return f(u,s,t)}else{if(u&&u.tagName==="LI"&&n(s)){u.appendChild(s)}}return s}function l(u,t,s,v){if(!u||!t){return false}else{if(u.tagName==="LI"&&t.tagName==="LI"){return t.style.listStyleType==="none"||j(t)}else{if(n(u)){return(u.tagName===t.tagName&&(s||u.style.listStyleType===t.style.listStyleType))||q(t)}else{return v&&u.tagName==="P"&&t.tagName==="P"}}}}function q(t){var s=i(t.firstChild),u=b(t.lastChild);return s&&u&&n(t)&&s===u&&(n(s)||s.style.listStyleType==="none"||j(s))}function j(u){var t=i(u.firstChild),s=b(u.lastChild);return t&&s&&t===s&&n(t)}function f(w,v,s){var u=b(w.lastChild),t=i(v.firstChild);if(w.tagName==="P"){w.appendChild(w.ownerDocument.createElement("br"))}while(v.firstChild){w.appendChild(v.firstChild)}if(s){w.style.listStyleType=s.style.listStyleType}v.parentNode.removeChild(v);h(u,t,false);return w}function k(t,u){var s;if(!u.is(t,"li,ol,ul")){s=u.getParent(t,"li");if(s){t=s}}return t}tinymce.create("tinymce.plugins.Lists",{init:function(y){var v="TABBING";var s="EMPTY";var J="ESCAPE";var z="PARAGRAPH";var N="UNKNOWN";var x=N;function E(U){return U.keyCode===tinymce.VK.TAB&&!(U.altKey||U.ctrlKey)&&(y.queryCommandState("InsertUnorderedList")||y.queryCommandState("InsertOrderedList"))}function w(){var U=B();var W=U.parentNode.parentNode;var V=U.parentNode.lastChild===U;return V&&!t(W)&&P(U)}function t(U){if(n(U)){return U.parentNode&&U.parentNode.tagName==="LI"}else{return U.tagName==="LI"}}function F(){return y.selection.isCollapsed()&&P(B())}function B(){var U=y.selection.getStart();return((U.tagName=="BR"||U.tagName=="")&&U.parentNode.tagName=="LI")?U.parentNode:U}function P(U){var V=U.childNodes.length;if(U.tagName==="LI"){return V==0?true:V==1&&(U.firstChild.tagName==""||U.firstChild.tagName=="BR"||H(U))}return false}function H(U){var V=tinymce.grep(U.parentNode.childNodes,function(Y){return Y.tagName=="LI"});var W=U==V[V.length-1];var X=U.firstChild;return tinymce.isIE9&&W&&(X.nodeValue==String.fromCharCode(160)||X.nodeValue==String.fromCharCode(32))}function T(U){return U.keyCode===tinymce.VK.ENTER}function A(U){return T(U)&&!U.shiftKey}function M(U){if(E(U)){return v}else{if(A(U)&&w()){return N}else{if(A(U)&&F()){return s}else{return N}}}}function D(U,V){if(x==v||x==s||tinymce.isGecko&&x==J){r.cancel(V)}}function C(){var U=y.selection.getRng(true);var V=U.startContainer;if(V.nodeType==3){var W=V.nodeValue;if(tinymce.isIE9&&W.length>1&&W.charCodeAt(W.length-1)==32){return(U.endOffset==W.length-1)}else{return(U.endOffset==W.length)}}else{if(V.nodeType==1){return U.endOffset==V.childNodes.length}}return false}function I(){var W=y.selection.getNode();var V="h1,h2,h3,h4,h5,h6,p,div";var U=y.dom.is(W,V)&&W.parentNode.tagName==="LI"&&W.parentNode.lastChild===W;return y.selection.isCollapsed()&&U&&C()}function K(W,Y){if(A(Y)&&I()){var X=W.selection.getNode();var V=W.dom.create("li");var U=W.dom.getParent(X,"li");W.dom.insertAfter(V,U);if(tinymce.isIE6||tinymce.isIE7||tinyMCE.isIE8){W.selection.setCursorLocation(V,1)}else{W.selection.setCursorLocation(V,0)}Y.preventDefault()}}function u(X,Z){var ac;if(!tinymce.isGecko){return}var V=X.selection.getStart();if(Z.keyCode!=tinymce.VK.BACKSPACE||V.tagName!=="IMG"){return}function W(ag){var ah=ag.firstChild;var af=null;do{if(!ah){break}if(ah.tagName==="LI"){af=ah}}while(ah=ah.nextSibling);return af}function ae(ag,af){while(ag.childNodes.length>0){af.appendChild(ag.childNodes[0])}}ac=V.parentNode.previousSibling;if(!ac){return}var aa;if(ac.tagName==="UL"||ac.tagName==="OL"){aa=ac}else{if(ac.previousSibling&&(ac.previousSibling.tagName==="UL"||ac.previousSibling.tagName==="OL")){aa=ac.previousSibling}else{return}}var ad=W(aa);var U=X.dom.createRng();U.setStart(ad,1);U.setEnd(ad,1);X.selection.setRng(U);X.selection.collapse(true);var Y=X.selection.getBookmark();var ab=V.parentNode.cloneNode(true);if(ab.tagName==="P"||ab.tagName==="DIV"){ae(ab,ad)}else{ad.appendChild(ab)}V.parentNode.parentNode.removeChild(V.parentNode);X.selection.moveToBookmark(Y)}function G(U){var V=y.dom.getParent(U,"ol,ul");if(V!=null){var W=V.lastChild;y.selection.setCursorLocation(W,0)}}this.ed=y;y.addCommand("Indent",this.indent,this);y.addCommand("Outdent",this.outdent,this);y.addCommand("InsertUnorderedList",function(){this.applyList("UL","OL")},this);y.addCommand("InsertOrderedList",function(){this.applyList("OL","UL")},this);y.onInit.add(function(){y.editorCommands.addCommands({outdent:function(){var V=y.selection,W=y.dom;function U(X){X=W.getParent(X,W.isBlock);return X&&(parseInt(y.dom.getStyle(X,"margin-left")||0,10)+parseInt(y.dom.getStyle(X,"padding-left")||0,10))>0}return U(V.getStart())||U(V.getEnd())||y.queryCommandState("InsertOrderedList")||y.queryCommandState("InsertUnorderedList")}},"state")});y.onKeyUp.add(function(V,W){if(x==v){V.execCommand(W.shiftKey?"Outdent":"Indent",true,null);x=N;return r.cancel(W)}else{if(x==s){var U=B();var Y=V.settings.list_outdent_on_enter===true||W.shiftKey;V.execCommand(Y?"Outdent":"Indent",true,null);if(tinymce.isIE){G(U)}return r.cancel(W)}else{if(x==J){if(tinymce.isIE6||tinymce.isIE7||tinymce.isIE8){var X=V.getDoc().createTextNode("\uFEFF");V.selection.getNode().appendChild(X)}else{if(tinymce.isIE9||tinymce.isGecko){V.execCommand("Outdent");return r.cancel(W)}}}}}});function L(V,U){var W=y.getDoc().createTextNode("\uFEFF");V.insertBefore(W,U);y.selection.setCursorLocation(W,0);y.execCommand("mceRepaint")}function R(V,X){if(T(X)){var U=B();if(U){var W=U.parentNode;var Y=W&&W.parentNode;if(Y&&Y.nodeName=="LI"&&Y.firstChild==W&&U==W.firstChild){L(Y,W)}}}}function S(V,X){if(T(X)){var U=B();if(V.dom.select("ul li",U).length===1){var W=U.firstChild;L(U,W)}}}function Q(W,aa){function X(ab){var ad=[];var ae=new tinymce.dom.TreeWalker(ab.firstChild,ab);for(var ac=ae.current();ac;ac=ae.next()){if(W.dom.is(ac,"ol,ul,li")){ad.push(ac)}}return ad}if(aa.keyCode==tinymce.VK.BACKSPACE){var U=B();if(U){var Z=W.dom.getParent(U,"ol,ul"),V=W.selection.getRng();if(Z&&Z.firstChild===U&&V.startOffset==0){var Y=X(U);Y.unshift(U);W.execCommand("Outdent",false,Y);W.undoManager.add();return r.cancel(aa)}}}}function O(V,X){var U=B();if(X.keyCode===tinymce.VK.BACKSPACE&&V.dom.is(U,"li")&&U.parentNode.firstChild!==U){if(V.dom.select("ul,ol",U).length===1){var Z=U.previousSibling;V.dom.remove(V.dom.select("br",U));V.dom.remove(U,true);var W=tinymce.grep(Z.childNodes,function(aa){return aa.nodeType===3});if(W.length===1){var Y=W[0];V.selection.setCursorLocation(Y,Y.length)}V.undoManager.add();return r.cancel(X)}}}y.onKeyDown.add(function(U,V){x=M(V)});y.onKeyDown.add(D);y.onKeyDown.add(u);y.onKeyDown.add(K);if(tinymce.isGecko){y.onKeyUp.add(R)}if(tinymce.isIE8){y.onKeyUp.add(S)}if(tinymce.isGecko||tinymce.isWebKit){y.onKeyDown.add(Q)}if(tinymce.isWebKit){y.onKeyDown.add(O)}},applyList:function(y,v){var C=this,z=C.ed,I=z.dom,s=[],H=false,u=false,w=false,B,G=z.selection.getSelectedBlocks();function E(t){if(t&&t.tagName==="BR"){I.remove(t)}}function F(M){var N=I.create(y),t;function L(O){if(O.style.marginLeft||O.style.paddingLeft){C.adjustPaddingFunction(false)(O)}}if(M.tagName==="LI"){}else{if(M.tagName==="P"||M.tagName==="DIV"||M.tagName==="BODY"){K(M,function(P,O){J(P,O,M.tagName==="BODY"?null:P.parentNode);t=P.parentNode;L(t);E(O)});if(t){if(t.tagName==="LI"&&(M.tagName==="P"||G.length>1)){I.split(t.parentNode.parentNode,t.parentNode)}m(t.parentNode,true)}return}else{t=I.create("li");I.insertAfter(t,M);t.appendChild(M);L(M);M=t}}I.insertAfter(N,M);N.appendChild(M);m(N,true);s.push(M)}function J(P,L,N){var t,O=P,M;while(!I.isBlock(P.parentNode)&&P.parentNode!==I.getRoot()){P=I.split(P.parentNode,P.previousSibling);P=P.nextSibling;O=P}if(N){t=N.cloneNode(true);P.parentNode.insertBefore(t,P);while(t.firstChild){I.remove(t.firstChild)}t=I.rename(t,"li")}else{t=I.create("li");P.parentNode.insertBefore(t,P)}while(O&&O!=L){M=O.nextSibling;t.appendChild(O);O=M}if(t.childNodes.length===0){t.innerHTML='
                                            '}F(t)}function K(Q,T){var N,R,O=3,L=1,t="br,ul,ol,p,div,h1,h2,h3,h4,h5,h6,table,blockquote,address,pre,form,center,dl";function P(X,U){var V=I.createRng(),W;g.keep=true;z.selection.moveToBookmark(g);g.keep=false;W=z.selection.getRng(true);if(!U){U=X.parentNode.lastChild}V.setStartBefore(X);V.setEndAfter(U);return !(V.compareBoundaryPoints(O,W)>0||V.compareBoundaryPoints(L,W)<=0)}function S(U){if(U.nextSibling){return U.nextSibling}if(!I.isBlock(U.parentNode)&&U.parentNode!==I.getRoot()){return S(U.parentNode)}}N=Q.firstChild;var M=false;e(I.select(t,Q),function(U){if(U.hasAttribute&&U.hasAttribute("_mce_bogus")){return true}if(P(N,U)){I.addClass(U,"_mce_tagged_br");N=S(U)}});M=(N&&P(N,undefined));N=Q.firstChild;e(I.select(t,Q),function(V){var U=S(V);if(V.hasAttribute&&V.hasAttribute("_mce_bogus")){return true}if(I.hasClass(V,"_mce_tagged_br")){T(N,V,R);R=null}else{R=V}N=U});if(M){T(N,undefined,R)}}function D(t){K(t,function(M,L,N){J(M,L);E(L);E(N)})}function A(t){if(tinymce.inArray(s,t)!==-1){return}if(t.parentNode.tagName===v){I.split(t.parentNode,t);F(t);o(t.parentNode,false)}s.push(t)}function x(M){var O,N,L,t;if(tinymce.inArray(s,M)!==-1){return}M=c(M,I);while(I.is(M.parentNode,"ol,ul,li")){I.split(M.parentNode,M)}s.push(M);M=I.rename(M,"p");L=m(M,false,z.settings.force_br_newlines);if(L===M){O=M.firstChild;while(O){if(I.isBlock(O)){O=I.split(O.parentNode,O);t=true;N=O.nextSibling&&O.nextSibling.firstChild}else{N=O.nextSibling;if(t&&O.tagName==="BR"){I.remove(O)}t=false}O=N}}}e(G,function(t){t=k(t,I);if(t.tagName===v||(t.tagName==="LI"&&t.parentNode.tagName===v)){u=true}else{if(t.tagName===y||(t.tagName==="LI"&&t.parentNode.tagName===y)){H=true}else{w=true}}});if(w&&!H||u||G.length===0){B={LI:A,H1:F,H2:F,H3:F,H4:F,H5:F,H6:F,P:F,BODY:F,DIV:G.length>1?F:D,defaultAction:D,elements:this.selectedBlocks()}}else{B={defaultAction:x,elements:this.selectedBlocks(),processEvenIfEmpty:true}}this.process(B)},indent:function(){var u=this.ed,w=u.dom,x=[];function s(z){var y=w.create("li",{style:"list-style-type: none;"});w.insertAfter(y,z);return y}function t(B){var y=s(B),D=w.getParent(B,"ol,ul"),C=D.tagName,E=w.getStyle(D,"list-style-type"),A={},z;if(E!==""){A.style="list-style-type: "+E+";"}z=w.create(C,A);y.appendChild(z);return z}function v(z){if(!d(u,z,x)){z=c(z,w);var y=t(z);y.appendChild(z);m(y.parentNode,false);m(y,false);x.push(z)}}this.process({LI:v,defaultAction:this.adjustPaddingFunction(true),elements:this.selectedBlocks()})},outdent:function(y,x){var w=this,u=w.ed,z=u.dom,s=[];function A(t){var C,B,D;if(!d(u,t,s)){if(z.getStyle(t,"margin-left")!==""||z.getStyle(t,"padding-left")!==""){return w.adjustPaddingFunction(false)(t)}D=z.getStyle(t,"text-align",true);if(D==="center"||D==="right"){z.setStyle(t,"text-align","left");return}t=c(t,z);C=t.parentNode;B=t.parentNode.parentNode;if(B.tagName==="P"){z.split(B,t.parentNode)}else{z.split(C,t);if(B.tagName==="LI"){z.split(B,t)}else{if(!z.is(B,"ol,ul")){z.rename(t,"p")}}}s.push(t)}}var v=x&&tinymce.is(x,"array")?x:this.selectedBlocks();this.process({LI:A,defaultAction:this.adjustPaddingFunction(false),elements:v});e(s,m)},process:function(y){var F=this,w=F.ed.selection,z=F.ed.dom,E,u;function B(t){var s=tinymce.grep(t.childNodes,function(H){return !(H.nodeName==="BR"||H.nodeName==="SPAN"&&z.getAttrib(H,"data-mce-type")=="bookmark"||H.nodeType==3&&(H.nodeValue==String.fromCharCode(160)||H.nodeValue==""))});return s.length===0}function x(s){z.removeClass(s,"_mce_act_on");if(!s||s.nodeType!==1||!y.processEvenIfEmpty&&E.length>1&&B(s)){return}s=k(s,z);var t=y[s.tagName];if(!t){t=y.defaultAction}t(s)}function v(s){F.splitSafeEach(s.childNodes,x,true)}function C(s,t){return t>=0&&s.hasChildNodes()&&t0){t=s.shift();w.removeClass(t,"_mce_act_on");u(t);s=w.select("._mce_act_on")}},adjustPaddingFunction:function(u){var s,v,t=this.ed;s=t.settings.indentation;v=/[a-z%]+/i.exec(s);s=parseInt(s,10);return function(w){var y,x;y=parseInt(t.dom.getStyle(w,"margin-left")||0,10)+parseInt(t.dom.getStyle(w,"padding-left")||0,10);if(u){x=y+s}else{x=y-s}t.dom.setStyle(w,"padding-left","");t.dom.setStyle(w,"margin-left",x>0?x+v:"")}},selectedBlocks:function(){var s=this.ed,t=s.selection.getSelectedBlocks();return t.length==0?[s.dom.getRoot()]:t},getInfo:function(){return{longname:"Lists",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/lists",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("lists",tinymce.plugins.Lists)}()); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js deleted file mode 100644 index 1000ef745..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js +++ /dev/null @@ -1,955 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2011, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var each = tinymce.each, Event = tinymce.dom.Event, bookmark; - - // Skips text nodes that only contain whitespace since they aren't semantically important. - function skipWhitespaceNodes(e, next) { - while (e && (e.nodeType === 8 || (e.nodeType === 3 && /^[ \t\n\r]*$/.test(e.nodeValue)))) { - e = next(e); - } - return e; - } - - function skipWhitespaceNodesBackwards(e) { - return skipWhitespaceNodes(e, function(e) { - return e.previousSibling; - }); - } - - function skipWhitespaceNodesForwards(e) { - return skipWhitespaceNodes(e, function(e) { - return e.nextSibling; - }); - } - - function hasParentInList(ed, e, list) { - return ed.dom.getParent(e, function(p) { - return tinymce.inArray(list, p) !== -1; - }); - } - - function isList(e) { - return e && (e.tagName === 'OL' || e.tagName === 'UL'); - } - - function splitNestedLists(element, dom) { - var tmp, nested, wrapItem; - tmp = skipWhitespaceNodesBackwards(element.lastChild); - while (isList(tmp)) { - nested = tmp; - tmp = skipWhitespaceNodesBackwards(nested.previousSibling); - } - if (nested) { - wrapItem = dom.create('li', { style: 'list-style-type: none;'}); - dom.split(element, nested); - dom.insertAfter(wrapItem, nested); - wrapItem.appendChild(nested); - wrapItem.appendChild(nested); - element = wrapItem.previousSibling; - } - return element; - } - - function attemptMergeWithAdjacent(e, allowDifferentListStyles, mergeParagraphs) { - e = attemptMergeWithPrevious(e, allowDifferentListStyles, mergeParagraphs); - return attemptMergeWithNext(e, allowDifferentListStyles, mergeParagraphs); - } - - function attemptMergeWithPrevious(e, allowDifferentListStyles, mergeParagraphs) { - var prev = skipWhitespaceNodesBackwards(e.previousSibling); - if (prev) { - return attemptMerge(prev, e, allowDifferentListStyles ? prev : false, mergeParagraphs); - } else { - return e; - } - } - - function attemptMergeWithNext(e, allowDifferentListStyles, mergeParagraphs) { - var next = skipWhitespaceNodesForwards(e.nextSibling); - if (next) { - return attemptMerge(e, next, allowDifferentListStyles ? next : false, mergeParagraphs); - } else { - return e; - } - } - - function attemptMerge(e1, e2, differentStylesMasterElement, mergeParagraphs) { - if (canMerge(e1, e2, !!differentStylesMasterElement, mergeParagraphs)) { - return merge(e1, e2, differentStylesMasterElement); - } else if (e1 && e1.tagName === 'LI' && isList(e2)) { - // Fix invalidly nested lists. - e1.appendChild(e2); - } - return e2; - } - - function canMerge(e1, e2, allowDifferentListStyles, mergeParagraphs) { - if (!e1 || !e2) { - return false; - } else if (e1.tagName === 'LI' && e2.tagName === 'LI') { - return e2.style.listStyleType === 'none' || containsOnlyAList(e2); - } else if (isList(e1)) { - return (e1.tagName === e2.tagName && (allowDifferentListStyles || e1.style.listStyleType === e2.style.listStyleType)) || isListForIndent(e2); - } else return mergeParagraphs && e1.tagName === 'P' && e2.tagName === 'P'; - } - - function isListForIndent(e) { - var firstLI = skipWhitespaceNodesForwards(e.firstChild), lastLI = skipWhitespaceNodesBackwards(e.lastChild); - return firstLI && lastLI && isList(e) && firstLI === lastLI && (isList(firstLI) || firstLI.style.listStyleType === 'none' || containsOnlyAList(firstLI)); - } - - function containsOnlyAList(e) { - var firstChild = skipWhitespaceNodesForwards(e.firstChild), lastChild = skipWhitespaceNodesBackwards(e.lastChild); - return firstChild && lastChild && firstChild === lastChild && isList(firstChild); - } - - function merge(e1, e2, masterElement) { - var lastOriginal = skipWhitespaceNodesBackwards(e1.lastChild), firstNew = skipWhitespaceNodesForwards(e2.firstChild); - if (e1.tagName === 'P') { - e1.appendChild(e1.ownerDocument.createElement('br')); - } - while (e2.firstChild) { - e1.appendChild(e2.firstChild); - } - if (masterElement) { - e1.style.listStyleType = masterElement.style.listStyleType; - } - e2.parentNode.removeChild(e2); - attemptMerge(lastOriginal, firstNew, false); - return e1; - } - - function findItemToOperateOn(e, dom) { - var item; - if (!dom.is(e, 'li,ol,ul')) { - item = dom.getParent(e, 'li'); - if (item) { - e = item; - } - } - return e; - } - - tinymce.create('tinymce.plugins.Lists', { - init: function(ed) { - var LIST_TABBING = 'TABBING'; - var LIST_EMPTY_ITEM = 'EMPTY'; - var LIST_ESCAPE = 'ESCAPE'; - var LIST_PARAGRAPH = 'PARAGRAPH'; - var LIST_UNKNOWN = 'UNKNOWN'; - var state = LIST_UNKNOWN; - - function isTabInList(e) { - // Don't indent on Ctrl+Tab or Alt+Tab - return e.keyCode === tinymce.VK.TAB && !(e.altKey || e.ctrlKey) && - (ed.queryCommandState('InsertUnorderedList') || ed.queryCommandState('InsertOrderedList')); - } - - function isOnLastListItem() { - var li = getLi(); - var grandParent = li.parentNode.parentNode; - var isLastItem = li.parentNode.lastChild === li; - return isLastItem && !isNestedList(grandParent) && isEmptyListItem(li); - } - - function isNestedList(grandParent) { - if (isList(grandParent)) { - return grandParent.parentNode && grandParent.parentNode.tagName === 'LI'; - } else { - return grandParent.tagName === 'LI'; - } - } - - function isInEmptyListItem() { - return ed.selection.isCollapsed() && isEmptyListItem(getLi()); - } - - function getLi() { - var n = ed.selection.getStart(); - // Get start will return BR if the LI only contains a BR or an empty element as we use these to fix caret position - return ((n.tagName == 'BR' || n.tagName == '') && n.parentNode.tagName == 'LI') ? n.parentNode : n; - } - - function isEmptyListItem(li) { - var numChildren = li.childNodes.length; - if (li.tagName === 'LI') { - return numChildren == 0 ? true : numChildren == 1 && (li.firstChild.tagName == '' || li.firstChild.tagName == 'BR' || isEmptyIE9Li(li)); - } - return false; - } - - function isEmptyIE9Li(li) { - // only consider this to be last item if there is no list item content or that content is nbsp or space since IE9 creates these - var lis = tinymce.grep(li.parentNode.childNodes, function(n) {return n.tagName == 'LI'}); - var isLastLi = li == lis[lis.length - 1]; - var child = li.firstChild; - return tinymce.isIE9 && isLastLi && (child.nodeValue == String.fromCharCode(160) || child.nodeValue == String.fromCharCode(32)); - } - - function isEnter(e) { - return e.keyCode === tinymce.VK.ENTER; - } - - function isEnterWithoutShift(e) { - return isEnter(e) && !e.shiftKey; - } - - function getListKeyState(e) { - if (isTabInList(e)) { - return LIST_TABBING; - } else if (isEnterWithoutShift(e) && isOnLastListItem()) { - // Returns LIST_UNKNOWN since breaking out of lists is handled by the EnterKey.js logic now - //return LIST_ESCAPE; - return LIST_UNKNOWN; - } else if (isEnterWithoutShift(e) && isInEmptyListItem()) { - return LIST_EMPTY_ITEM; - } else { - return LIST_UNKNOWN; - } - } - - function cancelDefaultEvents(ed, e) { - // list escape is done manually using outdent as it does not create paragraphs correctly in td's - if (state == LIST_TABBING || state == LIST_EMPTY_ITEM || tinymce.isGecko && state == LIST_ESCAPE) { - Event.cancel(e); - } - } - - function isCursorAtEndOfContainer() { - var range = ed.selection.getRng(true); - var startContainer = range.startContainer; - if (startContainer.nodeType == 3) { - var value = startContainer.nodeValue; - if (tinymce.isIE9 && value.length > 1 && value.charCodeAt(value.length-1) == 32) { - // IE9 places a space on the end of the text in some cases so ignore last char - return (range.endOffset == value.length-1); - } else { - return (range.endOffset == value.length); - } - } else if (startContainer.nodeType == 1) { - return range.endOffset == startContainer.childNodes.length; - } - return false; - } - - /* - If we are at the end of a list item surrounded with an element, pressing enter should create a - new list item instead without splitting the element e.g. don't want to create new P or H1 tag - */ - function isEndOfListItem() { - var node = ed.selection.getNode(); - var validElements = 'h1,h2,h3,h4,h5,h6,p,div'; - var isLastParagraphOfLi = ed.dom.is(node, validElements) && node.parentNode.tagName === 'LI' && node.parentNode.lastChild === node; - return ed.selection.isCollapsed() && isLastParagraphOfLi && isCursorAtEndOfContainer(); - } - - // Creates a new list item after the current selection's list item parent - function createNewLi(ed, e) { - if (isEnterWithoutShift(e) && isEndOfListItem()) { - var node = ed.selection.getNode(); - var li = ed.dom.create("li"); - var parentLi = ed.dom.getParent(node, 'li'); - ed.dom.insertAfter(li, parentLi); - - // Move caret to new list element. - if (tinymce.isIE6 || tinymce.isIE7 || tinyMCE.isIE8) { - // Removed this line since it would create an odd < > tag and placing the caret inside an empty LI is handled and should be handled by the selection logic - //li.appendChild(ed.dom.create(" ")); // IE needs an element within the bullet point - ed.selection.setCursorLocation(li, 1); - } else { - ed.selection.setCursorLocation(li, 0); - } - e.preventDefault(); - } - } - - function imageJoiningListItem(ed, e) { - var prevSibling; - - if (!tinymce.isGecko) - return; - - var n = ed.selection.getStart(); - if (e.keyCode != tinymce.VK.BACKSPACE || n.tagName !== 'IMG') - return; - - function lastLI(node) { - var child = node.firstChild; - var li = null; - do { - if (!child) - break; - - if (child.tagName === 'LI') - li = child; - } while (child = child.nextSibling); - - return li; - } - - function addChildren(parentNode, destination) { - while (parentNode.childNodes.length > 0) - destination.appendChild(parentNode.childNodes[0]); - } - - // Check if there is a previous sibling - prevSibling = n.parentNode.previousSibling; - if (!prevSibling) - return; - - var ul; - if (prevSibling.tagName === 'UL' || prevSibling.tagName === 'OL') - ul = prevSibling; - else if (prevSibling.previousSibling && (prevSibling.previousSibling.tagName === 'UL' || prevSibling.previousSibling.tagName === 'OL')) - ul = prevSibling.previousSibling; - else - return; - - var li = lastLI(ul); - - // move the caret to the end of the list item - var rng = ed.dom.createRng(); - rng.setStart(li, 1); - rng.setEnd(li, 1); - ed.selection.setRng(rng); - ed.selection.collapse(true); - - // save a bookmark at the end of the list item - var bookmark = ed.selection.getBookmark(); - - // copy the image an its text to the list item - var clone = n.parentNode.cloneNode(true); - if (clone.tagName === 'P' || clone.tagName === 'DIV') - addChildren(clone, li); - else - li.appendChild(clone); - - // remove the old copy of the image - n.parentNode.parentNode.removeChild(n.parentNode); - - // move the caret where we saved the bookmark - ed.selection.moveToBookmark(bookmark); - } - - // fix the cursor position to ensure it is correct in IE - function setCursorPositionToOriginalLi(li) { - var list = ed.dom.getParent(li, 'ol,ul'); - if (list != null) { - var lastLi = list.lastChild; - // Removed this line since IE9 would report an DOM character error and placing the caret inside an empty LI is handled and should be handled by the selection logic - //lastLi.appendChild(ed.getDoc().createElement('')); - ed.selection.setCursorLocation(lastLi, 0); - } - } - - this.ed = ed; - ed.addCommand('Indent', this.indent, this); - ed.addCommand('Outdent', this.outdent, this); - ed.addCommand('InsertUnorderedList', function() { - this.applyList('UL', 'OL'); - }, this); - ed.addCommand('InsertOrderedList', function() { - this.applyList('OL', 'UL'); - }, this); - - ed.onInit.add(function() { - ed.editorCommands.addCommands({ - 'outdent': function() { - var sel = ed.selection, dom = ed.dom; - - function hasStyleIndent(n) { - n = dom.getParent(n, dom.isBlock); - return n && (parseInt(ed.dom.getStyle(n, 'margin-left') || 0, 10) + parseInt(ed.dom.getStyle(n, 'padding-left') || 0, 10)) > 0; - } - - return hasStyleIndent(sel.getStart()) || hasStyleIndent(sel.getEnd()) || ed.queryCommandState('InsertOrderedList') || ed.queryCommandState('InsertUnorderedList'); - } - }, 'state'); - }); - - ed.onKeyUp.add(function(ed, e) { - if (state == LIST_TABBING) { - ed.execCommand(e.shiftKey ? 'Outdent' : 'Indent', true, null); - state = LIST_UNKNOWN; - return Event.cancel(e); - } else if (state == LIST_EMPTY_ITEM) { - var li = getLi(); - var shouldOutdent = ed.settings.list_outdent_on_enter === true || e.shiftKey; - ed.execCommand(shouldOutdent ? 'Outdent' : 'Indent', true, null); - if (tinymce.isIE) { - setCursorPositionToOriginalLi(li); - } - - return Event.cancel(e); - } else if (state == LIST_ESCAPE) { - if (tinymce.isIE6 || tinymce.isIE7 || tinymce.isIE8) { - // append a zero sized nbsp so that caret is positioned correctly in IE after escaping and applying formatting. - // if there is no text then applying formatting for e.g a H1 to the P tag immediately following list after - // escaping from it will cause the caret to be positioned on the last li instead of staying the in P tag. - var n = ed.getDoc().createTextNode('\uFEFF'); - ed.selection.getNode().appendChild(n); - } else if (tinymce.isIE9 || tinymce.isGecko) { - // IE9 does not escape the list so we use outdent to do this and cancel the default behaviour - // Gecko does not create a paragraph outdenting inside a TD so default behaviour is cancelled and we outdent ourselves - ed.execCommand('Outdent'); - return Event.cancel(e); - } - } - }); - - function fixListItem(parent, reference) { - // a zero-sized non-breaking space is placed in the empty list item so that the nested list is - // displayed on the below line instead of next to it - var n = ed.getDoc().createTextNode('\uFEFF'); - parent.insertBefore(n, reference); - ed.selection.setCursorLocation(n, 0); - // repaint to remove rendering artifact. only visible when creating new list - ed.execCommand('mceRepaint'); - } - - function fixIndentedListItemForGecko(ed, e) { - if (isEnter(e)) { - var li = getLi(); - if (li) { - var parent = li.parentNode; - var grandParent = parent && parent.parentNode; - if (grandParent && grandParent.nodeName == 'LI' && grandParent.firstChild == parent && li == parent.firstChild) { - fixListItem(grandParent, parent); - } - } - } - } - - function fixIndentedListItemForIE8(ed, e) { - if (isEnter(e)) { - var li = getLi(); - if (ed.dom.select('ul li', li).length === 1) { - var list = li.firstChild; - fixListItem(li, list); - } - } - } - - function fixDeletingFirstCharOfList(ed, e) { - function listElements(li) { - var elements = []; - var walker = new tinymce.dom.TreeWalker(li.firstChild, li); - for (var node = walker.current(); node; node = walker.next()) { - if (ed.dom.is(node, 'ol,ul,li')) { - elements.push(node); - } - } - return elements; - } - - if (e.keyCode == tinymce.VK.BACKSPACE) { - var li = getLi(); - if (li) { - var list = ed.dom.getParent(li, 'ol,ul'), - rng = ed.selection.getRng(); - if (list && list.firstChild === li && rng.startOffset == 0) { - var elements = listElements(li); - elements.unshift(li); - ed.execCommand("Outdent", false, elements); - ed.undoManager.add(); - return Event.cancel(e); - } - } - } - } - - function fixDeletingEmptyLiInWebkit(ed, e) { - var li = getLi(); - if (e.keyCode === tinymce.VK.BACKSPACE && ed.dom.is(li, 'li') && li.parentNode.firstChild!==li) { - if (ed.dom.select('ul,ol', li).length === 1) { - var prevLi = li.previousSibling; - ed.dom.remove(ed.dom.select('br', li)); - ed.dom.remove(li, true); - var textNodes = tinymce.grep(prevLi.childNodes, function(n){ return n.nodeType === 3 }); - if (textNodes.length === 1) { - var textNode = textNodes[0]; - ed.selection.setCursorLocation(textNode, textNode.length); - } - ed.undoManager.add(); - return Event.cancel(e); - } - } - } - - ed.onKeyDown.add(function(_, e) { state = getListKeyState(e); }); - ed.onKeyDown.add(cancelDefaultEvents); - ed.onKeyDown.add(imageJoiningListItem); - ed.onKeyDown.add(createNewLi); - - if (tinymce.isGecko) { - ed.onKeyUp.add(fixIndentedListItemForGecko); - } - if (tinymce.isIE8) { - ed.onKeyUp.add(fixIndentedListItemForIE8); - } - if (tinymce.isGecko || tinymce.isWebKit) { - ed.onKeyDown.add(fixDeletingFirstCharOfList); - } - if (tinymce.isWebKit) { - ed.onKeyDown.add(fixDeletingEmptyLiInWebkit); - } - }, - - applyList: function(targetListType, oppositeListType) { - var t = this, ed = t.ed, dom = ed.dom, applied = [], hasSameType = false, hasOppositeType = false, hasNonList = false, actions, - selectedBlocks = ed.selection.getSelectedBlocks(); - - function cleanupBr(e) { - if (e && e.tagName === 'BR') { - dom.remove(e); - } - } - - function makeList(element) { - var list = dom.create(targetListType), li; - - function adjustIndentForNewList(element) { - // If there's a margin-left, outdent one level to account for the extra list margin. - if (element.style.marginLeft || element.style.paddingLeft) { - t.adjustPaddingFunction(false)(element); - } - } - - if (element.tagName === 'LI') { - // No change required. - } else if (element.tagName === 'P' || element.tagName === 'DIV' || element.tagName === 'BODY') { - processBrs(element, function(startSection, br) { - doWrapList(startSection, br, element.tagName === 'BODY' ? null : startSection.parentNode); - li = startSection.parentNode; - adjustIndentForNewList(li); - cleanupBr(br); - }); - if (li) { - if (li.tagName === 'LI' && (element.tagName === 'P' || selectedBlocks.length > 1)) { - dom.split(li.parentNode.parentNode, li.parentNode); - } - attemptMergeWithAdjacent(li.parentNode, true); - } - return; - } else { - // Put the list around the element. - li = dom.create('li'); - dom.insertAfter(li, element); - li.appendChild(element); - adjustIndentForNewList(element); - element = li; - } - dom.insertAfter(list, element); - list.appendChild(element); - attemptMergeWithAdjacent(list, true); - applied.push(element); - } - - function doWrapList(start, end, template) { - var li, n = start, tmp; - while (!dom.isBlock(start.parentNode) && start.parentNode !== dom.getRoot()) { - start = dom.split(start.parentNode, start.previousSibling); - start = start.nextSibling; - n = start; - } - if (template) { - li = template.cloneNode(true); - start.parentNode.insertBefore(li, start); - while (li.firstChild) dom.remove(li.firstChild); - li = dom.rename(li, 'li'); - } else { - li = dom.create('li'); - start.parentNode.insertBefore(li, start); - } - while (n && n != end) { - tmp = n.nextSibling; - li.appendChild(n); - n = tmp; - } - if (li.childNodes.length === 0) { - li.innerHTML = '
                                            '; - } - makeList(li); - } - - function processBrs(element, callback) { - var startSection, previousBR, END_TO_START = 3, START_TO_END = 1, - breakElements = 'br,ul,ol,p,div,h1,h2,h3,h4,h5,h6,table,blockquote,address,pre,form,center,dl'; - - function isAnyPartSelected(start, end) { - var r = dom.createRng(), sel; - bookmark.keep = true; - ed.selection.moveToBookmark(bookmark); - bookmark.keep = false; - sel = ed.selection.getRng(true); - if (!end) { - end = start.parentNode.lastChild; - } - r.setStartBefore(start); - r.setEndAfter(end); - return !(r.compareBoundaryPoints(END_TO_START, sel) > 0 || r.compareBoundaryPoints(START_TO_END, sel) <= 0); - } - - function nextLeaf(br) { - if (br.nextSibling) - return br.nextSibling; - if (!dom.isBlock(br.parentNode) && br.parentNode !== dom.getRoot()) - return nextLeaf(br.parentNode); - } - - // Split on BRs within the range and process those. - startSection = element.firstChild; - // First mark the BRs that have any part of the previous section selected. - var trailingContentSelected = false; - each(dom.select(breakElements, element), function(br) { - if (br.hasAttribute && br.hasAttribute('_mce_bogus')) { - return true; // Skip the bogus Brs that are put in to appease Firefox and Safari. - } - if (isAnyPartSelected(startSection, br)) { - dom.addClass(br, '_mce_tagged_br'); - startSection = nextLeaf(br); - } - }); - trailingContentSelected = (startSection && isAnyPartSelected(startSection, undefined)); - startSection = element.firstChild; - each(dom.select(breakElements, element), function(br) { - // Got a section from start to br. - var tmp = nextLeaf(br); - if (br.hasAttribute && br.hasAttribute('_mce_bogus')) { - return true; // Skip the bogus Brs that are put in to appease Firefox and Safari. - } - if (dom.hasClass(br, '_mce_tagged_br')) { - callback(startSection, br, previousBR); - previousBR = null; - } else { - previousBR = br; - } - startSection = tmp; - }); - if (trailingContentSelected) { - callback(startSection, undefined, previousBR); - } - } - - function wrapList(element) { - processBrs(element, function(startSection, br, previousBR) { - // Need to indent this part - doWrapList(startSection, br); - cleanupBr(br); - cleanupBr(previousBR); - }); - } - - function changeList(element) { - if (tinymce.inArray(applied, element) !== -1) { - return; - } - if (element.parentNode.tagName === oppositeListType) { - dom.split(element.parentNode, element); - makeList(element); - attemptMergeWithNext(element.parentNode, false); - } - applied.push(element); - } - - function convertListItemToParagraph(element) { - var child, nextChild, mergedElement, splitLast; - if (tinymce.inArray(applied, element) !== -1) { - return; - } - element = splitNestedLists(element, dom); - while (dom.is(element.parentNode, 'ol,ul,li')) { - dom.split(element.parentNode, element); - } - // Push the original element we have from the selection, not the renamed one. - applied.push(element); - element = dom.rename(element, 'p'); - mergedElement = attemptMergeWithAdjacent(element, false, ed.settings.force_br_newlines); - if (mergedElement === element) { - // Now split out any block elements that can't be contained within a P. - // Manually iterate to ensure we handle modifications correctly (doesn't work with tinymce.each) - child = element.firstChild; - while (child) { - if (dom.isBlock(child)) { - child = dom.split(child.parentNode, child); - splitLast = true; - nextChild = child.nextSibling && child.nextSibling.firstChild; - } else { - nextChild = child.nextSibling; - if (splitLast && child.tagName === 'BR') { - dom.remove(child); - } - splitLast = false; - } - child = nextChild; - } - } - } - - each(selectedBlocks, function(e) { - e = findItemToOperateOn(e, dom); - if (e.tagName === oppositeListType || (e.tagName === 'LI' && e.parentNode.tagName === oppositeListType)) { - hasOppositeType = true; - } else if (e.tagName === targetListType || (e.tagName === 'LI' && e.parentNode.tagName === targetListType)) { - hasSameType = true; - } else { - hasNonList = true; - } - }); - - if (hasNonList &&!hasSameType || hasOppositeType || selectedBlocks.length === 0) { - actions = { - 'LI': changeList, - 'H1': makeList, - 'H2': makeList, - 'H3': makeList, - 'H4': makeList, - 'H5': makeList, - 'H6': makeList, - 'P': makeList, - 'BODY': makeList, - 'DIV': selectedBlocks.length > 1 ? makeList : wrapList, - defaultAction: wrapList, - elements: this.selectedBlocks() - }; - } else { - actions = { - defaultAction: convertListItemToParagraph, - elements: this.selectedBlocks(), - processEvenIfEmpty: true - }; - } - this.process(actions); - }, - - indent: function() { - var ed = this.ed, dom = ed.dom, indented = []; - - function createWrapItem(element) { - var wrapItem = dom.create('li', { style: 'list-style-type: none;'}); - dom.insertAfter(wrapItem, element); - return wrapItem; - } - - function createWrapList(element) { - var wrapItem = createWrapItem(element), - list = dom.getParent(element, 'ol,ul'), - listType = list.tagName, - listStyle = dom.getStyle(list, 'list-style-type'), - attrs = {}, - wrapList; - if (listStyle !== '') { - attrs.style = 'list-style-type: ' + listStyle + ';'; - } - wrapList = dom.create(listType, attrs); - wrapItem.appendChild(wrapList); - return wrapList; - } - - function indentLI(element) { - if (!hasParentInList(ed, element, indented)) { - element = splitNestedLists(element, dom); - var wrapList = createWrapList(element); - wrapList.appendChild(element); - attemptMergeWithAdjacent(wrapList.parentNode, false); - attemptMergeWithAdjacent(wrapList, false); - indented.push(element); - } - } - - this.process({ - 'LI': indentLI, - defaultAction: this.adjustPaddingFunction(true), - elements: this.selectedBlocks() - }); - - }, - - outdent: function(ui, elements) { - var t = this, ed = t.ed, dom = ed.dom, outdented = []; - - function outdentLI(element) { - var listElement, targetParent, align; - if (!hasParentInList(ed, element, outdented)) { - if (dom.getStyle(element, 'margin-left') !== '' || dom.getStyle(element, 'padding-left') !== '') { - return t.adjustPaddingFunction(false)(element); - } - align = dom.getStyle(element, 'text-align', true); - if (align === 'center' || align === 'right') { - dom.setStyle(element, 'text-align', 'left'); - return; - } - element = splitNestedLists(element, dom); - listElement = element.parentNode; - targetParent = element.parentNode.parentNode; - if (targetParent.tagName === 'P') { - dom.split(targetParent, element.parentNode); - } else { - dom.split(listElement, element); - if (targetParent.tagName === 'LI') { - // Nested list, need to split the LI and go back out to the OL/UL element. - dom.split(targetParent, element); - } else if (!dom.is(targetParent, 'ol,ul')) { - dom.rename(element, 'p'); - } - } - outdented.push(element); - } - } - - var listElements = elements && tinymce.is(elements, 'array') ? elements : this.selectedBlocks(); - this.process({ - 'LI': outdentLI, - defaultAction: this.adjustPaddingFunction(false), - elements: listElements - }); - - each(outdented, attemptMergeWithAdjacent); - }, - - process: function(actions) { - var t = this, sel = t.ed.selection, dom = t.ed.dom, selectedBlocks, r; - - function isEmptyElement(element) { - var excludeBrsAndBookmarks = tinymce.grep(element.childNodes, function(n) { - return !(n.nodeName === 'BR' || n.nodeName === 'SPAN' && dom.getAttrib(n, 'data-mce-type') == 'bookmark' - || n.nodeType == 3 && (n.nodeValue == String.fromCharCode(160) || n.nodeValue == '')); - }); - return excludeBrsAndBookmarks.length === 0; - } - - function processElement(element) { - dom.removeClass(element, '_mce_act_on'); - if (!element || element.nodeType !== 1 || ! actions.processEvenIfEmpty && selectedBlocks.length > 1 && isEmptyElement(element)) { - return; - } - element = findItemToOperateOn(element, dom); - var action = actions[element.tagName]; - if (!action) { - action = actions.defaultAction; - } - action(element); - } - - function recurse(element) { - t.splitSafeEach(element.childNodes, processElement, true); - } - - function brAtEdgeOfSelection(container, offset) { - return offset >= 0 && container.hasChildNodes() && offset < container.childNodes.length && - container.childNodes[offset].tagName === 'BR'; - } - - function isInTable() { - var n = sel.getNode(); - var p = dom.getParent(n, 'td'); - return p !== null; - } - - selectedBlocks = actions.elements; - - r = sel.getRng(true); - if (!r.collapsed) { - if (brAtEdgeOfSelection(r.endContainer, r.endOffset - 1)) { - r.setEnd(r.endContainer, r.endOffset - 1); - sel.setRng(r); - } - if (brAtEdgeOfSelection(r.startContainer, r.startOffset)) { - r.setStart(r.startContainer, r.startOffset + 1); - sel.setRng(r); - } - } - - - if (tinymce.isIE8) { - // append a zero sized nbsp so that caret is restored correctly using bookmark - var s = t.ed.selection.getNode(); - if (s.tagName === 'LI' && !(s.parentNode.lastChild === s)) { - var i = t.ed.getDoc().createTextNode('\uFEFF'); - s.appendChild(i); - } - } - - bookmark = sel.getBookmark(); - actions.OL = actions.UL = recurse; - t.splitSafeEach(selectedBlocks, processElement); - sel.moveToBookmark(bookmark); - bookmark = null; - - // we avoid doing repaint in a table as this will move the caret out of the table in Firefox 3.6 - if (!isInTable()) { - // Avoids table or image handles being left behind in Firefox. - t.ed.execCommand('mceRepaint'); - } - }, - - splitSafeEach: function(elements, f, forceClassBase) { - if (forceClassBase || - (tinymce.isGecko && - (/Firefox\/[12]\.[0-9]/.test(navigator.userAgent) || - /Firefox\/3\.[0-4]/.test(navigator.userAgent)))) { - this.classBasedEach(elements, f); - } else { - each(elements, f); - } - }, - - classBasedEach: function(elements, f) { - var dom = this.ed.dom, nodes, element; - // Mark nodes - each(elements, function(element) { - dom.addClass(element, '_mce_act_on'); - }); - nodes = dom.select('._mce_act_on'); - while (nodes.length > 0) { - element = nodes.shift(); - dom.removeClass(element, '_mce_act_on'); - f(element); - nodes = dom.select('._mce_act_on'); - } - }, - - adjustPaddingFunction: function(isIndent) { - var indentAmount, indentUnits, ed = this.ed; - indentAmount = ed.settings.indentation; - indentUnits = /[a-z%]+/i.exec(indentAmount); - indentAmount = parseInt(indentAmount, 10); - return function(element) { - var currentIndent, newIndentAmount; - currentIndent = parseInt(ed.dom.getStyle(element, 'margin-left') || 0, 10) + parseInt(ed.dom.getStyle(element, 'padding-left') || 0, 10); - if (isIndent) { - newIndentAmount = currentIndent + indentAmount; - } else { - newIndentAmount = currentIndent - indentAmount; - } - ed.dom.setStyle(element, 'padding-left', ''); - ed.dom.setStyle(element, 'margin-left', newIndentAmount > 0 ? newIndentAmount + indentUnits : ''); - }; - }, - - selectedBlocks: function() { - var ed = this.ed, selectedBlocks = ed.selection.getSelectedBlocks(); - return selectedBlocks.length == 0 ? [ ed.dom.getRoot() ] : selectedBlocks; - }, - - getInfo: function() { - return { - longname : 'Lists', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/lists', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - tinymce.PluginManager.add("lists", tinymce.plugins.Lists); -}()); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/media/css/media.css b/library/tinymce/jscripts/tiny_mce/plugins/media/css/media.css deleted file mode 100644 index 0c45c7ff6..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/media/css/media.css +++ /dev/null @@ -1,17 +0,0 @@ -#id, #name, #hspace, #vspace, #class_name, #align { width: 100px } -#hspace, #vspace { width: 50px } -#flash_quality, #flash_align, #flash_scale, #flash_salign, #flash_wmode { width: 100px } -#flash_base, #flash_flashvars, #html5_altsource1, #html5_altsource2, #html5_poster { width: 240px } -#width, #height { width: 40px } -#src, #media_type { width: 250px } -#class { width: 120px } -#prev { margin: 0; border: 1px solid black; width: 380px; height: 260px; overflow: auto } -.panel_wrapper div.current { height: 420px; overflow: auto } -#flash_options, #shockwave_options, #qt_options, #wmp_options, #rmp_options { display: none } -.mceAddSelectValue { background-color: #DDDDDD } -#qt_starttime, #qt_endtime, #qt_fov, #qt_href, #qt_moveid, #qt_moviename, #qt_node, #qt_pan, #qt_qtsrc, #qt_qtsrcchokespeed, #qt_target, #qt_tilt, #qt_urlsubstituten, #qt_volume { width: 70px } -#wmp_balance, #wmp_baseurl, #wmp_captioningid, #wmp_currentmarker, #wmp_currentposition, #wmp_defaultframe, #wmp_playcount, #wmp_rate, #wmp_uimode, #wmp_volume { width: 70px } -#rmp_console, #rmp_numloop, #rmp_controls, #rmp_scriptcallbacks { width: 70px } -#shockwave_swvolume, #shockwave_swframe, #shockwave_swurl, #shockwave_swstretchvalign, #shockwave_swstretchhalign, #shockwave_swstretchstyle { width: 90px } -#qt_qtsrc { width: 200px } -iframe {border: 1px solid gray} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js deleted file mode 100644 index 9ac42e0d2..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var b=tinymce.explode("id,name,width,height,style,align,class,hspace,vspace,bgcolor,type"),a=tinymce.makeMap(b.join(",")),f=tinymce.html.Node,d,i,h=tinymce.util.JSON,g;d=[["Flash","d27cdb6e-ae6d-11cf-96b8-444553540000","application/x-shockwave-flash","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"],["ShockWave","166b1bca-3f9c-11cf-8075-444553540000","application/x-director","http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0"],["WindowsMedia","6bf52a52-394a-11d3-b153-00c04f79faa6,22d6f312-b0f6-11d0-94ab-0080c74c7e95,05589fa1-c356-11ce-bf01-00aa0055595a","application/x-mplayer2","http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"],["QuickTime","02bf25d5-8c17-4b23-bc80-d3488abddc6b","video/quicktime","http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"],["RealMedia","cfcdaa03-8be4-11cf-b84b-0020afbbccfa","audio/x-pn-realaudio-plugin","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"],["Java","8ad9c840-044e-11d1-b3e9-00805f499d93","application/x-java-applet","http://java.sun.com/products/plugin/autodl/jinstall-1_5_0-windows-i586.cab#Version=1,5,0,0"],["Silverlight","dfeaf541-f3e1-4c24-acac-99c30715084a","application/x-silverlight-2"],["Iframe"],["Video"],["EmbeddedAudio"],["Audio"]];function e(j){return typeof(j)=="string"?j.replace(/[^0-9%]/g,""):j}function c(m){var l,j,k;if(m&&!m.splice){j=[];for(k=0;true;k++){if(m[k]){j[k]=m[k]}else{break}}return j}return m}tinymce.create("tinymce.plugins.MediaPlugin",{init:function(n,j){var r=this,l={},m,p,q,k;function o(s){return s&&s.nodeName==="IMG"&&n.dom.hasClass(s,"mceItemMedia")}r.editor=n;r.url=j;i="";for(m=0;m0){O+=(O?"&":"")+P+"="+escape(Q)}});if(O.length){G.params.flashvars=O}L=p.getParam("flash_video_player_params",{allowfullscreen:true,allowscriptaccess:true});tinymce.each(L,function(Q,P){G.params[P]=""+Q})}}G=z.attr("data-mce-json");if(!G){return}G=h.parse(G);q=this.getType(z.attr("class"));B=z.attr("data-mce-style");if(!B){B=z.attr("style");if(B){B=p.dom.serializeStyle(p.dom.parseStyle(B,"img"))}}G.width=z.attr("width")||G.width;G.height=z.attr("height")||G.height;if(q.name==="Iframe"){x=new f("iframe",1);tinymce.each(b,function(n){var J=z.attr(n);if(n=="class"&&J){J=J.replace(/mceItem.+ ?/g,"")}if(J&&J.length>0){x.attr(n,J)}});for(I in G.params){x.attr(I,G.params[I])}x.attr({style:B,src:G.params.src});z.replace(x);return}if(this.editor.settings.media_use_script){x=new f("script",1).attr("type","text/javascript");y=new f("#text",3);y.value="write"+q.name+"("+h.serialize(tinymce.extend(G.params,{width:z.attr("width"),height:z.attr("height")}))+");";x.append(y);z.replace(x);return}if(q.name==="Video"&&G.video.sources[0]){C=new f("video",1).attr(tinymce.extend({id:z.attr("id"),width:e(z.attr("width")),height:e(z.attr("height")),style:B},G.video.attrs));if(G.video.attrs){l=G.video.attrs.poster}k=G.video.sources=c(G.video.sources);for(A=0;A 0) - flashVarsOutput += (flashVarsOutput ? '&' : '') + name + '=' + escape(value); - }); - - if (flashVarsOutput.length) - data.params.flashvars = flashVarsOutput; - - params = editor.getParam('flash_video_player_params', { - allowfullscreen: true, - allowscriptaccess: true - }); - - tinymce.each(params, function(value, name) { - data.params[name] = "" + value; - }); - } - }; - - data = node.attr('data-mce-json'); - if (!data) - return; - - data = JSON.parse(data); - typeItem = this.getType(node.attr('class')); - - style = node.attr('data-mce-style'); - if (!style) { - style = node.attr('style'); - - if (style) - style = editor.dom.serializeStyle(editor.dom.parseStyle(style, 'img')); - } - - // Use node width/height to override the data width/height when the placeholder is resized - data.width = node.attr('width') || data.width; - data.height = node.attr('height') || data.height; - - // Handle iframe - if (typeItem.name === 'Iframe') { - replacement = new Node('iframe', 1); - - tinymce.each(rootAttributes, function(name) { - var value = node.attr(name); - - if (name == 'class' && value) - value = value.replace(/mceItem.+ ?/g, ''); - - if (value && value.length > 0) - replacement.attr(name, value); - }); - - for (name in data.params) - replacement.attr(name, data.params[name]); - - replacement.attr({ - style: style, - src: data.params.src - }); - - node.replace(replacement); - - return; - } - - // Handle scripts - if (this.editor.settings.media_use_script) { - replacement = new Node('script', 1).attr('type', 'text/javascript'); - - value = new Node('#text', 3); - value.value = 'write' + typeItem.name + '(' + JSON.serialize(tinymce.extend(data.params, { - width: node.attr('width'), - height: node.attr('height') - })) + ');'; - - replacement.append(value); - node.replace(replacement); - - return; - } - - // Add HTML5 video element - if (typeItem.name === 'Video' && data.video.sources[0]) { - // Create new object element - video = new Node('video', 1).attr(tinymce.extend({ - id : node.attr('id'), - width: normalizeSize(node.attr('width')), - height: normalizeSize(node.attr('height')), - style : style - }, data.video.attrs)); - - // Get poster source and use that for flash fallback - if (data.video.attrs) - posterSrc = data.video.attrs.poster; - - sources = data.video.sources = toArray(data.video.sources); - for (i = 0; i < sources.length; i++) { - if (/\.mp4$/.test(sources[i].src)) - mp4Source = sources[i].src; - } - - if (!sources[0].type) { - video.attr('src', sources[0].src); - sources.splice(0, 1); - } - - for (i = 0; i < sources.length; i++) { - source = new Node('source', 1).attr(sources[i]); - source.shortEnded = true; - video.append(source); - } - - // Create flash fallback for video if we have a mp4 source - if (mp4Source) { - addPlayer(mp4Source, posterSrc); - typeItem = self.getType('flash'); - } else - data.params.src = ''; - } - - // Add HTML5 audio element - if (typeItem.name === 'Audio' && data.video.sources[0]) { - // Create new object element - audio = new Node('audio', 1).attr(tinymce.extend({ - id : node.attr('id'), - width: normalizeSize(node.attr('width')), - height: normalizeSize(node.attr('height')), - style : style - }, data.video.attrs)); - - // Get poster source and use that for flash fallback - if (data.video.attrs) - posterSrc = data.video.attrs.poster; - - sources = data.video.sources = toArray(data.video.sources); - if (!sources[0].type) { - audio.attr('src', sources[0].src); - sources.splice(0, 1); - } - - for (i = 0; i < sources.length; i++) { - source = new Node('source', 1).attr(sources[i]); - source.shortEnded = true; - audio.append(source); - } - - data.params.src = ''; - } - - if (typeItem.name === 'EmbeddedAudio') { - embed = new Node('embed', 1); - embed.shortEnded = true; - embed.attr({ - id: node.attr('id'), - width: normalizeSize(node.attr('width')), - height: normalizeSize(node.attr('height')), - style : style, - type: node.attr('type') - }); - - for (name in data.params) - embed.attr(name, data.params[name]); - - tinymce.each(rootAttributes, function(name) { - if (data[name] && name != 'type') - embed.attr(name, data[name]); - }); - - data.params.src = ''; - } - - // Do we have a params src then we can generate object - if (data.params.src) { - // Is flv movie add player for it - if (/\.flv$/i.test(data.params.src)) - addPlayer(data.params.src, ''); - - if (args && args.force_absolute) - data.params.src = editor.documentBaseURI.toAbsolute(data.params.src); - - // Create new object element - object = new Node('object', 1).attr({ - id : node.attr('id'), - width: normalizeSize(node.attr('width')), - height: normalizeSize(node.attr('height')), - style : style - }); - - tinymce.each(rootAttributes, function(name) { - var value = data[name]; - - if (name == 'class' && value) - value = value.replace(/mceItem.+ ?/g, ''); - - if (value && name != 'type') - object.attr(name, value); - }); - - // Add params - for (name in data.params) { - param = new Node('param', 1); - param.shortEnded = true; - value = data.params[name]; - - // Windows media needs to use url instead of src for the media URL - if (name === 'src' && typeItem.name === 'WindowsMedia') - name = 'url'; - - param.attr({name: name, value: value}); - object.append(param); - } - - // Setup add type and classid if strict is disabled - if (this.editor.getParam('media_strict', true)) { - object.attr({ - data: data.params.src, - type: typeItem.mimes[0] - }); - } else { - object.attr({ - classid: "clsid:" + typeItem.clsids[0], - codebase: typeItem.codebase - }); - - embed = new Node('embed', 1); - embed.shortEnded = true; - embed.attr({ - id: node.attr('id'), - width: normalizeSize(node.attr('width')), - height: normalizeSize(node.attr('height')), - style : style, - type: typeItem.mimes[0] - }); - - for (name in data.params) - embed.attr(name, data.params[name]); - - tinymce.each(rootAttributes, function(name) { - if (data[name] && name != 'type') - embed.attr(name, data[name]); - }); - - object.append(embed); - } - - // Insert raw HTML - if (data.object_html) { - value = new Node('#text', 3); - value.raw = true; - value.value = data.object_html; - object.append(value); - } - - // Append object to video element if it exists - if (video) - video.append(object); - } - - if (video) { - // Insert raw HTML - if (data.video_html) { - value = new Node('#text', 3); - value.raw = true; - value.value = data.video_html; - video.append(value); - } - } - - if (audio) { - // Insert raw HTML - if (data.video_html) { - value = new Node('#text', 3); - value.raw = true; - value.value = data.video_html; - audio.append(value); - } - } - - var n = video || audio || object || embed; - if (n) - node.replace(n); - else - node.remove(); - }, - - /** - * Converts a tinymce.html.Node video/object/embed to an img element. - * - * The video/object/embed will be converted into an image placeholder with a JSON data attribute like this: - * - * - * The JSON structure will be like this: - * {'params':{'flashvars':'something','quality':'high','src':'someurl'}, 'video':{'sources':[{src: 'someurl', type: 'video/mp4'}]}} - */ - objectToImg : function(node) { - var object, embed, video, iframe, img, name, id, width, height, style, i, html, - param, params, source, sources, data, type, lookup = this.lookup, - matches, attrs, urlConverter = this.editor.settings.url_converter, - urlConverterScope = this.editor.settings.url_converter_scope, - hspace, vspace, align, bgcolor; - - function getInnerHTML(node) { - return new tinymce.html.Serializer({ - inner: true, - validate: false - }).serialize(node); - }; - - function lookupAttribute(o, attr) { - return lookup[(o.attr(attr) || '').toLowerCase()]; - } - - function lookupExtension(src) { - var ext = src.replace(/^.*\.([^.]+)$/, '$1'); - return lookup[ext.toLowerCase() || '']; - } - - // If node isn't in document - if (!node.parent) - return; - - // Handle media scripts - if (node.name === 'script') { - if (node.firstChild) - matches = scriptRegExp.exec(node.firstChild.value); - - if (!matches) - return; - - type = matches[1]; - data = {video : {}, params : JSON.parse(matches[2])}; - width = data.params.width; - height = data.params.height; - } - - // Setup data objects - data = data || { - video : {}, - params : {} - }; - - // Setup new image object - img = new Node('img', 1); - img.attr({ - src : this.editor.theme.url + '/img/trans.gif' - }); - - // Video element - name = node.name; - if (name === 'video' || name == 'audio') { - video = node; - object = node.getAll('object')[0]; - embed = node.getAll('embed')[0]; - width = video.attr('width'); - height = video.attr('height'); - id = video.attr('id'); - data.video = {attrs : {}, sources : []}; - - // Get all video attributes - attrs = data.video.attrs; - for (name in video.attributes.map) - attrs[name] = video.attributes.map[name]; - - source = node.attr('src'); - if (source) - data.video.sources.push({src : urlConverter.call(urlConverterScope, source, 'src', node.name)}); - - // Get all sources - sources = video.getAll("source"); - for (i = 0; i < sources.length; i++) { - source = sources[i].remove(); - - data.video.sources.push({ - src: urlConverter.call(urlConverterScope, source.attr('src'), 'src', 'source'), - type: source.attr('type'), - media: source.attr('media') - }); - } - - // Convert the poster URL - if (attrs.poster) - attrs.poster = urlConverter.call(urlConverterScope, attrs.poster, 'poster', node.name); - } - - // Object element - if (node.name === 'object') { - object = node; - embed = node.getAll('embed')[0]; - } - - // Embed element - if (node.name === 'embed') - embed = node; - - // Iframe element - if (node.name === 'iframe') { - iframe = node; - type = 'Iframe'; - } - - if (object) { - // Get width/height - width = width || object.attr('width'); - height = height || object.attr('height'); - style = style || object.attr('style'); - id = id || object.attr('id'); - hspace = hspace || object.attr('hspace'); - vspace = vspace || object.attr('vspace'); - align = align || object.attr('align'); - bgcolor = bgcolor || object.attr('bgcolor'); - data.name = object.attr('name'); - - // Get all object params - params = object.getAll("param"); - for (i = 0; i < params.length; i++) { - param = params[i]; - name = param.remove().attr('name'); - - if (!excludedAttrs[name]) - data.params[name] = param.attr('value'); - } - - data.params.src = data.params.src || object.attr('data'); - } - - if (embed) { - // Get width/height - width = width || embed.attr('width'); - height = height || embed.attr('height'); - style = style || embed.attr('style'); - id = id || embed.attr('id'); - hspace = hspace || embed.attr('hspace'); - vspace = vspace || embed.attr('vspace'); - align = align || embed.attr('align'); - bgcolor = bgcolor || embed.attr('bgcolor'); - - // Get all embed attributes - for (name in embed.attributes.map) { - if (!excludedAttrs[name] && !data.params[name]) - data.params[name] = embed.attributes.map[name]; - } - } - - if (iframe) { - // Get width/height - width = normalizeSize(iframe.attr('width')); - height = normalizeSize(iframe.attr('height')); - style = style || iframe.attr('style'); - id = iframe.attr('id'); - hspace = iframe.attr('hspace'); - vspace = iframe.attr('vspace'); - align = iframe.attr('align'); - bgcolor = iframe.attr('bgcolor'); - - tinymce.each(rootAttributes, function(name) { - img.attr(name, iframe.attr(name)); - }); - - // Get all iframe attributes - for (name in iframe.attributes.map) { - if (!excludedAttrs[name] && !data.params[name]) - data.params[name] = iframe.attributes.map[name]; - } - } - - // Use src not movie - if (data.params.movie) { - data.params.src = data.params.src || data.params.movie; - delete data.params.movie; - } - - // Convert the URL to relative/absolute depending on configuration - if (data.params.src) - data.params.src = urlConverter.call(urlConverterScope, data.params.src, 'src', 'object'); - - if (video) { - if (node.name === 'video') - type = lookup.video.name; - else if (node.name === 'audio') - type = lookup.audio.name; - } - - if (object && !type) - type = (lookupAttribute(object, 'clsid') || lookupAttribute(object, 'classid') || lookupAttribute(object, 'type') || {}).name; - - if (embed && !type) - type = (lookupAttribute(embed, 'type') || lookupExtension(data.params.src) || {}).name; - - // for embedded audio we preserve the original specified type - if (embed && type == 'EmbeddedAudio') { - data.params.type = embed.attr('type'); - } - - // Replace the video/object/embed element with a placeholder image containing the data - node.replace(img); - - // Remove embed - if (embed) - embed.remove(); - - // Serialize the inner HTML of the object element - if (object) { - html = getInnerHTML(object.remove()); - - if (html) - data.object_html = html; - } - - // Serialize the inner HTML of the video element - if (video) { - html = getInnerHTML(video.remove()); - - if (html) - data.video_html = html; - } - - data.hspace = hspace; - data.vspace = vspace; - data.align = align; - data.bgcolor = bgcolor; - - // Set width/height of placeholder - img.attr({ - id : id, - 'class' : 'mceItemMedia mceItem' + (type || 'Flash'), - style : style, - width : width || (node.name == 'audio' ? "300" : "320"), - height : height || (node.name == 'audio' ? "32" : "240"), - hspace : hspace, - vspace : vspace, - align : align, - bgcolor : bgcolor, - "data-mce-json" : JSON.serialize(data, "'") - }); - } - }); - - // Register plugin - tinymce.PluginManager.add('media', tinymce.plugins.MediaPlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js b/library/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js deleted file mode 100644 index f8dc81052..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js +++ /dev/null @@ -1,73 +0,0 @@ -/** - * This script contains embed functions for common plugins. This scripts are complety free to use for any purpose. - */ - -function writeFlash(p) { - writeEmbed( - 'D27CDB6E-AE6D-11cf-96B8-444553540000', - 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', - 'application/x-shockwave-flash', - p - ); -} - -function writeShockWave(p) { - writeEmbed( - '166B1BCA-3F9C-11CF-8075-444553540000', - 'http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0', - 'application/x-director', - p - ); -} - -function writeQuickTime(p) { - writeEmbed( - '02BF25D5-8C17-4B23-BC80-D3488ABDDC6B', - 'http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0', - 'video/quicktime', - p - ); -} - -function writeRealMedia(p) { - writeEmbed( - 'CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA', - 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', - 'audio/x-pn-realaudio-plugin', - p - ); -} - -function writeWindowsMedia(p) { - p.url = p.src; - writeEmbed( - '6BF52A52-394A-11D3-B153-00C04F79FAA6', - 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701', - 'application/x-mplayer2', - p - ); -} - -function writeEmbed(cls, cb, mt, p) { - var h = '', n; - - h += ''; - - h += ''); - - function get(id) { - return document.getElementById(id); - } - - function clone(obj) { - var i, len, copy, attr; - - if (null == obj || "object" != typeof obj) - return obj; - - // Handle Array - if ('length' in obj) { - copy = []; - - for (i = 0, len = obj.length; i < len; ++i) { - copy[i] = clone(obj[i]); - } - - return copy; - } - - // Handle Object - copy = {}; - for (attr in obj) { - if (obj.hasOwnProperty(attr)) - copy[attr] = clone(obj[attr]); - } - - return copy; - } - - function getVal(id) { - var elm = get(id); - - if (elm.nodeName == "SELECT") - return elm.options[elm.selectedIndex].value; - - if (elm.type == "checkbox") - return elm.checked; - - return elm.value; - } - - function setVal(id, value, name) { - if (typeof(value) != 'undefined' && value != null) { - var elm = get(id); - - if (elm.nodeName == "SELECT") - selectByValue(document.forms[0], id, value); - else if (elm.type == "checkbox") { - if (typeof(value) == 'string') { - value = value.toLowerCase(); - value = (!name && value === 'true') || (name && value === name.toLowerCase()); - } - elm.checked = !!value; - } else - elm.value = value; - } - } - - window.Media = { - init : function() { - var html, editor, self = this; - - self.editor = editor = tinyMCEPopup.editor; - - // Setup file browsers and color pickers - get('filebrowsercontainer').innerHTML = getBrowserHTML('filebrowser','src','media','media'); - get('qtsrcfilebrowsercontainer').innerHTML = getBrowserHTML('qtsrcfilebrowser','quicktime_qtsrc','media','media'); - get('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); - get('video_altsource1_filebrowser').innerHTML = getBrowserHTML('video_filebrowser_altsource1','video_altsource1','media','media'); - get('video_altsource2_filebrowser').innerHTML = getBrowserHTML('video_filebrowser_altsource2','video_altsource2','media','media'); - get('audio_altsource1_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource1','audio_altsource1','media','media'); - get('audio_altsource2_filebrowser').innerHTML = getBrowserHTML('audio_filebrowser_altsource2','audio_altsource2','media','media'); - get('video_poster_filebrowser').innerHTML = getBrowserHTML('filebrowser_poster','video_poster','image','media'); - - html = self.getMediaListHTML('medialist', 'src', 'media', 'media'); - if (html == "") - get("linklistrow").style.display = 'none'; - else - get("linklistcontainer").innerHTML = html; - - if (isVisible('filebrowser')) - get('src').style.width = '230px'; - - if (isVisible('video_filebrowser_altsource1')) - get('video_altsource1').style.width = '220px'; - - if (isVisible('video_filebrowser_altsource2')) - get('video_altsource2').style.width = '220px'; - - if (isVisible('audio_filebrowser_altsource1')) - get('audio_altsource1').style.width = '220px'; - - if (isVisible('audio_filebrowser_altsource2')) - get('audio_altsource2').style.width = '220px'; - - if (isVisible('filebrowser_poster')) - get('video_poster').style.width = '220px'; - - editor.dom.setOuterHTML(get('media_type'), self.getMediaTypeHTML(editor)); - - self.setDefaultDialogSettings(editor); - self.data = clone(tinyMCEPopup.getWindowArg('data')); - self.dataToForm(); - self.preview(); - - updateColor('bgcolor_pick', 'bgcolor'); - }, - - insert : function() { - var editor = tinyMCEPopup.editor; - - this.formToData(); - editor.execCommand('mceRepaint'); - tinyMCEPopup.restoreSelection(); - editor.selection.setNode(editor.plugins.media.dataToImg(this.data)); - tinyMCEPopup.close(); - }, - - preview : function() { - get('prev').innerHTML = this.editor.plugins.media.dataToHtml(this.data, true); - }, - - moveStates : function(to_form, field) { - var data = this.data, editor = this.editor, - mediaPlugin = editor.plugins.media, ext, src, typeInfo, defaultStates, src; - - defaultStates = { - // QuickTime - quicktime_autoplay : true, - quicktime_controller : true, - - // Flash - flash_play : true, - flash_loop : true, - flash_menu : true, - - // WindowsMedia - windowsmedia_autostart : true, - windowsmedia_enablecontextmenu : true, - windowsmedia_invokeurls : true, - - // RealMedia - realmedia_autogotourl : true, - realmedia_imagestatus : true - }; - - function parseQueryParams(str) { - var out = {}; - - if (str) { - tinymce.each(str.split('&'), function(item) { - var parts = item.split('='); - - out[unescape(parts[0])] = unescape(parts[1]); - }); - } - - return out; - }; - - function setOptions(type, names) { - var i, name, formItemName, value, list; - - if (type == data.type || type == 'global') { - names = tinymce.explode(names); - for (i = 0; i < names.length; i++) { - name = names[i]; - formItemName = type == 'global' ? name : type + '_' + name; - - if (type == 'global') - list = data; - else if (type == 'video' || type == 'audio') { - list = data.video.attrs; - - if (!list && !to_form) - data.video.attrs = list = {}; - } else - list = data.params; - - if (list) { - if (to_form) { - setVal(formItemName, list[name], type == 'video' || type == 'audio' ? name : ''); - } else { - delete list[name]; - - value = getVal(formItemName); - if ((type == 'video' || type == 'audio') && value === true) - value = name; - - if (defaultStates[formItemName]) { - if (value !== defaultStates[formItemName]) { - value = "" + value; - list[name] = value; - } - } else if (value) { - value = "" + value; - list[name] = value; - } - } - } - } - } - } - - if (!to_form) { - data.type = get('media_type').options[get('media_type').selectedIndex].value; - data.width = getVal('width'); - data.height = getVal('height'); - - // Switch type based on extension - src = getVal('src'); - if (field == 'src') { - ext = src.replace(/^.*\.([^.]+)$/, '$1'); - if (typeInfo = mediaPlugin.getType(ext)) - data.type = typeInfo.name.toLowerCase(); - - setVal('media_type', data.type); - } - - if (data.type == "video" || data.type == "audio") { - if (!data.video.sources) - data.video.sources = []; - - data.video.sources[0] = {src: getVal('src')}; - } - } - - // Hide all fieldsets and show the one active - get('video_options').style.display = 'none'; - get('audio_options').style.display = 'none'; - get('flash_options').style.display = 'none'; - get('quicktime_options').style.display = 'none'; - get('shockwave_options').style.display = 'none'; - get('windowsmedia_options').style.display = 'none'; - get('realmedia_options').style.display = 'none'; - get('embeddedaudio_options').style.display = 'none'; - - if (get(data.type + '_options')) - get(data.type + '_options').style.display = 'block'; - - setVal('media_type', data.type); - - setOptions('flash', 'play,loop,menu,swliveconnect,quality,scale,salign,wmode,base,flashvars'); - setOptions('quicktime', 'loop,autoplay,cache,controller,correction,enablejavascript,kioskmode,autohref,playeveryframe,targetcache,scale,starttime,endtime,target,qtsrcchokespeed,volume,qtsrc'); - setOptions('shockwave', 'sound,progress,autostart,swliveconnect,swvolume,swstretchstyle,swstretchhalign,swstretchvalign'); - setOptions('windowsmedia', 'autostart,enabled,enablecontextmenu,fullscreen,invokeurls,mute,stretchtofit,windowlessvideo,balance,baseurl,captioningid,currentmarker,currentposition,defaultframe,playcount,rate,uimode,volume'); - setOptions('realmedia', 'autostart,loop,autogotourl,center,imagestatus,maintainaspect,nojava,prefetch,shuffle,console,controls,numloop,scriptcallbacks'); - setOptions('video', 'poster,autoplay,loop,muted,preload,controls'); - setOptions('audio', 'autoplay,loop,preload,controls'); - setOptions('embeddedaudio', 'autoplay,loop,controls'); - setOptions('global', 'id,name,vspace,hspace,bgcolor,align,width,height'); - - if (to_form) { - if (data.type == 'video') { - if (data.video.sources[0]) - setVal('src', data.video.sources[0].src); - - src = data.video.sources[1]; - if (src) - setVal('video_altsource1', src.src); - - src = data.video.sources[2]; - if (src) - setVal('video_altsource2', src.src); - } else if (data.type == 'audio') { - if (data.video.sources[0]) - setVal('src', data.video.sources[0].src); - - src = data.video.sources[1]; - if (src) - setVal('audio_altsource1', src.src); - - src = data.video.sources[2]; - if (src) - setVal('audio_altsource2', src.src); - } else { - // Check flash vars - if (data.type == 'flash') { - tinymce.each(editor.getParam('flash_video_player_flashvars', {url : '$url', poster : '$poster'}), function(value, name) { - if (value == '$url') - data.params.src = parseQueryParams(data.params.flashvars)[name] || data.params.src || ''; - }); - } - - setVal('src', data.params.src); - } - } else { - src = getVal("src"); - - // YouTube Embed - if (src.match(/youtube\.com\/embed\/\w+/)) { - data.width = 425; - data.height = 350; - data.params.frameborder = '0'; - data.type = 'iframe'; - setVal('src', src); - setVal('media_type', data.type); - } else { - // YouTube *NEW* - if (src.match(/youtu\.be\/[a-z1-9.-_]+/)) { - data.width = 425; - data.height = 350; - data.params.frameborder = '0'; - data.type = 'iframe'; - src = 'http://www.youtube.com/embed/' + src.match(/youtu.be\/([a-z1-9.-_]+)/)[1]; - setVal('src', src); - setVal('media_type', data.type); - } - - // YouTube - if (src.match(/youtube\.com(.+)v=([^&]+)/)) { - data.width = 425; - data.height = 350; - data.params.frameborder = '0'; - data.type = 'iframe'; - src = 'http://www.youtube.com/embed/' + src.match(/v=([^&]+)/)[1]; - setVal('src', src); - setVal('media_type', data.type); - } - } - - // Google video - if (src.match(/video\.google\.com(.+)docid=([^&]+)/)) { - data.width = 425; - data.height = 326; - data.type = 'flash'; - src = 'http://video.google.com/googleplayer.swf?docId=' + src.match(/docid=([^&]+)/)[1] + '&hl=en'; - setVal('src', src); - setVal('media_type', data.type); - } - - // Vimeo - if (src.match(/vimeo\.com\/([0-9]+)/)) { - data.width = 425; - data.height = 350; - data.params.frameborder = '0'; - data.type = 'iframe'; - src = 'http://player.vimeo.com/video/' + src.match(/vimeo.com\/([0-9]+)/)[1]; - setVal('src', src); - setVal('media_type', data.type); - } - - // stream.cz - if (src.match(/stream\.cz\/((?!object).)*\/([0-9]+)/)) { - data.width = 425; - data.height = 350; - data.params.frameborder = '0'; - data.type = 'iframe'; - src = 'http://www.stream.cz/object/' + src.match(/stream.cz\/[^/]+\/([0-9]+)/)[1]; - setVal('src', src); - setVal('media_type', data.type); - } - - // Google maps - if (src.match(/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/)) { - data.width = 425; - data.height = 350; - data.params.frameborder = '0'; - data.type = 'iframe'; - src = 'http://maps.google.com/maps/ms?msid=' + src.match(/msid=(.+)/)[1] + "&output=embed"; - setVal('src', src); - setVal('media_type', data.type); - } - - if (data.type == 'video') { - if (!data.video.sources) - data.video.sources = []; - - data.video.sources[0] = {src : src}; - - src = getVal("video_altsource1"); - if (src) - data.video.sources[1] = {src : src}; - - src = getVal("video_altsource2"); - if (src) - data.video.sources[2] = {src : src}; - } else if (data.type == 'audio') { - if (!data.video.sources) - data.video.sources = []; - - data.video.sources[0] = {src : src}; - - src = getVal("audio_altsource1"); - if (src) - data.video.sources[1] = {src : src}; - - src = getVal("audio_altsource2"); - if (src) - data.video.sources[2] = {src : src}; - } else - data.params.src = src; - - // Set default size - setVal('width', data.width || (data.type == 'audio' ? 300 : 320)); - setVal('height', data.height || (data.type == 'audio' ? 32 : 240)); - } - }, - - dataToForm : function() { - this.moveStates(true); - }, - - formToData : function(field) { - if (field == "width" || field == "height") - this.changeSize(field); - - if (field == 'source') { - this.moveStates(false, field); - setVal('source', this.editor.plugins.media.dataToHtml(this.data)); - this.panel = 'source'; - } else { - if (this.panel == 'source') { - this.data = clone(this.editor.plugins.media.htmlToData(getVal('source'))); - this.dataToForm(); - this.panel = ''; - } - - this.moveStates(false, field); - this.preview(); - } - }, - - beforeResize : function() { - this.width = parseInt(getVal('width') || (this.data.type == 'audio' ? "300" : "320"), 10); - this.height = parseInt(getVal('height') || (this.data.type == 'audio' ? "32" : "240"), 10); - }, - - changeSize : function(type) { - var width, height, scale, size; - - if (get('constrain').checked) { - width = parseInt(getVal('width') || (this.data.type == 'audio' ? "300" : "320"), 10); - height = parseInt(getVal('height') || (this.data.type == 'audio' ? "32" : "240"), 10); - - if (type == 'width') { - this.height = Math.round((width / this.width) * height); - setVal('height', this.height); - } else { - this.width = Math.round((height / this.height) * width); - setVal('width', this.width); - } - } - }, - - getMediaListHTML : function() { - if (typeof(tinyMCEMediaList) != "undefined" && tinyMCEMediaList.length > 0) { - var html = ""; - - html += ''; - - return html; - } - - return ""; - }, - - getMediaTypeHTML : function(editor) { - function option(media_type, element) { - if (!editor.schema.getElementRule(element || media_type)) { - return ''; - } - - return '' - } - - var html = ""; - - html += ''; - return html; - }, - - setDefaultDialogSettings : function(editor) { - var defaultDialogSettings = editor.getParam("media_dialog_defaults", {}); - tinymce.each(defaultDialogSettings, function(v, k) { - setVal(k, v); - }); - } - }; - - tinyMCEPopup.requireLangPack(); - tinyMCEPopup.onInit.add(function() { - Media.init(); - }); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js deleted file mode 100644 index ecef3a801..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.media_dlg',{list:"List",file:"File/URL",advanced:"Advanced",general:"General",title:"Insert/Edit Embedded Media","align_top_left":"Top Left","align_center":"Center","align_left":"Left","align_bottom":"Bottom","align_right":"Right","align_top":"Top","qt_stream_warn":"Streamed RTSP resources should be added to the QT Source field under the Advanced tab.\nYou should also add a non-streamed version to the Source field.",qtsrc:"QT Source",progress:"Progress",sound:"Sound",swstretchvalign:"Stretch V-Align",swstretchhalign:"Stretch H-Align",swstretchstyle:"Stretch Style",scriptcallbacks:"Script Callbacks","align_top_right":"Top Right",uimode:"UI Mode",rate:"Rate",playcount:"Play Count",defaultframe:"Default Frame",currentposition:"Current Position",currentmarker:"Current Marker",captioningid:"Captioning ID",baseurl:"Base URL",balance:"Balance",windowlessvideo:"Windowless Video",stretchtofit:"Stretch to Fit",mute:"Mute",invokeurls:"Invoke URLs",fullscreen:"Full Screen",enabled:"Enabled",autostart:"Auto Start",volume:"Volume",target:"Target",qtsrcchokespeed:"Choke Speed",href:"HREF",endtime:"End Time",starttime:"Start Time",enablejavascript:"Enable JavaScript",correction:"No Correction",targetcache:"Target Cache",playeveryframe:"Play Every Frame",kioskmode:"Kiosk Mode",controller:"Controller",menu:"Show Menu",loop:"Loop",play:"Auto Play",hspace:"H-Space",vspace:"V-Space","class_name":"Class",name:"Name",id:"ID",type:"Type",size:"Dimensions",preview:"Preview","constrain_proportions":"Constrain Proportions",controls:"Controls",numloop:"Num Loops",console:"Console",cache:"Cache",autohref:"Auto HREF",liveconnect:"SWLiveConnect",flashvars:"Flash Vars",base:"Base",bgcolor:"Background",wmode:"WMode",salign:"SAlign",align:"Align",scale:"Scale",quality:"Quality",shuffle:"Shuffle",prefetch:"Prefetch",nojava:"No Java",maintainaspect:"Maintain Aspect",imagestatus:"Image Status",center:"Center",autogotourl:"Auto Goto URL","shockwave_options":"Shockwave Options","rmp_options":"Real Media Player Options","wmp_options":"Windows Media Player Options","qt_options":"QuickTime Options","flash_options":"Flash Options",hidden:"Hidden","align_bottom_left":"Bottom Left","align_bottom_right":"Bottom Right","html5_video_options":"HTML5 Video Options",altsource1:"Alternative source 1",altsource2:"Alternative source 2",preload:"Preload",poster:"Poster",source:"Source","html5_audio_options":"Audio Options","preload_none":"Don\'t Preload","preload_metadata":"Preload video metadata","preload_auto":"Let user\'s browser decide", "embedded_audio_options":"Embedded Audio Options", video:"HTML5 Video", audio:"HTML5 Audio", flash:"Flash", quicktime:"QuickTime", shockwave:"Shockwave", windowsmedia:"Windows Media", realmedia:"Real Media", iframe:"Iframe", embeddedaudio:"Embedded Audio" }); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/media/media.htm b/library/tinymce/jscripts/tiny_mce/plugins/media/media.htm deleted file mode 100644 index 957d83a68..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/media/media.htm +++ /dev/null @@ -1,922 +0,0 @@ - - - - {#media_dlg.title} - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#media_dlg.general} - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - - -
                                            x   
                                            -
                                            -
                                            - -
                                            - {#media_dlg.preview} - -
                                            -
                                            - -
                                            -
                                            - {#media_dlg.advanced} - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - - - -
                                             
                                            -
                                            -
                                            - -
                                            - {#media_dlg.html5_video_options} - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            - -
                                            - - - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -
                                            - -
                                            - {#media_dlg.embedded_audio_options} - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -
                                            - -
                                            - {#media_dlg.html5_audio_options} - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            - -
                                            - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -
                                            - -
                                            - {#media_dlg.flash_options} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - -
                                            - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - - - - - - - -
                                            -
                                            - -
                                            - {#media_dlg.qt_options} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -  
                                            - - - - - -
                                             
                                            -
                                            -
                                            - -
                                            - {#media_dlg.wmp_options} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -
                                            - -
                                            - {#media_dlg.rmp_options} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -   -
                                            -
                                            - -
                                            - {#media_dlg.shockwave_options} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - - - -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            - - - - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#media_dlg.source} - -
                                            -
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf b/library/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf deleted file mode 100644 index 585d772d6d3c23626fddfa58c4220b056783e148..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 19980 zcmV)FK)=63S5pccivR$4+TFbgSX0N>I6O1=CN~KI0x05+ilP_+ai@wRfyT`lc5tI?Yn|XIMxcY?Oy z*i4q}Kw8#jSn_Obf`c7YGj%SaIeEEeMlw?urZ?-e^w~CRSmV&fKqyleX|UvGX>C#3 zoE)=Br={e=1~;-AExG}NwE6l*2D8>`Y#mmLNc-4KHnTn|I@6M&4~#SG2M0C{j4tiZ zutgM#oLS0fl-o45w0Ee^k`U0Iu}%y`t=^if?c`GHN;ff3=28;e}f%GP1; zEw-Zu_Ad%`P~GBMqZm?BQu3*SgAJAf@c4KXVn2Q@=bDc{ZCRyLR9pQ>M+>rgjAMHR?_Mj5f$Os~u>w`bz$#y z%KZF}f*Gqu^;+JRQn zP(AEfX4)w?Pw&`z3W}vMT`d$kpe-IdHOK)*Eb0Br+@@Ia#a^ zWdVi~Whs!&xKy&7LsOA)c5fW+=p%0p%sD!^%T$=N*#dI?uLyL*{}sV#vf1=j+rQwn z4ikC(&!#~|*=-(y`6jE$Z9~eLm%H$nKe2K#%FL`>jQ6Kj4pP~9k7gT(Z$9qM4gIXjN7;>V&f&hitYiU6E$4B`A;ndqkYV9#&qTj68!upZi{q81~~f zKR3?ZC;9KYC~Awm9FT5tcFmfVvvVKlp>lWcpRwF`@Sm~X+r@uEEN>_OlSxu09J|!G zbh=Id1HmmvrT*Ijl#5r+5|oQq{vwov`rluMQYG)2ev|U_&xgjK+}ZvMn)_t`1?|1L z{v&32Q>8}4H8YzjORqO;bFBKz+D>Ysl@SkP({R^WZVp+k+0+kuu{9_i}-AMF*aMY)D`)_wl;Apk1SJWrrD)ab>Lv?OO;U5 zmZd7FDd-?;j$RM_ORaerHGCf!LAOo+&kSMHrf#~fS*s7YZS@b9(8;dT95$wOa$&}K zRyR5OZ`ejBLAEq4{_n7p&N;oOa{gtG|66TlM9XIXp~<9jQf77j*O*PwqKLe=bU6V3 z*V>O#U%@fui2r)d|65%K8ap^`C7WZjQkz+xhg4oHRPK!b714dt|BCqDy#EEays2Bw zrc5`xB(9oR>2#2qJ2yF^d^c9?!w$UjkhgT5eQJ}+J?~C)&^X+EF4}Ccdhby->+|(y z7r~ZgMky0xwhC<7#BH+TEdIxiLgTWIf*5W#`ycrTEy}tGE>h(=AOAn`9B78#jI@;x z@Gu~iPmUY)Y{(hse^ZZXm5KSP_IZulX({lbUCh4G^+_xf9V zVUA*SFik!ao)U)|MG_Vn-qHD^x`(nQhvL;bXInT$$olyV&Vd!#^At;RX)l$ zhcq=D{~_tt?$`Hqi#kqdJ}r88`1<(GK1t16wAeUpn!m2{pB{d*lB!1Q6B83dPM<%2 zxJs2O#ZrcefxIz1s5+~Ou9Aqv-|M{_jf)%dHU9OAKedk5nCF& z^|$;!{cU$vZ>@4HFztu)i!aJTUO#`}{WLJSXU}DEGddsaC4ISff4wtt-Fo-#Eq@yL z^v=03&z~?#FPQVupzl()H6gPm`5!K z|2==r?3OX(2JU%z`sQDA23M>Wi6O=C*EihfiCGy0vJ9sl{RsagBxe)-Du?C!=>V@&V1 zwtCtk=*-EsM~@!uVc)o`wU9V3epR)oH-E?E{kkr8tpED7uij2wowg_S_*d^<-ZcNZ zC2QctTZ2I;IyIaYni68|6yd#P$YTQ_OFaBXJ(|?9hPG|Vnm+4<#I@~&oRcIa<6Y7V_s>%qlIZBCAP^lr?%e(g#s-Mf2N{pzy= z0p~o#8{1XSXXTo&|2F8#iI9+x^NqG%+MB)mr6Kqeb)%ST2aV>s=kktyeXv8(wrP_m z`>yZ$T8C(lzVkj3(c%?!7T?lqPtxuzJtDH;*PpH4FWy#=eV}kI!gw;r5x87am1v(DuA;LYssB zp?&K=f%7u7uBm8o{Q5`p*N=Qs;?=6&{^n5~#usPp3?1;9chrl(&#q7Hc^=Nr-Km%S zUvH}to<8iw>cVr$Yi7OiTvYV^+Sz;FKKu2;&%?Pn7Z*nzd-g29Fzo0uzgDMAt!r7* z#`Rn>(7g2V0n6(|SdL@etM3fGnZNPDy`L*q6BqB$XSX)?J9XpMq6txB`qq4#^<=L{ zScTRTYJT}*!K{pNGqhp5p7_3oV>q&T*2TLQT4Y`P{(0-kpQoA*j+>F1@?@v)se;_Y zhaTr`X?<(knBElx$?|gP~ zz@$5Ux0rh`czn3`x1Lp-?{5`$;o$gLr~AEJ)3ZjaJF&VyCRG2Z$LVwaL%;bObV~c9 z+tP~zv^OJ9&1*Yv(eo=`wSBPN{&>QZ*_FmGn{uj3m4i20om)2HlP)i2Z2ozR>5{t5 ztd7@q#(%SZ<;lDT*P>&$=lrpEL=D}=ZKn@E?N)uot?Ibu=YK~>=l=e@&nu|QD}3~% zEkC*1o`mhkXSZs&w$;w(mp{8&x&4=Oe9l!0nL42B$j_!%zWn6LU&XryuF*ujv|QRu z-x;9A(<{Ttda+=2pRK9yu8s}s)U?Z%jAMUP`>kqX+kHzuo<8zL(+gu7RJ!=AwopC0 zPTKlEqYq6wFGOC7i~7@N&e?(24pzVZRY}T%LG>Tz&7XXu4|j0a^G(;roPA1m?Hlzj zd+DIjsk??IfB*U1yI*eK-{w@$&|d3)SB}?Q&+4{4;-lt~A)9`S^{TgR&YSp>`$dsy z3!ZcK*ROy2>8BqTzihdEly3BvJ@V{58H4*J_1*vF{Ax)rT3@L1++=^5aA>l8!_7Zt zSA1}F;oJG`A2&W2zf}L#{#I=lPM+|%&g}=uzT1Odepd16D~!;~h0n*gxV&xAqD9wg z@2XUAdEn95;!HY`oQ#_%=Ukoh=bkr@JYIv29|>}QxTkWvy?LcpFMj#rBgK>5X9I5! z=-)qoP3o>!nlC-;6gIuEIIY^po9?~+J!;JM%R}r##||2B_<4a@qL8|~R)+U`Yi+Vnbo_H6#pQ*+y-T-Y;U z`Qn$cLte~HhH$Aqu{WGs* zbo`WhZ@;~q{POMdD`R(`I5s`Zqp<1LNe@O38(0$mU_$+yLe_vu+^)oP-uD*;?0Gx+ z$xEN>&&PaMb$w0q-vMLpEkEb2o40554<*9k=TB#!>^Cs<{O^rZ+Pru>)pTT0aLu0D zTgz__={5PqZ}%GP-{tje(_7!CyLl>yCG*xjT)n#eS2f!X?_#Wes$RDv%~Cs0c>ZS1 zz%|VWwDF&}`^~Kz(+2cEvf@JRbKAB(-PBUOa{ne-v$WzLOX6P`FFyY0;P#8vZa++$ ze(8G0X5+8+&p5Gj@sN<@_&o#q2K4FHCN!#o1Zpq8QSpkr*+QDivE5zpm=A}vL$Sgt!<#^@>Bgs zE**N}L6u4e4J-SNytZMnHgDg^+uwRtsuFr2D=A^mfY~cg^q6pBS=fWkQ=hJUyib`s z+PeP2?e#C8T)*?p*_6b4-I}ZWC?5W`;KGJk=7F`$(NDL%c=AJJ-sM^oe%=<|yic3Z z-K+W!=wI+n{}oRsH3}VfqQ|LjhxGByV)}PqQ0uvu&x%i)2DMu=Fec;dwX2D``_(^x z(Cls2I{WXd4%a)DyvPS{`}RW)K$JUgXr3xhr%GwohxrOJ)FMsWRl0zwf7%P zy}jwlj)Sr5UvBRA_^-xiW^_LJD!*sF%)S+7t!(R;zO~VGxlg47H*P|>!W;`Bn>PBM5X-m+G z_0dD`d&M#gS}{Sz&@z!v14ndW_)_F{lS6_lFc`NPt+y7 zys(HZ%(+JAHkiL$@^1YK^T3nMza9Gd7n{t>Pd#gJCh3OXfUzFBjb{>XZ&UX)nU+sH zvc|>7&L1Xs|7z+q>FckrCe%6IbLP)KRoI^JYTBp=nPZDIb?g3db>aEGZ>Q--dx=H^2rZPms{rT{w*j=>malERpyd|&y&qxG`(C{c^ zP|aFhqtd*jwN-~Mi5|SrVTAv`{~7k?VcNd7mX3QWj5LXFv<8lQYu~+ zNHrP#^*WnZSG_IKrnTjXINou2W^*FDM_^@HTwXSdL521fi&?MD=1kc(J`WOU*SxF@ z7(!$q(`2PXO52-kS=t<~SC`I;E|xs2zLX=8MUO-lpNrKZatEzV%WLy&7S9eM5s@(o zaMe%mU#5;uM{9z>SRszuPjAVRcc(9cv-_F#lIYxA?GSlVt~T3BKeCW?vjCrp&Ja86 zbK|oO7C*6i<*<>41DcZf%E!UEx&$XHKRv}Rg!96JNj@c>WSQMU^lWVf+ zmEyMu?b+pugC83I%ab69GwIEl9^D)_i|w_!QgPmrM58uGFYTg*ofs?=A5A(4S%X7$ zmR!Aee0O%QuFs7zn_z)_KKR^0Dvqs49AL^8vyvDX8MuWCSahkCRdR!~%v`qKCKuU) zoF{BEtX{UBZKl*}%hhYM7GIGix(hKDIvtx{RazCNHJSC9-oURrf~TV_ zwkk~7CYwoXHVxIQ=!Hl=tdNr(A8lqP6Q<54t4$C4WmQ;pTC<*U&(muYr4h1Dbfwj3 z8RRT@XX;@cEJK{-fYO5#S?1vInINJb9qFME7rm03P(-@bOGP19z0Z_)u0G3>ua7pH zS+zKlv%kAgNev*Y@!0}>X!2}+<#5DXVXHmpes|O6TJ^aRJiWY8P%KdvJ=jgYnD-Jl zBRNMbs>EUk%b;wrLMc{=!l^2KRpdY~y##fTrZ--(;`Nz~<~!>RHjkWAF;_a|rJFWe zZ?2d{HGn1`#M!M@mgcz3lBYREM3&~bk`q`PNE4lZ641|8u+?Q*!GRvOd$F<$S!T0z>J%TJm?#IrJ=g*X4pC9W z)6cY`tKz=^rUyZL$&5=2hne2RPjviD2~>qGwO4zxJLh=FQ03%*d$h}eEDp! zKhhj+E>g4oUO{^5 zw7@~MRpd}*$22*PS*rj!N>pKXnFCLw$(98BD$ZN!C^4f^Nn5^E z@XFF_t$Dfn%ueE5oW-7Wf;>Iro*)|0I$NIBoCx~LL!2cO7(eHlyVr@k90y7t$XJ;! z_bOXgA)aA&E>nqz3TfhU%AHHy%a!Zx%6%&C&Znxh_oRt4+j5nlrC=iL@;$c-)v?i; z`PyuqKC|ptm7H?tGOVKAs`i0(N-H%>UhRk2^voVJ?j4pT&t@`P<*p`w*NT)uu3SE0 zFmD{_LrF3t0=Y<*^L5vyq9Wrmz~G8+6{Hz#_oZnti9Ef8rJf+%xi&Z({rbTHRa(Jr zISZbdjw8Yd`Iq`Fk#2sA%BhN-Y*j5sO*`BC-P+vz0hv>2O2wCy-tQey_ik>wUZA?Z zSC(0pr5(&t*{cYeQ;2VlXjVpD8=CQUdtJ(K#1}3Mr=RFb>g6mm#H_b^i@qkD1hFgyDsYyS zfY1SSdN%z~Q|Zp7gsFP}59}+e_A9fvqM+6Ir?nTGWgucq>SSF(mr;T7an?jSYpS`F zVL2yF5Km4o$FsNN`KgEaWSgLHsij_}+1{nuPaVpPGlO^z0lje z;6xLTqnCT3NeA9!ZPGy@*2P0snq|t(wdBgE=LZtj%bDrzr30rc&!*25d#cJ7n{@DX zmqbxYq~iM}3H1PSd1^d)>SXycwF3v4Ze$EYspMMPvYxHCDH{$U=$iQKOcQ8Yg~{5% zqRV53FV}(TXp%e2)__t!&`FIc4XZLbF)=nNF|B)Sbcfy^TDpl=@M<%MD7tly?wuCX zIX>oNIh}&eY|;(z=oX!v7%SE)n6JdDy}EVRbnG6Rm?*Y*I^~=-diKzCPVNGoIz@Nw z80+wwbf9AT>Al3Jn_=EqyyczQ5cS(ZapPjaqV%z#(JLwlAaF)6xxl6d-=K9wYPj_(kwWEBwP z8sb4_v;8EJo9%Tj$uMSY^B>mL60w`i|G6#dhzm>8^m8bl1bW zSZx)`1l*CLnhPphS$@!5vn*0PT`U$)=|#k<|3aji`#nSCd&bJowazq_k7Iw|z$eA_ zN>XIH%2JRK*g4U8&lMaCAWs^Sqi6HQdI=*g1z)e9&8Vd3H#sSedInaCO(R!@Xe+5L z@YdRF;77UwSSi~LE0>pRmcprpBPL--n+It&N(^R;1r(KDKfo)IDkqmG<7F*V^kKX1 zm^d?K9`t;siRVw5>DC~n=Q6spM;8rMCY@uWd&DZld>2iRSP5)Z?hpm@qM3>CU|G>p zdqsEX5ZfUw2}CL>x?`*i{ID3K$($(z=E2U}tlR+o5Z(k*!RtWK{9Ka^rQT2|jk6U7 z*ENlzRAI;*UY1G1?p}DRpFJ|@3bNhFRIq#!Xlb*;k`4A>OZQ8vV=7tEH8zPdl$4z4 z5!*E>wtHG!_vkLM3Ks8+b6{C<4qTQgTOvB_PWGd1JY5|>G1e^;|9XgZ49({Qx#Mjh z1Tr{RX8LslpOa@b!d{sTJXH`1X89R4Nm6{5*zR5|O>>?X2~$3}5l>I9L{#dc+d>bi zCoBW?aAWdvtzi86bE3^f21oV8-88pHG~4kzK^I8p%PW&!^f8?gynrD9ksQQWsg2E9(&0%`6|czfkI6$pX#dsmsfyA);8S z;57M>ZkELp^dBf$X279D-9J~U0`)k6oEU34I=rXl#E{9uVZYLvriDw`A@X$jSTx#_ zW--&nX)~;@@H(>mpr(S$3ydtacd{&p&m#r3kgL-}^kf8oS+30kPZ`wg5E+OQQ`bDr z@Ht?5c%#J%f^W&S$#P-ys8mBeIOdrw*0SUd;USFG%M1`2F$80}I*8br2r<{GqZ*PyMdV+cixtlu}2 zHo&jg$w{J5YTG(}!%{-}hBW}h296p^gpNh2umT;qPW@0ug4Yk$>tuP^dN6c3deXNc z?uP>f@WISlogUYdzGG_!PZ|@BBCE&Nkb{8OiqAG-#GG)#`xbv_bVV_-bmW=)q z9X)T*-Pp0Ual%jb?XWLAGtF=BABQe)EInh;+2d(8QeU!VH|9tEkLETFLj`M2_q3P=p-5%6h1 ziUb7=$Fh-FHUKXtf;&6ybnk9B_`7?&E;JvHwFH z@EFUU;DE72f@G73Y&m@%hNKd%(zwbgQpHZH6p|`Mq)IWVBKLm_EznlCN)P(1@+ssc zRZ=R2`S0PNxE5C#j;kEx7|wpk!9Z2$Xz;j?tL)^V`XR3J82e%#6Rhx5;_${19!;7y zYu=(|E3c1K;kdP|O_W%~GViu++F@C^Pqd>(<%ipIG2y-)oE4b!48R=~vEh|E#V61* zmVb=HJ6G>gqiZWHQPjoZ8ZIWNTgz4+pVY(Q-DPbOlUlZthlS(h`aK%-Y=!IZ-~~(s z!V8>Kz=D9~0#OLWL%>P_dkWY~z}^B@3B0d>{RC1$koXIHC4sLj@Kpr9svxZ{;2MIo zrXURz_*#NcN8o}4Sv`Rd7UT^CE<}(u6nM2DZ6ruT1x2`k8w-4dpll-Grh>AWplmKE zTL{XQf@h?l{7CR@EhyUvUTpoS^I|C_4$tctM#UC_fgI zodsnVLD^Nn8bR4jP<|pPy9+o;kR=PMo&xSA;NAl6BjCP*UlYNvnSfITE=|Dcf?spN zuZ7^J75p*;Kb_#0DfsCHKZD@cPw+DeekQ@Mzu-4O@G}d3S%P1-;Aav1as;A;(*f5pka#hm;^`06Y%^9Kk~1QGjERKMv22g}@W=I0kppKLD-*Tm$$M;5xt!fSUlf z0R95F4R8nGE--cv3-x*m+ygAse}sjQrvT3Yo&&r9cnR(4EfQ`AblL_%#tC-vMR`z%Wk0!vVeq7zt1S@D0GX0HXj#1B?L}3os5~JSXtqaYFbc zuBt>nfs@E50wha?Hj_CyoL8X@-PtLC2#1?|56`Ip(*UM(LYp{wJy5+fIQe%(CZ9lL zaJHaj7Qk$PIRJA3<^jwHSOBmPU=hG#fF%G+IU!~pz zaq?(6Fbli3gA-zR0_+0V&B=$siI4jkDE$Jk4`4r6RRQOajtSUD;du-IdSFmf_#`J^ z1A1aN_K@#^=ROSP;u4H~nX3v`;|k=i0bJ+g*EuNv1-)(q+yS@?^SuXfAK(GN-%$4u z;1MTpD3$wr$_uev9wM*mCGd}-`UxkWhrQ(KV1=G?Ue7o$`E!8rP&ESJ1>~O+FCpd? z%q?Ar0o4=(YANP56yI?2x6u3!U>NTu|Ba#zE_vf#OVn{`5JCmrth8$-I0DeNN%! zdtppGotICe5_o;Xd3n+2T;Sn57%yf4@VJl{ z!j}QOfJI#e&(*yA2=S6%qjT5*?OOqkWBDBDw+;Huh39%Y=5}8G6O`8h>;RYt_45JJ zvNWDQwz2&)5`2(=|Rdxa0Jpe!RRaHXxe&Fm7FZ4JJa0K8e00>f#W4!zk_K|M@ zaftz;h?xv~bR2L`0G#CIL2`LGw}Uvp%E6e>1R)t#Drtc@3+xje2Vl&7kd$rbkpjyw z1}6#%Qkn>^X5vJl1>OO!9|A=fP@!;ENH8yxE96MVDHIsM9a-erIj9E=O1KZo?mtRe zuXM|}mE>YS3F1AyluCEP-ZW9Ua^7WTOG<0YG-2L@CQ6FnQI;k8lsQ=~=Z8Z+yc{Vw zr80mn1n<_wmo8n|A7A<}hqxnD5GygJEpq1sKUjeBGf4R#;<^a4orVNeq!~z%Kh5~N zvs8&@D!Jj{fBfnB{u(!A1vXW3D3XR<{`?I{o!yLg73@NB;KompH!{n;cTs4|hr%4T()TBuuBwQ_CLi3OiERnEfLUPz5qEL8v z5TzGTAeahI>EKEQC={VE6pm116oF6^rLrjyRw$Z5>fzCxr7b}Cc&;Voz7^=eNQ}6TKvr7A zUbX=ljKWCO7Nd&oF!GPas8V~30%9<#+ySF19FcpY>NuA25?4>ILbbV$l-EwRP+&Yp zwW`I*eNaP^fKl+r7=<*c2Fjp$NN37u7n*cMNQ1gjQTl}O-JS8Bh){KuM3ZEi^q@&k zgaT17n(IxIPZ6qt`p~2=LN!qeLe)?zU9vRFN;=F1b6S>WuvCXorc$XVC{)j(Fats1 z1`aju$DxRR1T`^osHq8~X8kd0I{>40W{je=MW?zLqD5@n}1GFpDzgN`z1js zUven*D}vI7ff7jv&kt#bLoQ=D7>$7#m7uYZa%dc$1^MxKHl*L-InX)*&xLd%o`-GnO5A+B051fZ z^%h|&6^kKVg3(eqc~c?Ese`8BWssi^X&v+f{t@ysAgzOD;^mN^1!)~L8)985!YiR> z4#d25&|HXkYomFP))Kw1Ya#A_hG2+}$*)LO_dfwT^cw+`~lAgzOb#Oooy z9MU>y1>OMpm5|m!s~`#oas3J7O)!_$kaB1ZMB)Ukg;<=Rbr6kXv>sw`j5grykZ#0) zj5gsNkZ#61A>D#^!Mx>_(RPe><2_hj72N!t82t>vm+?7Bui*2L{*Es|`Uk!U=~etIq}T8zNdLsYL3$luhV%x$0_jcsJEXVp zACUfquR?koUxV}x{u9!>_&TKbaOMpxuZRA|+)eCIFAp*3mq+*(UCChdly;WL8=yCs zN{$3ABlT~?qLkpw5;U8BNWMhkqbGlKmk3Ae{URinW2@ znUujz1ka)jZXtL!WpEq8XD~XC(XSXiz~~7^FR;W(cMgmQzR6r5{1VRt!msdrAp9D? z!)Q62Yl5m&#dX1ls)0EkTmc*h?v5H);}O>xH{lVl!B!qg60wa((%v|qN5W)`hww-S z3Sl02lX6f4yJ#@A3&SLM_{X}pOj{@La zV=R+%_HeMy;DN{$FR?v5aM(g}CUDpya@L-{3mb#&=|5v*1A9D5Urf@M5W`ZUT}B`u zto@Nb(w7s%3Zh*}(pM3~YGPPJ?1qpy7$`r)7hL=XZq*H0weJ{&QWlbgg>V94q(Z|w zl1>ckp}m!+6Jf;-#IO;{k+ht$sg$x|Gf9B$(?sKxMI>Pn5CATV(zg)9R-)ZTiX3!4 zf__C#BCTnm43X_lA}Sd|c1X&w0P6GR;881P)yR>gS60sx8XENkAVW9s04{Z`90^{=D>n1 z0_iYG7AHP<@gZSNQYHs_>=HK-A^jI;%^4CmjbO1i)PlHh>W6eS+T+ zN)sxnAVDBGFk{16I&Z@{lF&qAjIbLb(mBIe(oTRS5DVi-JDIC6p0ty@3g3}-3RhtQ zY3Jc8OeF1;uEHeJ&eK(xOxk%l3dC@pwDT4Vc0)_8o;_Q@mf8)?d?5savc`g_q|sb9 zO1VH$H5aJRNH4;{;br(&(9=A+1eQU94ni0#LBGLqlAy~3NkLEY5MBDFN2InaG+ZGe zXN@h3WJIfnz4fIcRIAYNJ2Cu0)UQYdknq&z^^DEaLqV!QF4H44CVD3PC}N{R!&Tzz z1BW0={f59%N{P|LAe9%ZphqkH8qtgZk#8DoYzmz!P~i$rX{Tw2(wqBKg`*OY9%}fL zXbmiLoj`JfEDFk8sO<;n6*;0%Mp8LDLr-QIFS3wk2e;(A-MNs1P&%miR+y<+@Cd5a=^h48prXJwH(=5OLU{dPkPEmBF#MJW$i<{_xaKw|_DsY<|d*0qQ0 zQMx2N{Ui=g_YF^fM8eZ6gs0bo-(ILX`!Uu94IL)Ja6Wlo%(G)X7Bs zBQZ{|OmqZ8WIYR6RSi%}DSyL?bSyMHA%>@}+%rO# zY%eY>s(7iS#NGoLI|7y31Qy%_#-U~KBcQ4dUA}tu@RaA|AJ&gJ)-MjQgD?;fd9KT0 z4-ZxP3j)7}mn00&*S@5j)+10~2`YmyRHVNmn%8g)Uy(rVE7}|^;XFL8P7Pjbgs8!9 zV5)>cU8lbx>}=?OnSpZ|0+ZnLOgb`}l(>sd6!Sm7asePvs!hAowcz?P2S%H7g9`0d42cWi4l=+TJw z7q>MOV-F=IWk~OYP#8}KT4b~^0>Rx!Nf8gxU5SIhn|238Ba94jV z^lvQXJe0$!7CZ|iw06U%)Q^FOy%4%U4N&Dp-dVe$tNJun&%j0MnV43t#BhwxVY*cjQkY2$n@Prdq(dl$uIe+i zCv}OaBLv=#W3&%RHE~Tb1E$y%1L0b&tE5{uD?zQ99B;!v!~y}#?JQiW7yaQb{S^T z&7PtuDo)T4V^`qbUYNmWNHk|LZ`brkDfJTSp<(qxbh3KdZ@COvuyz!rhS6LQ3ek+= zh%?XnjOBP%){Ns&hKw;}Hw>T_?LHu;kLRXPoe$i#pqJ~?)YN*$R4BD{l!95Qm6Rxz z^-{j$QaI+6FxPSdmrj?ET2;EH2^`UU$I*F4@_=2@iTxe*LQ5Mz;-E1)y_;HAAsB2z zaOtAy(pmm0>1TUxan0#aXT*?YUg+nQS*C`+8E|k{R)KA2|_LhzLFGh8`k94-uiY6XA_G zyIyufFA<@ah|tD~uu`PZ+ivJBBJ>s!qMQh;M1)VNdXh8sq+ZQY6+|1?h>d-yrjm=A zYAwff9hm~EScbmm5RsvFgovlxkZ1rKMllODW~`F13_IP?9H0aM3iX^FA~V)aWZJvh zEw1))ZtXE(law{-5J|pFvm{X|rrXX+iB!G;t-}Xs!DZ0uiDUg3TUXsf~!8XrYtMw8mRAhgz3#iAzG#6{x~DjxXT$c<2M z;^x!fYCc0YgOT>COfj9fBpSbmBI$&r(_p)lXgX|{68*p-PKjo4^flc~4#Isji$hWw z>PQVV&BhO!-*zG1c(#bhQS#UqTqVfp}KvP6_D( zD_3Ms>PgTCXz@U!PUQ`ibUnHzIAa!jN@iWVcMwj;&nk8$dfbksWnFTa=9xg3R>y}sWUh!xPH`5;mVoX$m6CWabuO3w7q-XECD=HZ zqg!VW&*15mk50nwe5%VN9dX?zE#`512sa-V%}1$R08+sR;DsO-a)qKh!Ga8!Vsz#a z3@0HG_>@)$J{P%9(-VGsN!hGyz-5wiR=u6GS_rcejQLRYDSf3(+a_aY;{s@u8HYgK z6ii2aZ_eLCtRj==P;X!{r{f_OD30gSzbAne8q!#aGc4ht0Tx8Pmy27SwT;WgL#HkG0O(ZMj%h@Qx|V}E_z8=#>r~)ICa+F6 zd@&BJKy?|v6z8!^I;b(+#(A(J(=Z`2xtd}v#f25vg_jGzP_h)OJVpFM?QLw=?8H=B zrk6u{nH%XljPwtsq?eULdYK#PJ1){Q$|3!u8|k}@^vqJyKbAxKM>o=UU8HAW2`7^$ z(VYl5Bcjt&!Y{|2(x(zJcAZK>&Z>{lH7#Pp-Gd{x0;jLw3@f>4PDY?-AvFty2D+4v z?v$h1m;;VJrW`FVhoj|KrFL>eX)XrXf`gEs2lI%x;6-^V4k9y@r+wmLc+NjCyz+m< z@G>XED;dLc8N;0@!z;^ScqLXfpc&%|2e+F`x!vr>?Nb-G^UB$|Rc<@?kPSP(bmvx; zGwdq2oqOmay`UV@tKCRHVx$+Al3ra7>D6weAGt^`Du?tMH`0$8>BXg_*OWtgjT`C5 zF49ZNA-(nk(o0K8uPul4+Hy%RD~I$tH_}fS=^xn^x1(6=$|1cDt7wS$v74avUO~c&Pt~s1bx?))3)5vwjS(+Eut@K@3bjkIy-2%^8nun3wZ`R8Yg|cdH-Vv( z$z{}~71w1m<^io3i#F{{;IJhaqV`3w`d!^j+L=Q2anYht2PLIGD~jgKxCm1PRsm*L zs6HVg`GMJ+N+{Y1m(`m}7+F695J*^r5gn+A3Ny%S5tT9!q#`N-u*pSKp@7aPqNg7Y zco98MaAb<8VFTM$M6D1Qnj&g4z$z3`MNMU#>OU%fMX*vZxh+ioS~%p-uc1TiUShVk z{0fd0OR#n=M=z>fHSe%?CA~V?N*x2CHaG_B-t#eR@Y_o+dQbD{P}^|n<>7WrFXddf zKR;0_vid+}{fAWMVG6wz4o_?srL_aoOVRgykDc^;QmKpRE=rUKc~9BEi0;7@dU*hi z-IT^|hA#562l7(E)%9oERZ?LsgFpv@TDNb$Y z)PeHP145vQJsn2oh^PKtur@lzv*r+H! zna`xv|6HJx+S!z?5F%~mFdguBPW=bho~W;Kaoadj0HXUR7q^`beXiK>3-JMCmyF0CIPt& zNrtrIrjn8(;B-GIP>yd1`pAdC$>_u)ILh8lSPwO(tkKdfR|)zYfHmhOu6;U4_lZ+E zuc{@zJgXajp?h-(mtOiF#ynPdG=)9^%ndX0>|3@5~H*o&RFJUcjSJODKZa8RZf z4Hbei9c38s2?r1dr@Cw&_LR7UIAq+59hrUD&faR-4Tl`Q?J;1&!=qa2LF~MuD$D&r zO7b`sI1kU!t{08KDUCJggA*UT_;7~5&ed3s>3b8P!|)mRE7^SDvDz2p&xyFw*|@;j zL3E33?jw}#zt+{?z4pWY5_?L;AR0DH9INNxj7CTc7SQ^Hio9_@qfV~}>65l;#jT`4 z6npElSG?wFcTBwZ+2=ss$KH7|WR{gM2l@qqcMr4|f_D#eg2_N6H8e*s zDl?qxMUrDY_9hAFgRoHQ@DStJlT126v`b$*9i`kkWo`yk9K;T>qg{jThW%KxkE2p` ziggaBsvl_X=TI3UFr<^pYWF6-I;Z2s0W07hC`map;i5y%4=S3n_i5wIfPf?3*r!;>9 zH%}sEcWI|_A^m1Xyg-D4;RrWE1-dqH1ZcL)nD>y%#}alwArW5%(T@;@dAYtqa9&o> zj|k}5HiORK497U_adv;f8H+G|@SL&%V8k8ssx3Yk1YCioPWl*nW8B&~s`xa!--I@HgMFR84dSlAG;5!9_Nd5u-l+>e*(}D%lg=9-=cT54|h%EBK_fQP8x{OV*6IRu%Lodn5 zH8#gTVUBWi6-y=J+`tnG999+lq5vIlSC8a_B9gJakS?3JWM@+Xz+4p>u5(3(8ywiF z`ShJ9tGWqQw_H^T0ff>>shYtT8UErDsuCb;FD{}hTul3ewJD~Zz|<7O+^%6xCXtQ@ zkr5ZxOD9RGmQW21t9Di#f0zWEuiGrTvKJLoGF0XZodQq4t#^n!9M|_{y%KcFkT5w1 zw=B3a5Gl&wsg|MgyS$Q?Qf7+m>Th^(NkJ~O zcQ`1Ga+dDW(imsy9xaV?mhN-!k5X)Szy()(GZw?Lnn>(kTz^fPg^AsweY79_lH4uzD{^f5;ggaq4M&aIzGHlDB8@?%M{A zDmbT)IqegUW}b4|XDsua)4pJtmz?$$%e)4jNKvu&4OaxEx19DJSCn4D8HVxN;e1j0 z2;T5DuN}$LMsXUD5myT`H#qHbwrn>*QYF%EPJya<&be%7Q)(vEM6^N_1uE-m5O>h| zAm^-f21+MrsXQ^c$@U||NjT7ra9~0pq7@Fp#o!Rw3k?Ol>)<=8_tENa%2t;*)Gf@x zHhcuTP%EJp8deJywV0X+SI1!zkTiM>v^T(gr^2tj#o5{WS0D*z7SZpcWm5Us(y!a7 z(h-daCq8(`5vDCWCb& zYk1!MP_Z)PVLbZT+bQw0H<1kfe@lj9s^{@ctHq7wk$NVM`x6tbsH4^M-CAapX_u!%g>GZ1LL$8_rPktHU;!w!0-b~gn^G2RQa7Lw?7zyN6U}~&f^&t%Kp!ww!!eC$ z)#FHoTA&nYL?bc`nzc~WxeM4=T-Q0uTTzNKgO5|P;$ed1MGkC7^#WSIjxdUg_)?1V zToiAWQoLD~A{6sQiu1})g!)ukU(9TisyoX&J3&RXSm6OfF6Pxscp96=d9bE>j1yQ3 z8o4gz+hb75-|^VDG9A_o~ zPejj-qv)*yRRsd?D5_Mgpg7-&>_g8nh=8N$tEvjcy~I)Uqt}V_>(QVJ)O8N3Ad^?! z{jQ`!`?n>Zzb*OxZOO^EB{$gbBj+#ouB67hl61FUo7?ZOcO}rDy1CchFgLeIJ&7Gn z`XP2v5CVZNQco^Z1D*#=;11@&gUF^wPA8$hK@s%}G!DO@22^J74&6s>)e$aTw$Yc~ z&VXty_Jv6mf-p`7VN|lLh(m?qy)yL}R)`)$Aq;z$`MNVWr>|T3D!tU(1!d(>dg^p~ z2JPw%yhBql)veyhi|@fV@gt~r*hzfp&J+zezOO?Npzr{cH&?B=l2Z7 zf8{^_!m$rV*Y=JtUTTMmP^&dGSET-hpMSO}Wex$C(*WtuVA3Su?#&_e;LZm<^a?yphn%V2qf#^q`HtEof~@5OX}?EEEutJ+s8Oy5qwi zUcHxMOVs=LxRpGfuRg%fpI_k68zhivGm2I~-@P#WgFO90h|Di2aD0M9ITzQ!%mr5P zD=AT_-V2Xik#XJmWHDLA?;(=aJi@+c4Nn!uT2L6iXdNgF9<2w3;g4R^*BX3Vb`wyT z&TnMjTBY;f7M!KuTK$I`4m}CC1c3JO3-^cLcZGFY+#=ofWy~ECLP<|xzI};^+ z@xll8@;5G_mCH%#r@ku)$BAEx#UsZz&Gtg$Fk(-+frBCvZeVO2PQ`R3pf8m9BIc!{6w4|{QLwP5nv3WpNINQWdDu_My3A-dg%NAz&|4B-~J;6 b==_iWodI83J<=N diff --git a/library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js deleted file mode 100644 index 687f54866..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.Nonbreaking",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceNonBreaking",function(){a.execCommand("mceInsertContent",false,(a.plugins.visualchars&&a.plugins.visualchars.state)?' ':" ")});a.addButton("nonbreaking",{title:"nonbreaking.nonbreaking_desc",cmd:"mceNonBreaking"});if(a.getParam("nonbreaking_force_tab")){a.onKeyDown.add(function(d,f){if(f.keyCode==9){f.preventDefault();d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking")}})}},getInfo:function(){return{longname:"Nonbreaking space",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("nonbreaking",tinymce.plugins.Nonbreaking)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js deleted file mode 100644 index d492fbefe..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +++ /dev/null @@ -1,54 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.Nonbreaking', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - // Register commands - ed.addCommand('mceNonBreaking', function() { - ed.execCommand('mceInsertContent', false, (ed.plugins.visualchars && ed.plugins.visualchars.state) ? ' ' : ' '); - }); - - // Register buttons - ed.addButton('nonbreaking', {title : 'nonbreaking.nonbreaking_desc', cmd : 'mceNonBreaking'}); - - if (ed.getParam('nonbreaking_force_tab')) { - ed.onKeyDown.add(function(ed, e) { - if (e.keyCode == 9) { - e.preventDefault(); - - ed.execCommand('mceNonBreaking'); - ed.execCommand('mceNonBreaking'); - ed.execCommand('mceNonBreaking'); - } - }); - } - }, - - getInfo : function() { - return { - longname : 'Nonbreaking space', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - - // Private methods - }); - - // Register plugin - tinymce.PluginManager.add('nonbreaking', tinymce.plugins.Nonbreaking); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js deleted file mode 100644 index da411ebc0..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var c=tinymce.dom.TreeWalker;var a="contenteditable",d="data-mce-"+a;var e=tinymce.VK;function b(n){var j=n.dom,p=n.selection,r,o="mce_noneditablecaret",r="\uFEFF";function m(t){var s;if(t.nodeType===1){s=t.getAttribute(d);if(s&&s!=="inherit"){return s}s=t.contentEditable;if(s!=="inherit"){return s}}return null}function g(s){var t;while(s){t=m(s);if(t){return t==="false"?s:null}s=s.parentNode}}function l(s){while(s){if(s.id===o){return s}s=s.parentNode}}function k(s){var t;if(s){t=new c(s,s);for(s=t.current();s;s=t.next()){if(s.nodeType===3){return s}}}}function f(v,u){var s,t;if(m(v)==="false"){if(j.isBlock(v)){p.select(v);return}}t=j.createRng();if(m(v)==="true"){if(!v.firstChild){v.appendChild(n.getDoc().createTextNode("\u00a0"))}v=v.firstChild;u=true}s=j.create("span",{id:o,"data-mce-bogus":true},r);if(u){v.parentNode.insertBefore(s,v)}else{j.insertAfter(s,v)}t.setStart(s.firstChild,1);t.collapse(true);p.setRng(t);return s}function i(s){var v,t,u;if(s){rng=p.getRng(true);rng.setStartBefore(s);rng.setEndBefore(s);v=k(s);if(v&&v.nodeValue.charAt(0)==r){v=v.deleteData(0,1)}j.remove(s,true);p.setRng(rng)}else{t=l(p.getStart());while((s=j.get(o))&&s!==u){if(t!==s){v=k(s);if(v&&v.nodeValue.charAt(0)==r){v=v.deleteData(0,1)}j.remove(s,true)}u=s}}}function q(){var s,w,u,t,v;function x(B,D){var A,F,E,C,z;A=t.startContainer;F=t.startOffset;if(A.nodeType==3){z=A.nodeValue.length;if((F>0&&F0?F-1:F;A=A.childNodes[G];if(A.hasChildNodes()){A=A.firstChild}}else{return !D?B:null}}E=new c(A,B);while(C=E[D?"prev":"next"]()){if(C.nodeType===3&&C.nodeValue.length>0){return}else{if(m(C)==="true"){return C}}}return B}i();u=p.isCollapsed();s=g(p.getStart());w=g(p.getEnd());if(s||w){t=p.getRng(true);if(u){s=s||w;var y=p.getStart();if(v=x(s,true)){f(v,true)}else{if(v=x(s,false)){f(v,false)}else{p.select(s)}}}else{t=p.getRng(true);if(s){t.setStartBefore(s)}if(w){t.setEndAfter(w)}p.setRng(t)}}}function h(z,B){var F=B.keyCode,x,C,D,v;function u(H,G){while(H=H[G?"previousSibling":"nextSibling"]){if(H.nodeType!==3||H.nodeValue.length>0){return H}}}function y(G,H){p.select(G);p.collapse(H)}function t(K){var J,I,M,H;function G(O){var N=I;while(N){if(N===O){return}N=N.parentNode}j.remove(O);q()}function L(){var O,P,N=z.schema.getNonEmptyElements();P=new tinymce.dom.TreeWalker(I,z.getBody());while(O=(K?P.prev():P.next())){if(N[O.nodeName.toLowerCase()]){break}if(O.nodeType===3&&tinymce.trim(O.nodeValue).length>0){break}if(m(O)==="false"){G(O);return true}}if(g(O)){return true}return false}if(p.isCollapsed()){J=p.getRng(true);I=J.startContainer;M=J.startOffset;I=l(I)||I;if(H=g(I)){G(H);return false}if(I.nodeType==3&&(K?M>0:M124)&&F!=e.DELETE&&F!=e.BACKSPACE){if((tinymce.isMac?B.metaKey:B.ctrlKey)&&(F==67||F==88||F==86)){return}B.preventDefault();if(F==e.LEFT||F==e.RIGHT){var w=F==e.LEFT;if(z.dom.isBlock(x)){var A=w?x.previousSibling:x.nextSibling;var s=new c(A,A);var E=w?s.prev():s.next();y(E,!w)}else{y(x,w)}}}else{if(F==e.LEFT||F==e.RIGHT||F==e.BACKSPACE||F==e.DELETE){C=l(D);if(C){if(F==e.LEFT||F==e.BACKSPACE){x=u(C,true);if(x&&m(x)==="false"){B.preventDefault();if(F==e.LEFT){y(x,true)}else{j.remove(x);return}}else{i(C)}}if(F==e.RIGHT||F==e.DELETE){x=u(C);if(x&&m(x)==="false"){B.preventDefault();if(F==e.RIGHT){y(x,false)}else{j.remove(x);return}}else{i(C)}}}if((F==e.BACKSPACE||F==e.DELETE)&&!t(F==e.BACKSPACE)){B.preventDefault();return false}}}}n.onMouseDown.addToTop(function(s,u){var t=s.selection.getNode();if(m(t)==="false"&&t==u.target){q()}});n.onMouseUp.addToTop(q);n.onKeyDown.addToTop(h);n.onKeyUp.addToTop(q)}tinymce.create("tinymce.plugins.NonEditablePlugin",{init:function(i,k){var h,g,j;function f(m,n){var o=j.length,p=n.content,l=tinymce.trim(g);if(n.format=="raw"){return}while(o--){p=p.replace(j[o],function(s){var r=arguments,q=r[r.length-2];if(q>0&&p.charAt(q-1)=='"'){return s}return''+m.dom.encode(typeof(r[1])==="string"?r[1]:r[0])+""})}n.content=p}h=" "+tinymce.trim(i.getParam("noneditable_editable_class","mceEditable"))+" ";g=" "+tinymce.trim(i.getParam("noneditable_noneditable_class","mceNonEditable"))+" ";j=i.getParam("noneditable_regexp");if(j&&!j.length){j=[j]}i.onPreInit.add(function(){b(i);if(j){i.selection.onBeforeSetContent.add(f);i.onBeforeSetContent.add(f)}i.parser.addAttributeFilter("class",function(l){var m=l.length,n,o;while(m--){o=l[m];n=" "+o.attr("class")+" ";if(n.indexOf(h)!==-1){o.attr(d,"true")}else{if(n.indexOf(g)!==-1){o.attr(d,"false")}}}});i.serializer.addAttributeFilter(d,function(l,m){var n=l.length,o;while(n--){o=l[n];if(j&&o.attr("data-mce-content")){o.name="#text";o.type=3;o.raw=true;o.value=o.attr("data-mce-content")}else{o.attr(a,null);o.attr(d,null)}}});i.parser.addAttributeFilter(a,function(l,m){var n=l.length,o;while(n--){o=l[n];o.attr(d,o.attr(a));o.attr(a,null)}})})},getInfo:function(){return{longname:"Non editable elements",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/noneditable",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("noneditable",tinymce.plugins.NonEditablePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js deleted file mode 100644 index a18bcd786..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js +++ /dev/null @@ -1,537 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var TreeWalker = tinymce.dom.TreeWalker; - var externalName = 'contenteditable', internalName = 'data-mce-' + externalName; - var VK = tinymce.VK; - - function handleContentEditableSelection(ed) { - var dom = ed.dom, selection = ed.selection, invisibleChar, caretContainerId = 'mce_noneditablecaret', invisibleChar = '\uFEFF'; - - // Returns the content editable state of a node "true/false" or null - function getContentEditable(node) { - var contentEditable; - - // Ignore non elements - if (node.nodeType === 1) { - // Check for fake content editable - contentEditable = node.getAttribute(internalName); - if (contentEditable && contentEditable !== "inherit") { - return contentEditable; - } - - // Check for real content editable - contentEditable = node.contentEditable; - if (contentEditable !== "inherit") { - return contentEditable; - } - } - - return null; - }; - - // Returns the noneditable parent or null if there is a editable before it or if it wasn't found - function getNonEditableParent(node) { - var state; - - while (node) { - state = getContentEditable(node); - if (state) { - return state === "false" ? node : null; - } - - node = node.parentNode; - } - }; - - // Get caret container parent for the specified node - function getParentCaretContainer(node) { - while (node) { - if (node.id === caretContainerId) { - return node; - } - - node = node.parentNode; - } - }; - - // Finds the first text node in the specified node - function findFirstTextNode(node) { - var walker; - - if (node) { - walker = new TreeWalker(node, node); - - for (node = walker.current(); node; node = walker.next()) { - if (node.nodeType === 3) { - return node; - } - } - } - }; - - // Insert caret container before/after target or expand selection to include block - function insertCaretContainerOrExpandToBlock(target, before) { - var caretContainer, rng; - - // Select block - if (getContentEditable(target) === "false") { - if (dom.isBlock(target)) { - selection.select(target); - return; - } - } - - rng = dom.createRng(); - - if (getContentEditable(target) === "true") { - if (!target.firstChild) { - target.appendChild(ed.getDoc().createTextNode('\u00a0')); - } - - target = target.firstChild; - before = true; - } - - //caretContainer = dom.create('span', {id: caretContainerId, 'data-mce-bogus': true, style:'border: 1px solid red'}, invisibleChar); - caretContainer = dom.create('span', {id: caretContainerId, 'data-mce-bogus': true}, invisibleChar); - - if (before) { - target.parentNode.insertBefore(caretContainer, target); - } else { - dom.insertAfter(caretContainer, target); - } - - rng.setStart(caretContainer.firstChild, 1); - rng.collapse(true); - selection.setRng(rng); - - return caretContainer; - }; - - // Removes any caret container except the one we might be in - function removeCaretContainer(caretContainer) { - var child, currentCaretContainer, lastContainer; - - if (caretContainer) { - rng = selection.getRng(true); - rng.setStartBefore(caretContainer); - rng.setEndBefore(caretContainer); - - child = findFirstTextNode(caretContainer); - if (child && child.nodeValue.charAt(0) == invisibleChar) { - child = child.deleteData(0, 1); - } - - dom.remove(caretContainer, true); - - selection.setRng(rng); - } else { - currentCaretContainer = getParentCaretContainer(selection.getStart()); - while ((caretContainer = dom.get(caretContainerId)) && caretContainer !== lastContainer) { - if (currentCaretContainer !== caretContainer) { - child = findFirstTextNode(caretContainer); - if (child && child.nodeValue.charAt(0) == invisibleChar) { - child = child.deleteData(0, 1); - } - - dom.remove(caretContainer, true); - } - - lastContainer = caretContainer; - } - } - }; - - // Modifies the selection to include contentEditable false elements or insert caret containers - function moveSelection() { - var nonEditableStart, nonEditableEnd, isCollapsed, rng, element; - - // Checks if there is any contents to the left/right side of caret returns the noneditable element or any editable element if it finds one inside - function hasSideContent(element, left) { - var container, offset, walker, node, len; - - container = rng.startContainer; - offset = rng.startOffset; - - // If endpoint is in middle of text node then expand to beginning/end of element - if (container.nodeType == 3) { - len = container.nodeValue.length; - if ((offset > 0 && offset < len) || (left ? offset == len : offset == 0)) { - return; - } - } else { - // Can we resolve the node by index - if (offset < container.childNodes.length) { - // Browser represents caret position as the offset at the start of an element. When moving right - // this is the element we are moving into so we consider our container to be child node at offset-1 - var pos = !left && offset > 0 ? offset-1 : offset; - container = container.childNodes[pos]; - if (container.hasChildNodes()) { - container = container.firstChild; - } - } else { - // If not then the caret is at the last position in it's container and the caret container should be inserted after the noneditable element - return !left ? element : null; - } - } - - // Walk left/right to look for contents - walker = new TreeWalker(container, element); - while (node = walker[left ? 'prev' : 'next']()) { - if (node.nodeType === 3 && node.nodeValue.length > 0) { - return; - } else if (getContentEditable(node) === "true") { - // Found contentEditable=true element return this one to we can move the caret inside it - return node; - } - } - - return element; - }; - - // Remove any existing caret containers - removeCaretContainer(); - - // Get noneditable start/end elements - isCollapsed = selection.isCollapsed(); - nonEditableStart = getNonEditableParent(selection.getStart()); - nonEditableEnd = getNonEditableParent(selection.getEnd()); - - // Is any fo the range endpoints noneditable - if (nonEditableStart || nonEditableEnd) { - rng = selection.getRng(true); - - // If it's a caret selection then look left/right to see if we need to move the caret out side or expand - if (isCollapsed) { - nonEditableStart = nonEditableStart || nonEditableEnd; - var start = selection.getStart(); - if (element = hasSideContent(nonEditableStart, true)) { - // We have no contents to the left of the caret then insert a caret container before the noneditable element - insertCaretContainerOrExpandToBlock(element, true); - } else if (element = hasSideContent(nonEditableStart, false)) { - // We have no contents to the right of the caret then insert a caret container after the noneditable element - insertCaretContainerOrExpandToBlock(element, false); - } else { - // We are in the middle of a noneditable so expand to select it - selection.select(nonEditableStart); - } - } else { - rng = selection.getRng(true); - - // Expand selection to include start non editable element - if (nonEditableStart) { - rng.setStartBefore(nonEditableStart); - } - - // Expand selection to include end non editable element - if (nonEditableEnd) { - rng.setEndAfter(nonEditableEnd); - } - - selection.setRng(rng); - } - } - }; - - function handleKey(ed, e) { - var keyCode = e.keyCode, nonEditableParent, caretContainer, startElement, endElement; - - function getNonEmptyTextNodeSibling(node, prev) { - while (node = node[prev ? 'previousSibling' : 'nextSibling']) { - if (node.nodeType !== 3 || node.nodeValue.length > 0) { - return node; - } - } - }; - - function positionCaretOnElement(element, start) { - selection.select(element); - selection.collapse(start); - } - - function canDelete(backspace) { - var rng, container, offset, nonEditableParent; - - function removeNodeIfNotParent(node) { - var parent = container; - - while (parent) { - if (parent === node) { - return; - } - - parent = parent.parentNode; - } - - dom.remove(node); - moveSelection(); - } - - function isNextPrevTreeNodeNonEditable() { - var node, walker, nonEmptyElements = ed.schema.getNonEmptyElements(); - - walker = new tinymce.dom.TreeWalker(container, ed.getBody()); - while (node = (backspace ? walker.prev() : walker.next())) { - // Found IMG/INPUT etc - if (nonEmptyElements[node.nodeName.toLowerCase()]) { - break; - } - - // Found text node with contents - if (node.nodeType === 3 && tinymce.trim(node.nodeValue).length > 0) { - break; - } - - // Found non editable node - if (getContentEditable(node) === "false") { - removeNodeIfNotParent(node); - return true; - } - } - - // Check if the content node is within a non editable parent - if (getNonEditableParent(node)) { - return true; - } - - return false; - } - - if (selection.isCollapsed()) { - rng = selection.getRng(true); - container = rng.startContainer; - offset = rng.startOffset; - container = getParentCaretContainer(container) || container; - - // Is in noneditable parent - if (nonEditableParent = getNonEditableParent(container)) { - removeNodeIfNotParent(nonEditableParent); - return false; - } - - // Check if the caret is in the middle of a text node - if (container.nodeType == 3 && (backspace ? offset > 0 : offset < container.nodeValue.length)) { - return true; - } - - // Resolve container index - if (container.nodeType == 1) { - container = container.childNodes[offset] || container; - } - - // Check if previous or next tree node is non editable then block the event - if (isNextPrevTreeNodeNonEditable()) { - return false; - } - } - - return true; - } - - startElement = selection.getStart() - endElement = selection.getEnd(); - - // Disable all key presses in contentEditable=false except delete or backspace - nonEditableParent = getNonEditableParent(startElement) || getNonEditableParent(endElement); - if (nonEditableParent && (keyCode < 112 || keyCode > 124) && keyCode != VK.DELETE && keyCode != VK.BACKSPACE) { - // Is Ctrl+c, Ctrl+v or Ctrl+x then use default browser behavior - if ((tinymce.isMac ? e.metaKey : e.ctrlKey) && (keyCode == 67 || keyCode == 88 || keyCode == 86)) { - return; - } - - e.preventDefault(); - - // Arrow left/right select the element and collapse left/right - if (keyCode == VK.LEFT || keyCode == VK.RIGHT) { - var left = keyCode == VK.LEFT; - // If a block element find previous or next element to position the caret - if (ed.dom.isBlock(nonEditableParent)) { - var targetElement = left ? nonEditableParent.previousSibling : nonEditableParent.nextSibling; - var walker = new TreeWalker(targetElement, targetElement); - var caretElement = left ? walker.prev() : walker.next(); - positionCaretOnElement(caretElement, !left); - } else { - positionCaretOnElement(nonEditableParent, left); - } - } - } else { - // Is arrow left/right, backspace or delete - if (keyCode == VK.LEFT || keyCode == VK.RIGHT || keyCode == VK.BACKSPACE || keyCode == VK.DELETE) { - caretContainer = getParentCaretContainer(startElement); - if (caretContainer) { - // Arrow left or backspace - if (keyCode == VK.LEFT || keyCode == VK.BACKSPACE) { - nonEditableParent = getNonEmptyTextNodeSibling(caretContainer, true); - - if (nonEditableParent && getContentEditable(nonEditableParent) === "false") { - e.preventDefault(); - - if (keyCode == VK.LEFT) { - positionCaretOnElement(nonEditableParent, true); - } else { - dom.remove(nonEditableParent); - return; - } - } else { - removeCaretContainer(caretContainer); - } - } - - // Arrow right or delete - if (keyCode == VK.RIGHT || keyCode == VK.DELETE) { - nonEditableParent = getNonEmptyTextNodeSibling(caretContainer); - - if (nonEditableParent && getContentEditable(nonEditableParent) === "false") { - e.preventDefault(); - - if (keyCode == VK.RIGHT) { - positionCaretOnElement(nonEditableParent, false); - } else { - dom.remove(nonEditableParent); - return; - } - } else { - removeCaretContainer(caretContainer); - } - } - } - - if ((keyCode == VK.BACKSPACE || keyCode == VK.DELETE) && !canDelete(keyCode == VK.BACKSPACE)) { - e.preventDefault(); - return false; - } - } - } - }; - - ed.onMouseDown.addToTop(function(ed, e) { - var node = ed.selection.getNode(); - - if (getContentEditable(node) === "false" && node == e.target) { - // Expand selection on mouse down we can't block the default event since it's used for drag/drop - moveSelection(); - } - }); - - ed.onMouseUp.addToTop(moveSelection); - ed.onKeyDown.addToTop(handleKey); - ed.onKeyUp.addToTop(moveSelection); - }; - - tinymce.create('tinymce.plugins.NonEditablePlugin', { - init : function(ed, url) { - var editClass, nonEditClass, nonEditableRegExps; - - // Converts configured regexps to noneditable span items - function convertRegExpsToNonEditable(ed, args) { - var i = nonEditableRegExps.length, content = args.content, cls = tinymce.trim(nonEditClass); - - // Don't replace the variables when raw is used for example on undo/redo - if (args.format == "raw") { - return; - } - - while (i--) { - content = content.replace(nonEditableRegExps[i], function(match) { - var args = arguments, index = args[args.length - 2]; - - // Is value inside an attribute then don't replace - if (index > 0 && content.charAt(index - 1) == '"') { - return match; - } - - return '' + ed.dom.encode(typeof(args[1]) === "string" ? args[1] : args[0]) + ''; - }); - } - - args.content = content; - }; - - editClass = " " + tinymce.trim(ed.getParam("noneditable_editable_class", "mceEditable")) + " "; - nonEditClass = " " + tinymce.trim(ed.getParam("noneditable_noneditable_class", "mceNonEditable")) + " "; - - // Setup noneditable regexps array - nonEditableRegExps = ed.getParam("noneditable_regexp"); - if (nonEditableRegExps && !nonEditableRegExps.length) { - nonEditableRegExps = [nonEditableRegExps]; - } - - ed.onPreInit.add(function() { - handleContentEditableSelection(ed); - - if (nonEditableRegExps) { - ed.selection.onBeforeSetContent.add(convertRegExpsToNonEditable); - ed.onBeforeSetContent.add(convertRegExpsToNonEditable); - } - - // Apply contentEditable true/false on elements with the noneditable/editable classes - ed.parser.addAttributeFilter('class', function(nodes) { - var i = nodes.length, className, node; - - while (i--) { - node = nodes[i]; - className = " " + node.attr("class") + " "; - - if (className.indexOf(editClass) !== -1) { - node.attr(internalName, "true"); - } else if (className.indexOf(nonEditClass) !== -1) { - node.attr(internalName, "false"); - } - } - }); - - // Remove internal name - ed.serializer.addAttributeFilter(internalName, function(nodes, name) { - var i = nodes.length, node; - - while (i--) { - node = nodes[i]; - - if (nonEditableRegExps && node.attr('data-mce-content')) { - node.name = "#text"; - node.type = 3; - node.raw = true; - node.value = node.attr('data-mce-content'); - } else { - node.attr(externalName, null); - node.attr(internalName, null); - } - } - }); - - // Convert external name into internal name - ed.parser.addAttributeFilter(externalName, function(nodes, name) { - var i = nodes.length, node; - - while (i--) { - node = nodes[i]; - node.attr(internalName, node.attr(externalName)); - node.attr(externalName, null); - } - }); - }); - }, - - getInfo : function() { - return { - longname : 'Non editable elements', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/noneditable', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('noneditable', tinymce.plugins.NonEditablePlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js deleted file mode 100644 index 35085e8ad..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.PageBreakPlugin",{init:function(b,d){var f='',a="mcePageBreak",c=b.getParam("pagebreak_separator",""),e;e=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(g){return"\\"+g}),"g");b.addCommand("mcePageBreak",function(){b.execCommand("mceInsertContent",0,f)});b.addButton("pagebreak",{title:"pagebreak.desc",cmd:a});b.onInit.add(function(){if(b.theme.onResolveName){b.theme.onResolveName.add(function(g,h){if(h.node.nodeName=="IMG"&&b.dom.hasClass(h.node,a)){h.name="pagebreak"}})}});b.onClick.add(function(g,h){h=h.target;if(h.nodeName==="IMG"&&g.dom.hasClass(h,a)){g.selection.select(h)}});b.onNodeChange.add(function(h,g,i){g.setActive("pagebreak",i.nodeName==="IMG"&&h.dom.hasClass(i,a))});b.onBeforeSetContent.add(function(g,h){h.content=h.content.replace(e,f)});b.onPostProcess.add(function(g,h){if(h.get){h.content=h.content.replace(/]+>/g,function(i){if(i.indexOf('class="mcePageBreak')!==-1){i=c}return i})}})},getInfo:function(){return{longname:"PageBreak",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("pagebreak",tinymce.plugins.PageBreakPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js deleted file mode 100644 index a094c1916..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +++ /dev/null @@ -1,74 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.PageBreakPlugin', { - init : function(ed, url) { - var pb = '', cls = 'mcePageBreak', sep = ed.getParam('pagebreak_separator', ''), pbRE; - - pbRE = new RegExp(sep.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g, function(a) {return '\\' + a;}), 'g'); - - // Register commands - ed.addCommand('mcePageBreak', function() { - ed.execCommand('mceInsertContent', 0, pb); - }); - - // Register buttons - ed.addButton('pagebreak', {title : 'pagebreak.desc', cmd : cls}); - - ed.onInit.add(function() { - if (ed.theme.onResolveName) { - ed.theme.onResolveName.add(function(th, o) { - if (o.node.nodeName == 'IMG' && ed.dom.hasClass(o.node, cls)) - o.name = 'pagebreak'; - }); - } - }); - - ed.onClick.add(function(ed, e) { - e = e.target; - - if (e.nodeName === 'IMG' && ed.dom.hasClass(e, cls)) - ed.selection.select(e); - }); - - ed.onNodeChange.add(function(ed, cm, n) { - cm.setActive('pagebreak', n.nodeName === 'IMG' && ed.dom.hasClass(n, cls)); - }); - - ed.onBeforeSetContent.add(function(ed, o) { - o.content = o.content.replace(pbRE, pb); - }); - - ed.onPostProcess.add(function(ed, o) { - if (o.get) - o.content = o.content.replace(/]+>/g, function(im) { - if (im.indexOf('class="mcePageBreak') !== -1) - im = sep; - - return im; - }); - }); - }, - - getInfo : function() { - return { - longname : 'PageBreak', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('pagebreak', tinymce.plugins.PageBreakPlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js deleted file mode 100644 index 0ab05ebbb..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var c=tinymce.each,a={paste_auto_cleanup_on_paste:true,paste_enable_default_filters:true,paste_block_drop:false,paste_retain_style_properties:"none",paste_strip_class_attributes:"mso",paste_remove_spans:false,paste_remove_styles:false,paste_remove_styles_if_webkit:true,paste_convert_middot_lists:true,paste_convert_headers_to_strong:false,paste_dialog_width:"450",paste_dialog_height:"400",paste_max_consecutive_linebreaks:2,paste_text_use_dialog:false,paste_text_sticky:false,paste_text_sticky_default:false,paste_text_notifyalways:false,paste_text_linebreaktype:"combined",paste_text_replacements:[[/\u2026/g,"..."],[/[\x93\x94\u201c\u201d]/g,'"'],[/[\x60\x91\x92\u2018\u2019]/g,"'"]]};function b(d,e){return d.getParam(e,a[e])}tinymce.create("tinymce.plugins.PastePlugin",{init:function(d,e){var f=this;f.editor=d;f.url=e;f.onPreProcess=new tinymce.util.Dispatcher(f);f.onPostProcess=new tinymce.util.Dispatcher(f);f.onPreProcess.add(f._preProcess);f.onPostProcess.add(f._postProcess);f.onPreProcess.add(function(i,j){d.execCallback("paste_preprocess",i,j)});f.onPostProcess.add(function(i,j){d.execCallback("paste_postprocess",i,j)});d.onKeyDown.addToTop(function(i,j){if(((tinymce.isMac?j.metaKey:j.ctrlKey)&&j.keyCode==86)||(j.shiftKey&&j.keyCode==45)){return false}});d.pasteAsPlainText=b(d,"paste_text_sticky_default");function h(l,j){var k=d.dom,i;f.onPreProcess.dispatch(f,l);l.node=k.create("div",0,l.content);if(tinymce.isGecko){i=d.selection.getRng(true);if(i.startContainer==i.endContainer&&i.startContainer.nodeType==3){if(l.node.childNodes.length===1&&/^(p|h[1-6]|pre)$/i.test(l.node.firstChild.nodeName)&&l.content.indexOf("__MCE_ITEM__")===-1){k.remove(l.node.firstChild,true)}}}f.onPostProcess.dispatch(f,l);l.content=d.serializer.serialize(l.node,{getInner:1,forced_root_block:""});if((!j)&&(d.pasteAsPlainText)){f._insertPlainText(l.content);if(!b(d,"paste_text_sticky")){d.pasteAsPlainText=false;d.controlManager.setActive("pastetext",false)}}else{f._insert(l.content)}}d.addCommand("mceInsertClipboardContent",function(i,j){h(j,true)});if(!b(d,"paste_text_use_dialog")){d.addCommand("mcePasteText",function(j,i){var k=tinymce.util.Cookie;d.pasteAsPlainText=!d.pasteAsPlainText;d.controlManager.setActive("pastetext",d.pasteAsPlainText);if((d.pasteAsPlainText)&&(!k.get("tinymcePasteText"))){if(b(d,"paste_text_sticky")){d.windowManager.alert(d.translate("paste.plaintext_mode_sticky"))}else{d.windowManager.alert(d.translate("paste.plaintext_mode"))}if(!b(d,"paste_text_notifyalways")){k.set("tinymcePasteText","1",new Date(new Date().getFullYear()+1,12,31))}}})}d.addButton("pastetext",{title:"paste.paste_text_desc",cmd:"mcePasteText"});d.addButton("selectall",{title:"paste.selectall_desc",cmd:"selectall"});function g(s){var l,p,j,t,k=d.selection,o=d.dom,q=d.getBody(),i,r;if(s.clipboardData||o.doc.dataTransfer){r=(s.clipboardData||o.doc.dataTransfer).getData("Text");if(d.pasteAsPlainText){s.preventDefault();h({content:o.encode(r).replace(/\r?\n/g,"
                                            ")});return}}if(o.get("_mcePaste")){return}l=o.add(q,"div",{id:"_mcePaste","class":"mcePaste","data-mce-bogus":"1"},"\uFEFF\uFEFF");if(q!=d.getDoc().body){i=o.getPos(d.selection.getStart(),q).y}else{i=q.scrollTop+o.getViewPort(d.getWin()).y}o.setStyles(l,{position:"absolute",left:tinymce.isGecko?-40:0,top:i-25,width:1,height:1,overflow:"hidden"});if(tinymce.isIE){t=k.getRng();j=o.doc.body.createTextRange();j.moveToElementText(l);j.execCommand("Paste");o.remove(l);if(l.innerHTML==="\uFEFF\uFEFF"){d.execCommand("mcePasteWord");s.preventDefault();return}k.setRng(t);k.setContent("");setTimeout(function(){h({content:l.innerHTML})},0);return tinymce.dom.Event.cancel(s)}else{function m(n){n.preventDefault()}o.bind(d.getDoc(),"mousedown",m);o.bind(d.getDoc(),"keydown",m);p=d.selection.getRng();l=l.firstChild;j=d.getDoc().createRange();j.setStart(l,0);j.setEnd(l,2);k.setRng(j);window.setTimeout(function(){var u="",n;if(!o.select("div.mcePaste > div.mcePaste").length){n=o.select("div.mcePaste");c(n,function(w){var v=w.firstChild;if(v&&v.nodeName=="DIV"&&v.style.marginTop&&v.style.backgroundColor){o.remove(v,1)}c(o.select("span.Apple-style-span",w),function(x){o.remove(x,1)});c(o.select("br[data-mce-bogus]",w),function(x){o.remove(x)});if(w.parentNode.className!="mcePaste"){u+=w.innerHTML}})}else{u="

                                            "+o.encode(r).replace(/\r?\n\r?\n/g,"

                                            ").replace(/\r?\n/g,"
                                            ")+"

                                            "}c(o.select("div.mcePaste"),function(v){o.remove(v)});if(p){k.setRng(p)}h({content:u});o.unbind(d.getDoc(),"mousedown",m);o.unbind(d.getDoc(),"keydown",m)},0)}}if(b(d,"paste_auto_cleanup_on_paste")){if(tinymce.isOpera||/Firefox\/2/.test(navigator.userAgent)){d.onKeyDown.addToTop(function(i,j){if(((tinymce.isMac?j.metaKey:j.ctrlKey)&&j.keyCode==86)||(j.shiftKey&&j.keyCode==45)){g(j)}})}else{d.onPaste.addToTop(function(i,j){return g(j)})}}d.onInit.add(function(){d.controlManager.setActive("pastetext",d.pasteAsPlainText);if(b(d,"paste_block_drop")){d.dom.bind(d.getBody(),["dragend","dragover","draggesture","dragdrop","drop","drag"],function(i){i.preventDefault();i.stopPropagation();return false})}});f._legacySupport()},getInfo:function(){return{longname:"Paste text/word",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/paste",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_preProcess:function(g,e){var k=this.editor,j=e.content,p=tinymce.grep,n=tinymce.explode,f=tinymce.trim,l,i;function d(h){c(h,function(o){if(o.constructor==RegExp){j=j.replace(o,"")}else{j=j.replace(o[0],o[1])}})}if(k.settings.paste_enable_default_filters==false){return}if(tinymce.isIE&&document.documentMode>=9&&/<(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)/.test(e.content)){d([[/(?:
                                             [\s\r\n]+|
                                            )*(<\/?(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)[^>]*>)(?:
                                             [\s\r\n]+|
                                            )*/g,"$1"]]);d([[/

                                            /g,"

                                            "],[/
                                            /g," "],[/

                                            /g,"
                                            "]])}if(/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(j)||e.wordContent){e.wordContent=true;d([/^\s*( )+/gi,/( |]*>)+\s*$/gi]);if(b(k,"paste_convert_headers_to_strong")){j=j.replace(/

                                            ]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi,"

                                            $1

                                            ")}if(b(k,"paste_convert_middot_lists")){d([[//gi,"$&__MCE_ITEM__"],[/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi,"$1__MCE_ITEM__"],[/(]+(?:MsoListParagraph)[^>]+>)/gi,"$1__MCE_ITEM__"]])}d([//gi,/<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi,[/<(\/?)s>/gi,"<$1strike>"],[/ /gi,"\u00a0"]]);do{l=j.length;j=j.replace(/(<[a-z][^>]*\s)(?:id|name|language|type|on\w+|\w+:\w+)=(?:"[^"]*"|\w+)\s?/gi,"$1")}while(l!=j.length);if(b(k,"paste_retain_style_properties").replace(/^none$/i,"").length==0){j=j.replace(/<\/?span[^>]*>/gi,"")}else{d([[/([\s\u00a0]*)<\/span>/gi,function(o,h){return(h.length>0)?h.replace(/./," ").slice(Math.floor(h.length/2)).split("").join("\u00a0"):""}],[/(<[a-z][^>]*)\sstyle="([^"]*)"/gi,function(t,h,r){var u=[],o=0,q=n(f(r).replace(/"/gi,"'"),";");c(q,function(s){var w,y,z=n(s,":");function x(A){return A+((A!=="0")&&(/\d$/.test(A)))?"px":""}if(z.length==2){w=z[0].toLowerCase();y=z[1].toLowerCase();switch(w){case"mso-padding-alt":case"mso-padding-top-alt":case"mso-padding-right-alt":case"mso-padding-bottom-alt":case"mso-padding-left-alt":case"mso-margin-alt":case"mso-margin-top-alt":case"mso-margin-right-alt":case"mso-margin-bottom-alt":case"mso-margin-left-alt":case"mso-table-layout-alt":case"mso-height":case"mso-width":case"mso-vertical-align-alt":u[o++]=w.replace(/^mso-|-alt$/g,"")+":"+x(y);return;case"horiz-align":u[o++]="text-align:"+y;return;case"vert-align":u[o++]="vertical-align:"+y;return;case"font-color":case"mso-foreground":u[o++]="color:"+y;return;case"mso-background":case"mso-highlight":u[o++]="background:"+y;return;case"mso-default-height":u[o++]="min-height:"+x(y);return;case"mso-default-width":u[o++]="min-width:"+x(y);return;case"mso-padding-between-alt":u[o++]="border-collapse:separate;border-spacing:"+x(y);return;case"text-line-through":if((y=="single")||(y=="double")){u[o++]="text-decoration:line-through"}return;case"mso-zero-height":if(y=="yes"){u[o++]="display:none"}return}if(/^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?!align|decor|indent|trans)|top-bar|version|vnd|word-break)/.test(w)){return}u[o++]=w+":"+z[1]}});if(o>0){return h+' style="'+u.join(";")+'"'}else{return h}}]])}}if(b(k,"paste_convert_headers_to_strong")){d([[/]*>/gi,"

                                            "],[/<\/h[1-6][^>]*>/gi,"

                                            "]])}d([[/Version:[\d.]+\nStartHTML:\d+\nEndHTML:\d+\nStartFragment:\d+\nEndFragment:\d+/gi,""]]);i=b(k,"paste_strip_class_attributes");if(i!=="none"){function m(q,o){if(i==="all"){return""}var h=p(n(o.replace(/^(["'])(.*)\1$/,"$2")," "),function(r){return(/^(?!mso)/i.test(r))});return h.length?' class="'+h.join(" ")+'"':""}j=j.replace(/ class="([^"]+)"/gi,m);j=j.replace(/ class=([\-\w]+)/gi,m)}if(b(k,"paste_remove_spans")){j=j.replace(/<\/?span[^>]*>/gi,"")}e.content=j},_postProcess:function(g,i){var f=this,e=f.editor,h=e.dom,d;if(e.settings.paste_enable_default_filters==false){return}if(i.wordContent){c(h.select("a",i.node),function(j){if(!j.href||j.href.indexOf("#_Toc")!=-1){h.remove(j,1)}});if(b(e,"paste_convert_middot_lists")){f._convertLists(g,i)}d=b(e,"paste_retain_style_properties");if((tinymce.is(d,"string"))&&(d!=="all")&&(d!=="*")){d=tinymce.explode(d.replace(/^none$/i,""));c(h.select("*",i.node),function(m){var n={},k=0,l,o,j;if(d){for(l=0;l0){h.setStyles(m,n)}else{if(m.nodeName=="SPAN"&&!m.className){h.remove(m,true)}}})}}if(b(e,"paste_remove_styles")||(b(e,"paste_remove_styles_if_webkit")&&tinymce.isWebKit)){c(h.select("*[style]",i.node),function(j){j.removeAttribute("style");j.removeAttribute("data-mce-style")})}else{if(tinymce.isWebKit){c(h.select("*",i.node),function(j){j.removeAttribute("data-mce-style")})}}},_convertLists:function(g,e){var i=g.editor.dom,h,l,d=-1,f,m=[],k,j;c(i.select("p",e.node),function(t){var q,u="",s,r,n,o;for(q=t.firstChild;q&&q.nodeType==3;q=q.nextSibling){u+=q.nodeValue}u=t.innerHTML.replace(/<\/?\w+[^>]*>/gi,"").replace(/ /g,"\u00a0");if(/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*\u00a0*/.test(u)){s="ul"}if(/^__MCE_ITEM__\s*\w+\.\s*\u00a0+/.test(u)){s="ol"}if(s){f=parseFloat(t.style.marginLeft||0);if(f>d){m.push(f)}if(!h||s!=k){h=i.create(s);i.insertAfter(h,t)}else{if(f>d){h=l.appendChild(i.create(s))}else{if(f]*>/gi,"");if(s=="ul"&&/^__MCE_ITEM__[\u2022\u00b7\u00a7\u00d8o\u25CF]/.test(p)){i.remove(v)}else{if(/^__MCE_ITEM__[\s\S]*\w+\.( |\u00a0)*\s*/.test(p)){i.remove(v)}}});r=t.innerHTML;if(s=="ul"){r=t.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*( |\u00a0)+\s*/,"")}else{r=t.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^\s*\w+\.( |\u00a0)+\s*/,"")}l=h.appendChild(i.create("li",0,r));i.remove(t);d=f;k=s}else{h=d=0}});j=e.node.innerHTML;if(j.indexOf("__MCE_ITEM__")!=-1){e.node.innerHTML=j.replace(/__MCE_ITEM__/g,"")}},_insert:function(f,d){var e=this.editor,g=e.selection.getRng();if(!e.selection.isCollapsed()&&g.startContainer!=g.endContainer){e.getDoc().execCommand("Delete",false,null)}e.execCommand("mceInsertContent",false,f,{skip_undo:d})},_insertPlainText:function(j){var h=this.editor,f=b(h,"paste_text_linebreaktype"),k=b(h,"paste_text_replacements"),g=tinymce.is;function e(m){c(m,function(n){if(n.constructor==RegExp){j=j.replace(n,"")}else{j=j.replace(n[0],n[1])}})}if((typeof(j)==="string")&&(j.length>0)){if(/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(j)){e([/[\n\r]+/g])}else{e([/\r+/g])}e([[/<\/(?:p|h[1-6]|ul|ol|dl|table|div|blockquote|fieldset|pre|address|center)>/gi,"\n\n"],[/]*>|<\/tr>/gi,"\n"],[/<\/t[dh]>\s*]*>/gi,"\t"],/<[a-z!\/?][^>]*>/gi,[/ /gi," "],[/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi,"$1"]]);var d=Number(b(h,"paste_max_consecutive_linebreaks"));if(d>-1){var l=new RegExp("\n{"+(d+1)+",}","g");var i="";while(i.length"]])}else{if(f=="p"){e([[/\n+/g,"

                                            "],[/^(.*<\/p>)(

                                            )$/,"

                                            $1"]])}else{e([[/\n\n/g,"

                                            "],[/^(.*<\/p>)(

                                            )$/,"

                                            $1"],[/\n/g,"
                                            "]])}}}h.execCommand("mceInsertContent",false,j)}},_legacySupport:function(){var e=this,d=e.editor;d.addCommand("mcePasteWord",function(){d.windowManager.open({file:e.url+"/pasteword.htm",width:parseInt(b(d,"paste_dialog_width")),height:parseInt(b(d,"paste_dialog_height")),inline:1})});if(b(d,"paste_text_use_dialog")){d.addCommand("mcePasteText",function(){d.windowManager.open({file:e.url+"/pastetext.htm",width:parseInt(b(d,"paste_dialog_width")),height:parseInt(b(d,"paste_dialog_height")),inline:1})})}d.addButton("pasteword",{title:"paste.paste_word_desc",cmd:"mcePasteWord"})}});tinymce.PluginManager.add("paste",tinymce.plugins.PastePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js deleted file mode 100644 index 0154eceb5..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js +++ /dev/null @@ -1,885 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var each = tinymce.each, - defs = { - paste_auto_cleanup_on_paste : true, - paste_enable_default_filters : true, - paste_block_drop : false, - paste_retain_style_properties : "none", - paste_strip_class_attributes : "mso", - paste_remove_spans : false, - paste_remove_styles : false, - paste_remove_styles_if_webkit : true, - paste_convert_middot_lists : true, - paste_convert_headers_to_strong : false, - paste_dialog_width : "450", - paste_dialog_height : "400", - paste_max_consecutive_linebreaks: 2, - paste_text_use_dialog : false, - paste_text_sticky : false, - paste_text_sticky_default : false, - paste_text_notifyalways : false, - paste_text_linebreaktype : "combined", - paste_text_replacements : [ - [/\u2026/g, "..."], - [/[\x93\x94\u201c\u201d]/g, '"'], - [/[\x60\x91\x92\u2018\u2019]/g, "'"] - ] - }; - - function getParam(ed, name) { - return ed.getParam(name, defs[name]); - } - - tinymce.create('tinymce.plugins.PastePlugin', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - t.url = url; - - // Setup plugin events - t.onPreProcess = new tinymce.util.Dispatcher(t); - t.onPostProcess = new tinymce.util.Dispatcher(t); - - // Register default handlers - t.onPreProcess.add(t._preProcess); - t.onPostProcess.add(t._postProcess); - - // Register optional preprocess handler - t.onPreProcess.add(function(pl, o) { - ed.execCallback('paste_preprocess', pl, o); - }); - - // Register optional postprocess - t.onPostProcess.add(function(pl, o) { - ed.execCallback('paste_postprocess', pl, o); - }); - - ed.onKeyDown.addToTop(function(ed, e) { - // Block ctrl+v from adding an undo level since the default logic in tinymce.Editor will add that - if (((tinymce.isMac ? e.metaKey : e.ctrlKey) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45)) - return false; // Stop other listeners - }); - - // Initialize plain text flag - ed.pasteAsPlainText = getParam(ed, 'paste_text_sticky_default'); - - // This function executes the process handlers and inserts the contents - // force_rich overrides plain text mode set by user, important for pasting with execCommand - function process(o, force_rich) { - var dom = ed.dom, rng; - - // Execute pre process handlers - t.onPreProcess.dispatch(t, o); - - // Create DOM structure - o.node = dom.create('div', 0, o.content); - - // If pasting inside the same element and the contents is only one block - // remove the block and keep the text since Firefox will copy parts of pre and h1-h6 as a pre element - if (tinymce.isGecko) { - rng = ed.selection.getRng(true); - if (rng.startContainer == rng.endContainer && rng.startContainer.nodeType == 3) { - // Is only one block node and it doesn't contain word stuff - if (o.node.childNodes.length === 1 && /^(p|h[1-6]|pre)$/i.test(o.node.firstChild.nodeName) && o.content.indexOf('__MCE_ITEM__') === -1) - dom.remove(o.node.firstChild, true); - } - } - - // Execute post process handlers - t.onPostProcess.dispatch(t, o); - - // Serialize content - o.content = ed.serializer.serialize(o.node, {getInner : 1, forced_root_block : ''}); - - // Plain text option active? - if ((!force_rich) && (ed.pasteAsPlainText)) { - t._insertPlainText(o.content); - - if (!getParam(ed, "paste_text_sticky")) { - ed.pasteAsPlainText = false; - ed.controlManager.setActive("pastetext", false); - } - } else { - t._insert(o.content); - } - } - - // Add command for external usage - ed.addCommand('mceInsertClipboardContent', function(u, o) { - process(o, true); - }); - - if (!getParam(ed, "paste_text_use_dialog")) { - ed.addCommand('mcePasteText', function(u, v) { - var cookie = tinymce.util.Cookie; - - ed.pasteAsPlainText = !ed.pasteAsPlainText; - ed.controlManager.setActive('pastetext', ed.pasteAsPlainText); - - if ((ed.pasteAsPlainText) && (!cookie.get("tinymcePasteText"))) { - if (getParam(ed, "paste_text_sticky")) { - ed.windowManager.alert(ed.translate('paste.plaintext_mode_sticky')); - } else { - ed.windowManager.alert(ed.translate('paste.plaintext_mode')); - } - - if (!getParam(ed, "paste_text_notifyalways")) { - cookie.set("tinymcePasteText", "1", new Date(new Date().getFullYear() + 1, 12, 31)) - } - } - }); - } - - ed.addButton('pastetext', {title: 'paste.paste_text_desc', cmd: 'mcePasteText'}); - ed.addButton('selectall', {title: 'paste.selectall_desc', cmd: 'selectall'}); - - // This function grabs the contents from the clipboard by adding a - // hidden div and placing the caret inside it and after the browser paste - // is done it grabs that contents and processes that - function grabContent(e) { - var n, or, rng, oldRng, sel = ed.selection, dom = ed.dom, body = ed.getBody(), posY, textContent; - - // Check if browser supports direct plaintext access - if (e.clipboardData || dom.doc.dataTransfer) { - textContent = (e.clipboardData || dom.doc.dataTransfer).getData('Text'); - - if (ed.pasteAsPlainText) { - e.preventDefault(); - process({content : dom.encode(textContent).replace(/\r?\n/g, '
                                            ')}); - return; - } - } - - if (dom.get('_mcePaste')) - return; - - // Create container to paste into - n = dom.add(body, 'div', {id : '_mcePaste', 'class' : 'mcePaste', 'data-mce-bogus' : '1'}, '\uFEFF\uFEFF'); - - // If contentEditable mode we need to find out the position of the closest element - if (body != ed.getDoc().body) - posY = dom.getPos(ed.selection.getStart(), body).y; - else - posY = body.scrollTop + dom.getViewPort(ed.getWin()).y; - - // Styles needs to be applied after the element is added to the document since WebKit will otherwise remove all styles - // If also needs to be in view on IE or the paste would fail - dom.setStyles(n, { - position : 'absolute', - left : tinymce.isGecko ? -40 : 0, // Need to move it out of site on Gecko since it will othewise display a ghost resize rect for the div - top : posY - 25, - width : 1, - height : 1, - overflow : 'hidden' - }); - - if (tinymce.isIE) { - // Store away the old range - oldRng = sel.getRng(); - - // Select the container - rng = dom.doc.body.createTextRange(); - rng.moveToElementText(n); - rng.execCommand('Paste'); - - // Remove container - dom.remove(n); - - // Check if the contents was changed, if it wasn't then clipboard extraction failed probably due - // to IE security settings so we pass the junk though better than nothing right - if (n.innerHTML === '\uFEFF\uFEFF') { - ed.execCommand('mcePasteWord'); - e.preventDefault(); - return; - } - - // Restore the old range and clear the contents before pasting - sel.setRng(oldRng); - sel.setContent(''); - - // For some odd reason we need to detach the the mceInsertContent call from the paste event - // It's like IE has a reference to the parent element that you paste in and the selection gets messed up - // when it tries to restore the selection - setTimeout(function() { - // Process contents - process({content : n.innerHTML}); - }, 0); - - // Block the real paste event - return tinymce.dom.Event.cancel(e); - } else { - function block(e) { - e.preventDefault(); - }; - - // Block mousedown and click to prevent selection change - dom.bind(ed.getDoc(), 'mousedown', block); - dom.bind(ed.getDoc(), 'keydown', block); - - or = ed.selection.getRng(); - - // Move select contents inside DIV - n = n.firstChild; - rng = ed.getDoc().createRange(); - rng.setStart(n, 0); - rng.setEnd(n, 2); - sel.setRng(rng); - - // Wait a while and grab the pasted contents - window.setTimeout(function() { - var h = '', nl; - - // Paste divs duplicated in paste divs seems to happen when you paste plain text so lets first look for that broken behavior in WebKit - if (!dom.select('div.mcePaste > div.mcePaste').length) { - nl = dom.select('div.mcePaste'); - - // WebKit will split the div into multiple ones so this will loop through then all and join them to get the whole HTML string - each(nl, function(n) { - var child = n.firstChild; - - // WebKit inserts a DIV container with lots of odd styles - if (child && child.nodeName == 'DIV' && child.style.marginTop && child.style.backgroundColor) { - dom.remove(child, 1); - } - - // Remove apply style spans - each(dom.select('span.Apple-style-span', n), function(n) { - dom.remove(n, 1); - }); - - // Remove bogus br elements - each(dom.select('br[data-mce-bogus]', n), function(n) { - dom.remove(n); - }); - - // WebKit will make a copy of the DIV for each line of plain text pasted and insert them into the DIV - if (n.parentNode.className != 'mcePaste') - h += n.innerHTML; - }); - } else { - // Found WebKit weirdness so force the content into paragraphs this seems to happen when you paste plain text from Nodepad etc - // So this logic will replace double enter with paragraphs and single enter with br so it kind of looks the same - h = '

                                            ' + dom.encode(textContent).replace(/\r?\n\r?\n/g, '

                                            ').replace(/\r?\n/g, '
                                            ') + '

                                            '; - } - - // Remove the nodes - each(dom.select('div.mcePaste'), function(n) { - dom.remove(n); - }); - - // Restore the old selection - if (or) - sel.setRng(or); - - process({content : h}); - - // Unblock events ones we got the contents - dom.unbind(ed.getDoc(), 'mousedown', block); - dom.unbind(ed.getDoc(), 'keydown', block); - }, 0); - } - } - - // Check if we should use the new auto process method - if (getParam(ed, "paste_auto_cleanup_on_paste")) { - // Is it's Opera or older FF use key handler - if (tinymce.isOpera || /Firefox\/2/.test(navigator.userAgent)) { - ed.onKeyDown.addToTop(function(ed, e) { - if (((tinymce.isMac ? e.metaKey : e.ctrlKey) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45)) - grabContent(e); - }); - } else { - // Grab contents on paste event on Gecko and WebKit - ed.onPaste.addToTop(function(ed, e) { - return grabContent(e); - }); - } - } - - ed.onInit.add(function() { - ed.controlManager.setActive("pastetext", ed.pasteAsPlainText); - - // Block all drag/drop events - if (getParam(ed, "paste_block_drop")) { - ed.dom.bind(ed.getBody(), ['dragend', 'dragover', 'draggesture', 'dragdrop', 'drop', 'drag'], function(e) { - e.preventDefault(); - e.stopPropagation(); - - return false; - }); - } - }); - - // Add legacy support - t._legacySupport(); - }, - - getInfo : function() { - return { - longname : 'Paste text/word', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/paste', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - _preProcess : function(pl, o) { - var ed = this.editor, - h = o.content, - grep = tinymce.grep, - explode = tinymce.explode, - trim = tinymce.trim, - len, stripClass; - - //console.log('Before preprocess:' + o.content); - - function process(items) { - each(items, function(v) { - // Remove or replace - if (v.constructor == RegExp) - h = h.replace(v, ''); - else - h = h.replace(v[0], v[1]); - }); - } - - if (ed.settings.paste_enable_default_filters == false) { - return; - } - - // IE9 adds BRs before/after block elements when contents is pasted from word or for example another browser - if (tinymce.isIE && document.documentMode >= 9 && /<(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)/.test(o.content)) { - // IE9 adds BRs before/after block elements when contents is pasted from word or for example another browser - process([[/(?:
                                             [\s\r\n]+|
                                            )*(<\/?(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)[^>]*>)(?:
                                             [\s\r\n]+|
                                            )*/g, '$1']]); - - // IE9 also adds an extra BR element for each soft-linefeed and it also adds a BR for each word wrap break - process([ - [/

                                            /g, '

                                            '], // Replace multiple BR elements with uppercase BR to keep them intact - [/
                                            /g, ' '], // Replace single br elements with space since they are word wrap BR:s - [/

                                            /g, '
                                            '] // Replace back the double brs but into a single BR - ]); - } - - // Detect Word content and process it more aggressive - if (/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(h) || o.wordContent) { - o.wordContent = true; // Mark the pasted contents as word specific content - //console.log('Word contents detected.'); - - // Process away some basic content - process([ - /^\s*( )+/gi, //   entities at the start of contents - /( |]*>)+\s*$/gi //   entities at the end of contents - ]); - - if (getParam(ed, "paste_convert_headers_to_strong")) { - h = h.replace(/

                                            ]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi, "

                                            $1

                                            "); - } - - if (getParam(ed, "paste_convert_middot_lists")) { - process([ - [//gi, '$&__MCE_ITEM__'], // Convert supportLists to a list item marker - [/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi, '$1__MCE_ITEM__'], // Convert mso-list and symbol spans to item markers - [/(]+(?:MsoListParagraph)[^>]+>)/gi, '$1__MCE_ITEM__'] // Convert mso-list and symbol paragraphs to item markers (FF) - ]); - } - - process([ - // Word comments like conditional comments etc - //gi, - - // Remove comments, scripts (e.g., msoShowComment), XML tag, VML content, MS Office namespaced tags, and a few other tags - /<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi, - - // Convert into for line-though - [/<(\/?)s>/gi, "<$1strike>"], - - // Replace nsbp entites to char since it's easier to handle - [/ /gi, "\u00a0"] - ]); - - // Remove bad attributes, with or without quotes, ensuring that attribute text is really inside a tag. - // If JavaScript had a RegExp look-behind, we could have integrated this with the last process() array and got rid of the loop. But alas, it does not, so we cannot. - do { - len = h.length; - h = h.replace(/(<[a-z][^>]*\s)(?:id|name|language|type|on\w+|\w+:\w+)=(?:"[^"]*"|\w+)\s?/gi, "$1"); - } while (len != h.length); - - // Remove all spans if no styles is to be retained - if (getParam(ed, "paste_retain_style_properties").replace(/^none$/i, "").length == 0) { - h = h.replace(/<\/?span[^>]*>/gi, ""); - } else { - // We're keeping styles, so at least clean them up. - // CSS Reference: http://msdn.microsoft.com/en-us/library/aa155477.aspx - - process([ - // Convert ___ to string of alternating breaking/non-breaking spaces of same length - [/([\s\u00a0]*)<\/span>/gi, - function(str, spaces) { - return (spaces.length > 0)? spaces.replace(/./, " ").slice(Math.floor(spaces.length/2)).split("").join("\u00a0") : ""; - } - ], - - // Examine all styles: delete junk, transform some, and keep the rest - [/(<[a-z][^>]*)\sstyle="([^"]*)"/gi, - function(str, tag, style) { - var n = [], - i = 0, - s = explode(trim(style).replace(/"/gi, "'"), ";"); - - // Examine each style definition within the tag's style attribute - each(s, function(v) { - var name, value, - parts = explode(v, ":"); - - function ensureUnits(v) { - return v + ((v !== "0") && (/\d$/.test(v)))? "px" : ""; - } - - if (parts.length == 2) { - name = parts[0].toLowerCase(); - value = parts[1].toLowerCase(); - - // Translate certain MS Office styles into their CSS equivalents - switch (name) { - case "mso-padding-alt": - case "mso-padding-top-alt": - case "mso-padding-right-alt": - case "mso-padding-bottom-alt": - case "mso-padding-left-alt": - case "mso-margin-alt": - case "mso-margin-top-alt": - case "mso-margin-right-alt": - case "mso-margin-bottom-alt": - case "mso-margin-left-alt": - case "mso-table-layout-alt": - case "mso-height": - case "mso-width": - case "mso-vertical-align-alt": - n[i++] = name.replace(/^mso-|-alt$/g, "") + ":" + ensureUnits(value); - return; - - case "horiz-align": - n[i++] = "text-align:" + value; - return; - - case "vert-align": - n[i++] = "vertical-align:" + value; - return; - - case "font-color": - case "mso-foreground": - n[i++] = "color:" + value; - return; - - case "mso-background": - case "mso-highlight": - n[i++] = "background:" + value; - return; - - case "mso-default-height": - n[i++] = "min-height:" + ensureUnits(value); - return; - - case "mso-default-width": - n[i++] = "min-width:" + ensureUnits(value); - return; - - case "mso-padding-between-alt": - n[i++] = "border-collapse:separate;border-spacing:" + ensureUnits(value); - return; - - case "text-line-through": - if ((value == "single") || (value == "double")) { - n[i++] = "text-decoration:line-through"; - } - return; - - case "mso-zero-height": - if (value == "yes") { - n[i++] = "display:none"; - } - return; - } - - // Eliminate all MS Office style definitions that have no CSS equivalent by examining the first characters in the name - if (/^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?!align|decor|indent|trans)|top-bar|version|vnd|word-break)/.test(name)) { - return; - } - - // If it reached this point, it must be a valid CSS style - n[i++] = name + ":" + parts[1]; // Lower-case name, but keep value case - } - }); - - // If style attribute contained any valid styles the re-write it; otherwise delete style attribute. - if (i > 0) { - return tag + ' style="' + n.join(';') + '"'; - } else { - return tag; - } - } - ] - ]); - } - } - - // Replace headers with - if (getParam(ed, "paste_convert_headers_to_strong")) { - process([ - [/]*>/gi, "

                                            "], - [/<\/h[1-6][^>]*>/gi, "

                                            "] - ]); - } - - process([ - // Copy paste from Java like Open Office will produce this junk on FF - [/Version:[\d.]+\nStartHTML:\d+\nEndHTML:\d+\nStartFragment:\d+\nEndFragment:\d+/gi, ''] - ]); - - // Class attribute options are: leave all as-is ("none"), remove all ("all"), or remove only those starting with mso ("mso"). - // Note:- paste_strip_class_attributes: "none", verify_css_classes: true is also a good variation. - stripClass = getParam(ed, "paste_strip_class_attributes"); - - if (stripClass !== "none") { - function removeClasses(match, g1) { - if (stripClass === "all") - return ''; - - var cls = grep(explode(g1.replace(/^(["'])(.*)\1$/, "$2"), " "), - function(v) { - return (/^(?!mso)/i.test(v)); - } - ); - - return cls.length ? ' class="' + cls.join(" ") + '"' : ''; - }; - - h = h.replace(/ class="([^"]+)"/gi, removeClasses); - h = h.replace(/ class=([\-\w]+)/gi, removeClasses); - } - - // Remove spans option - if (getParam(ed, "paste_remove_spans")) { - h = h.replace(/<\/?span[^>]*>/gi, ""); - } - - //console.log('After preprocess:' + h); - - o.content = h; - }, - - /** - * Various post process items. - */ - _postProcess : function(pl, o) { - var t = this, ed = t.editor, dom = ed.dom, styleProps; - - if (ed.settings.paste_enable_default_filters == false) { - return; - } - - if (o.wordContent) { - // Remove named anchors or TOC links - each(dom.select('a', o.node), function(a) { - if (!a.href || a.href.indexOf('#_Toc') != -1) - dom.remove(a, 1); - }); - - if (getParam(ed, "paste_convert_middot_lists")) { - t._convertLists(pl, o); - } - - // Process styles - styleProps = getParam(ed, "paste_retain_style_properties"); // retained properties - - // Process only if a string was specified and not equal to "all" or "*" - if ((tinymce.is(styleProps, "string")) && (styleProps !== "all") && (styleProps !== "*")) { - styleProps = tinymce.explode(styleProps.replace(/^none$/i, "")); - - // Retains some style properties - each(dom.select('*', o.node), function(el) { - var newStyle = {}, npc = 0, i, sp, sv; - - // Store a subset of the existing styles - if (styleProps) { - for (i = 0; i < styleProps.length; i++) { - sp = styleProps[i]; - sv = dom.getStyle(el, sp); - - if (sv) { - newStyle[sp] = sv; - npc++; - } - } - } - - // Remove all of the existing styles - dom.setAttrib(el, 'style', ''); - - if (styleProps && npc > 0) - dom.setStyles(el, newStyle); // Add back the stored subset of styles - else // Remove empty span tags that do not have class attributes - if (el.nodeName == 'SPAN' && !el.className) - dom.remove(el, true); - }); - } - } - - // Remove all style information or only specifically on WebKit to avoid the style bug on that browser - if (getParam(ed, "paste_remove_styles") || (getParam(ed, "paste_remove_styles_if_webkit") && tinymce.isWebKit)) { - each(dom.select('*[style]', o.node), function(el) { - el.removeAttribute('style'); - el.removeAttribute('data-mce-style'); - }); - } else { - if (tinymce.isWebKit) { - // We need to compress the styles on WebKit since if you paste it will become - // Removing the mce_style that contains the real value will force the Serializer engine to compress the styles - each(dom.select('*', o.node), function(el) { - el.removeAttribute('data-mce-style'); - }); - } - } - }, - - /** - * Converts the most common bullet and number formats in Office into a real semantic UL/LI list. - */ - _convertLists : function(pl, o) { - var dom = pl.editor.dom, listElm, li, lastMargin = -1, margin, levels = [], lastType, html; - - // Convert middot lists into real semantic lists - each(dom.select('p', o.node), function(p) { - var sib, val = '', type, html, idx, parents; - - // Get text node value at beginning of paragraph - for (sib = p.firstChild; sib && sib.nodeType == 3; sib = sib.nextSibling) - val += sib.nodeValue; - - val = p.innerHTML.replace(/<\/?\w+[^>]*>/gi, '').replace(/ /g, '\u00a0'); - - // Detect unordered lists look for bullets - if (/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*\u00a0*/.test(val)) - type = 'ul'; - - // Detect ordered lists 1., a. or ixv. - if (/^__MCE_ITEM__\s*\w+\.\s*\u00a0+/.test(val)) - type = 'ol'; - - // Check if node value matches the list pattern: o   - if (type) { - margin = parseFloat(p.style.marginLeft || 0); - - if (margin > lastMargin) - levels.push(margin); - - if (!listElm || type != lastType) { - listElm = dom.create(type); - dom.insertAfter(listElm, p); - } else { - // Nested list element - if (margin > lastMargin) { - listElm = li.appendChild(dom.create(type)); - } else if (margin < lastMargin) { - // Find parent level based on margin value - idx = tinymce.inArray(levels, margin); - parents = dom.getParents(listElm.parentNode, type); - listElm = parents[parents.length - 1 - idx] || listElm; - } - } - - // Remove middot or number spans if they exists - each(dom.select('span', p), function(span) { - var html = span.innerHTML.replace(/<\/?\w+[^>]*>/gi, ''); - - // Remove span with the middot or the number - if (type == 'ul' && /^__MCE_ITEM__[\u2022\u00b7\u00a7\u00d8o\u25CF]/.test(html)) - dom.remove(span); - else if (/^__MCE_ITEM__[\s\S]*\w+\.( |\u00a0)*\s*/.test(html)) - dom.remove(span); - }); - - html = p.innerHTML; - - // Remove middot/list items - if (type == 'ul') - html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*( |\u00a0)+\s*/, ''); - else - html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^\s*\w+\.( |\u00a0)+\s*/, ''); - - // Create li and add paragraph data into the new li - li = listElm.appendChild(dom.create('li', 0, html)); - dom.remove(p); - - lastMargin = margin; - lastType = type; - } else - listElm = lastMargin = 0; // End list element - }); - - // Remove any left over makers - html = o.node.innerHTML; - if (html.indexOf('__MCE_ITEM__') != -1) - o.node.innerHTML = html.replace(/__MCE_ITEM__/g, ''); - }, - - /** - * Inserts the specified contents at the caret position. - */ - _insert : function(h, skip_undo) { - var ed = this.editor, r = ed.selection.getRng(); - - // First delete the contents seems to work better on WebKit when the selection spans multiple list items or multiple table cells. - if (!ed.selection.isCollapsed() && r.startContainer != r.endContainer) - ed.getDoc().execCommand('Delete', false, null); - - ed.execCommand('mceInsertContent', false, h, {skip_undo : skip_undo}); - }, - - /** - * Instead of the old plain text method which tried to re-create a paste operation, the - * new approach adds a plain text mode toggle switch that changes the behavior of paste. - * This function is passed the same input that the regular paste plugin produces. - * It performs additional scrubbing and produces (and inserts) the plain text. - * This approach leverages all of the great existing functionality in the paste - * plugin, and requires minimal changes to add the new functionality. - * Speednet - June 2009 - */ - _insertPlainText : function(content) { - var ed = this.editor, - linebr = getParam(ed, "paste_text_linebreaktype"), - rl = getParam(ed, "paste_text_replacements"), - is = tinymce.is; - - function process(items) { - each(items, function(v) { - if (v.constructor == RegExp) - content = content.replace(v, ""); - else - content = content.replace(v[0], v[1]); - }); - }; - - if ((typeof(content) === "string") && (content.length > 0)) { - // If HTML content with line-breaking tags, then remove all cr/lf chars because only tags will break a line - if (/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(content)) { - process([ - /[\n\r]+/g - ]); - } else { - // Otherwise just get rid of carriage returns (only need linefeeds) - process([ - /\r+/g - ]); - } - - process([ - [/<\/(?:p|h[1-6]|ul|ol|dl|table|div|blockquote|fieldset|pre|address|center)>/gi, "\n\n"], // Block tags get a blank line after them - [/]*>|<\/tr>/gi, "\n"], // Single linebreak for
                                            tags and table rows - [/<\/t[dh]>\s*]*>/gi, "\t"], // Table cells get tabs betweem them - /<[a-z!\/?][^>]*>/gi, // Delete all remaining tags - [/ /gi, " "], // Convert non-break spaces to regular spaces (remember, *plain text*) - [/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi, "$1"] // Cool little RegExp deletes whitespace around linebreak chars. - ]); - - var maxLinebreaks = Number(getParam(ed, "paste_max_consecutive_linebreaks")); - if (maxLinebreaks > -1) { - var maxLinebreaksRegex = new RegExp("\n{" + (maxLinebreaks + 1) + ",}", "g"); - var linebreakReplacement = ""; - - while (linebreakReplacement.length < maxLinebreaks) { - linebreakReplacement += "\n"; - } - - process([ - [maxLinebreaksRegex, linebreakReplacement] // Limit max consecutive linebreaks - ]); - } - - content = ed.dom.decode(tinymce.html.Entities.encodeRaw(content)); - - // Perform default or custom replacements - if (is(rl, "array")) { - process(rl); - } else if (is(rl, "string")) { - process(new RegExp(rl, "gi")); - } - - // Treat paragraphs as specified in the config - if (linebr == "none") { - // Convert all line breaks to space - process([ - [/\n+/g, " "] - ]); - } else if (linebr == "br") { - // Convert all line breaks to
                                            - process([ - [/\n/g, "
                                            "] - ]); - } else if (linebr == "p") { - // Convert all line breaks to

                                            ...

                                            - process([ - [/\n+/g, "

                                            "], - [/^(.*<\/p>)(

                                            )$/, '

                                            $1'] - ]); - } else { - // defaults to "combined" - // Convert single line breaks to
                                            and double line breaks to

                                            ...

                                            - process([ - [/\n\n/g, "

                                            "], - [/^(.*<\/p>)(

                                            )$/, '

                                            $1'], - [/\n/g, "
                                            "] - ]); - } - - ed.execCommand('mceInsertContent', false, content); - } - }, - - /** - * This method will open the old style paste dialogs. Some users might want the old behavior but still use the new cleanup engine. - */ - _legacySupport : function() { - var t = this, ed = t.editor; - - // Register command(s) for backwards compatibility - ed.addCommand("mcePasteWord", function() { - ed.windowManager.open({ - file: t.url + "/pasteword.htm", - width: parseInt(getParam(ed, "paste_dialog_width")), - height: parseInt(getParam(ed, "paste_dialog_height")), - inline: 1 - }); - }); - - if (getParam(ed, "paste_text_use_dialog")) { - ed.addCommand("mcePasteText", function() { - ed.windowManager.open({ - file : t.url + "/pastetext.htm", - width: parseInt(getParam(ed, "paste_dialog_width")), - height: parseInt(getParam(ed, "paste_dialog_height")), - inline : 1 - }); - }); - } - - // Register button for backwards compatibility - ed.addButton("pasteword", {title : "paste.paste_word_desc", cmd : "mcePasteWord"}); - } - }); - - // Register plugin - tinymce.PluginManager.add("paste", tinymce.plugins.PastePlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js b/library/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js deleted file mode 100644 index c524f9eb0..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js +++ /dev/null @@ -1,36 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var PasteTextDialog = { - init : function() { - this.resize(); - }, - - insert : function() { - var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines; - - // Convert linebreaks into paragraphs - if (document.getElementById('linebreaks').checked) { - lines = h.split(/\r?\n/); - if (lines.length > 1) { - h = ''; - tinymce.each(lines, function(row) { - h += '

                                            ' + row + '

                                            '; - }); - } - } - - tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h}); - tinyMCEPopup.close(); - }, - - resize : function() { - var vp = tinyMCEPopup.dom.getViewPort(window), el; - - el = document.getElementById('content'); - - el.style.width = (vp.w - 20) + 'px'; - el.style.height = (vp.h - 90) + 'px'; - } -}; - -tinyMCEPopup.onInit.add(PasteTextDialog.init, PasteTextDialog); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js b/library/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js deleted file mode 100644 index a52731c36..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js +++ /dev/null @@ -1,51 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var PasteWordDialog = { - init : function() { - var ed = tinyMCEPopup.editor, el = document.getElementById('iframecontainer'), ifr, doc, css, cssHTML = ''; - - // Create iframe - el.innerHTML = ''; - ifr = document.getElementById('iframe'); - doc = ifr.contentWindow.document; - - // Force absolute CSS urls - css = [ed.baseURI.toAbsolute("themes/" + ed.settings.theme + "/skins/" + ed.settings.skin + "/content.css")]; - css = css.concat(tinymce.explode(ed.settings.content_css) || []); - tinymce.each(css, function(u) { - cssHTML += ''; - }); - - // Write content into iframe - doc.open(); - doc.write('' + cssHTML + ''); - doc.close(); - - doc.designMode = 'on'; - this.resize(); - - window.setTimeout(function() { - ifr.contentWindow.focus(); - }, 10); - }, - - insert : function() { - var h = document.getElementById('iframe').contentWindow.document.body.innerHTML; - - tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h, wordContent : true}); - tinyMCEPopup.close(); - }, - - resize : function() { - var vp = tinyMCEPopup.dom.getViewPort(window), el; - - el = document.getElementById('iframe'); - - if (el) { - el.style.width = (vp.w - 20) + 'px'; - el.style.height = (vp.h - 90) + 'px'; - } - } -}; - -tinyMCEPopup.onInit.add(PasteWordDialog.init, PasteWordDialog); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js deleted file mode 100644 index bc74daf85..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm b/library/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm deleted file mode 100644 index b65594547..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm +++ /dev/null @@ -1,27 +0,0 @@ - - - {#paste.paste_text_desc} - - - - -
                                            -
                                            {#paste.paste_text_desc}
                                            - -
                                            - -
                                            - -
                                            - -
                                            {#paste_dlg.text_title}
                                            - - - -
                                            - - -
                                            -
                                            - - \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm b/library/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm deleted file mode 100644 index 0f6bb4121..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm +++ /dev/null @@ -1,21 +0,0 @@ - - - {#paste.paste_word_desc} - - - - -
                                            -
                                            {#paste.paste_word_desc}
                                            - -
                                            {#paste_dlg.word_title}
                                            - -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js deleted file mode 100644 index 507909c5f..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.Preview",{init:function(a,b){var d=this,c=tinymce.explode(a.settings.content_css);d.editor=a;tinymce.each(c,function(f,e){c[e]=a.documentBaseURI.toAbsolute(f)});a.addCommand("mcePreview",function(){a.windowManager.open({file:a.getParam("plugin_preview_pageurl",b+"/preview.html"),width:parseInt(a.getParam("plugin_preview_width","550")),height:parseInt(a.getParam("plugin_preview_height","600")),resizable:"yes",scrollbars:"yes",popup_css:c?c.join(","):a.baseURI.toAbsolute("themes/"+a.settings.theme+"/skins/"+a.settings.skin+"/content.css"),inline:a.getParam("plugin_preview_inline",1)},{base:a.documentBaseURI.getURI()})});a.addButton("preview",{title:"preview.preview_desc",cmd:"mcePreview"})},getInfo:function(){return{longname:"Preview",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/preview",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("preview",tinymce.plugins.Preview)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js deleted file mode 100644 index 80f00f0d9..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js +++ /dev/null @@ -1,53 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.Preview', { - init : function(ed, url) { - var t = this, css = tinymce.explode(ed.settings.content_css); - - t.editor = ed; - - // Force absolute CSS urls - tinymce.each(css, function(u, k) { - css[k] = ed.documentBaseURI.toAbsolute(u); - }); - - ed.addCommand('mcePreview', function() { - ed.windowManager.open({ - file : ed.getParam("plugin_preview_pageurl", url + "/preview.html"), - width : parseInt(ed.getParam("plugin_preview_width", "550")), - height : parseInt(ed.getParam("plugin_preview_height", "600")), - resizable : "yes", - scrollbars : "yes", - popup_css : css ? css.join(',') : ed.baseURI.toAbsolute("themes/" + ed.settings.theme + "/skins/" + ed.settings.skin + "/content.css"), - inline : ed.getParam("plugin_preview_inline", 1) - }, { - base : ed.documentBaseURI.getURI() - }); - }); - - ed.addButton('preview', {title : 'preview.preview_desc', cmd : 'mcePreview'}); - }, - - getInfo : function() { - return { - longname : 'Preview', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/preview', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('preview', tinymce.plugins.Preview); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/preview/example.html b/library/tinymce/jscripts/tiny_mce/plugins/preview/example.html deleted file mode 100644 index b2c3d90ce..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/preview/example.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - -Example of a custom preview page - - - -Editor contents:
                                            -
                                            - -
                                            - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js b/library/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js deleted file mode 100644 index f8dc81052..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js +++ /dev/null @@ -1,73 +0,0 @@ -/** - * This script contains embed functions for common plugins. This scripts are complety free to use for any purpose. - */ - -function writeFlash(p) { - writeEmbed( - 'D27CDB6E-AE6D-11cf-96B8-444553540000', - 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', - 'application/x-shockwave-flash', - p - ); -} - -function writeShockWave(p) { - writeEmbed( - '166B1BCA-3F9C-11CF-8075-444553540000', - 'http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0', - 'application/x-director', - p - ); -} - -function writeQuickTime(p) { - writeEmbed( - '02BF25D5-8C17-4B23-BC80-D3488ABDDC6B', - 'http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0', - 'video/quicktime', - p - ); -} - -function writeRealMedia(p) { - writeEmbed( - 'CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA', - 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0', - 'audio/x-pn-realaudio-plugin', - p - ); -} - -function writeWindowsMedia(p) { - p.url = p.src; - writeEmbed( - '6BF52A52-394A-11D3-B153-00C04F79FAA6', - 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701', - 'application/x-mplayer2', - p - ); -} - -function writeEmbed(cls, cb, mt, p) { - var h = '', n; - - h += ''; - - h += ' - - - - - -{#preview.preview_desc} - - - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js deleted file mode 100644 index b5b3a55ed..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js deleted file mode 100644 index 3933fe656..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.Print', { - init : function(ed, url) { - ed.addCommand('mcePrint', function() { - ed.getWin().print(); - }); - - ed.addButton('print', {title : 'print.print_desc', cmd : 'mcePrint'}); - }, - - getInfo : function() { - return { - longname : 'Print', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('print', tinymce.plugins.Print); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js deleted file mode 100644 index 8e9399667..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.Save",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceSave",c._save,c);a.addCommand("mceCancel",c._cancel,c);a.addButton("save",{title:"save.save_desc",cmd:"mceSave"});a.addButton("cancel",{title:"save.cancel_desc",cmd:"mceCancel"});a.onNodeChange.add(c._nodeChange,c);a.addShortcut("ctrl+s",a.getLang("save.save_desc"),"mceSave")},getInfo:function(){return{longname:"Save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/save",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,c){var b=this.editor;if(b.getParam("save_enablewhendirty")){a.setDisabled("save",!b.isDirty());a.setDisabled("cancel",!b.isDirty())}},_save:function(){var c=this.editor,a,e,d,b;a=tinymce.DOM.get(c.id).form||tinymce.DOM.getParent(c.id,"form");if(c.getParam("save_enablewhendirty")&&!c.isDirty()){return}tinyMCE.triggerSave();if(e=c.getParam("save_onsavecallback")){if(c.execCallback("save_onsavecallback",c)){c.startContent=tinymce.trim(c.getContent({format:"raw"}));c.nodeChanged()}return}if(a){c.isNotDirty=true;if(a.onsubmit==null||a.onsubmit()!=false){a.submit()}c.nodeChanged()}else{c.windowManager.alert("Error: No form element found.")}},_cancel:function(){var a=this.editor,c,b=tinymce.trim(a.startContent);if(c=a.getParam("save_oncancelcallback")){a.execCallback("save_oncancelcallback",a);return}a.setContent(b);a.undoManager.clear();a.nodeChanged()}});tinymce.PluginManager.add("save",tinymce.plugins.Save)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js deleted file mode 100644 index f5a3de8f5..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js +++ /dev/null @@ -1,101 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.Save', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - // Register commands - ed.addCommand('mceSave', t._save, t); - ed.addCommand('mceCancel', t._cancel, t); - - // Register buttons - ed.addButton('save', {title : 'save.save_desc', cmd : 'mceSave'}); - ed.addButton('cancel', {title : 'save.cancel_desc', cmd : 'mceCancel'}); - - ed.onNodeChange.add(t._nodeChange, t); - ed.addShortcut('ctrl+s', ed.getLang('save.save_desc'), 'mceSave'); - }, - - getInfo : function() { - return { - longname : 'Save', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/save', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - _nodeChange : function(ed, cm, n) { - var ed = this.editor; - - if (ed.getParam('save_enablewhendirty')) { - cm.setDisabled('save', !ed.isDirty()); - cm.setDisabled('cancel', !ed.isDirty()); - } - }, - - // Private methods - - _save : function() { - var ed = this.editor, formObj, os, i, elementId; - - formObj = tinymce.DOM.get(ed.id).form || tinymce.DOM.getParent(ed.id, 'form'); - - if (ed.getParam("save_enablewhendirty") && !ed.isDirty()) - return; - - tinyMCE.triggerSave(); - - // Use callback instead - if (os = ed.getParam("save_onsavecallback")) { - if (ed.execCallback('save_onsavecallback', ed)) { - ed.startContent = tinymce.trim(ed.getContent({format : 'raw'})); - ed.nodeChanged(); - } - - return; - } - - if (formObj) { - ed.isNotDirty = true; - - if (formObj.onsubmit == null || formObj.onsubmit() != false) - formObj.submit(); - - ed.nodeChanged(); - } else - ed.windowManager.alert("Error: No form element found."); - }, - - _cancel : function() { - var ed = this.editor, os, h = tinymce.trim(ed.startContent); - - // Use callback instead - if (os = ed.getParam("save_oncancelcallback")) { - ed.execCallback('save_oncancelcallback', ed); - return; - } - - ed.setContent(h); - ed.undoManager.clear(); - ed.nodeChanged(); - } - }); - - // Register plugin - tinymce.PluginManager.add('save', tinymce.plugins.Save); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css b/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css deleted file mode 100644 index ecdf58c7b..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css +++ /dev/null @@ -1,6 +0,0 @@ -.panel_wrapper {height:85px;} -.panel_wrapper div.current {height:85px;} - -/* IE */ -* html .panel_wrapper {height:100px;} -* html .panel_wrapper div.current {height:100px;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js deleted file mode 100644 index 165bc12df..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.SearchReplacePlugin",{init:function(a,c){function b(d){window.focus();a.windowManager.open({file:c+"/searchreplace.htm",width:420+parseInt(a.getLang("searchreplace.delta_width",0)),height:170+parseInt(a.getLang("searchreplace.delta_height",0)),inline:1,auto_focus:0},{mode:d,search_string:a.selection.getContent({format:"text"}),plugin_url:c})}a.addCommand("mceSearch",function(){b("search")});a.addCommand("mceReplace",function(){b("replace")});a.addButton("search",{title:"searchreplace.search_desc",cmd:"mceSearch"});a.addButton("replace",{title:"searchreplace.replace_desc",cmd:"mceReplace"});a.addShortcut("ctrl+f","searchreplace.search_desc","mceSearch")},getInfo:function(){return{longname:"Search/Replace",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("searchreplace",tinymce.plugins.SearchReplacePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js deleted file mode 100644 index 4c87e8fa7..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js +++ /dev/null @@ -1,61 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.SearchReplacePlugin', { - init : function(ed, url) { - function open(m) { - // Keep IE from writing out the f/r character to the editor - // instance while initializing a new dialog. See: #3131190 - window.focus(); - - ed.windowManager.open({ - file : url + '/searchreplace.htm', - width : 420 + parseInt(ed.getLang('searchreplace.delta_width', 0)), - height : 170 + parseInt(ed.getLang('searchreplace.delta_height', 0)), - inline : 1, - auto_focus : 0 - }, { - mode : m, - search_string : ed.selection.getContent({format : 'text'}), - plugin_url : url - }); - }; - - // Register commands - ed.addCommand('mceSearch', function() { - open('search'); - }); - - ed.addCommand('mceReplace', function() { - open('replace'); - }); - - // Register buttons - ed.addButton('search', {title : 'searchreplace.search_desc', cmd : 'mceSearch'}); - ed.addButton('replace', {title : 'searchreplace.replace_desc', cmd : 'mceReplace'}); - - ed.addShortcut('ctrl+f', 'searchreplace.search_desc', 'mceSearch'); - }, - - getInfo : function() { - return { - longname : 'Search/Replace', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('searchreplace', tinymce.plugins.SearchReplacePlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js b/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js deleted file mode 100644 index 80284b9f3..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js +++ /dev/null @@ -1,142 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var SearchReplaceDialog = { - init : function(ed) { - var t = this, f = document.forms[0], m = tinyMCEPopup.getWindowArg("mode"); - - t.switchMode(m); - - f[m + '_panel_searchstring'].value = tinyMCEPopup.getWindowArg("search_string"); - - // Focus input field - f[m + '_panel_searchstring'].focus(); - - mcTabs.onChange.add(function(tab_id, panel_id) { - t.switchMode(tab_id.substring(0, tab_id.indexOf('_'))); - }); - }, - - switchMode : function(m) { - var f, lm = this.lastMode; - - if (lm != m) { - f = document.forms[0]; - - if (lm) { - f[m + '_panel_searchstring'].value = f[lm + '_panel_searchstring'].value; - f[m + '_panel_backwardsu'].checked = f[lm + '_panel_backwardsu'].checked; - f[m + '_panel_backwardsd'].checked = f[lm + '_panel_backwardsd'].checked; - f[m + '_panel_casesensitivebox'].checked = f[lm + '_panel_casesensitivebox'].checked; - } - - mcTabs.displayTab(m + '_tab', m + '_panel'); - document.getElementById("replaceBtn").style.display = (m == "replace") ? "inline" : "none"; - document.getElementById("replaceAllBtn").style.display = (m == "replace") ? "inline" : "none"; - this.lastMode = m; - } - }, - - searchNext : function(a) { - var ed = tinyMCEPopup.editor, se = ed.selection, r = se.getRng(), f, m = this.lastMode, s, b, fl = 0, w = ed.getWin(), wm = ed.windowManager, fo = 0; - - // Get input - f = document.forms[0]; - s = f[m + '_panel_searchstring'].value; - b = f[m + '_panel_backwardsu'].checked; - ca = f[m + '_panel_casesensitivebox'].checked; - rs = f['replace_panel_replacestring'].value; - - if (tinymce.isIE) { - r = ed.getDoc().selection.createRange(); - } - - if (s == '') - return; - - function fix() { - // Correct Firefox graphics glitches - // TODO: Verify if this is actually needed any more, maybe it was for very old FF versions? - r = se.getRng().cloneRange(); - ed.getDoc().execCommand('SelectAll', false, null); - se.setRng(r); - }; - - function replace() { - ed.selection.setContent(rs); // Needs to be duplicated due to selection bug in IE - }; - - // IE flags - if (ca) - fl = fl | 4; - - switch (a) { - case 'all': - // Move caret to beginning of text - ed.execCommand('SelectAll'); - ed.selection.collapse(true); - - if (tinymce.isIE) { - ed.focus(); - r = ed.getDoc().selection.createRange(); - - while (r.findText(s, b ? -1 : 1, fl)) { - r.scrollIntoView(); - r.select(); - replace(); - fo = 1; - - if (b) { - r.moveEnd("character", -(rs.length)); // Otherwise will loop forever - } - } - - tinyMCEPopup.storeSelection(); - } else { - while (w.find(s, ca, b, false, false, false, false)) { - replace(); - fo = 1; - } - } - - if (fo) - tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.allreplaced')); - else - tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.notfound')); - - return; - - case 'current': - if (!ed.selection.isCollapsed()) - replace(); - - break; - } - - se.collapse(b); - r = se.getRng(); - - // Whats the point - if (!s) - return; - - if (tinymce.isIE) { - ed.focus(); - r = ed.getDoc().selection.createRange(); - - if (r.findText(s, b ? -1 : 1, fl)) { - r.scrollIntoView(); - r.select(); - } else - tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.notfound')); - - tinyMCEPopup.storeSelection(); - } else { - if (!w.find(s, ca, b, false, false, false, false)) - tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.notfound')); - else - fix(); - } - } -}; - -tinyMCEPopup.onInit.add(SearchReplaceDialog.init, SearchReplaceDialog); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js deleted file mode 100644 index 8a6590097..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm b/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm deleted file mode 100644 index 2443a9184..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm +++ /dev/null @@ -1,100 +0,0 @@ - - - - {#searchreplace_dlg.replace_title} - - - - - - - - -
                                            - - -
                                            -
                                            - - - - - - - - - - - -
                                            - - - - - - - - - -
                                            - - - - - -
                                            -
                                            -
                                            - -
                                            - - - - - - - - - - - - - - - -
                                            - - - - - - - - - -
                                            - - - - - -
                                            -
                                            -
                                            - -
                                            - -
                                            - - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css b/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css deleted file mode 100644 index 24efa0217..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css +++ /dev/null @@ -1 +0,0 @@ -.mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js deleted file mode 100644 index 48549c923..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var a=tinymce.util.JSONRequest,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.SpellcheckerPlugin",{getInfo:function(){return{longname:"Spellchecker",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker",version:tinymce.majorVersion+"."+tinymce.minorVersion}},init:function(e,f){var g=this,d;g.url=f;g.editor=e;g.rpcUrl=e.getParam("spellchecker_rpc_url","{backend}");if(g.rpcUrl=="{backend}"){if(tinymce.isIE){return}g.hasSupport=true;e.onContextMenu.addToTop(function(h,i){if(g.active){return false}})}e.addCommand("mceSpellCheck",function(){if(g.rpcUrl=="{backend}"){g.editor.getBody().spellcheck=g.active=!g.active;return}if(!g.active){e.setProgressState(1);g._sendRPC("checkWords",[g.selectedLang,g._getWords()],function(h){if(h.length>0){g.active=1;g._markWords(h);e.setProgressState(0);e.nodeChanged()}else{e.setProgressState(0);if(e.getParam("spellchecker_report_no_misspellings",true)){e.windowManager.alert("spellchecker.no_mpell")}}})}else{g._done()}});if(e.settings.content_css!==false){e.contentCSS.push(f+"/css/content.css")}e.onClick.add(g._showMenu,g);e.onContextMenu.add(g._showMenu,g);e.onBeforeGetContent.add(function(){if(g.active){g._removeWords()}});e.onNodeChange.add(function(i,h){h.setActive("spellchecker",g.active)});e.onSetContent.add(function(){g._done()});e.onBeforeGetContent.add(function(){g._done()});e.onBeforeExecCommand.add(function(h,i){if(i=="mceFullScreen"){g._done()}});g.languages={};c(e.getParam("spellchecker_languages","+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv","hash"),function(i,h){if(h.indexOf("+")===0){h=h.substring(1);g.selectedLang=i}g.languages[h]=i})},createControl:function(h,d){var f=this,g,e=f.editor;if(h=="spellchecker"){if(f.rpcUrl=="{backend}"){if(f.hasSupport){g=d.createButton(h,{title:"spellchecker.desc",cmd:"mceSpellCheck",scope:f})}return g}g=d.createSplitButton(h,{title:"spellchecker.desc",cmd:"mceSpellCheck",scope:f});g.onRenderMenu.add(function(j,i){i.add({title:"spellchecker.langs","class":"mceMenuItemTitle"}).setDisabled(1);c(f.languages,function(n,m){var p={icon:1},l;p.onclick=function(){if(n==f.selectedLang){return}l.setSelected(1);f.selectedItem.setSelected(0);f.selectedItem=l;f.selectedLang=n};p.title=m;l=i.add(p);l.setSelected(n==f.selectedLang);if(n==f.selectedLang){f.selectedItem=l}})});return g}},_walk:function(i,g){var h=this.editor.getDoc(),e;if(h.createTreeWalker){e=h.createTreeWalker(i,NodeFilter.SHOW_TEXT,null,false);while((i=e.nextNode())!=null){g.call(this,i)}}else{tinymce.walk(i,g,"childNodes")}},_getSeparators:function(){var e="",d,f=this.editor.getParam("spellchecker_word_separator_chars",'\\s!"#$%&()*+,-./:;<=>?@[]^_{|}\u201d\u201c');for(d=0;d$2");while((s=p.indexOf(""))!=-1){o=p.substring(0,s);if(o.length){r=j.createTextNode(g.decode(o));q.appendChild(r)}p=p.substring(s+10);s=p.indexOf("");o=p.substring(0,s);p=p.substring(s+11);q.appendChild(g.create("span",{"class":"mceItemHiddenSpellWord"},o))}if(p.length){r=j.createTextNode(g.decode(p));q.appendChild(r)}}else{q.innerHTML=p.replace(f,'$1$2')}g.replace(q,t)}});i.setRng(d)},_showMenu:function(h,j){var i=this,h=i.editor,d=i._menu,l,k=h.dom,g=k.getViewPort(h.getWin()),f=j.target;j=0;if(!d){d=h.controlManager.createDropMenu("spellcheckermenu",{"class":"mceNoIcons"});i._menu=d}if(k.hasClass(f,"mceItemHiddenSpellWord")){d.removeAll();d.add({title:"spellchecker.wait","class":"mceMenuItemTitle"}).setDisabled(1);i._sendRPC("getSuggestions",[i.selectedLang,k.decode(f.innerHTML)],function(m){var e;d.removeAll();if(m.length>0){d.add({title:"spellchecker.sug","class":"mceMenuItemTitle"}).setDisabled(1);c(m,function(n){d.add({title:n,onclick:function(){k.replace(h.getDoc().createTextNode(n),f);i._checkDone()}})});d.addSeparator()}else{d.add({title:"spellchecker.no_sug","class":"mceMenuItemTitle"}).setDisabled(1)}if(h.getParam("show_ignore_words",true)){e=i.editor.getParam("spellchecker_enable_ignore_rpc","");d.add({title:"spellchecker.ignore_word",onclick:function(){var n=f.innerHTML;k.remove(f,1);i._checkDone();if(e){h.setProgressState(1);i._sendRPC("ignoreWord",[i.selectedLang,n],function(o){h.setProgressState(0)})}}});d.add({title:"spellchecker.ignore_words",onclick:function(){var n=f.innerHTML;i._removeWords(k.decode(n));i._checkDone();if(e){h.setProgressState(1);i._sendRPC("ignoreWords",[i.selectedLang,n],function(o){h.setProgressState(0)})}}})}if(i.editor.getParam("spellchecker_enable_learn_rpc")){d.add({title:"spellchecker.learn_word",onclick:function(){var n=f.innerHTML;k.remove(f,1);i._checkDone();h.setProgressState(1);i._sendRPC("learnWord",[i.selectedLang,n],function(o){h.setProgressState(0)})}})}d.update()});l=b.getPos(h.getContentAreaContainer());d.settings.offset_x=l.x;d.settings.offset_y=l.y;h.selection.select(f);l=k.getPos(f);d.showMenu(l.x,l.y+f.offsetHeight-g.y);return tinymce.dom.Event.cancel(j)}else{d.hideMenu()}},_checkDone:function(){var e=this,d=e.editor,g=d.dom,f;c(g.select("span"),function(h){if(h&&g.hasClass(h,"mceItemHiddenSpellWord")){f=true;return false}});if(!f){e._done()}},_done:function(){var d=this,e=d.active;if(d.active){d.active=0;d._removeWords();if(d._menu){d._menu.hideMenu()}if(e){d.editor.nodeChanged()}}},_sendRPC:function(e,g,d){var f=this;a.sendRPC({url:f.rpcUrl,method:e,params:g,success:d,error:function(i,h){f.editor.setProgressState(0);f.editor.windowManager.alert(i.errstr||("Error response: "+h.responseText))}})}});tinymce.PluginManager.add("spellchecker",tinymce.plugins.SpellcheckerPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js deleted file mode 100644 index 86fdfceb4..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js +++ /dev/null @@ -1,436 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var JSONRequest = tinymce.util.JSONRequest, each = tinymce.each, DOM = tinymce.DOM; - - tinymce.create('tinymce.plugins.SpellcheckerPlugin', { - getInfo : function() { - return { - longname : 'Spellchecker', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - init : function(ed, url) { - var t = this, cm; - - t.url = url; - t.editor = ed; - t.rpcUrl = ed.getParam("spellchecker_rpc_url", "{backend}"); - - if (t.rpcUrl == '{backend}') { - // Sniff if the browser supports native spellchecking (Don't know of a better way) - if (tinymce.isIE) - return; - - t.hasSupport = true; - - // Disable the context menu when spellchecking is active - ed.onContextMenu.addToTop(function(ed, e) { - if (t.active) - return false; - }); - } - - // Register commands - ed.addCommand('mceSpellCheck', function() { - if (t.rpcUrl == '{backend}') { - // Enable/disable native spellchecker - t.editor.getBody().spellcheck = t.active = !t.active; - return; - } - - if (!t.active) { - ed.setProgressState(1); - t._sendRPC('checkWords', [t.selectedLang, t._getWords()], function(r) { - if (r.length > 0) { - t.active = 1; - t._markWords(r); - ed.setProgressState(0); - ed.nodeChanged(); - } else { - ed.setProgressState(0); - - if (ed.getParam('spellchecker_report_no_misspellings', true)) - ed.windowManager.alert('spellchecker.no_mpell'); - } - }); - } else - t._done(); - }); - - if (ed.settings.content_css !== false) - ed.contentCSS.push(url + '/css/content.css'); - - ed.onClick.add(t._showMenu, t); - ed.onContextMenu.add(t._showMenu, t); - ed.onBeforeGetContent.add(function() { - if (t.active) - t._removeWords(); - }); - - ed.onNodeChange.add(function(ed, cm) { - cm.setActive('spellchecker', t.active); - }); - - ed.onSetContent.add(function() { - t._done(); - }); - - ed.onBeforeGetContent.add(function() { - t._done(); - }); - - ed.onBeforeExecCommand.add(function(ed, cmd) { - if (cmd == 'mceFullScreen') - t._done(); - }); - - // Find selected language - t.languages = {}; - each(ed.getParam('spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv', 'hash'), function(v, k) { - if (k.indexOf('+') === 0) { - k = k.substring(1); - t.selectedLang = v; - } - - t.languages[k] = v; - }); - }, - - createControl : function(n, cm) { - var t = this, c, ed = t.editor; - - if (n == 'spellchecker') { - // Use basic button if we use the native spellchecker - if (t.rpcUrl == '{backend}') { - // Create simple toggle button if we have native support - if (t.hasSupport) - c = cm.createButton(n, {title : 'spellchecker.desc', cmd : 'mceSpellCheck', scope : t}); - - return c; - } - - c = cm.createSplitButton(n, {title : 'spellchecker.desc', cmd : 'mceSpellCheck', scope : t}); - - c.onRenderMenu.add(function(c, m) { - m.add({title : 'spellchecker.langs', 'class' : 'mceMenuItemTitle'}).setDisabled(1); - each(t.languages, function(v, k) { - var o = {icon : 1}, mi; - - o.onclick = function() { - if (v == t.selectedLang) { - return; - } - mi.setSelected(1); - t.selectedItem.setSelected(0); - t.selectedItem = mi; - t.selectedLang = v; - }; - - o.title = k; - mi = m.add(o); - mi.setSelected(v == t.selectedLang); - - if (v == t.selectedLang) - t.selectedItem = mi; - }) - }); - - return c; - } - }, - - // Internal functions - - _walk : function(n, f) { - var d = this.editor.getDoc(), w; - - if (d.createTreeWalker) { - w = d.createTreeWalker(n, NodeFilter.SHOW_TEXT, null, false); - - while ((n = w.nextNode()) != null) - f.call(this, n); - } else - tinymce.walk(n, f, 'childNodes'); - }, - - _getSeparators : function() { - var re = '', i, str = this.editor.getParam('spellchecker_word_separator_chars', '\\s!"#$%&()*+,-./:;<=>?@[\]^_{|}\u201d\u201c'); - - // Build word separator regexp - for (i=0; i elements content is broken after spellchecking. - // Bug #1408: Preceding whitespace characters are removed - // @TODO: I'm not sure that both are still issues on IE9. - if (tinymce.isIE) { - // Enclose mispelled words with temporal tag - v = v.replace(rx, '$1$2'); - // Loop over the content finding mispelled words - while ((pos = v.indexOf('')) != -1) { - // Add text node for the content before the word - txt = v.substring(0, pos); - if (txt.length) { - node = doc.createTextNode(dom.decode(txt)); - elem.appendChild(node); - } - v = v.substring(pos+10); - pos = v.indexOf(''); - txt = v.substring(0, pos); - v = v.substring(pos+11); - // Add span element for the word - elem.appendChild(dom.create('span', {'class' : 'mceItemHiddenSpellWord'}, txt)); - } - // Add text node for the rest of the content - if (v.length) { - node = doc.createTextNode(dom.decode(v)); - elem.appendChild(node); - } - } else { - // Other browsers preserve whitespace characters on innerHTML usage - elem.innerHTML = v.replace(rx, '$1$2'); - } - - // Finally, replace the node with the container - dom.replace(elem, n); - } - }); - - se.setRng(r); - }, - - _showMenu : function(ed, e) { - var t = this, ed = t.editor, m = t._menu, p1, dom = ed.dom, vp = dom.getViewPort(ed.getWin()), wordSpan = e.target; - - e = 0; // Fixes IE memory leak - - if (!m) { - m = ed.controlManager.createDropMenu('spellcheckermenu', {'class' : 'mceNoIcons'}); - t._menu = m; - } - - if (dom.hasClass(wordSpan, 'mceItemHiddenSpellWord')) { - m.removeAll(); - m.add({title : 'spellchecker.wait', 'class' : 'mceMenuItemTitle'}).setDisabled(1); - - t._sendRPC('getSuggestions', [t.selectedLang, dom.decode(wordSpan.innerHTML)], function(r) { - var ignoreRpc; - - m.removeAll(); - - if (r.length > 0) { - m.add({title : 'spellchecker.sug', 'class' : 'mceMenuItemTitle'}).setDisabled(1); - each(r, function(v) { - m.add({title : v, onclick : function() { - dom.replace(ed.getDoc().createTextNode(v), wordSpan); - t._checkDone(); - }}); - }); - - m.addSeparator(); - } else - m.add({title : 'spellchecker.no_sug', 'class' : 'mceMenuItemTitle'}).setDisabled(1); - - if (ed.getParam('show_ignore_words', true)) { - ignoreRpc = t.editor.getParam("spellchecker_enable_ignore_rpc", ''); - m.add({ - title : 'spellchecker.ignore_word', - onclick : function() { - var word = wordSpan.innerHTML; - - dom.remove(wordSpan, 1); - t._checkDone(); - - // tell the server if we need to - if (ignoreRpc) { - ed.setProgressState(1); - t._sendRPC('ignoreWord', [t.selectedLang, word], function(r) { - ed.setProgressState(0); - }); - } - } - }); - - m.add({ - title : 'spellchecker.ignore_words', - onclick : function() { - var word = wordSpan.innerHTML; - - t._removeWords(dom.decode(word)); - t._checkDone(); - - // tell the server if we need to - if (ignoreRpc) { - ed.setProgressState(1); - t._sendRPC('ignoreWords', [t.selectedLang, word], function(r) { - ed.setProgressState(0); - }); - } - } - }); - } - - if (t.editor.getParam("spellchecker_enable_learn_rpc")) { - m.add({ - title : 'spellchecker.learn_word', - onclick : function() { - var word = wordSpan.innerHTML; - - dom.remove(wordSpan, 1); - t._checkDone(); - - ed.setProgressState(1); - t._sendRPC('learnWord', [t.selectedLang, word], function(r) { - ed.setProgressState(0); - }); - } - }); - } - - m.update(); - }); - - p1 = DOM.getPos(ed.getContentAreaContainer()); - m.settings.offset_x = p1.x; - m.settings.offset_y = p1.y; - - ed.selection.select(wordSpan); - p1 = dom.getPos(wordSpan); - m.showMenu(p1.x, p1.y + wordSpan.offsetHeight - vp.y); - - return tinymce.dom.Event.cancel(e); - } else - m.hideMenu(); - }, - - _checkDone : function() { - var t = this, ed = t.editor, dom = ed.dom, o; - - each(dom.select('span'), function(n) { - if (n && dom.hasClass(n, 'mceItemHiddenSpellWord')) { - o = true; - return false; - } - }); - - if (!o) - t._done(); - }, - - _done : function() { - var t = this, la = t.active; - - if (t.active) { - t.active = 0; - t._removeWords(); - - if (t._menu) - t._menu.hideMenu(); - - if (la) - t.editor.nodeChanged(); - } - }, - - _sendRPC : function(m, p, cb) { - var t = this; - - JSONRequest.sendRPC({ - url : t.rpcUrl, - method : m, - params : p, - success : cb, - error : function(e, x) { - t.editor.setProgressState(0); - t.editor.windowManager.alert(e.errstr || ('Error response: ' + x.responseText)); - } - }); - } - }); - - // Register plugin - tinymce.PluginManager.add('spellchecker', tinymce.plugins.SpellcheckerPlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif b/library/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif deleted file mode 100644 index 7d0a4dbca03cc13177a359a5f175dda819fdf464..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 46 ycmZ?wbhEHbWMN=tXkcXcqowu#|9{1wEQ|~cj0`#qKmd|qU}ANVOOs?}um%7FLkRf* diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/css/props.css b/library/tinymce/jscripts/tiny_mce/plugins/style/css/props.css deleted file mode 100644 index 3b8f0ee77..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/css/props.css +++ /dev/null @@ -1,14 +0,0 @@ -#text_font {width:250px;} -#text_size {width:70px;} -.mceAddSelectValue {background:#DDD;} -select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padding_right, #box_padding_bottom, #box_padding_left {width:70px;} -#box_margin_top, #box_margin_right, #box_margin_bottom, #box_margin_left, #positioning_width, #positioning_height, #positioning_zindex {width:70px;} -#positioning_placement_top, #positioning_placement_right, #positioning_placement_bottom, #positioning_placement_left {width:70px;} -#positioning_clip_top, #positioning_clip_right, #positioning_clip_bottom, #positioning_clip_left {width:70px;} -.panel_toggle_insert_span {padding-top:10px;} -.panel_wrapper div.current {padding-top:10px;height:230px;} -.delim {border-left:1px solid gray;} -.tdelim {border-bottom:1px solid gray;} -#block_display {width:145px;} -#list_type {width:115px;} -.disabled {background:#EEE;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js deleted file mode 100644 index dda9f928b..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.StylePlugin",{init:function(a,b){a.addCommand("mceStyleProps",function(){var c=false;var f=a.selection.getSelectedBlocks();var d=[];if(f.length===1){d.push(a.selection.getNode().style.cssText)}else{tinymce.each(f,function(g){d.push(a.dom.getAttrib(g,"style"))});c=true}a.windowManager.open({file:b+"/props.htm",width:480+parseInt(a.getLang("style.delta_width",0)),height:340+parseInt(a.getLang("style.delta_height",0)),inline:1},{applyStyleToBlocks:c,plugin_url:b,styles:d})});a.addCommand("mceSetElementStyle",function(d,c){if(e=a.selection.getNode()){a.dom.setAttrib(e,"style",c);a.execCommand("mceRepaint")}});a.onNodeChange.add(function(d,c,f){c.setDisabled("styleprops",f.nodeName==="BODY")});a.addButton("styleprops",{title:"style.desc",cmd:"mceStyleProps"})},getInfo:function(){return{longname:"Style",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("style",tinymce.plugins.StylePlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js deleted file mode 100644 index eaa7c7713..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js +++ /dev/null @@ -1,71 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.StylePlugin', { - init : function(ed, url) { - // Register commands - ed.addCommand('mceStyleProps', function() { - - var applyStyleToBlocks = false; - var blocks = ed.selection.getSelectedBlocks(); - var styles = []; - - if (blocks.length === 1) { - styles.push(ed.selection.getNode().style.cssText); - } - else { - tinymce.each(blocks, function(block) { - styles.push(ed.dom.getAttrib(block, 'style')); - }); - applyStyleToBlocks = true; - } - - ed.windowManager.open({ - file : url + '/props.htm', - width : 480 + parseInt(ed.getLang('style.delta_width', 0)), - height : 340 + parseInt(ed.getLang('style.delta_height', 0)), - inline : 1 - }, { - applyStyleToBlocks : applyStyleToBlocks, - plugin_url : url, - styles : styles - }); - }); - - ed.addCommand('mceSetElementStyle', function(ui, v) { - if (e = ed.selection.getNode()) { - ed.dom.setAttrib(e, 'style', v); - ed.execCommand('mceRepaint'); - } - }); - - ed.onNodeChange.add(function(ed, cm, n) { - cm.setDisabled('styleprops', n.nodeName === 'BODY'); - }); - - // Register buttons - ed.addButton('styleprops', {title : 'style.desc', cmd : 'mceStyleProps'}); - }, - - getInfo : function() { - return { - longname : 'Style', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('style', tinymce.plugins.StylePlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/js/props.js b/library/tinymce/jscripts/tiny_mce/plugins/style/js/props.js deleted file mode 100644 index 0a8a8ec3e..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/js/props.js +++ /dev/null @@ -1,709 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var defaultFonts = "" + - "Arial, Helvetica, sans-serif=Arial, Helvetica, sans-serif;" + - "Times New Roman, Times, serif=Times New Roman, Times, serif;" + - "Courier New, Courier, mono=Courier New, Courier, mono;" + - "Times New Roman, Times, serif=Times New Roman, Times, serif;" + - "Georgia, Times New Roman, Times, serif=Georgia, Times New Roman, Times, serif;" + - "Verdana, Arial, Helvetica, sans-serif=Verdana, Arial, Helvetica, sans-serif;" + - "Geneva, Arial, Helvetica, sans-serif=Geneva, Arial, Helvetica, sans-serif"; - -var defaultSizes = "9;10;12;14;16;18;24;xx-small;x-small;small;medium;large;x-large;xx-large;smaller;larger"; -var defaultMeasurement = "+pixels=px;points=pt;inches=in;centimetres=cm;millimetres=mm;picas=pc;ems=em;exs=ex;%"; -var defaultSpacingMeasurement = "pixels=px;points=pt;inches=in;centimetres=cm;millimetres=mm;picas=pc;+ems=em;exs=ex;%"; -var defaultIndentMeasurement = "pixels=px;+points=pt;inches=in;centimetres=cm;millimetres=mm;picas=pc;ems=em;exs=ex;%"; -var defaultWeight = "normal;bold;bolder;lighter;100;200;300;400;500;600;700;800;900"; -var defaultTextStyle = "normal;italic;oblique"; -var defaultVariant = "normal;small-caps"; -var defaultLineHeight = "normal"; -var defaultAttachment = "fixed;scroll"; -var defaultRepeat = "no-repeat;repeat;repeat-x;repeat-y"; -var defaultPosH = "left;center;right"; -var defaultPosV = "top;center;bottom"; -var defaultVAlign = "baseline;sub;super;top;text-top;middle;bottom;text-bottom"; -var defaultDisplay = "inline;block;list-item;run-in;compact;marker;table;inline-table;table-row-group;table-header-group;table-footer-group;table-row;table-column-group;table-column;table-cell;table-caption;none"; -var defaultBorderStyle = "none;solid;dashed;dotted;double;groove;ridge;inset;outset"; -var defaultBorderWidth = "thin;medium;thick"; -var defaultListType = "disc;circle;square;decimal;lower-roman;upper-roman;lower-alpha;upper-alpha;none"; - -function aggregateStyles(allStyles) { - var mergedStyles = {}; - - tinymce.each(allStyles, function(style) { - if (style !== '') { - var parsedStyles = tinyMCEPopup.editor.dom.parseStyle(style); - for (var name in parsedStyles) { - if (parsedStyles.hasOwnProperty(name)) { - if (mergedStyles[name] === undefined) { - mergedStyles[name] = parsedStyles[name]; - } - else if (name === 'text-decoration') { - if (mergedStyles[name].indexOf(parsedStyles[name]) === -1) { - mergedStyles[name] = mergedStyles[name] +' '+ parsedStyles[name]; - } - } - } - } - } - }); - - return mergedStyles; -} - -var applyActionIsInsert; -var existingStyles; - -function init(ed) { - var ce = document.getElementById('container'), h; - - existingStyles = aggregateStyles(tinyMCEPopup.getWindowArg('styles')); - ce.style.cssText = tinyMCEPopup.editor.dom.serializeStyle(existingStyles); - - applyActionIsInsert = ed.getParam("edit_css_style_insert_span", false); - document.getElementById('toggle_insert_span').checked = applyActionIsInsert; - - h = getBrowserHTML('background_image_browser','background_image','image','advimage'); - document.getElementById("background_image_browser").innerHTML = h; - - document.getElementById('text_color_pickcontainer').innerHTML = getColorPickerHTML('text_color_pick','text_color'); - document.getElementById('background_color_pickcontainer').innerHTML = getColorPickerHTML('background_color_pick','background_color'); - document.getElementById('border_color_top_pickcontainer').innerHTML = getColorPickerHTML('border_color_top_pick','border_color_top'); - document.getElementById('border_color_right_pickcontainer').innerHTML = getColorPickerHTML('border_color_right_pick','border_color_right'); - document.getElementById('border_color_bottom_pickcontainer').innerHTML = getColorPickerHTML('border_color_bottom_pick','border_color_bottom'); - document.getElementById('border_color_left_pickcontainer').innerHTML = getColorPickerHTML('border_color_left_pick','border_color_left'); - - fillSelect(0, 'text_font', 'style_font', defaultFonts, ';', true); - fillSelect(0, 'text_size', 'style_font_size', defaultSizes, ';', true); - fillSelect(0, 'text_size_measurement', 'style_font_size_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'text_case', 'style_text_case', "capitalize;uppercase;lowercase", ';', true); - fillSelect(0, 'text_weight', 'style_font_weight', defaultWeight, ';', true); - fillSelect(0, 'text_style', 'style_font_style', defaultTextStyle, ';', true); - fillSelect(0, 'text_variant', 'style_font_variant', defaultVariant, ';', true); - fillSelect(0, 'text_lineheight', 'style_font_line_height', defaultLineHeight, ';', true); - fillSelect(0, 'text_lineheight_measurement', 'style_font_line_height_measurement', defaultMeasurement, ';', true); - - fillSelect(0, 'background_attachment', 'style_background_attachment', defaultAttachment, ';', true); - fillSelect(0, 'background_repeat', 'style_background_repeat', defaultRepeat, ';', true); - - fillSelect(0, 'background_hpos_measurement', 'style_background_hpos_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'background_vpos_measurement', 'style_background_vpos_measurement', defaultMeasurement, ';', true); - - fillSelect(0, 'background_hpos', 'style_background_hpos', defaultPosH, ';', true); - fillSelect(0, 'background_vpos', 'style_background_vpos', defaultPosV, ';', true); - - fillSelect(0, 'block_wordspacing', 'style_wordspacing', 'normal', ';', true); - fillSelect(0, 'block_wordspacing_measurement', 'style_wordspacing_measurement', defaultSpacingMeasurement, ';', true); - fillSelect(0, 'block_letterspacing', 'style_letterspacing', 'normal', ';', true); - fillSelect(0, 'block_letterspacing_measurement', 'style_letterspacing_measurement', defaultSpacingMeasurement, ';', true); - fillSelect(0, 'block_vertical_alignment', 'style_vertical_alignment', defaultVAlign, ';', true); - fillSelect(0, 'block_text_align', 'style_text_align', "left;right;center;justify", ';', true); - fillSelect(0, 'block_whitespace', 'style_whitespace', "normal;pre;nowrap", ';', true); - fillSelect(0, 'block_display', 'style_display', defaultDisplay, ';', true); - fillSelect(0, 'block_text_indent_measurement', 'style_text_indent_measurement', defaultIndentMeasurement, ';', true); - - fillSelect(0, 'box_width_measurement', 'style_box_width_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_height_measurement', 'style_box_height_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_float', 'style_float', 'left;right;none', ';', true); - fillSelect(0, 'box_clear', 'style_clear', 'left;right;both;none', ';', true); - fillSelect(0, 'box_padding_left_measurement', 'style_padding_left_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_padding_top_measurement', 'style_padding_top_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_padding_bottom_measurement', 'style_padding_bottom_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_padding_right_measurement', 'style_padding_right_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_margin_left_measurement', 'style_margin_left_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_margin_top_measurement', 'style_margin_top_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_margin_bottom_measurement', 'style_margin_bottom_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'box_margin_right_measurement', 'style_margin_right_measurement', defaultMeasurement, ';', true); - - fillSelect(0, 'border_style_top', 'style_border_style_top', defaultBorderStyle, ';', true); - fillSelect(0, 'border_style_right', 'style_border_style_right', defaultBorderStyle, ';', true); - fillSelect(0, 'border_style_bottom', 'style_border_style_bottom', defaultBorderStyle, ';', true); - fillSelect(0, 'border_style_left', 'style_border_style_left', defaultBorderStyle, ';', true); - - fillSelect(0, 'border_width_top', 'style_border_width_top', defaultBorderWidth, ';', true); - fillSelect(0, 'border_width_right', 'style_border_width_right', defaultBorderWidth, ';', true); - fillSelect(0, 'border_width_bottom', 'style_border_width_bottom', defaultBorderWidth, ';', true); - fillSelect(0, 'border_width_left', 'style_border_width_left', defaultBorderWidth, ';', true); - - fillSelect(0, 'border_width_top_measurement', 'style_border_width_top_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'border_width_right_measurement', 'style_border_width_right_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'border_width_bottom_measurement', 'style_border_width_bottom_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'border_width_left_measurement', 'style_border_width_left_measurement', defaultMeasurement, ';', true); - - fillSelect(0, 'list_type', 'style_list_type', defaultListType, ';', true); - fillSelect(0, 'list_position', 'style_list_position', "inside;outside", ';', true); - - fillSelect(0, 'positioning_type', 'style_positioning_type', "absolute;relative;static", ';', true); - fillSelect(0, 'positioning_visibility', 'style_positioning_visibility', "inherit;visible;hidden", ';', true); - - fillSelect(0, 'positioning_width_measurement', 'style_positioning_width_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_height_measurement', 'style_positioning_height_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_overflow', 'style_positioning_overflow', "visible;hidden;scroll;auto", ';', true); - - fillSelect(0, 'positioning_placement_top_measurement', 'style_positioning_placement_top_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_placement_right_measurement', 'style_positioning_placement_right_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_placement_bottom_measurement', 'style_positioning_placement_bottom_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_placement_left_measurement', 'style_positioning_placement_left_measurement', defaultMeasurement, ';', true); - - fillSelect(0, 'positioning_clip_top_measurement', 'style_positioning_clip_top_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_clip_right_measurement', 'style_positioning_clip_right_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_clip_bottom_measurement', 'style_positioning_clip_bottom_measurement', defaultMeasurement, ';', true); - fillSelect(0, 'positioning_clip_left_measurement', 'style_positioning_clip_left_measurement', defaultMeasurement, ';', true); - - TinyMCE_EditableSelects.init(); - setupFormData(); - showDisabledControls(); -} - -function setupFormData() { - var ce = document.getElementById('container'), f = document.forms[0], s, b, i; - - // Setup text fields - - selectByValue(f, 'text_font', ce.style.fontFamily, true, true); - selectByValue(f, 'text_size', getNum(ce.style.fontSize), true, true); - selectByValue(f, 'text_size_measurement', getMeasurement(ce.style.fontSize)); - selectByValue(f, 'text_weight', ce.style.fontWeight, true, true); - selectByValue(f, 'text_style', ce.style.fontStyle, true, true); - selectByValue(f, 'text_lineheight', getNum(ce.style.lineHeight), true, true); - selectByValue(f, 'text_lineheight_measurement', getMeasurement(ce.style.lineHeight)); - selectByValue(f, 'text_case', ce.style.textTransform, true, true); - selectByValue(f, 'text_variant', ce.style.fontVariant, true, true); - f.text_color.value = tinyMCEPopup.editor.dom.toHex(ce.style.color); - updateColor('text_color_pick', 'text_color'); - f.text_underline.checked = inStr(ce.style.textDecoration, 'underline'); - f.text_overline.checked = inStr(ce.style.textDecoration, 'overline'); - f.text_linethrough.checked = inStr(ce.style.textDecoration, 'line-through'); - f.text_blink.checked = inStr(ce.style.textDecoration, 'blink'); - f.text_none.checked = inStr(ce.style.textDecoration, 'none'); - updateTextDecorations(); - - // Setup background fields - - f.background_color.value = tinyMCEPopup.editor.dom.toHex(ce.style.backgroundColor); - updateColor('background_color_pick', 'background_color'); - f.background_image.value = ce.style.backgroundImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1"); - selectByValue(f, 'background_repeat', ce.style.backgroundRepeat, true, true); - selectByValue(f, 'background_attachment', ce.style.backgroundAttachment, true, true); - selectByValue(f, 'background_hpos', getNum(getVal(ce.style.backgroundPosition, 0)), true, true); - selectByValue(f, 'background_hpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 0))); - selectByValue(f, 'background_vpos', getNum(getVal(ce.style.backgroundPosition, 1)), true, true); - selectByValue(f, 'background_vpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 1))); - - // Setup block fields - - selectByValue(f, 'block_wordspacing', getNum(ce.style.wordSpacing), true, true); - selectByValue(f, 'block_wordspacing_measurement', getMeasurement(ce.style.wordSpacing)); - selectByValue(f, 'block_letterspacing', getNum(ce.style.letterSpacing), true, true); - selectByValue(f, 'block_letterspacing_measurement', getMeasurement(ce.style.letterSpacing)); - selectByValue(f, 'block_vertical_alignment', ce.style.verticalAlign, true, true); - selectByValue(f, 'block_text_align', ce.style.textAlign, true, true); - f.block_text_indent.value = getNum(ce.style.textIndent); - selectByValue(f, 'block_text_indent_measurement', getMeasurement(ce.style.textIndent)); - selectByValue(f, 'block_whitespace', ce.style.whiteSpace, true, true); - selectByValue(f, 'block_display', ce.style.display, true, true); - - // Setup box fields - - f.box_width.value = getNum(ce.style.width); - selectByValue(f, 'box_width_measurement', getMeasurement(ce.style.width)); - - f.box_height.value = getNum(ce.style.height); - selectByValue(f, 'box_height_measurement', getMeasurement(ce.style.height)); - selectByValue(f, 'box_float', ce.style.cssFloat || ce.style.styleFloat, true, true); - - selectByValue(f, 'box_clear', ce.style.clear, true, true); - - setupBox(f, ce, 'box_padding', 'padding', ''); - setupBox(f, ce, 'box_margin', 'margin', ''); - - // Setup border fields - - setupBox(f, ce, 'border_style', 'border', 'Style'); - setupBox(f, ce, 'border_width', 'border', 'Width'); - setupBox(f, ce, 'border_color', 'border', 'Color'); - - updateColor('border_color_top_pick', 'border_color_top'); - updateColor('border_color_right_pick', 'border_color_right'); - updateColor('border_color_bottom_pick', 'border_color_bottom'); - updateColor('border_color_left_pick', 'border_color_left'); - - f.elements.border_color_top.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_top.value); - f.elements.border_color_right.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_right.value); - f.elements.border_color_bottom.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_bottom.value); - f.elements.border_color_left.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_left.value); - - // Setup list fields - - selectByValue(f, 'list_type', ce.style.listStyleType, true, true); - selectByValue(f, 'list_position', ce.style.listStylePosition, true, true); - f.list_bullet_image.value = ce.style.listStyleImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1"); - - // Setup box fields - - selectByValue(f, 'positioning_type', ce.style.position, true, true); - selectByValue(f, 'positioning_visibility', ce.style.visibility, true, true); - selectByValue(f, 'positioning_overflow', ce.style.overflow, true, true); - f.positioning_zindex.value = ce.style.zIndex ? ce.style.zIndex : ""; - - f.positioning_width.value = getNum(ce.style.width); - selectByValue(f, 'positioning_width_measurement', getMeasurement(ce.style.width)); - - f.positioning_height.value = getNum(ce.style.height); - selectByValue(f, 'positioning_height_measurement', getMeasurement(ce.style.height)); - - setupBox(f, ce, 'positioning_placement', '', '', ['top', 'right', 'bottom', 'left']); - - s = ce.style.clip.replace(new RegExp("rect\\('?([^']*)'?\\)", 'gi'), "$1"); - s = s.replace(/,/g, ' '); - - if (!hasEqualValues([getVal(s, 0), getVal(s, 1), getVal(s, 2), getVal(s, 3)])) { - f.positioning_clip_top.value = getNum(getVal(s, 0)); - selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0))); - f.positioning_clip_right.value = getNum(getVal(s, 1)); - selectByValue(f, 'positioning_clip_right_measurement', getMeasurement(getVal(s, 1))); - f.positioning_clip_bottom.value = getNum(getVal(s, 2)); - selectByValue(f, 'positioning_clip_bottom_measurement', getMeasurement(getVal(s, 2))); - f.positioning_clip_left.value = getNum(getVal(s, 3)); - selectByValue(f, 'positioning_clip_left_measurement', getMeasurement(getVal(s, 3))); - } else { - f.positioning_clip_top.value = getNum(getVal(s, 0)); - selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0))); - f.positioning_clip_right.value = f.positioning_clip_bottom.value = f.positioning_clip_left.value; - } - -// setupBox(f, ce, '', 'border', 'Color'); -} - -function getMeasurement(s) { - return s.replace(/^([0-9.]+)(.*)$/, "$2"); -} - -function getNum(s) { - if (new RegExp('^(?:[0-9.]+)(?:[a-z%]+)$', 'gi').test(s)) - return s.replace(/[^0-9.]/g, ''); - - return s; -} - -function inStr(s, n) { - return new RegExp(n, 'gi').test(s); -} - -function getVal(s, i) { - var a = s.split(' '); - - if (a.length > 1) - return a[i]; - - return ""; -} - -function setValue(f, n, v) { - if (f.elements[n].type == "text") - f.elements[n].value = v; - else - selectByValue(f, n, v, true, true); -} - -function setupBox(f, ce, fp, pr, sf, b) { - if (typeof(b) == "undefined") - b = ['Top', 'Right', 'Bottom', 'Left']; - - if (isSame(ce, pr, sf, b)) { - f.elements[fp + "_same"].checked = true; - - setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf])); - f.elements[fp + "_top"].disabled = false; - - f.elements[fp + "_right"].value = ""; - f.elements[fp + "_right"].disabled = true; - f.elements[fp + "_bottom"].value = ""; - f.elements[fp + "_bottom"].disabled = true; - f.elements[fp + "_left"].value = ""; - f.elements[fp + "_left"].disabled = true; - - if (f.elements[fp + "_top_measurement"]) { - selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf])); - f.elements[fp + "_left_measurement"].disabled = true; - f.elements[fp + "_bottom_measurement"].disabled = true; - f.elements[fp + "_right_measurement"].disabled = true; - } - } else { - f.elements[fp + "_same"].checked = false; - - setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf])); - f.elements[fp + "_top"].disabled = false; - - setValue(f, fp + "_right", getNum(ce.style[pr + b[1] + sf])); - f.elements[fp + "_right"].disabled = false; - - setValue(f, fp + "_bottom", getNum(ce.style[pr + b[2] + sf])); - f.elements[fp + "_bottom"].disabled = false; - - setValue(f, fp + "_left", getNum(ce.style[pr + b[3] + sf])); - f.elements[fp + "_left"].disabled = false; - - if (f.elements[fp + "_top_measurement"]) { - selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf])); - selectByValue(f, fp + '_right_measurement', getMeasurement(ce.style[pr + b[1] + sf])); - selectByValue(f, fp + '_bottom_measurement', getMeasurement(ce.style[pr + b[2] + sf])); - selectByValue(f, fp + '_left_measurement', getMeasurement(ce.style[pr + b[3] + sf])); - f.elements[fp + "_left_measurement"].disabled = false; - f.elements[fp + "_bottom_measurement"].disabled = false; - f.elements[fp + "_right_measurement"].disabled = false; - } - } -} - -function isSame(e, pr, sf, b) { - var a = [], i, x; - - if (typeof(b) == "undefined") - b = ['Top', 'Right', 'Bottom', 'Left']; - - if (typeof(sf) == "undefined" || sf == null) - sf = ""; - - a[0] = e.style[pr + b[0] + sf]; - a[1] = e.style[pr + b[1] + sf]; - a[2] = e.style[pr + b[2] + sf]; - a[3] = e.style[pr + b[3] + sf]; - - for (i=0; i 0 ? s.substring(1) : s; - - if (f.text_none.checked) - s = "none"; - - ce.style.textDecoration = s; - - // Build background styles - - ce.style.backgroundColor = f.background_color.value; - ce.style.backgroundImage = f.background_image.value != "" ? "url(" + f.background_image.value + ")" : ""; - ce.style.backgroundRepeat = f.background_repeat.value; - ce.style.backgroundAttachment = f.background_attachment.value; - - if (f.background_hpos.value != "") { - s = ""; - s += f.background_hpos.value + (isNum(f.background_hpos.value) ? f.background_hpos_measurement.value : "") + " "; - s += f.background_vpos.value + (isNum(f.background_vpos.value) ? f.background_vpos_measurement.value : ""); - ce.style.backgroundPosition = s; - } - - // Build block styles - - ce.style.wordSpacing = f.block_wordspacing.value + (isNum(f.block_wordspacing.value) ? f.block_wordspacing_measurement.value : ""); - ce.style.letterSpacing = f.block_letterspacing.value + (isNum(f.block_letterspacing.value) ? f.block_letterspacing_measurement.value : ""); - ce.style.verticalAlign = f.block_vertical_alignment.value; - ce.style.textAlign = f.block_text_align.value; - ce.style.textIndent = f.block_text_indent.value + (isNum(f.block_text_indent.value) ? f.block_text_indent_measurement.value : ""); - ce.style.whiteSpace = f.block_whitespace.value; - ce.style.display = f.block_display.value; - - // Build box styles - - ce.style.width = f.box_width.value + (isNum(f.box_width.value) ? f.box_width_measurement.value : ""); - ce.style.height = f.box_height.value + (isNum(f.box_height.value) ? f.box_height_measurement.value : ""); - ce.style.styleFloat = f.box_float.value; - ce.style.cssFloat = f.box_float.value; - - ce.style.clear = f.box_clear.value; - - if (!f.box_padding_same.checked) { - ce.style.paddingTop = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : ""); - ce.style.paddingRight = f.box_padding_right.value + (isNum(f.box_padding_right.value) ? f.box_padding_right_measurement.value : ""); - ce.style.paddingBottom = f.box_padding_bottom.value + (isNum(f.box_padding_bottom.value) ? f.box_padding_bottom_measurement.value : ""); - ce.style.paddingLeft = f.box_padding_left.value + (isNum(f.box_padding_left.value) ? f.box_padding_left_measurement.value : ""); - } else - ce.style.padding = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : ""); - - if (!f.box_margin_same.checked) { - ce.style.marginTop = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : ""); - ce.style.marginRight = f.box_margin_right.value + (isNum(f.box_margin_right.value) ? f.box_margin_right_measurement.value : ""); - ce.style.marginBottom = f.box_margin_bottom.value + (isNum(f.box_margin_bottom.value) ? f.box_margin_bottom_measurement.value : ""); - ce.style.marginLeft = f.box_margin_left.value + (isNum(f.box_margin_left.value) ? f.box_margin_left_measurement.value : ""); - } else - ce.style.margin = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : ""); - - // Build border styles - - if (!f.border_style_same.checked) { - ce.style.borderTopStyle = f.border_style_top.value; - ce.style.borderRightStyle = f.border_style_right.value; - ce.style.borderBottomStyle = f.border_style_bottom.value; - ce.style.borderLeftStyle = f.border_style_left.value; - } else - ce.style.borderStyle = f.border_style_top.value; - - if (!f.border_width_same.checked) { - ce.style.borderTopWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : ""); - ce.style.borderRightWidth = f.border_width_right.value + (isNum(f.border_width_right.value) ? f.border_width_right_measurement.value : ""); - ce.style.borderBottomWidth = f.border_width_bottom.value + (isNum(f.border_width_bottom.value) ? f.border_width_bottom_measurement.value : ""); - ce.style.borderLeftWidth = f.border_width_left.value + (isNum(f.border_width_left.value) ? f.border_width_left_measurement.value : ""); - } else - ce.style.borderWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : ""); - - if (!f.border_color_same.checked) { - ce.style.borderTopColor = f.border_color_top.value; - ce.style.borderRightColor = f.border_color_right.value; - ce.style.borderBottomColor = f.border_color_bottom.value; - ce.style.borderLeftColor = f.border_color_left.value; - } else - ce.style.borderColor = f.border_color_top.value; - - // Build list styles - - ce.style.listStyleType = f.list_type.value; - ce.style.listStylePosition = f.list_position.value; - ce.style.listStyleImage = f.list_bullet_image.value != "" ? "url(" + f.list_bullet_image.value + ")" : ""; - - // Build positioning styles - - ce.style.position = f.positioning_type.value; - ce.style.visibility = f.positioning_visibility.value; - - if (ce.style.width == "") - ce.style.width = f.positioning_width.value + (isNum(f.positioning_width.value) ? f.positioning_width_measurement.value : ""); - - if (ce.style.height == "") - ce.style.height = f.positioning_height.value + (isNum(f.positioning_height.value) ? f.positioning_height_measurement.value : ""); - - ce.style.zIndex = f.positioning_zindex.value; - ce.style.overflow = f.positioning_overflow.value; - - if (!f.positioning_placement_same.checked) { - ce.style.top = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : ""); - ce.style.right = f.positioning_placement_right.value + (isNum(f.positioning_placement_right.value) ? f.positioning_placement_right_measurement.value : ""); - ce.style.bottom = f.positioning_placement_bottom.value + (isNum(f.positioning_placement_bottom.value) ? f.positioning_placement_bottom_measurement.value : ""); - ce.style.left = f.positioning_placement_left.value + (isNum(f.positioning_placement_left.value) ? f.positioning_placement_left_measurement.value : ""); - } else { - s = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : ""); - ce.style.top = s; - ce.style.right = s; - ce.style.bottom = s; - ce.style.left = s; - } - - if (!f.positioning_clip_same.checked) { - s = "rect("; - s += (isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto") + " "; - s += (isNum(f.positioning_clip_right.value) ? f.positioning_clip_right.value + f.positioning_clip_right_measurement.value : "auto") + " "; - s += (isNum(f.positioning_clip_bottom.value) ? f.positioning_clip_bottom.value + f.positioning_clip_bottom_measurement.value : "auto") + " "; - s += (isNum(f.positioning_clip_left.value) ? f.positioning_clip_left.value + f.positioning_clip_left_measurement.value : "auto"); - s += ")"; - - if (s != "rect(auto auto auto auto)") - ce.style.clip = s; - } else { - s = "rect("; - t = isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto"; - s += t + " "; - s += t + " "; - s += t + " "; - s += t + ")"; - - if (s != "rect(auto auto auto auto)") - ce.style.clip = s; - } - - ce.style.cssText = ce.style.cssText; -} - -function isNum(s) { - return new RegExp('[0-9]+', 'g').test(s); -} - -function showDisabledControls() { - var f = document.forms, i, a; - - for (i=0; i 1) { - addSelectValue(f, s, p[0], p[1]); - - if (se) - selectByValue(f, s, p[1]); - } else { - addSelectValue(f, s, p[0], p[0]); - - if (se) - selectByValue(f, s, p[0]); - } - } -} - -function toggleSame(ce, pre) { - var el = document.forms[0].elements, i; - - if (ce.checked) { - el[pre + "_top"].disabled = false; - el[pre + "_right"].disabled = true; - el[pre + "_bottom"].disabled = true; - el[pre + "_left"].disabled = true; - - if (el[pre + "_top_measurement"]) { - el[pre + "_top_measurement"].disabled = false; - el[pre + "_right_measurement"].disabled = true; - el[pre + "_bottom_measurement"].disabled = true; - el[pre + "_left_measurement"].disabled = true; - } - } else { - el[pre + "_top"].disabled = false; - el[pre + "_right"].disabled = false; - el[pre + "_bottom"].disabled = false; - el[pre + "_left"].disabled = false; - - if (el[pre + "_top_measurement"]) { - el[pre + "_top_measurement"].disabled = false; - el[pre + "_right_measurement"].disabled = false; - el[pre + "_bottom_measurement"].disabled = false; - el[pre + "_left_measurement"].disabled = false; - } - } - - showDisabledControls(); -} - -function synch(fr, to) { - var f = document.forms[0]; - - f.elements[to].value = f.elements[fr].value; - - if (f.elements[fr + "_measurement"]) - selectByValue(f, to + "_measurement", f.elements[fr + "_measurement"].value); -} - -function updateTextDecorations(){ - var el = document.forms[0].elements; - - var textDecorations = ["text_underline", "text_overline", "text_linethrough", "text_blink"]; - var noneChecked = el["text_none"].checked; - tinymce.each(textDecorations, function(id) { - el[id].disabled = noneChecked; - if (noneChecked) { - el[id].checked = false; - } - }); -} - -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js deleted file mode 100644 index 35881b3ac..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.style_dlg',{"text_lineheight":"Line Height","text_variant":"Variant","text_style":"Style","text_weight":"Weight","text_size":"Size","text_font":"Font","text_props":"Text","positioning_tab":"Positioning","list_tab":"List","border_tab":"Border","box_tab":"Box","block_tab":"Block","background_tab":"Background","text_tab":"Text",apply:"Apply",toggle_insert_span:"Insert span at selection",title:"Edit CSS Style",clip:"Clip",placement:"Placement",overflow:"Overflow",zindex:"Z-index",visibility:"Visibility","positioning_type":"Type",position:"Position","bullet_image":"Bullet Image","list_type":"Type",color:"Color",height:"Height",width:"Width",style:"Style",margin:"Margin",left:"Left",bottom:"Bottom",right:"Right",top:"Top",same:"Same for All",padding:"Padding","box_clear":"Clear","box_float":"Float","box_height":"Height","box_width":"Width","block_display":"Display","block_whitespace":"Whitespace","block_text_indent":"Text Indent","block_text_align":"Text Align","block_vertical_alignment":"Vertical Alignment","block_letterspacing":"Letter Spacing","block_wordspacing":"Word Spacing","background_vpos":"Vertical Position","background_hpos":"Horizontal Position","background_attachment":"Attachment","background_repeat":"Repeat","background_image":"Background Image","background_color":"Background Color","text_none":"None","text_blink":"Blink","text_case":"Case","text_striketrough":"Strikethrough","text_underline":"Underline","text_overline":"Overline","text_decoration":"Decoration","text_color":"Color",text:"Text",background:"Background",block:"Block",box:"Box",border:"Border",list:"List"}); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/props.htm b/library/tinymce/jscripts/tiny_mce/plugins/style/props.htm deleted file mode 100644 index 7dc087a30..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/props.htm +++ /dev/null @@ -1,845 +0,0 @@ - - - - {#style_dlg.title} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#style_dlg.text} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - - - - - - -
                                              - - -
                                            -
                                            - -
                                            - - - -
                                            - - - - - - -
                                            - -   - - -
                                            -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            {#style_dlg.text_decoration} - - - - - - - - - - - - - - - - - - - - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.background} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - -
                                             
                                            -
                                            - - - - -
                                             
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.block} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.box} - - - - - - - - - - - - - - -
                                            - - - - - - -
                                              - - -
                                            -
                                               
                                            - - - - - - -
                                              - - -
                                            -
                                               
                                            -
                                            - -
                                            -
                                            - {#style_dlg.padding} - - - - - - - - - - - - - - - - - - - - - - -
                                             
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.margin} - - - - - - - - - - - - - - - - - - - - - - -
                                             
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            - - - - - - -
                                              - - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.border} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                              {#style_dlg.style} {#style_dlg.width} {#style_dlg.color}
                                                  
                                            {#style_dlg.top}   - - - - - - -
                                              - - -
                                            -
                                              - - - - - -
                                             
                                            -
                                            {#style_dlg.right}   - - - - - - -
                                              - - -
                                            -
                                              - - - - - -
                                             
                                            -
                                            {#style_dlg.bottom}   - - - - - - -
                                              - - -
                                            -
                                              - - - - - -
                                             
                                            -
                                            {#style_dlg.left}   - - - - - - -
                                              - - -
                                            -
                                              - - - - - -
                                             
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.list} - - - - - - - - - - - - - - - -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.position} - - - - - - - - - - - - - - - - - - - - - -
                                               
                                            - - - - - - -
                                              - - -
                                            -
                                               
                                            - - - - - - -
                                              - - -
                                            -
                                               
                                            -
                                            - -
                                            -
                                            - {#style_dlg.placement} - - - - - - - - - - - - - - - - - - - - - - -
                                             
                                            {#style_dlg.top} - - - - - - -
                                              - - -
                                            -
                                            {#style_dlg.right} - - - - - - -
                                              - - -
                                            -
                                            {#style_dlg.bottom} - - - - - - -
                                              - - -
                                            -
                                            {#style_dlg.left} - - - - - - -
                                              - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#style_dlg.clip} - - - - - - - - - - - - - - - - - - - - - - -
                                             
                                            {#style_dlg.top} - - - - - - -
                                              - - -
                                            -
                                            {#style_dlg.right} - - - - - - -
                                              - - -
                                            -
                                            {#style_dlg.bottom} - - - - - - -
                                              - - -
                                            -
                                            {#style_dlg.left} - - - - - - -
                                              - - -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - -
                                            - - -
                                            - -
                                            - - - -
                                            -
                                            - -
                                            -
                                            -
                                            - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/style/readme.txt b/library/tinymce/jscripts/tiny_mce/plugins/style/readme.txt deleted file mode 100644 index 5bac30202..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/style/readme.txt +++ /dev/null @@ -1,19 +0,0 @@ -Edit CSS Style plug-in notes -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Unlike WYSIWYG editor functionality that operates only on the selected text, -typically by inserting new HTML elements with the specified styles. -This plug-in operates on the HTML blocks surrounding the selected text. -No new HTML elements are created. - -This plug-in only operates on the surrounding blocks and not the nearest -parent node. This means that if a block encapsulates a node, -e.g

                                            text

                                            , then only the styles in the block are -recognized, not those in the span. - -When selecting text that includes multiple blocks at the same level (peers), -this plug-in accumulates the specified styles in all of the surrounding blocks -and populates the dialogue checkboxes accordingly. There is no differentiation -between styles set in all the blocks versus styles set in some of the blocks. - -When the [Update] or [Apply] buttons are pressed, the styles selected in the -checkboxes are applied to all blocks that surround the selected text. diff --git a/library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js deleted file mode 100644 index 2c5129161..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var c=tinymce.DOM,a=tinymce.dom.Event,d=tinymce.each,b=tinymce.explode;tinymce.create("tinymce.plugins.TabFocusPlugin",{init:function(f,g){function e(i,j){if(j.keyCode===9){return a.cancel(j)}}function h(l,p){var j,m,o,n,k;function q(t){n=c.select(":input:enabled,*[tabindex]:not(iframe)");function s(v){return v.nodeName==="BODY"||(v.type!="hidden"&&!(v.style.display=="none")&&!(v.style.visibility=="hidden")&&s(v.parentNode))}function i(v){return v.attributes.tabIndex.specified||v.nodeName=="INPUT"||v.nodeName=="TEXTAREA"}function u(){return tinymce.isIE6||tinymce.isIE7}function r(v){return((!u()||i(v)))&&v.getAttribute("tabindex")!="-1"&&s(v)}d(n,function(w,v){if(w.id==l.id){j=v;return false}});if(t>0){for(m=j+1;m=0;m--){if(r(n[m])){return n[m]}}}return null}if(p.keyCode===9){k=b(l.getParam("tab_focus",l.getParam("tabfocus_elements",":prev,:next")));if(k.length==1){k[1]=k[0];k[0]=":prev"}if(p.shiftKey){if(k[0]==":prev"){n=q(-1)}else{n=c.get(k[0])}}else{if(k[1]==":next"){n=q(1)}else{n=c.get(k[1])}}if(n){if(n.id&&(l=tinymce.get(n.id||n.name))){l.focus()}else{window.setTimeout(function(){if(!tinymce.isWebKit){window.focus()}n.focus()},10)}return a.cancel(p)}}}f.onKeyUp.add(e);if(tinymce.isGecko){f.onKeyPress.add(h);f.onKeyDown.add(e)}else{f.onKeyDown.add(h)}},getInfo:function(){return{longname:"Tabfocus",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("tabfocus",tinymce.plugins.TabFocusPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js deleted file mode 100644 index 94f45320d..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js +++ /dev/null @@ -1,122 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var DOM = tinymce.DOM, Event = tinymce.dom.Event, each = tinymce.each, explode = tinymce.explode; - - tinymce.create('tinymce.plugins.TabFocusPlugin', { - init : function(ed, url) { - function tabCancel(ed, e) { - if (e.keyCode === 9) - return Event.cancel(e); - } - - function tabHandler(ed, e) { - var x, i, f, el, v; - - function find(d) { - el = DOM.select(':input:enabled,*[tabindex]:not(iframe)'); - - function canSelectRecursive(e) { - return e.nodeName==="BODY" || (e.type != 'hidden' && - !(e.style.display == "none") && - !(e.style.visibility == "hidden") && canSelectRecursive(e.parentNode)); - } - function canSelectInOldIe(el) { - return el.attributes["tabIndex"].specified || el.nodeName == "INPUT" || el.nodeName == "TEXTAREA"; - } - function isOldIe() { - return tinymce.isIE6 || tinymce.isIE7; - } - function canSelect(el) { - return ((!isOldIe() || canSelectInOldIe(el))) && el.getAttribute("tabindex") != '-1' && canSelectRecursive(el); - } - - each(el, function(e, i) { - if (e.id == ed.id) { - x = i; - return false; - } - }); - if (d > 0) { - for (i = x + 1; i < el.length; i++) { - if (canSelect(el[i])) - return el[i]; - } - } else { - for (i = x - 1; i >= 0; i--) { - if (canSelect(el[i])) - return el[i]; - } - } - - return null; - } - - if (e.keyCode === 9) { - v = explode(ed.getParam('tab_focus', ed.getParam('tabfocus_elements', ':prev,:next'))); - - if (v.length == 1) { - v[1] = v[0]; - v[0] = ':prev'; - } - - // Find element to focus - if (e.shiftKey) { - if (v[0] == ':prev') - el = find(-1); - else - el = DOM.get(v[0]); - } else { - if (v[1] == ':next') - el = find(1); - else - el = DOM.get(v[1]); - } - - if (el) { - if (el.id && (ed = tinymce.get(el.id || el.name))) - ed.focus(); - else - window.setTimeout(function() { - if (!tinymce.isWebKit) - window.focus(); - el.focus(); - }, 10); - - return Event.cancel(e); - } - } - } - - ed.onKeyUp.add(tabCancel); - - if (tinymce.isGecko) { - ed.onKeyPress.add(tabHandler); - ed.onKeyDown.add(tabCancel); - } else - ed.onKeyDown.add(tabHandler); - - }, - - getInfo : function() { - return { - longname : 'Tabfocus', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('tabfocus', tinymce.plugins.TabFocusPlugin); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/cell.htm b/library/tinymce/jscripts/tiny_mce/plugins/table/cell.htm deleted file mode 100644 index a72a8d697..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/cell.htm +++ /dev/null @@ -1,180 +0,0 @@ - - - - {#table_dlg.cell_title} - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#table_dlg.general_props} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - -
                                            - - - -
                                            - -
                                            -
                                            -
                                            - -
                                            -
                                            - {#table_dlg.advanced_props} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css b/library/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css deleted file mode 100644 index a067ecdfe..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css +++ /dev/null @@ -1,17 +0,0 @@ -/* CSS file for cell dialog in the table plugin */ - -.panel_wrapper div.current { - height: 200px; -} - -.advfield { - width: 200px; -} - -#action { - margin-bottom: 3px; -} - -#class { - width: 150px; -} \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/css/row.css b/library/tinymce/jscripts/tiny_mce/plugins/table/css/row.css deleted file mode 100644 index 1f7755daf..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/css/row.css +++ /dev/null @@ -1,25 +0,0 @@ -/* CSS file for row dialog in the table plugin */ - -.panel_wrapper div.current { - height: 200px; -} - -.advfield { - width: 200px; -} - -#action { - margin-bottom: 3px; -} - -#rowtype,#align,#valign,#class,#height { - width: 150px; -} - -#height { - width: 50px; -} - -.col2 { - padding-left: 20px; -} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/css/table.css b/library/tinymce/jscripts/tiny_mce/plugins/table/css/table.css deleted file mode 100644 index d11c3f69c..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/css/table.css +++ /dev/null @@ -1,13 +0,0 @@ -/* CSS file for table dialog in the table plugin */ - -.panel_wrapper div.current { - height: 245px; -} - -.advfield { - width: 200px; -} - -#class { - width: 150px; -} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js deleted file mode 100644 index 4a35a5ef9..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(d){var e=d.each;function c(g,h){var j=h.ownerDocument,f=j.createRange(),k;f.setStartBefore(h);f.setEnd(g.endContainer,g.endOffset);k=j.createElement("body");k.appendChild(f.cloneContents());return k.innerHTML.replace(/<(br|img|object|embed|input|textarea)[^>]*>/gi,"-").replace(/<[^>]+>/g,"").length==0}function a(g,f){return parseInt(g.getAttribute(f)||1)}function b(H,G,K){var g,L,D,o;t();o=G.getParent(K.getStart(),"th,td");if(o){L=F(o);D=I();o=z(L.x,L.y)}function A(N,M){N=N.cloneNode(M);N.removeAttribute("id");return N}function t(){var M=0;g=[];e(["thead","tbody","tfoot"],function(N){var O=G.select("> "+N+" tr",H);e(O,function(P,Q){Q+=M;e(G.select("> td, > th",P),function(W,R){var S,T,U,V;if(g[Q]){while(g[Q][R]){R++}}U=a(W,"rowspan");V=a(W,"colspan");for(T=Q;T'}return false}},"childNodes");M=A(M,false);s(M,"rowSpan",1);s(M,"colSpan",1);if(N){M.appendChild(N)}else{if(!d.isIE){M.innerHTML='
                                            '}}return M}function q(){var M=G.createRng();e(G.select("tr",H),function(N){if(N.cells.length==0){G.remove(N)}});if(G.select("tr",H).length==0){M.setStartAfter(H);M.setEndAfter(H);K.setRng(M);G.remove(H);return}e(G.select("thead,tbody,tfoot",H),function(N){if(N.rows.length==0){G.remove(N)}});t();row=g[Math.min(g.length-1,L.y)];if(row){K.select(row[Math.min(row.length-1,L.x)].elm,true);K.collapse(true)}}function u(S,Q,U,R){var P,N,M,O,T;P=g[Q][S].elm.parentNode;for(M=1;M<=U;M++){P=G.getNext(P,"tr");if(P){for(N=S;N>=0;N--){T=g[Q+M][N].elm;if(T.parentNode==P){for(O=1;O<=R;O++){G.insertAfter(f(T),T)}break}}if(N==-1){for(O=1;O<=R;O++){P.insertBefore(f(P.cells[0]),P.cells[0])}}}}}function C(){e(g,function(M,N){e(M,function(P,O){var S,R,T,Q;if(j(P)){P=P.elm;S=a(P,"colspan");R=a(P,"rowspan");if(S>1||R>1){s(P,"rowSpan",1);s(P,"colSpan",1);for(Q=0;Q1){s(S,"rowSpan",O+1);continue}}else{if(M>0&&g[M-1][R]){V=g[M-1][R].elm;O=a(V,"rowSpan");if(O>1){s(V,"rowSpan",O+1);continue}}}N=f(S);s(N,"colSpan",S.colSpan);U.appendChild(N);P=S}}if(U.hasChildNodes()){if(!Q){G.insertAfter(U,T)}else{T.parentNode.insertBefore(U,T)}}}function h(N){var O,M;e(g,function(P,Q){e(P,function(S,R){if(j(S)){O=R;if(N){return false}}});if(N){return !O}});e(g,function(S,T){var P,Q,R;if(!S[O]){return}P=S[O].elm;if(P!=M){R=a(P,"colspan");Q=a(P,"rowspan");if(R==1){if(!N){G.insertAfter(f(P),P);u(O,T,Q-1,R)}else{P.parentNode.insertBefore(f(P),P);u(O,T,Q-1,R)}}else{s(P,"colSpan",P.colSpan+1)}M=P}})}function n(){var M=[];e(g,function(N,O){e(N,function(Q,P){if(j(Q)&&d.inArray(M,P)===-1){e(g,function(T){var R=T[P].elm,S;S=a(R,"colSpan");if(S>1){s(R,"colSpan",S-1)}else{G.remove(R)}});M.push(P)}})});q()}function m(){var N;function M(Q){var P,R,O;P=G.getNext(Q,"tr");e(Q.cells,function(S){var T=a(S,"rowSpan");if(T>1){s(S,"rowSpan",T-1);R=F(S);u(R.x,R.y,1,1)}});R=F(Q.cells[0]);e(g[R.y],function(S){var T;S=S.elm;if(S!=O){T=a(S,"rowSpan");if(T<=1){G.remove(S)}else{s(S,"rowSpan",T-1)}O=S}})}N=k();e(N.reverse(),function(O){M(O)});q()}function E(){var M=k();G.remove(M);q();return M}function J(){var M=k();e(M,function(O,N){M[N]=A(O,true)});return M}function B(O,N){if(!O){return}var P=k(),M=P[N?0:P.length-1],Q=M.cells.length;e(g,function(S){var R;Q=0;e(S,function(U,T){if(U.real){Q+=U.colspan}if(U.elm.parentNode==M){R=1}});if(R){return false}});if(!N){O.reverse()}e(O,function(T){var S=T.cells.length,R;for(i=0;iN){N=R}if(Q>M){M=Q}if(S.real){U=S.colspan-1;T=S.rowspan-1;if(U){if(R+U>N){N=R+U}}if(T){if(Q+T>M){M=Q+T}}}}})});return{x:N,y:M}}function v(S){var P,O,U,T,N,M,Q,R;D=F(S);if(L&&D){P=Math.min(L.x,D.x);O=Math.min(L.y,D.y);U=Math.max(L.x,D.x);T=Math.max(L.y,D.y);N=U;M=T;for(y=O;y<=M;y++){S=g[y][P];if(!S.real){if(P-(S.colspan-1)N){N=x+Q}}if(R){if(y+R>M){M=y+R}}}}}G.removeClass(G.select("td.mceSelected,th.mceSelected"),"mceSelected");for(y=O;y<=M;y++){for(x=P;x<=N;x++){if(g[y][x]){G.addClass(g[y][x].elm,"mceSelected")}}}}}d.extend(this,{deleteTable:r,split:C,merge:p,insertRow:l,insertCol:h,deleteCols:n,deleteRows:m,cutRows:E,copyRows:J,pasteRows:B,getPos:F,setStartCell:w,setEndCell:v})}d.create("tinymce.plugins.TablePlugin",{init:function(g,h){var f,m,j=true;function l(p){var o=g.selection,n=g.dom.getParent(p||o.getNode(),"table");if(n){return new b(n,g.dom,o)}}function k(){g.getBody().style.webkitUserSelect="";if(j){g.dom.removeClass(g.dom.select("td.mceSelected,th.mceSelected"),"mceSelected");j=false}}e([["table","table.desc","mceInsertTable",true],["delete_table","table.del","mceTableDelete"],["delete_col","table.delete_col_desc","mceTableDeleteCol"],["delete_row","table.delete_row_desc","mceTableDeleteRow"],["col_after","table.col_after_desc","mceTableInsertColAfter"],["col_before","table.col_before_desc","mceTableInsertColBefore"],["row_after","table.row_after_desc","mceTableInsertRowAfter"],["row_before","table.row_before_desc","mceTableInsertRowBefore"],["row_props","table.row_desc","mceTableRowProps",true],["cell_props","table.cell_desc","mceTableCellProps",true],["split_cells","table.split_cells_desc","mceTableSplitCells",true],["merge_cells","table.merge_cells_desc","mceTableMergeCells",true]],function(n){g.addButton(n[0],{title:n[1],cmd:n[2],ui:n[3]})});if(!d.isIE){g.onClick.add(function(n,o){o=o.target;if(o.nodeName==="TABLE"){n.selection.select(o);n.nodeChanged()}})}g.onPreProcess.add(function(o,p){var n,q,r,t=o.dom,s;n=t.select("table",p.node);q=n.length;while(q--){r=n[q];t.setAttrib(r,"data-mce-style","");if((s=t.getAttrib(r,"width"))){t.setStyle(r,"width",s);t.setAttrib(r,"width","")}if((s=t.getAttrib(r,"height"))){t.setStyle(r,"height",s);t.setAttrib(r,"height","")}}});g.onNodeChange.add(function(q,o,s){var r;s=q.selection.getStart();r=q.dom.getParent(s,"td,th,caption");o.setActive("table",s.nodeName==="TABLE"||!!r);if(r&&r.nodeName==="CAPTION"){r=0}o.setDisabled("delete_table",!r);o.setDisabled("delete_col",!r);o.setDisabled("delete_table",!r);o.setDisabled("delete_row",!r);o.setDisabled("col_after",!r);o.setDisabled("col_before",!r);o.setDisabled("row_after",!r);o.setDisabled("row_before",!r);o.setDisabled("row_props",!r);o.setDisabled("cell_props",!r);o.setDisabled("split_cells",!r);o.setDisabled("merge_cells",!r)});g.onInit.add(function(r){var p,t,q=r.dom,u;f=r.windowManager;r.onMouseDown.add(function(w,z){if(z.button!=2){k();t=q.getParent(z.target,"td,th");p=q.getParent(t,"table")}});q.bind(r.getDoc(),"mouseover",function(C){var A,z,B=C.target;if(t&&(u||B!=t)&&(B.nodeName=="TD"||B.nodeName=="TH")){z=q.getParent(B,"table");if(z==p){if(!u){u=l(z);u.setStartCell(t);r.getBody().style.webkitUserSelect="none"}u.setEndCell(B);j=true}A=r.selection.getSel();try{if(A.removeAllRanges){A.removeAllRanges()}else{A.empty()}}catch(w){}C.preventDefault()}});r.onMouseUp.add(function(F,G){var z,B=F.selection,H,I=B.getSel(),w,C,A,E;if(t){if(u){F.getBody().style.webkitUserSelect=""}function D(J,L){var K=new d.dom.TreeWalker(J,J);do{if(J.nodeType==3&&d.trim(J.nodeValue).length!=0){if(L){z.setStart(J,0)}else{z.setEnd(J,J.nodeValue.length)}return}if(J.nodeName=="BR"){if(L){z.setStartBefore(J)}else{z.setEndBefore(J)}return}}while(J=(L?K.next():K.prev()))}H=q.select("td.mceSelected,th.mceSelected");if(H.length>0){z=q.createRng();C=H[0];E=H[H.length-1];z.setStartBefore(C);z.setEndAfter(C);D(C,1);w=new d.dom.TreeWalker(C,q.getParent(H[0],"table"));do{if(C.nodeName=="TD"||C.nodeName=="TH"){if(!q.hasClass(C,"mceSelected")){break}A=C}}while(C=w.next());D(A);B.setRng(z)}F.nodeChanged();t=u=p=null}});r.onKeyUp.add(function(w,z){k()});r.onKeyDown.add(function(w,z){n(w)});r.onMouseDown.add(function(w,z){if(z.button!=2){n(w)}});function o(D,z,A,F){var B=3,G=D.dom.getParent(z.startContainer,"TABLE"),C,w,E;if(G){C=G.parentNode}w=z.startContainer.nodeType==B&&z.startOffset==0&&z.endOffset==0&&F&&(A.nodeName=="TR"||A==C);E=(A.nodeName=="TD"||A.nodeName=="TH")&&!F;return w||E}function n(A){if(!d.isWebKit){return}var z=A.selection.getRng();var C=A.selection.getNode();var B=A.dom.getParent(z.startContainer,"TD,TH");if(!o(A,z,C,B)){return}if(!B){B=C}var w=B.lastChild;while(w.lastChild){w=w.lastChild}z.setEnd(w,w.nodeValue.length);A.selection.setRng(z)}r.plugins.table.fixTableCellSelection=n;if(r&&r.plugins.contextmenu){r.plugins.contextmenu.onContextMenu.add(function(A,w,C){var D,B=r.selection,z=B.getNode()||r.getBody();if(r.dom.getParent(C,"td")||r.dom.getParent(C,"th")||r.dom.select("td.mceSelected,th.mceSelected").length){w.removeAll();if(z.nodeName=="A"&&!r.dom.getAttrib(z,"name")){w.add({title:"advanced.link_desc",icon:"link",cmd:r.plugins.advlink?"mceAdvLink":"mceLink",ui:true});w.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"});w.addSeparator()}if(z.nodeName=="IMG"&&z.className.indexOf("mceItem")==-1){w.add({title:"advanced.image_desc",icon:"image",cmd:r.plugins.advimage?"mceAdvImage":"mceImage",ui:true});w.addSeparator()}w.add({title:"table.desc",icon:"table",cmd:"mceInsertTable",value:{action:"insert"}});w.add({title:"table.props_desc",icon:"table_props",cmd:"mceInsertTable"});w.add({title:"table.del",icon:"delete_table",cmd:"mceTableDelete"});w.addSeparator();D=w.addMenu({title:"table.cell"});D.add({title:"table.cell_desc",icon:"cell_props",cmd:"mceTableCellProps"});D.add({title:"table.split_cells_desc",icon:"split_cells",cmd:"mceTableSplitCells"});D.add({title:"table.merge_cells_desc",icon:"merge_cells",cmd:"mceTableMergeCells"});D=w.addMenu({title:"table.row"});D.add({title:"table.row_desc",icon:"row_props",cmd:"mceTableRowProps"});D.add({title:"table.row_before_desc",icon:"row_before",cmd:"mceTableInsertRowBefore"});D.add({title:"table.row_after_desc",icon:"row_after",cmd:"mceTableInsertRowAfter"});D.add({title:"table.delete_row_desc",icon:"delete_row",cmd:"mceTableDeleteRow"});D.addSeparator();D.add({title:"table.cut_row_desc",icon:"cut",cmd:"mceTableCutRow"});D.add({title:"table.copy_row_desc",icon:"copy",cmd:"mceTableCopyRow"});D.add({title:"table.paste_row_before_desc",icon:"paste",cmd:"mceTablePasteRowBefore"}).setDisabled(!m);D.add({title:"table.paste_row_after_desc",icon:"paste",cmd:"mceTablePasteRowAfter"}).setDisabled(!m);D=w.addMenu({title:"table.col"});D.add({title:"table.col_before_desc",icon:"col_before",cmd:"mceTableInsertColBefore"});D.add({title:"table.col_after_desc",icon:"col_after",cmd:"mceTableInsertColAfter"});D.add({title:"table.delete_col_desc",icon:"delete_col",cmd:"mceTableDeleteCol"})}else{w.add({title:"table.desc",icon:"table",cmd:"mceInsertTable"})}})}if(d.isWebKit){function v(C,N){var L=d.VK;var Q=N.keyCode;function O(Y,U,S){var T=Y?"previousSibling":"nextSibling";var Z=C.dom.getParent(U,"tr");var X=Z[T];if(X){z(C,U,X,Y);d.dom.Event.cancel(S);return true}else{var aa=C.dom.getParent(Z,"table");var W=Z.parentNode;var R=W.nodeName.toLowerCase();if(R==="tbody"||R===(Y?"tfoot":"thead")){var V=w(Y,aa,W,"tbody");if(V!==null){return K(Y,V,U,S)}}return M(Y,Z,T,aa,S)}}function w(V,T,U,X){var S=C.dom.select(">"+X,T);var R=S.indexOf(U);if(V&&R===0||!V&&R===S.length-1){return B(V,T)}else{if(R===-1){var W=U.tagName.toLowerCase()==="thead"?0:S.length-1;return S[W]}else{return S[R+(V?-1:1)]}}}function B(U,T){var S=U?"thead":"tfoot";var R=C.dom.select(">"+S,T);return R.length!==0?R[0]:null}function K(V,T,S,U){var R=J(T,V);R&&z(C,S,R,V);d.dom.Event.cancel(U);return true}function M(Y,U,R,X,W){var S=X[R];if(S){F(S);return true}else{var V=C.dom.getParent(X,"td,th");if(V){return O(Y,V,W)}else{var T=J(U,!Y);F(T);return d.dom.Event.cancel(W)}}}function J(S,R){var T=S&&S[R?"lastChild":"firstChild"];return T&&T.nodeName==="BR"?C.dom.getParent(T,"td,th"):T}function F(R){C.selection.setCursorLocation(R,0)}function A(){return Q==L.UP||Q==L.DOWN}function D(R){var T=R.selection.getNode();var S=R.dom.getParent(T,"tr");return S!==null}function P(S){var R=0;var T=S;while(T.previousSibling){T=T.previousSibling;R=R+a(T,"colspan")}return R}function E(T,R){var U=0;var S=0;e(T.children,function(V,W){U=U+a(V,"colspan");S=W;if(U>R){return false}});return S}function z(T,W,Y,V){var X=P(T.dom.getParent(W,"td,th"));var S=E(Y,X);var R=Y.childNodes[S];var U=J(R,V);F(U||R)}function H(R){var T=C.selection.getNode();var U=C.dom.getParent(T,"td,th");var S=C.dom.getParent(R,"td,th");return U&&U!==S&&I(U,S)}function I(S,R){return C.dom.getParent(S,"TABLE")===C.dom.getParent(R,"TABLE")}if(A()&&D(C)){var G=C.selection.getNode();setTimeout(function(){if(H(G)){O(!N.shiftKey&&Q===L.UP,G,N)}},0)}}r.onKeyDown.add(v)}function s(){var w;for(w=r.getBody().lastChild;w&&w.nodeType==3&&!w.nodeValue.length;w=w.previousSibling){}if(w&&w.nodeName=="TABLE"){if(r.settings.forced_root_block){r.dom.add(r.getBody(),r.settings.forced_root_block,null,d.isIE?" ":'
                                            ')}else{r.dom.add(r.getBody(),"br",{"data-mce-bogus":"1"})}}}if(d.isGecko){r.onKeyDown.add(function(z,B){var w,A,C=z.dom;if(B.keyCode==37||B.keyCode==38){w=z.selection.getRng();A=C.getParent(w.startContainer,"table");if(A&&z.getBody().firstChild==A){if(c(w,A)){w=C.createRng();w.setStartBefore(A);w.setEndBefore(A);z.selection.setRng(w);B.preventDefault()}}}})}r.onKeyUp.add(s);r.onSetContent.add(s);r.onVisualAid.add(s);r.onPreProcess.add(function(w,A){var z=A.node.lastChild;if(z&&(z.nodeName=="BR"||(z.childNodes.length==1&&(z.firstChild.nodeName=="BR"||z.firstChild.nodeValue=="\u00a0")))&&z.previousSibling&&z.previousSibling.nodeName=="TABLE"){w.dom.remove(z)}});s();r.startContent=r.getContent({format:"raw"})});e({mceTableSplitCells:function(n){n.split()},mceTableMergeCells:function(o){var p,q,n;n=g.dom.getParent(g.selection.getNode(),"th,td");if(n){p=n.rowSpan;q=n.colSpan}if(!g.dom.select("td.mceSelected,th.mceSelected").length){f.open({url:h+"/merge_cells.htm",width:240+parseInt(g.getLang("table.merge_cells_delta_width",0)),height:110+parseInt(g.getLang("table.merge_cells_delta_height",0)),inline:1},{rows:p,cols:q,onaction:function(r){o.merge(n,r.cols,r.rows)},plugin_url:h})}else{o.merge()}},mceTableInsertRowBefore:function(n){n.insertRow(true)},mceTableInsertRowAfter:function(n){n.insertRow()},mceTableInsertColBefore:function(n){n.insertCol(true)},mceTableInsertColAfter:function(n){n.insertCol()},mceTableDeleteCol:function(n){n.deleteCols()},mceTableDeleteRow:function(n){n.deleteRows()},mceTableCutRow:function(n){m=n.cutRows()},mceTableCopyRow:function(n){m=n.copyRows()},mceTablePasteRowBefore:function(n){n.pasteRows(m,true)},mceTablePasteRowAfter:function(n){n.pasteRows(m)},mceTableDelete:function(n){n.deleteTable()}},function(o,n){g.addCommand(n,function(){var p=l();if(p){o(p);g.execCommand("mceRepaint");k()}})});e({mceInsertTable:function(n){f.open({url:h+"/table.htm",width:400+parseInt(g.getLang("table.table_delta_width",0)),height:320+parseInt(g.getLang("table.table_delta_height",0)),inline:1},{plugin_url:h,action:n?n.action:0})},mceTableRowProps:function(){f.open({url:h+"/row.htm",width:400+parseInt(g.getLang("table.rowprops_delta_width",0)),height:295+parseInt(g.getLang("table.rowprops_delta_height",0)),inline:1},{plugin_url:h})},mceTableCellProps:function(){f.open({url:h+"/cell.htm",width:400+parseInt(g.getLang("table.cellprops_delta_width",0)),height:295+parseInt(g.getLang("table.cellprops_delta_height",0)),inline:1},{plugin_url:h})}},function(o,n){g.addCommand(n,function(p,q){o(q)})})}});d.PluginManager.add("table",d.plugins.TablePlugin)})(tinymce); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js deleted file mode 100644 index 532b79c6f..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js +++ /dev/null @@ -1,1456 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function(tinymce) { - var each = tinymce.each; - - // Checks if the selection/caret is at the start of the specified block element - function isAtStart(rng, par) { - var doc = par.ownerDocument, rng2 = doc.createRange(), elm; - - rng2.setStartBefore(par); - rng2.setEnd(rng.endContainer, rng.endOffset); - - elm = doc.createElement('body'); - elm.appendChild(rng2.cloneContents()); - - // Check for text characters of other elements that should be treated as content - return elm.innerHTML.replace(/<(br|img|object|embed|input|textarea)[^>]*>/gi, '-').replace(/<[^>]+>/g, '').length == 0; - }; - - function getSpanVal(td, name) { - return parseInt(td.getAttribute(name) || 1); - } - - /** - * Table Grid class. - */ - function TableGrid(table, dom, selection) { - var grid, startPos, endPos, selectedCell; - - buildGrid(); - selectedCell = dom.getParent(selection.getStart(), 'th,td'); - if (selectedCell) { - startPos = getPos(selectedCell); - endPos = findEndPos(); - selectedCell = getCell(startPos.x, startPos.y); - } - - function cloneNode(node, children) { - node = node.cloneNode(children); - node.removeAttribute('id'); - - return node; - } - - function buildGrid() { - var startY = 0; - - grid = []; - - each(['thead', 'tbody', 'tfoot'], function(part) { - var rows = dom.select('> ' + part + ' tr', table); - - each(rows, function(tr, y) { - y += startY; - - each(dom.select('> td, > th', tr), function(td, x) { - var x2, y2, rowspan, colspan; - - // Skip over existing cells produced by rowspan - if (grid[y]) { - while (grid[y][x]) - x++; - } - - // Get col/rowspan from cell - rowspan = getSpanVal(td, 'rowspan'); - colspan = getSpanVal(td, 'colspan'); - - // Fill out rowspan/colspan right and down - for (y2 = y; y2 < y + rowspan; y2++) { - if (!grid[y2]) - grid[y2] = []; - - for (x2 = x; x2 < x + colspan; x2++) { - grid[y2][x2] = { - part : part, - real : y2 == y && x2 == x, - elm : td, - rowspan : rowspan, - colspan : colspan - }; - } - } - }); - }); - - startY += rows.length; - }); - }; - - function getCell(x, y) { - var row; - - row = grid[y]; - if (row) - return row[x]; - }; - - function setSpanVal(td, name, val) { - if (td) { - val = parseInt(val); - - if (val === 1) - td.removeAttribute(name, 1); - else - td.setAttribute(name, val, 1); - } - } - - function isCellSelected(cell) { - return cell && (dom.hasClass(cell.elm, 'mceSelected') || cell == selectedCell); - }; - - function getSelectedRows() { - var rows = []; - - each(table.rows, function(row) { - each(row.cells, function(cell) { - if (dom.hasClass(cell, 'mceSelected') || cell == selectedCell.elm) { - rows.push(row); - return false; - } - }); - }); - - return rows; - }; - - function deleteTable() { - var rng = dom.createRng(); - - rng.setStartAfter(table); - rng.setEndAfter(table); - - selection.setRng(rng); - - dom.remove(table); - }; - - function cloneCell(cell) { - var formatNode; - - // Clone formats - tinymce.walk(cell, function(node) { - var curNode; - - if (node.nodeType == 3) { - each(dom.getParents(node.parentNode, null, cell).reverse(), function(node) { - node = cloneNode(node, false); - - if (!formatNode) - formatNode = curNode = node; - else if (curNode) - curNode.appendChild(node); - - curNode = node; - }); - - // Add something to the inner node - if (curNode) - curNode.innerHTML = tinymce.isIE ? ' ' : '
                                            '; - - return false; - } - }, 'childNodes'); - - cell = cloneNode(cell, false); - setSpanVal(cell, 'rowSpan', 1); - setSpanVal(cell, 'colSpan', 1); - - if (formatNode) { - cell.appendChild(formatNode); - } else { - if (!tinymce.isIE) - cell.innerHTML = '
                                            '; - } - - return cell; - }; - - function cleanup() { - var rng = dom.createRng(); - - // Empty rows - each(dom.select('tr', table), function(tr) { - if (tr.cells.length == 0) - dom.remove(tr); - }); - - // Empty table - if (dom.select('tr', table).length == 0) { - rng.setStartAfter(table); - rng.setEndAfter(table); - selection.setRng(rng); - dom.remove(table); - return; - } - - // Empty header/body/footer - each(dom.select('thead,tbody,tfoot', table), function(part) { - if (part.rows.length == 0) - dom.remove(part); - }); - - // Restore selection to start position if it still exists - buildGrid(); - - // Restore the selection to the closest table position - row = grid[Math.min(grid.length - 1, startPos.y)]; - if (row) { - selection.select(row[Math.min(row.length - 1, startPos.x)].elm, true); - selection.collapse(true); - } - }; - - function fillLeftDown(x, y, rows, cols) { - var tr, x2, r, c, cell; - - tr = grid[y][x].elm.parentNode; - for (r = 1; r <= rows; r++) { - tr = dom.getNext(tr, 'tr'); - - if (tr) { - // Loop left to find real cell - for (x2 = x; x2 >= 0; x2--) { - cell = grid[y + r][x2].elm; - - if (cell.parentNode == tr) { - // Append clones after - for (c = 1; c <= cols; c++) - dom.insertAfter(cloneCell(cell), cell); - - break; - } - } - - if (x2 == -1) { - // Insert nodes before first cell - for (c = 1; c <= cols; c++) - tr.insertBefore(cloneCell(tr.cells[0]), tr.cells[0]); - } - } - } - }; - - function split() { - each(grid, function(row, y) { - each(row, function(cell, x) { - var colSpan, rowSpan, newCell, i; - - if (isCellSelected(cell)) { - cell = cell.elm; - colSpan = getSpanVal(cell, 'colspan'); - rowSpan = getSpanVal(cell, 'rowspan'); - - if (colSpan > 1 || rowSpan > 1) { - setSpanVal(cell, 'rowSpan', 1); - setSpanVal(cell, 'colSpan', 1); - - // Insert cells right - for (i = 0; i < colSpan - 1; i++) - dom.insertAfter(cloneCell(cell), cell); - - fillLeftDown(x, y, rowSpan - 1, colSpan); - } - } - }); - }); - }; - - function merge(cell, cols, rows) { - var startX, startY, endX, endY, x, y, startCell, endCell, cell, children, count; - - // Use specified cell and cols/rows - if (cell) { - pos = getPos(cell); - startX = pos.x; - startY = pos.y; - endX = startX + (cols - 1); - endY = startY + (rows - 1); - } else { - startPos = endPos = null; - - // Calculate start/end pos by checking for selected cells in grid works better with context menu - each(grid, function(row, y) { - each(row, function(cell, x) { - if (isCellSelected(cell)) { - if (!startPos) { - startPos = {x: x, y: y}; - } - - endPos = {x: x, y: y}; - } - }); - }); - - // Use selection - startX = startPos.x; - startY = startPos.y; - endX = endPos.x; - endY = endPos.y; - } - - // Find start/end cells - startCell = getCell(startX, startY); - endCell = getCell(endX, endY); - - // Check if the cells exists and if they are of the same part for example tbody = tbody - if (startCell && endCell && startCell.part == endCell.part) { - // Split and rebuild grid - split(); - buildGrid(); - - // Set row/col span to start cell - startCell = getCell(startX, startY).elm; - setSpanVal(startCell, 'colSpan', (endX - startX) + 1); - setSpanVal(startCell, 'rowSpan', (endY - startY) + 1); - - // Remove other cells and add it's contents to the start cell - for (y = startY; y <= endY; y++) { - for (x = startX; x <= endX; x++) { - if (!grid[y] || !grid[y][x]) - continue; - - cell = grid[y][x].elm; - - if (cell != startCell) { - // Move children to startCell - children = tinymce.grep(cell.childNodes); - each(children, function(node) { - startCell.appendChild(node); - }); - - // Remove bogus nodes if there is children in the target cell - if (children.length) { - children = tinymce.grep(startCell.childNodes); - count = 0; - each(children, function(node) { - if (node.nodeName == 'BR' && dom.getAttrib(node, 'data-mce-bogus') && count++ < children.length - 1) - startCell.removeChild(node); - }); - } - - // Remove cell - dom.remove(cell); - } - } - } - - // Remove empty rows etc and restore caret location - cleanup(); - } - }; - - function insertRow(before) { - var posY, cell, lastCell, x, rowElm, newRow, newCell, otherCell, rowSpan; - - // Find first/last row - each(grid, function(row, y) { - each(row, function(cell, x) { - if (isCellSelected(cell)) { - cell = cell.elm; - rowElm = cell.parentNode; - newRow = cloneNode(rowElm, false); - posY = y; - - if (before) - return false; - } - }); - - if (before) - return !posY; - }); - - for (x = 0; x < grid[0].length; x++) { - // Cell not found could be because of an invalid table structure - if (!grid[posY][x]) - continue; - - cell = grid[posY][x].elm; - - if (cell != lastCell) { - if (!before) { - rowSpan = getSpanVal(cell, 'rowspan'); - if (rowSpan > 1) { - setSpanVal(cell, 'rowSpan', rowSpan + 1); - continue; - } - } else { - // Check if cell above can be expanded - if (posY > 0 && grid[posY - 1][x]) { - otherCell = grid[posY - 1][x].elm; - rowSpan = getSpanVal(otherCell, 'rowSpan'); - if (rowSpan > 1) { - setSpanVal(otherCell, 'rowSpan', rowSpan + 1); - continue; - } - } - } - - // Insert new cell into new row - newCell = cloneCell(cell); - setSpanVal(newCell, 'colSpan', cell.colSpan); - - newRow.appendChild(newCell); - - lastCell = cell; - } - } - - if (newRow.hasChildNodes()) { - if (!before) - dom.insertAfter(newRow, rowElm); - else - rowElm.parentNode.insertBefore(newRow, rowElm); - } - }; - - function insertCol(before) { - var posX, lastCell; - - // Find first/last column - each(grid, function(row, y) { - each(row, function(cell, x) { - if (isCellSelected(cell)) { - posX = x; - - if (before) - return false; - } - }); - - if (before) - return !posX; - }); - - each(grid, function(row, y) { - var cell, rowSpan, colSpan; - - if (!row[posX]) - return; - - cell = row[posX].elm; - if (cell != lastCell) { - colSpan = getSpanVal(cell, 'colspan'); - rowSpan = getSpanVal(cell, 'rowspan'); - - if (colSpan == 1) { - if (!before) { - dom.insertAfter(cloneCell(cell), cell); - fillLeftDown(posX, y, rowSpan - 1, colSpan); - } else { - cell.parentNode.insertBefore(cloneCell(cell), cell); - fillLeftDown(posX, y, rowSpan - 1, colSpan); - } - } else - setSpanVal(cell, 'colSpan', cell.colSpan + 1); - - lastCell = cell; - } - }); - }; - - function deleteCols() { - var cols = []; - - // Get selected column indexes - each(grid, function(row, y) { - each(row, function(cell, x) { - if (isCellSelected(cell) && tinymce.inArray(cols, x) === -1) { - each(grid, function(row) { - var cell = row[x].elm, colSpan; - - colSpan = getSpanVal(cell, 'colSpan'); - - if (colSpan > 1) - setSpanVal(cell, 'colSpan', colSpan - 1); - else - dom.remove(cell); - }); - - cols.push(x); - } - }); - }); - - cleanup(); - }; - - function deleteRows() { - var rows; - - function deleteRow(tr) { - var nextTr, pos, lastCell; - - nextTr = dom.getNext(tr, 'tr'); - - // Move down row spanned cells - each(tr.cells, function(cell) { - var rowSpan = getSpanVal(cell, 'rowSpan'); - - if (rowSpan > 1) { - setSpanVal(cell, 'rowSpan', rowSpan - 1); - pos = getPos(cell); - fillLeftDown(pos.x, pos.y, 1, 1); - } - }); - - // Delete cells - pos = getPos(tr.cells[0]); - each(grid[pos.y], function(cell) { - var rowSpan; - - cell = cell.elm; - - if (cell != lastCell) { - rowSpan = getSpanVal(cell, 'rowSpan'); - - if (rowSpan <= 1) - dom.remove(cell); - else - setSpanVal(cell, 'rowSpan', rowSpan - 1); - - lastCell = cell; - } - }); - }; - - // Get selected rows and move selection out of scope - rows = getSelectedRows(); - - // Delete all selected rows - each(rows.reverse(), function(tr) { - deleteRow(tr); - }); - - cleanup(); - }; - - function cutRows() { - var rows = getSelectedRows(); - - dom.remove(rows); - cleanup(); - - return rows; - }; - - function copyRows() { - var rows = getSelectedRows(); - - each(rows, function(row, i) { - rows[i] = cloneNode(row, true); - }); - - return rows; - }; - - function pasteRows(rows, before) { - // If we don't have any rows in the clipboard, return immediately - if(!rows) - return; - - var selectedRows = getSelectedRows(), - targetRow = selectedRows[before ? 0 : selectedRows.length - 1], - targetCellCount = targetRow.cells.length; - - // Calc target cell count - each(grid, function(row) { - var match; - - targetCellCount = 0; - each(row, function(cell, x) { - if (cell.real) - targetCellCount += cell.colspan; - - if (cell.elm.parentNode == targetRow) - match = 1; - }); - - if (match) - return false; - }); - - if (!before) - rows.reverse(); - - each(rows, function(row) { - var cellCount = row.cells.length, cell; - - // Remove col/rowspans - for (i = 0; i < cellCount; i++) { - cell = row.cells[i]; - setSpanVal(cell, 'colSpan', 1); - setSpanVal(cell, 'rowSpan', 1); - } - - // Needs more cells - for (i = cellCount; i < targetCellCount; i++) - row.appendChild(cloneCell(row.cells[cellCount - 1])); - - // Needs less cells - for (i = targetCellCount; i < cellCount; i++) - dom.remove(row.cells[i]); - - // Add before/after - if (before) - targetRow.parentNode.insertBefore(row, targetRow); - else - dom.insertAfter(row, targetRow); - }); - - // Remove current selection - dom.removeClass(dom.select('td.mceSelected,th.mceSelected'), 'mceSelected'); - }; - - function getPos(target) { - var pos; - - each(grid, function(row, y) { - each(row, function(cell, x) { - if (cell.elm == target) { - pos = {x : x, y : y}; - return false; - } - }); - - return !pos; - }); - - return pos; - }; - - function setStartCell(cell) { - startPos = getPos(cell); - }; - - function findEndPos() { - var pos, maxX, maxY; - - maxX = maxY = 0; - - each(grid, function(row, y) { - each(row, function(cell, x) { - var colSpan, rowSpan; - - if (isCellSelected(cell)) { - cell = grid[y][x]; - - if (x > maxX) - maxX = x; - - if (y > maxY) - maxY = y; - - if (cell.real) { - colSpan = cell.colspan - 1; - rowSpan = cell.rowspan - 1; - - if (colSpan) { - if (x + colSpan > maxX) - maxX = x + colSpan; - } - - if (rowSpan) { - if (y + rowSpan > maxY) - maxY = y + rowSpan; - } - } - } - }); - }); - - return {x : maxX, y : maxY}; - }; - - function setEndCell(cell) { - var startX, startY, endX, endY, maxX, maxY, colSpan, rowSpan; - - endPos = getPos(cell); - - if (startPos && endPos) { - // Get start/end positions - startX = Math.min(startPos.x, endPos.x); - startY = Math.min(startPos.y, endPos.y); - endX = Math.max(startPos.x, endPos.x); - endY = Math.max(startPos.y, endPos.y); - - // Expand end positon to include spans - maxX = endX; - maxY = endY; - - // Expand startX - for (y = startY; y <= maxY; y++) { - cell = grid[y][startX]; - - if (!cell.real) { - if (startX - (cell.colspan - 1) < startX) - startX -= cell.colspan - 1; - } - } - - // Expand startY - for (x = startX; x <= maxX; x++) { - cell = grid[startY][x]; - - if (!cell.real) { - if (startY - (cell.rowspan - 1) < startY) - startY -= cell.rowspan - 1; - } - } - - // Find max X, Y - for (y = startY; y <= endY; y++) { - for (x = startX; x <= endX; x++) { - cell = grid[y][x]; - - if (cell.real) { - colSpan = cell.colspan - 1; - rowSpan = cell.rowspan - 1; - - if (colSpan) { - if (x + colSpan > maxX) - maxX = x + colSpan; - } - - if (rowSpan) { - if (y + rowSpan > maxY) - maxY = y + rowSpan; - } - } - } - } - - // Remove current selection - dom.removeClass(dom.select('td.mceSelected,th.mceSelected'), 'mceSelected'); - - // Add new selection - for (y = startY; y <= maxY; y++) { - for (x = startX; x <= maxX; x++) { - if (grid[y][x]) - dom.addClass(grid[y][x].elm, 'mceSelected'); - } - } - } - }; - - // Expose to public - tinymce.extend(this, { - deleteTable : deleteTable, - split : split, - merge : merge, - insertRow : insertRow, - insertCol : insertCol, - deleteCols : deleteCols, - deleteRows : deleteRows, - cutRows : cutRows, - copyRows : copyRows, - pasteRows : pasteRows, - getPos : getPos, - setStartCell : setStartCell, - setEndCell : setEndCell - }); - }; - - tinymce.create('tinymce.plugins.TablePlugin', { - init : function(ed, url) { - var winMan, clipboardRows, hasCellSelection = true; // Might be selected cells on reload - - function createTableGrid(node) { - var selection = ed.selection, tblElm = ed.dom.getParent(node || selection.getNode(), 'table'); - - if (tblElm) - return new TableGrid(tblElm, ed.dom, selection); - }; - - function cleanup() { - // Restore selection possibilities - ed.getBody().style.webkitUserSelect = ''; - - if (hasCellSelection) { - ed.dom.removeClass(ed.dom.select('td.mceSelected,th.mceSelected'), 'mceSelected'); - hasCellSelection = false; - } - }; - - // Register buttons - each([ - ['table', 'table.desc', 'mceInsertTable', true], - ['delete_table', 'table.del', 'mceTableDelete'], - ['delete_col', 'table.delete_col_desc', 'mceTableDeleteCol'], - ['delete_row', 'table.delete_row_desc', 'mceTableDeleteRow'], - ['col_after', 'table.col_after_desc', 'mceTableInsertColAfter'], - ['col_before', 'table.col_before_desc', 'mceTableInsertColBefore'], - ['row_after', 'table.row_after_desc', 'mceTableInsertRowAfter'], - ['row_before', 'table.row_before_desc', 'mceTableInsertRowBefore'], - ['row_props', 'table.row_desc', 'mceTableRowProps', true], - ['cell_props', 'table.cell_desc', 'mceTableCellProps', true], - ['split_cells', 'table.split_cells_desc', 'mceTableSplitCells', true], - ['merge_cells', 'table.merge_cells_desc', 'mceTableMergeCells', true] - ], function(c) { - ed.addButton(c[0], {title : c[1], cmd : c[2], ui : c[3]}); - }); - - // Select whole table is a table border is clicked - if (!tinymce.isIE) { - ed.onClick.add(function(ed, e) { - e = e.target; - - if (e.nodeName === 'TABLE') { - ed.selection.select(e); - ed.nodeChanged(); - } - }); - } - - ed.onPreProcess.add(function(ed, args) { - var nodes, i, node, dom = ed.dom, value; - - nodes = dom.select('table', args.node); - i = nodes.length; - while (i--) { - node = nodes[i]; - dom.setAttrib(node, 'data-mce-style', ''); - - if ((value = dom.getAttrib(node, 'width'))) { - dom.setStyle(node, 'width', value); - dom.setAttrib(node, 'width', ''); - } - - if ((value = dom.getAttrib(node, 'height'))) { - dom.setStyle(node, 'height', value); - dom.setAttrib(node, 'height', ''); - } - } - }); - - // Handle node change updates - ed.onNodeChange.add(function(ed, cm, n) { - var p; - - n = ed.selection.getStart(); - p = ed.dom.getParent(n, 'td,th,caption'); - cm.setActive('table', n.nodeName === 'TABLE' || !!p); - - // Disable table tools if we are in caption - if (p && p.nodeName === 'CAPTION') - p = 0; - - cm.setDisabled('delete_table', !p); - cm.setDisabled('delete_col', !p); - cm.setDisabled('delete_table', !p); - cm.setDisabled('delete_row', !p); - cm.setDisabled('col_after', !p); - cm.setDisabled('col_before', !p); - cm.setDisabled('row_after', !p); - cm.setDisabled('row_before', !p); - cm.setDisabled('row_props', !p); - cm.setDisabled('cell_props', !p); - cm.setDisabled('split_cells', !p); - cm.setDisabled('merge_cells', !p); - }); - - ed.onInit.add(function(ed) { - var startTable, startCell, dom = ed.dom, tableGrid; - - winMan = ed.windowManager; - - // Add cell selection logic - ed.onMouseDown.add(function(ed, e) { - if (e.button != 2) { - cleanup(); - - startCell = dom.getParent(e.target, 'td,th'); - startTable = dom.getParent(startCell, 'table'); - } - }); - - dom.bind(ed.getDoc(), 'mouseover', function(e) { - var sel, table, target = e.target; - - if (startCell && (tableGrid || target != startCell) && (target.nodeName == 'TD' || target.nodeName == 'TH')) { - table = dom.getParent(target, 'table'); - if (table == startTable) { - if (!tableGrid) { - tableGrid = createTableGrid(table); - tableGrid.setStartCell(startCell); - - ed.getBody().style.webkitUserSelect = 'none'; - } - - tableGrid.setEndCell(target); - hasCellSelection = true; - } - - // Remove current selection - sel = ed.selection.getSel(); - - try { - if (sel.removeAllRanges) - sel.removeAllRanges(); - else - sel.empty(); - } catch (ex) { - // IE9 might throw errors here - } - - e.preventDefault(); - } - }); - - ed.onMouseUp.add(function(ed, e) { - var rng, sel = ed.selection, selectedCells, nativeSel = sel.getSel(), walker, node, lastNode, endNode; - - // Move selection to startCell - if (startCell) { - if (tableGrid) - ed.getBody().style.webkitUserSelect = ''; - - function setPoint(node, start) { - var walker = new tinymce.dom.TreeWalker(node, node); - - do { - // Text node - if (node.nodeType == 3 && tinymce.trim(node.nodeValue).length != 0) { - if (start) - rng.setStart(node, 0); - else - rng.setEnd(node, node.nodeValue.length); - - return; - } - - // BR element - if (node.nodeName == 'BR') { - if (start) - rng.setStartBefore(node); - else - rng.setEndBefore(node); - - return; - } - } while (node = (start ? walker.next() : walker.prev())); - } - - // Try to expand text selection as much as we can only Gecko supports cell selection - selectedCells = dom.select('td.mceSelected,th.mceSelected'); - if (selectedCells.length > 0) { - rng = dom.createRng(); - node = selectedCells[0]; - endNode = selectedCells[selectedCells.length - 1]; - rng.setStartBefore(node); - rng.setEndAfter(node); - - setPoint(node, 1); - walker = new tinymce.dom.TreeWalker(node, dom.getParent(selectedCells[0], 'table')); - - do { - if (node.nodeName == 'TD' || node.nodeName == 'TH') { - if (!dom.hasClass(node, 'mceSelected')) - break; - - lastNode = node; - } - } while (node = walker.next()); - - setPoint(lastNode); - - sel.setRng(rng); - } - - ed.nodeChanged(); - startCell = tableGrid = startTable = null; - } - }); - - ed.onKeyUp.add(function(ed, e) { - cleanup(); - }); - - ed.onKeyDown.add(function (ed, e) { - fixTableCellSelection(ed); - }); - - ed.onMouseDown.add(function (ed, e) { - if (e.button != 2) { - fixTableCellSelection(ed); - } - }); - function tableCellSelected(ed, rng, n, currentCell) { - // The decision of when a table cell is selected is somewhat involved. The fact that this code is - // required is actually a pointer to the root cause of this bug. A cell is selected when the start - // and end offsets are 0, the start container is a text, and the selection node is either a TR (most cases) - // or the parent of the table (in the case of the selection containing the last cell of a table). - var TEXT_NODE = 3, table = ed.dom.getParent(rng.startContainer, 'TABLE'), - tableParent, allOfCellSelected, tableCellSelection; - if (table) - tableParent = table.parentNode; - allOfCellSelected =rng.startContainer.nodeType == TEXT_NODE && - rng.startOffset == 0 && - rng.endOffset == 0 && - currentCell && - (n.nodeName=="TR" || n==tableParent); - tableCellSelection = (n.nodeName=="TD"||n.nodeName=="TH")&& !currentCell; - return allOfCellSelected || tableCellSelection; - // return false; - } - - // this nasty hack is here to work around some WebKit selection bugs. - function fixTableCellSelection(ed) { - if (!tinymce.isWebKit) - return; - - var rng = ed.selection.getRng(); - var n = ed.selection.getNode(); - var currentCell = ed.dom.getParent(rng.startContainer, 'TD,TH'); - - if (!tableCellSelected(ed, rng, n, currentCell)) - return; - if (!currentCell) { - currentCell=n; - } - - // Get the very last node inside the table cell - var end = currentCell.lastChild; - while (end.lastChild) - end = end.lastChild; - - // Select the entire table cell. Nothing outside of the table cell should be selected. - rng.setEnd(end, end.nodeValue.length); - ed.selection.setRng(rng); - } - ed.plugins.table.fixTableCellSelection=fixTableCellSelection; - - // Add context menu - if (ed && ed.plugins.contextmenu) { - ed.plugins.contextmenu.onContextMenu.add(function(th, m, e) { - var sm, se = ed.selection, el = se.getNode() || ed.getBody(); - - if (ed.dom.getParent(e, 'td') || ed.dom.getParent(e, 'th') || ed.dom.select('td.mceSelected,th.mceSelected').length) { - m.removeAll(); - - if (el.nodeName == 'A' && !ed.dom.getAttrib(el, 'name')) { - m.add({title : 'advanced.link_desc', icon : 'link', cmd : ed.plugins.advlink ? 'mceAdvLink' : 'mceLink', ui : true}); - m.add({title : 'advanced.unlink_desc', icon : 'unlink', cmd : 'UnLink'}); - m.addSeparator(); - } - - if (el.nodeName == 'IMG' && el.className.indexOf('mceItem') == -1) { - m.add({title : 'advanced.image_desc', icon : 'image', cmd : ed.plugins.advimage ? 'mceAdvImage' : 'mceImage', ui : true}); - m.addSeparator(); - } - - m.add({title : 'table.desc', icon : 'table', cmd : 'mceInsertTable', value : {action : 'insert'}}); - m.add({title : 'table.props_desc', icon : 'table_props', cmd : 'mceInsertTable'}); - m.add({title : 'table.del', icon : 'delete_table', cmd : 'mceTableDelete'}); - m.addSeparator(); - - // Cell menu - sm = m.addMenu({title : 'table.cell'}); - sm.add({title : 'table.cell_desc', icon : 'cell_props', cmd : 'mceTableCellProps'}); - sm.add({title : 'table.split_cells_desc', icon : 'split_cells', cmd : 'mceTableSplitCells'}); - sm.add({title : 'table.merge_cells_desc', icon : 'merge_cells', cmd : 'mceTableMergeCells'}); - - // Row menu - sm = m.addMenu({title : 'table.row'}); - sm.add({title : 'table.row_desc', icon : 'row_props', cmd : 'mceTableRowProps'}); - sm.add({title : 'table.row_before_desc', icon : 'row_before', cmd : 'mceTableInsertRowBefore'}); - sm.add({title : 'table.row_after_desc', icon : 'row_after', cmd : 'mceTableInsertRowAfter'}); - sm.add({title : 'table.delete_row_desc', icon : 'delete_row', cmd : 'mceTableDeleteRow'}); - sm.addSeparator(); - sm.add({title : 'table.cut_row_desc', icon : 'cut', cmd : 'mceTableCutRow'}); - sm.add({title : 'table.copy_row_desc', icon : 'copy', cmd : 'mceTableCopyRow'}); - sm.add({title : 'table.paste_row_before_desc', icon : 'paste', cmd : 'mceTablePasteRowBefore'}).setDisabled(!clipboardRows); - sm.add({title : 'table.paste_row_after_desc', icon : 'paste', cmd : 'mceTablePasteRowAfter'}).setDisabled(!clipboardRows); - - // Column menu - sm = m.addMenu({title : 'table.col'}); - sm.add({title : 'table.col_before_desc', icon : 'col_before', cmd : 'mceTableInsertColBefore'}); - sm.add({title : 'table.col_after_desc', icon : 'col_after', cmd : 'mceTableInsertColAfter'}); - sm.add({title : 'table.delete_col_desc', icon : 'delete_col', cmd : 'mceTableDeleteCol'}); - } else - m.add({title : 'table.desc', icon : 'table', cmd : 'mceInsertTable'}); - }); - } - - // Fix to allow navigating up and down in a table in WebKit browsers. - if (tinymce.isWebKit) { - function moveSelection(ed, e) { - var VK = tinymce.VK; - var key = e.keyCode; - - function handle(upBool, sourceNode, event) { - var siblingDirection = upBool ? 'previousSibling' : 'nextSibling'; - var currentRow = ed.dom.getParent(sourceNode, 'tr'); - var siblingRow = currentRow[siblingDirection]; - - if (siblingRow) { - moveCursorToRow(ed, sourceNode, siblingRow, upBool); - tinymce.dom.Event.cancel(event); - return true; - } else { - var tableNode = ed.dom.getParent(currentRow, 'table'); - var middleNode = currentRow.parentNode; - var parentNodeName = middleNode.nodeName.toLowerCase(); - if (parentNodeName === 'tbody' || parentNodeName === (upBool ? 'tfoot' : 'thead')) { - var targetParent = getTargetParent(upBool, tableNode, middleNode, 'tbody'); - if (targetParent !== null) { - return moveToRowInTarget(upBool, targetParent, sourceNode, event); - } - } - return escapeTable(upBool, currentRow, siblingDirection, tableNode, event); - } - } - - function getTargetParent(upBool, topNode, secondNode, nodeName) { - var tbodies = ed.dom.select('>' + nodeName, topNode); - var position = tbodies.indexOf(secondNode); - if (upBool && position === 0 || !upBool && position === tbodies.length - 1) { - return getFirstHeadOrFoot(upBool, topNode); - } else if (position === -1) { - var topOrBottom = secondNode.tagName.toLowerCase() === 'thead' ? 0 : tbodies.length - 1; - return tbodies[topOrBottom]; - } else { - return tbodies[position + (upBool ? -1 : 1)]; - } - } - - function getFirstHeadOrFoot(upBool, parent) { - var tagName = upBool ? 'thead' : 'tfoot'; - var headOrFoot = ed.dom.select('>' + tagName, parent); - return headOrFoot.length !== 0 ? headOrFoot[0] : null; - } - - function moveToRowInTarget(upBool, targetParent, sourceNode, event) { - var targetRow = getChildForDirection(targetParent, upBool); - targetRow && moveCursorToRow(ed, sourceNode, targetRow, upBool); - tinymce.dom.Event.cancel(event); - return true; - } - - function escapeTable(upBool, currentRow, siblingDirection, table, event) { - var tableSibling = table[siblingDirection]; - if (tableSibling) { - moveCursorToStartOfElement(tableSibling); - return true; - } else { - var parentCell = ed.dom.getParent(table, 'td,th'); - if (parentCell) { - return handle(upBool, parentCell, event); - } else { - var backUpSibling = getChildForDirection(currentRow, !upBool); - moveCursorToStartOfElement(backUpSibling); - return tinymce.dom.Event.cancel(event); - } - } - } - - function getChildForDirection(parent, up) { - var child = parent && parent[up ? 'lastChild' : 'firstChild']; - // BR is not a valid table child to return in this case we return the table cell - return child && child.nodeName === 'BR' ? ed.dom.getParent(child, 'td,th') : child; - } - - function moveCursorToStartOfElement(n) { - ed.selection.setCursorLocation(n, 0); - } - - function isVerticalMovement() { - return key == VK.UP || key == VK.DOWN; - } - - function isInTable(ed) { - var node = ed.selection.getNode(); - var currentRow = ed.dom.getParent(node, 'tr'); - return currentRow !== null; - } - - function columnIndex(column) { - var colIndex = 0; - var c = column; - while (c.previousSibling) { - c = c.previousSibling; - colIndex = colIndex + getSpanVal(c, "colspan"); - } - return colIndex; - } - - function findColumn(rowElement, columnIndex) { - var c = 0; - var r = 0; - each(rowElement.children, function(cell, i) { - c = c + getSpanVal(cell, "colspan"); - r = i; - if (c > columnIndex) - return false; - }); - return r; - } - - function moveCursorToRow(ed, node, row, upBool) { - var srcColumnIndex = columnIndex(ed.dom.getParent(node, 'td,th')); - var tgtColumnIndex = findColumn(row, srcColumnIndex); - var tgtNode = row.childNodes[tgtColumnIndex]; - var rowCellTarget = getChildForDirection(tgtNode, upBool); - moveCursorToStartOfElement(rowCellTarget || tgtNode); - } - - function shouldFixCaret(preBrowserNode) { - var newNode = ed.selection.getNode(); - var newParent = ed.dom.getParent(newNode, 'td,th'); - var oldParent = ed.dom.getParent(preBrowserNode, 'td,th'); - return newParent && newParent !== oldParent && checkSameParentTable(newParent, oldParent) - } - - function checkSameParentTable(nodeOne, NodeTwo) { - return ed.dom.getParent(nodeOne, 'TABLE') === ed.dom.getParent(NodeTwo, 'TABLE'); - } - - if (isVerticalMovement() && isInTable(ed)) { - var preBrowserNode = ed.selection.getNode(); - setTimeout(function() { - if (shouldFixCaret(preBrowserNode)) { - handle(!e.shiftKey && key === VK.UP, preBrowserNode, e); - } - }, 0); - } - } - - ed.onKeyDown.add(moveSelection); - } - - // Fixes an issue on Gecko where it's impossible to place the caret behind a table - // This fix will force a paragraph element after the table but only when the forced_root_block setting is enabled - function fixTableCaretPos() { - var last; - - // Skip empty text nodes form the end - for (last = ed.getBody().lastChild; last && last.nodeType == 3 && !last.nodeValue.length; last = last.previousSibling) ; - - if (last && last.nodeName == 'TABLE') { - if (ed.settings.forced_root_block) - ed.dom.add(ed.getBody(), ed.settings.forced_root_block, null, tinymce.isIE ? ' ' : '
                                            '); - else - ed.dom.add(ed.getBody(), 'br', {'data-mce-bogus': '1'}); - } - }; - - // Fixes an bug where it's impossible to place the caret before a table in Gecko - // this fix solves it by detecting when the caret is at the beginning of such a table - // and then manually moves the caret infront of the table - if (tinymce.isGecko) { - ed.onKeyDown.add(function(ed, e) { - var rng, table, dom = ed.dom; - - // On gecko it's not possible to place the caret before a table - if (e.keyCode == 37 || e.keyCode == 38) { - rng = ed.selection.getRng(); - table = dom.getParent(rng.startContainer, 'table'); - - if (table && ed.getBody().firstChild == table) { - if (isAtStart(rng, table)) { - rng = dom.createRng(); - - rng.setStartBefore(table); - rng.setEndBefore(table); - - ed.selection.setRng(rng); - - e.preventDefault(); - } - } - } - }); - } - - ed.onKeyUp.add(fixTableCaretPos); - ed.onSetContent.add(fixTableCaretPos); - ed.onVisualAid.add(fixTableCaretPos); - - ed.onPreProcess.add(function(ed, o) { - var last = o.node.lastChild; - - if (last && (last.nodeName == "BR" || (last.childNodes.length == 1 && (last.firstChild.nodeName == 'BR' || last.firstChild.nodeValue == '\u00a0'))) && last.previousSibling && last.previousSibling.nodeName == "TABLE") { - ed.dom.remove(last); - } - }); - - - /** - * Fixes bug in Gecko where shift-enter in table cell does not place caret on new line - * - * Removed: Since the new enter logic seems to fix this one. - */ - /* - if (tinymce.isGecko) { - ed.onKeyDown.add(function(ed, e) { - if (e.keyCode === tinymce.VK.ENTER && e.shiftKey) { - var node = ed.selection.getRng().startContainer; - var tableCell = dom.getParent(node, 'td,th'); - if (tableCell) { - var zeroSizedNbsp = ed.getDoc().createTextNode("\uFEFF"); - dom.insertAfter(zeroSizedNbsp, node); - } - } - }); - } - */ - - fixTableCaretPos(); - ed.startContent = ed.getContent({format : 'raw'}); - }); - - // Register action commands - each({ - mceTableSplitCells : function(grid) { - grid.split(); - }, - - mceTableMergeCells : function(grid) { - var rowSpan, colSpan, cell; - - cell = ed.dom.getParent(ed.selection.getNode(), 'th,td'); - if (cell) { - rowSpan = cell.rowSpan; - colSpan = cell.colSpan; - } - - if (!ed.dom.select('td.mceSelected,th.mceSelected').length) { - winMan.open({ - url : url + '/merge_cells.htm', - width : 240 + parseInt(ed.getLang('table.merge_cells_delta_width', 0)), - height : 110 + parseInt(ed.getLang('table.merge_cells_delta_height', 0)), - inline : 1 - }, { - rows : rowSpan, - cols : colSpan, - onaction : function(data) { - grid.merge(cell, data.cols, data.rows); - }, - plugin_url : url - }); - } else - grid.merge(); - }, - - mceTableInsertRowBefore : function(grid) { - grid.insertRow(true); - }, - - mceTableInsertRowAfter : function(grid) { - grid.insertRow(); - }, - - mceTableInsertColBefore : function(grid) { - grid.insertCol(true); - }, - - mceTableInsertColAfter : function(grid) { - grid.insertCol(); - }, - - mceTableDeleteCol : function(grid) { - grid.deleteCols(); - }, - - mceTableDeleteRow : function(grid) { - grid.deleteRows(); - }, - - mceTableCutRow : function(grid) { - clipboardRows = grid.cutRows(); - }, - - mceTableCopyRow : function(grid) { - clipboardRows = grid.copyRows(); - }, - - mceTablePasteRowBefore : function(grid) { - grid.pasteRows(clipboardRows, true); - }, - - mceTablePasteRowAfter : function(grid) { - grid.pasteRows(clipboardRows); - }, - - mceTableDelete : function(grid) { - grid.deleteTable(); - } - }, function(func, name) { - ed.addCommand(name, function() { - var grid = createTableGrid(); - - if (grid) { - func(grid); - ed.execCommand('mceRepaint'); - cleanup(); - } - }); - }); - - // Register dialog commands - each({ - mceInsertTable : function(val) { - winMan.open({ - url : url + '/table.htm', - width : 400 + parseInt(ed.getLang('table.table_delta_width', 0)), - height : 320 + parseInt(ed.getLang('table.table_delta_height', 0)), - inline : 1 - }, { - plugin_url : url, - action : val ? val.action : 0 - }); - }, - - mceTableRowProps : function() { - winMan.open({ - url : url + '/row.htm', - width : 400 + parseInt(ed.getLang('table.rowprops_delta_width', 0)), - height : 295 + parseInt(ed.getLang('table.rowprops_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }, - - mceTableCellProps : function() { - winMan.open({ - url : url + '/cell.htm', - width : 400 + parseInt(ed.getLang('table.cellprops_delta_width', 0)), - height : 295 + parseInt(ed.getLang('table.cellprops_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - } - }, function(func, name) { - ed.addCommand(name, function(ui, val) { - func(val); - }); - }); - } - }); - - // Register plugin - tinymce.PluginManager.add('table', tinymce.plugins.TablePlugin); -})(tinymce); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js b/library/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js deleted file mode 100644 index 02ecf22c8..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js +++ /dev/null @@ -1,319 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var ed; - -function init() { - ed = tinyMCEPopup.editor; - tinyMCEPopup.resizeToInnerSize(); - - document.getElementById('backgroundimagebrowsercontainer').innerHTML = getBrowserHTML('backgroundimagebrowser','backgroundimage','image','table'); - document.getElementById('bordercolor_pickcontainer').innerHTML = getColorPickerHTML('bordercolor_pick','bordercolor'); - document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor') - - var inst = ed; - var tdElm = ed.dom.getParent(ed.selection.getStart(), "td,th"); - var formObj = document.forms[0]; - var st = ed.dom.parseStyle(ed.dom.getAttrib(tdElm, "style")); - - // Get table cell data - var celltype = tdElm.nodeName.toLowerCase(); - var align = ed.dom.getAttrib(tdElm, 'align'); - var valign = ed.dom.getAttrib(tdElm, 'valign'); - var width = trimSize(getStyle(tdElm, 'width', 'width')); - var height = trimSize(getStyle(tdElm, 'height', 'height')); - var bordercolor = convertRGBToHex(getStyle(tdElm, 'bordercolor', 'borderLeftColor')); - var bgcolor = convertRGBToHex(getStyle(tdElm, 'bgcolor', 'backgroundColor')); - var className = ed.dom.getAttrib(tdElm, 'class'); - var backgroundimage = getStyle(tdElm, 'background', 'backgroundImage').replace(new RegExp("url\\(['\"]?([^'\"]*)['\"]?\\)", 'gi'), "$1"); - var id = ed.dom.getAttrib(tdElm, 'id'); - var lang = ed.dom.getAttrib(tdElm, 'lang'); - var dir = ed.dom.getAttrib(tdElm, 'dir'); - var scope = ed.dom.getAttrib(tdElm, 'scope'); - - // Setup form - addClassesToList('class', 'table_cell_styles'); - TinyMCE_EditableSelects.init(); - - if (!ed.dom.hasClass(tdElm, 'mceSelected')) { - formObj.bordercolor.value = bordercolor; - formObj.bgcolor.value = bgcolor; - formObj.backgroundimage.value = backgroundimage; - formObj.width.value = width; - formObj.height.value = height; - formObj.id.value = id; - formObj.lang.value = lang; - formObj.style.value = ed.dom.serializeStyle(st); - selectByValue(formObj, 'align', align); - selectByValue(formObj, 'valign', valign); - selectByValue(formObj, 'class', className, true, true); - selectByValue(formObj, 'celltype', celltype); - selectByValue(formObj, 'dir', dir); - selectByValue(formObj, 'scope', scope); - - // Resize some elements - if (isVisible('backgroundimagebrowser')) - document.getElementById('backgroundimage').style.width = '180px'; - - updateColor('bordercolor_pick', 'bordercolor'); - updateColor('bgcolor_pick', 'bgcolor'); - } else - tinyMCEPopup.dom.hide('action'); -} - -function updateAction() { - var el, inst = ed, tdElm, trElm, tableElm, formObj = document.forms[0]; - - if (!AutoValidator.validate(formObj)) { - tinyMCEPopup.alert(AutoValidator.getErrorMessages(formObj).join('. ') + '.'); - return false; - } - - tinyMCEPopup.restoreSelection(); - el = ed.selection.getStart(); - tdElm = ed.dom.getParent(el, "td,th"); - trElm = ed.dom.getParent(el, "tr"); - tableElm = ed.dom.getParent(el, "table"); - - // Cell is selected - if (ed.dom.hasClass(tdElm, 'mceSelected')) { - // Update all selected sells - tinymce.each(ed.dom.select('td.mceSelected,th.mceSelected'), function(td) { - updateCell(td); - }); - - ed.addVisual(); - ed.nodeChanged(); - inst.execCommand('mceEndUndoLevel'); - tinyMCEPopup.close(); - return; - } - - switch (getSelectValue(formObj, 'action')) { - case "cell": - var celltype = getSelectValue(formObj, 'celltype'); - var scope = getSelectValue(formObj, 'scope'); - - function doUpdate(s) { - if (s) { - updateCell(tdElm); - - ed.addVisual(); - ed.nodeChanged(); - inst.execCommand('mceEndUndoLevel'); - tinyMCEPopup.close(); - } - }; - - if (ed.getParam("accessibility_warnings", 1)) { - if (celltype == "th" && scope == "") - tinyMCEPopup.confirm(ed.getLang('table_dlg.missing_scope', '', true), doUpdate); - else - doUpdate(1); - - return; - } - - updateCell(tdElm); - break; - - case "row": - var cell = trElm.firstChild; - - if (cell.nodeName != "TD" && cell.nodeName != "TH") - cell = nextCell(cell); - - do { - cell = updateCell(cell, true); - } while ((cell = nextCell(cell)) != null); - - break; - - case "col": - var curr, col = 0, cell = trElm.firstChild, rows = tableElm.getElementsByTagName("tr"); - - if (cell.nodeName != "TD" && cell.nodeName != "TH") - cell = nextCell(cell); - - do { - if (cell == tdElm) - break; - col += cell.getAttribute("colspan")?cell.getAttribute("colspan"):1; - } while ((cell = nextCell(cell)) != null); - - for (var i=0; i 0) { - tinymce.each(tableElm.rows, function(tr) { - var i; - - for (i = 0; i < tr.cells.length; i++) { - if (dom.hasClass(tr.cells[i], 'mceSelected')) { - updateRow(tr, true); - return; - } - } - }); - - inst.addVisual(); - inst.nodeChanged(); - inst.execCommand('mceEndUndoLevel'); - tinyMCEPopup.close(); - return; - } - - switch (action) { - case "row": - updateRow(trElm); - break; - - case "all": - var rows = tableElm.getElementsByTagName("tr"); - - for (var i=0; i colLimit) { - tinyMCEPopup.alert(inst.getLang('table_dlg.col_limit').replace(/\{\$cols\}/g, colLimit)); - return false; - } else if (rowLimit && rows > rowLimit) { - tinyMCEPopup.alert(inst.getLang('table_dlg.row_limit').replace(/\{\$rows\}/g, rowLimit)); - return false; - } else if (cellLimit && cols * rows > cellLimit) { - tinyMCEPopup.alert(inst.getLang('table_dlg.cell_limit').replace(/\{\$cells\}/g, cellLimit)); - return false; - } - - // Update table - if (action == "update") { - dom.setAttrib(elm, 'cellPadding', cellpadding, true); - dom.setAttrib(elm, 'cellSpacing', cellspacing, true); - - if (!isCssSize(border)) { - dom.setAttrib(elm, 'border', border); - } else { - dom.setAttrib(elm, 'border', ''); - } - - if (border == '') { - dom.setStyle(elm, 'border-width', ''); - dom.setStyle(elm, 'border', ''); - dom.setAttrib(elm, 'border', ''); - } - - dom.setAttrib(elm, 'align', align); - dom.setAttrib(elm, 'frame', frame); - dom.setAttrib(elm, 'rules', rules); - dom.setAttrib(elm, 'class', className); - dom.setAttrib(elm, 'style', style); - dom.setAttrib(elm, 'id', id); - dom.setAttrib(elm, 'summary', summary); - dom.setAttrib(elm, 'dir', dir); - dom.setAttrib(elm, 'lang', lang); - - capEl = inst.dom.select('caption', elm)[0]; - - if (capEl && !caption) - capEl.parentNode.removeChild(capEl); - - if (!capEl && caption) { - capEl = elm.ownerDocument.createElement('caption'); - - if (!tinymce.isIE) - capEl.innerHTML = '
                                            '; - - elm.insertBefore(capEl, elm.firstChild); - } - - if (width && inst.settings.inline_styles) { - dom.setStyle(elm, 'width', width); - dom.setAttrib(elm, 'width', ''); - } else { - dom.setAttrib(elm, 'width', width, true); - dom.setStyle(elm, 'width', ''); - } - - // Remove these since they are not valid XHTML - dom.setAttrib(elm, 'borderColor', ''); - dom.setAttrib(elm, 'bgColor', ''); - dom.setAttrib(elm, 'background', ''); - - if (height && inst.settings.inline_styles) { - dom.setStyle(elm, 'height', height); - dom.setAttrib(elm, 'height', ''); - } else { - dom.setAttrib(elm, 'height', height, true); - dom.setStyle(elm, 'height', ''); - } - - if (background != '') - elm.style.backgroundImage = "url('" + background + "')"; - else - elm.style.backgroundImage = ''; - -/* if (tinyMCEPopup.getParam("inline_styles")) { - if (width != '') - elm.style.width = getCSSSize(width); - }*/ - - if (bordercolor != "") { - elm.style.borderColor = bordercolor; - elm.style.borderStyle = elm.style.borderStyle == "" ? "solid" : elm.style.borderStyle; - elm.style.borderWidth = cssSize(border); - } else - elm.style.borderColor = ''; - - elm.style.backgroundColor = bgcolor; - elm.style.height = getCSSSize(height); - - inst.addVisual(); - - // Fix for stange MSIE align bug - //elm.outerHTML = elm.outerHTML; - - inst.nodeChanged(); - inst.execCommand('mceEndUndoLevel', false, {}, {skip_undo: true}); - - // Repaint if dimensions changed - if (formObj.width.value != orgTableWidth || formObj.height.value != orgTableHeight) - inst.execCommand('mceRepaint'); - - tinyMCEPopup.close(); - return true; - } - - // Create new table - html += ''); - - tinymce.each('h1,h2,h3,h4,h5,h6,p'.split(','), function(n) { - if (patt) - patt += ','; - - patt += n + ' ._mce_marker'; - }); - - tinymce.each(inst.dom.select(patt), function(n) { - inst.dom.split(inst.dom.getParent(n, 'h1,h2,h3,h4,h5,h6,p'), n); - }); - - dom.setOuterHTML(dom.select('br._mce_marker')[0], html); - } else - inst.execCommand('mceInsertContent', false, html); - - tinymce.each(dom.select('table[data-mce-new]'), function(node) { - var tdorth = dom.select('td,th', node); - - // Fixes a bug in IE where the caret cannot be placed after the table if the table is at the end of the document - if (tinymce.isIE && node.nextSibling == null) { - if (inst.settings.forced_root_block) - dom.insertAfter(dom.create(inst.settings.forced_root_block), node); - else - dom.insertAfter(dom.create('br', {'data-mce-bogus': '1'}), node); - } - - try { - // IE9 might fail to do this selection - inst.selection.setCursorLocation(tdorth[0], 0); - } catch (ex) { - // Ignore - } - - dom.setAttrib(node, 'data-mce-new', ''); - }); - - inst.addVisual(); - inst.execCommand('mceEndUndoLevel', false, {}, {skip_undo: true}); - - tinyMCEPopup.close(); -} - -function makeAttrib(attrib, value) { - var formObj = document.forms[0]; - var valueElm = formObj.elements[attrib]; - - if (typeof(value) == "undefined" || value == null) { - value = ""; - - if (valueElm) - value = valueElm.value; - } - - if (value == "") - return ""; - - // XML encode it - value = value.replace(/&/g, '&'); - value = value.replace(/\"/g, '"'); - value = value.replace(//g, '>'); - - return ' ' + attrib + '="' + value + '"'; -} - -function init() { - tinyMCEPopup.resizeToInnerSize(); - - document.getElementById('backgroundimagebrowsercontainer').innerHTML = getBrowserHTML('backgroundimagebrowser','backgroundimage','image','table'); - document.getElementById('backgroundimagebrowsercontainer').innerHTML = getBrowserHTML('backgroundimagebrowser','backgroundimage','image','table'); - document.getElementById('bordercolor_pickcontainer').innerHTML = getColorPickerHTML('bordercolor_pick','bordercolor'); - document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); - - var cols = 2, rows = 2, border = tinyMCEPopup.getParam('table_default_border', '0'), cellpadding = tinyMCEPopup.getParam('table_default_cellpadding', ''), cellspacing = tinyMCEPopup.getParam('table_default_cellspacing', ''); - var align = "", width = "", height = "", bordercolor = "", bgcolor = "", className = ""; - var id = "", summary = "", style = "", dir = "", lang = "", background = "", bgcolor = "", bordercolor = "", rules = "", frame = ""; - var inst = tinyMCEPopup.editor, dom = inst.dom; - var formObj = document.forms[0]; - var elm = dom.getParent(inst.selection.getNode(), "table"); - - // Hide advanced fields that isn't available in the schema - tinymce.each("summary id rules dir style frame".split(" "), function(name) { - var tr = tinyMCEPopup.dom.getParent(name, "tr") || tinyMCEPopup.dom.getParent("t" + name, "tr"); - - if (tr && !tinyMCEPopup.editor.schema.isValid("table", name)) { - tr.style.display = 'none'; - } - }); - - action = tinyMCEPopup.getWindowArg('action'); - - if (!action) - action = elm ? "update" : "insert"; - - if (elm && action != "insert") { - var rowsAr = elm.rows; - var cols = 0; - for (var i=0; i cols) - cols = rowsAr[i].cells.length; - - cols = cols; - rows = rowsAr.length; - - st = dom.parseStyle(dom.getAttrib(elm, "style")); - border = trimSize(getStyle(elm, 'border', 'borderWidth')); - cellpadding = dom.getAttrib(elm, 'cellpadding', ""); - cellspacing = dom.getAttrib(elm, 'cellspacing', ""); - width = trimSize(getStyle(elm, 'width', 'width')); - height = trimSize(getStyle(elm, 'height', 'height')); - bordercolor = convertRGBToHex(getStyle(elm, 'bordercolor', 'borderLeftColor')); - bgcolor = convertRGBToHex(getStyle(elm, 'bgcolor', 'backgroundColor')); - align = dom.getAttrib(elm, 'align', align); - frame = dom.getAttrib(elm, 'frame'); - rules = dom.getAttrib(elm, 'rules'); - className = tinymce.trim(dom.getAttrib(elm, 'class').replace(/mceItem.+/g, '')); - id = dom.getAttrib(elm, 'id'); - summary = dom.getAttrib(elm, 'summary'); - style = dom.serializeStyle(st); - dir = dom.getAttrib(elm, 'dir'); - lang = dom.getAttrib(elm, 'lang'); - background = getStyle(elm, 'background', 'backgroundImage').replace(new RegExp("url\\(['\"]?([^'\"]*)['\"]?\\)", 'gi'), "$1"); - formObj.caption.checked = elm.getElementsByTagName('caption').length > 0; - - orgTableWidth = width; - orgTableHeight = height; - - action = "update"; - formObj.insert.value = inst.getLang('update'); - } - - addClassesToList('class', "table_styles"); - TinyMCE_EditableSelects.init(); - - // Update form - selectByValue(formObj, 'align', align); - selectByValue(formObj, 'tframe', frame); - selectByValue(formObj, 'rules', rules); - selectByValue(formObj, 'class', className, true, true); - formObj.cols.value = cols; - formObj.rows.value = rows; - formObj.border.value = border; - formObj.cellpadding.value = cellpadding; - formObj.cellspacing.value = cellspacing; - formObj.width.value = width; - formObj.height.value = height; - formObj.bordercolor.value = bordercolor; - formObj.bgcolor.value = bgcolor; - formObj.id.value = id; - formObj.summary.value = summary; - formObj.style.value = style; - formObj.dir.value = dir; - formObj.lang.value = lang; - formObj.backgroundimage.value = background; - - updateColor('bordercolor_pick', 'bordercolor'); - updateColor('bgcolor_pick', 'bgcolor'); - - // Resize some elements - if (isVisible('backgroundimagebrowser')) - document.getElementById('backgroundimage').style.width = '180px'; - - // Disable some fields in update mode - if (action == "update") { - formObj.cols.disabled = true; - formObj.rows.disabled = true; - } -} - -function changedSize() { - var formObj = document.forms[0]; - var st = dom.parseStyle(formObj.style.value); - -/* var width = formObj.width.value; - if (width != "") - st['width'] = tinyMCEPopup.getParam("inline_styles") ? getCSSSize(width) : ""; - else - st['width'] = "";*/ - - var height = formObj.height.value; - if (height != "") - st['height'] = getCSSSize(height); - else - st['height'] = ""; - - formObj.style.value = dom.serializeStyle(st); -} - -function isCssSize(value) { - return /^[0-9.]+(%|in|cm|mm|em|ex|pt|pc|px)$/.test(value); -} - -function cssSize(value, def) { - value = tinymce.trim(value || def); - - if (!isCssSize(value)) { - return parseInt(value, 10) + 'px'; - } - - return value; -} - -function changedBackgroundImage() { - var formObj = document.forms[0]; - var st = dom.parseStyle(formObj.style.value); - - st['background-image'] = "url('" + formObj.backgroundimage.value + "')"; - - formObj.style.value = dom.serializeStyle(st); -} - -function changedBorder() { - var formObj = document.forms[0]; - var st = dom.parseStyle(formObj.style.value); - - // Update border width if the element has a color - if (formObj.border.value != "" && (isCssSize(formObj.border.value) || formObj.bordercolor.value != "")) - st['border-width'] = cssSize(formObj.border.value); - else { - if (!formObj.border.value) { - st['border'] = ''; - st['border-width'] = ''; - } - } - - formObj.style.value = dom.serializeStyle(st); -} - -function changedColor() { - var formObj = document.forms[0]; - var st = dom.parseStyle(formObj.style.value); - - st['background-color'] = formObj.bgcolor.value; - - if (formObj.bordercolor.value != "") { - st['border-color'] = formObj.bordercolor.value; - - // Add border-width if it's missing - if (!st['border-width']) - st['border-width'] = cssSize(formObj.border.value, 1); - } - - formObj.style.value = dom.serializeStyle(st); -} - -function changedStyle() { - var formObj = document.forms[0]; - var st = dom.parseStyle(formObj.style.value); - - if (st['background-image']) - formObj.backgroundimage.value = st['background-image'].replace(new RegExp("url\\(['\"]?([^'\"]*)['\"]?\\)", 'gi'), "$1"); - else - formObj.backgroundimage.value = ''; - - if (st['width']) - formObj.width.value = trimSize(st['width']); - - if (st['height']) - formObj.height.value = trimSize(st['height']); - - if (st['background-color']) { - formObj.bgcolor.value = st['background-color']; - updateColor('bgcolor_pick','bgcolor'); - } - - if (st['border-color']) { - formObj.bordercolor.value = st['border-color']; - updateColor('bordercolor_pick','bordercolor'); - } -} - -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js deleted file mode 100644 index 463e09ee1..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.table_dlg',{"rules_border":"border","rules_box":"box","rules_vsides":"vsides","rules_rhs":"rhs","rules_lhs":"lhs","rules_hsides":"hsides","rules_below":"below","rules_above":"above","rules_void":"void",rules:"Rules","frame_all":"all","frame_cols":"cols","frame_rows":"rows","frame_groups":"groups","frame_none":"none",frame:"Frame",caption:"Table Caption","missing_scope":"Are you sure you want to continue without specifying a scope for this table header cell. Without it, it may be difficult for some users with disabilities to understand the content or data displayed of the table.","cell_limit":"You\'ve exceeded the maximum number of cells of {$cells}.","row_limit":"You\'ve exceeded the maximum number of rows of {$rows}.","col_limit":"You\'ve exceeded the maximum number of columns of {$cols}.",colgroup:"Col Group",rowgroup:"Row Group",scope:"Scope",tfoot:"Footer",tbody:"Body",thead:"Header","row_all":"Update All Rows in Table","row_even":"Update Even Rows in Table","row_odd":"Update Odd Rows in Table","row_row":"Update Current Row","cell_all":"Update All Cells in Table","cell_row":"Update All Cells in Row","cell_cell":"Update Current Cell",th:"Header",td:"Data",summary:"Summary",bgimage:"Background Image",rtl:"Right to Left",ltr:"Left to Right",mime:"Target MIME Type",langcode:"Language Code",langdir:"Language Direction",style:"Style",id:"ID","merge_cells_title":"Merge Table Cells",bgcolor:"Background Color",bordercolor:"Border Color","align_bottom":"Bottom","align_top":"Top",valign:"Vertical Alignment","cell_type":"Cell Type","cell_title":"Table Cell Properties","row_title":"Table Row Properties","align_middle":"Center","align_right":"Right","align_left":"Left","align_default":"Default",align:"Alignment",border:"Border",cellpadding:"Cell Padding",cellspacing:"Cell Spacing",rows:"Rows",cols:"Columns",height:"Height",width:"Width",title:"Insert/Edit Table",rowtype:"Row Type","advanced_props":"Advanced Properties","general_props":"General Properties","advanced_tab":"Advanced","general_tab":"General","cell_col":"Update all cells in column"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm b/library/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm deleted file mode 100644 index d231090e7..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm +++ /dev/null @@ -1,32 +0,0 @@ - - - - {#table_dlg.merge_cells_title} - - - - - - -
                                            -
                                            - {#table_dlg.merge_cells_title} - - - - - - - - - -
                                            :
                                            :
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/row.htm b/library/tinymce/jscripts/tiny_mce/plugins/table/row.htm deleted file mode 100644 index 6ebef2842..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/row.htm +++ /dev/null @@ -1,158 +0,0 @@ - - - - {#table_dlg.row_title} - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#table_dlg.general_props} - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - -
                                            - -
                                            - -
                                            -
                                            -
                                            - -
                                            -
                                            - {#table_dlg.advanced_props} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - - -
                                             
                                            -
                                            -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/table.htm b/library/tinymce/jscripts/tiny_mce/plugins/table/table.htm deleted file mode 100644 index b92fa741e..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/table.htm +++ /dev/null @@ -1,188 +0,0 @@ - - - - {#table_dlg.title} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#table_dlg.general_props} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#table_dlg.advanced_props} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            - -
                                            - -
                                            - -
                                            - - - - - -
                                             
                                            -
                                            - - - - - -
                                             
                                            -
                                            -
                                            -
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/template/blank.htm b/library/tinymce/jscripts/tiny_mce/plugins/template/blank.htm deleted file mode 100644 index ecde53fae..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/template/blank.htm +++ /dev/null @@ -1,12 +0,0 @@ - - - blank_page - - - - - - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/template/css/template.css b/library/tinymce/jscripts/tiny_mce/plugins/template/css/template.css deleted file mode 100644 index 2d23a4938..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/template/css/template.css +++ /dev/null @@ -1,23 +0,0 @@ -#frmbody { - padding: 10px; - background-color: #FFF; - border: 1px solid #CCC; -} - -.frmRow { - margin-bottom: 10px; -} - -#templatesrc { - border: none; - width: 320px; - height: 240px; -} - -.title { - padding-bottom: 5px; -} - -.mceActionPanel { - padding-top: 5px; -} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js deleted file mode 100644 index ebe3c27d7..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var a=tinymce.each;tinymce.create("tinymce.plugins.TemplatePlugin",{init:function(b,c){var d=this;d.editor=b;b.addCommand("mceTemplate",function(e){b.windowManager.open({file:c+"/template.htm",width:b.getParam("template_popup_width",750),height:b.getParam("template_popup_height",600),inline:1},{plugin_url:c})});b.addCommand("mceInsertTemplate",d._insertTemplate,d);b.addButton("template",{title:"template.desc",cmd:"mceTemplate"});b.onPreProcess.add(function(e,g){var f=e.dom;a(f.select("div",g.node),function(h){if(f.hasClass(h,"mceTmpl")){a(f.select("*",h),function(i){if(f.hasClass(i,e.getParam("template_mdate_classes","mdate").replace(/\s+/g,"|"))){i.innerHTML=d._getDateTime(new Date(),e.getParam("template_mdate_format",e.getLang("template.mdate_format")))}});d._replaceVals(h)}})})},getInfo:function(){return{longname:"Template plugin",author:"Moxiecode Systems AB",authorurl:"http://www.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/template",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_insertTemplate:function(i,j){var k=this,g=k.editor,f,c,d=g.dom,b=g.selection.getContent();f=j.content;a(k.editor.getParam("template_replace_values"),function(l,h){if(typeof(l)!="function"){f=f.replace(new RegExp("\\{\\$"+h+"\\}","g"),l)}});c=d.create("div",null,f);n=d.select(".mceTmpl",c);if(n&&n.length>0){c=d.create("div",null);c.appendChild(n[0].cloneNode(true))}function e(l,h){return new RegExp("\\b"+h+"\\b","g").test(l.className)}a(d.select("*",c),function(h){if(e(h,g.getParam("template_cdate_classes","cdate").replace(/\s+/g,"|"))){h.innerHTML=k._getDateTime(new Date(),g.getParam("template_cdate_format",g.getLang("template.cdate_format")))}if(e(h,g.getParam("template_mdate_classes","mdate").replace(/\s+/g,"|"))){h.innerHTML=k._getDateTime(new Date(),g.getParam("template_mdate_format",g.getLang("template.mdate_format")))}if(e(h,g.getParam("template_selected_content_classes","selcontent").replace(/\s+/g,"|"))){h.innerHTML=b}});k._replaceVals(c);g.execCommand("mceInsertContent",false,c.innerHTML);g.addVisual()},_replaceVals:function(c){var d=this.editor.dom,b=this.editor.getParam("template_replace_values");a(d.select("*",c),function(f){a(b,function(g,e){if(d.hasClass(f,e)){if(typeof(b[e])=="function"){b[e](f)}}})})},_getDateTime:function(e,b){if(!b){return""}function c(g,d){var f;g=""+g;if(g.length 0) { - el = dom.create('div', null); - el.appendChild(n[0].cloneNode(true)); - } - - function hasClass(n, c) { - return new RegExp('\\b' + c + '\\b', 'g').test(n.className); - }; - - each(dom.select('*', el), function(n) { - // Replace cdate - if (hasClass(n, ed.getParam('template_cdate_classes', 'cdate').replace(/\s+/g, '|'))) - n.innerHTML = t._getDateTime(new Date(), ed.getParam("template_cdate_format", ed.getLang("template.cdate_format"))); - - // Replace mdate - if (hasClass(n, ed.getParam('template_mdate_classes', 'mdate').replace(/\s+/g, '|'))) - n.innerHTML = t._getDateTime(new Date(), ed.getParam("template_mdate_format", ed.getLang("template.mdate_format"))); - - // Replace selection - if (hasClass(n, ed.getParam('template_selected_content_classes', 'selcontent').replace(/\s+/g, '|'))) - n.innerHTML = sel; - }); - - t._replaceVals(el); - - ed.execCommand('mceInsertContent', false, el.innerHTML); - ed.addVisual(); - }, - - _replaceVals : function(e) { - var dom = this.editor.dom, vl = this.editor.getParam('template_replace_values'); - - each(dom.select('*', e), function(e) { - each(vl, function(v, k) { - if (dom.hasClass(e, k)) { - if (typeof(vl[k]) == 'function') - vl[k](e); - } - }); - }); - }, - - _getDateTime : function(d, fmt) { - if (!fmt) - return ""; - - function addZeros(value, len) { - var i; - - value = "" + value; - - if (value.length < len) { - for (i=0; i<(len-value.length); i++) - value = "0" + value; - } - - return value; - } - - fmt = fmt.replace("%D", "%m/%d/%y"); - fmt = fmt.replace("%r", "%I:%M:%S %p"); - fmt = fmt.replace("%Y", "" + d.getFullYear()); - fmt = fmt.replace("%y", "" + d.getYear()); - fmt = fmt.replace("%m", addZeros(d.getMonth()+1, 2)); - fmt = fmt.replace("%d", addZeros(d.getDate(), 2)); - fmt = fmt.replace("%H", "" + addZeros(d.getHours(), 2)); - fmt = fmt.replace("%M", "" + addZeros(d.getMinutes(), 2)); - fmt = fmt.replace("%S", "" + addZeros(d.getSeconds(), 2)); - fmt = fmt.replace("%I", "" + ((d.getHours() + 11) % 12 + 1)); - fmt = fmt.replace("%p", "" + (d.getHours() < 12 ? "AM" : "PM")); - fmt = fmt.replace("%B", "" + this.editor.getLang("template_months_long").split(',')[d.getMonth()]); - fmt = fmt.replace("%b", "" + this.editor.getLang("template_months_short").split(',')[d.getMonth()]); - fmt = fmt.replace("%A", "" + this.editor.getLang("template_day_long").split(',')[d.getDay()]); - fmt = fmt.replace("%a", "" + this.editor.getLang("template_day_short").split(',')[d.getDay()]); - fmt = fmt.replace("%%", "%"); - - return fmt; - } - }); - - // Register plugin - tinymce.PluginManager.add('template', tinymce.plugins.TemplatePlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/template/js/template.js b/library/tinymce/jscripts/tiny_mce/plugins/template/js/template.js deleted file mode 100644 index bc3045d24..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/template/js/template.js +++ /dev/null @@ -1,106 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var TemplateDialog = { - preInit : function() { - var url = tinyMCEPopup.getParam("template_external_list_url"); - - if (url != null) - document.write(''); - }, - - init : function() { - var ed = tinyMCEPopup.editor, tsrc, sel, x, u; - - tsrc = ed.getParam("template_templates", false); - sel = document.getElementById('tpath'); - - // Setup external template list - if (!tsrc && typeof(tinyMCETemplateList) != 'undefined') { - for (x=0, tsrc = []; x'); - }); - }, - - selectTemplate : function(u, ti) { - var d = window.frames['templatesrc'].document, x, tsrc = this.tsrc; - - if (!u) - return; - - d.body.innerHTML = this.templateHTML = this.getFileContents(u); - - for (x=0; x - - {#template_dlg.title} - - - - - -
                                            -
                                            -
                                            {#template_dlg.desc}
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - {#template_dlg.preview} - -
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css b/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css deleted file mode 100644 index 76bc92b50..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css +++ /dev/null @@ -1,21 +0,0 @@ -p, h1, h2, h3, h4, h5, h6, hgroup, aside, div, section, article, blockquote, address, pre, figure {display: block; padding-top: 10px; border: 1px dashed #BBB; background: transparent no-repeat} -p, h1, h2, h3, h4, h5, h6, hgroup, aside, div, section, article, address, pre, figure {margin-left: 3px} -section, article, address, hgroup, aside, figure {margin: 0 0 1em 3px} - -p {background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)} -h1 {background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)} -h2 {background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)} -h3 {background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)} -h4 {background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)} -h5 {background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)} -h6 {background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)} -div {background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)} -section {background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)} -article {background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)} -blockquote {background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)} -address {background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)} -pre {background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)} -hgroup {background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)} -aside {background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)} -figure {background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)} -figcaption {border: 1px dashed #BBB} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js deleted file mode 100644 index c65eaf2b4..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.VisualBlocks",{init:function(a,b){var c;if(!window.NodeList){return}a.addCommand("mceVisualBlocks",function(){var e=a.dom,d;if(!c){c=e.uniqueId();d=e.create("link",{id:c,rel:"stylesheet",href:b+"/css/visualblocks.css"});a.getDoc().getElementsByTagName("head")[0].appendChild(d)}else{d=e.get(c);d.disabled=!d.disabled}a.controlManager.setActive("visualblocks",!d.disabled)});a.addButton("visualblocks",{title:"visualblocks.desc",cmd:"mceVisualBlocks"});a.onInit.add(function(){if(a.settings.visualblocks_default_state){a.execCommand("mceVisualBlocks",false,null,{skip_focus:true})}})},getInfo:function(){return{longname:"Visual blocks",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualblocks",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("visualblocks",tinymce.plugins.VisualBlocks)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js deleted file mode 100644 index b9d2ab2e1..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js +++ /dev/null @@ -1,63 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2012, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.VisualBlocks', { - init : function(ed, url) { - var cssId; - - // We don't support older browsers like IE6/7 and they don't provide prototypes for DOM objects - if (!window.NodeList) { - return; - } - - ed.addCommand('mceVisualBlocks', function() { - var dom = ed.dom, linkElm; - - if (!cssId) { - cssId = dom.uniqueId(); - linkElm = dom.create('link', { - id: cssId, - rel : 'stylesheet', - href : url + '/css/visualblocks.css' - }); - - ed.getDoc().getElementsByTagName('head')[0].appendChild(linkElm); - } else { - linkElm = dom.get(cssId); - linkElm.disabled = !linkElm.disabled; - } - - ed.controlManager.setActive('visualblocks', !linkElm.disabled); - }); - - ed.addButton('visualblocks', {title : 'visualblocks.desc', cmd : 'mceVisualBlocks'}); - - ed.onInit.add(function() { - if (ed.settings.visualblocks_default_state) { - ed.execCommand('mceVisualBlocks', false, null, {skip_focus : true}); - } - }); - }, - - getInfo : function() { - return { - longname : 'Visual blocks', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualblocks', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('visualblocks', tinymce.plugins.VisualBlocks); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js deleted file mode 100644 index 1a148e8b4..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.VisualChars",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceVisualChars",c._toggleVisualChars,c);a.addButton("visualchars",{title:"visualchars.desc",cmd:"mceVisualChars"});a.onBeforeGetContent.add(function(d,e){if(c.state&&e.format!="raw"&&!e.draft){c.state=true;c._toggleVisualChars(false)}})},getInfo:function(){return{longname:"Visual characters",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_toggleVisualChars:function(m){var p=this,k=p.editor,a,g,j,n=k.getDoc(),o=k.getBody(),l,q=k.selection,e,c,f;p.state=!p.state;k.controlManager.setActive("visualchars",p.state);if(m){f=q.getBookmark()}if(p.state){a=[];tinymce.walk(o,function(b){if(b.nodeType==3&&b.nodeValue&&b.nodeValue.indexOf("\u00a0")!=-1){a.push(b)}},"childNodes");for(g=0;g$1');c=k.dom.create("div",null,l);while(node=c.lastChild){k.dom.insertAfter(node,a[g])}k.dom.remove(a[g])}}else{a=k.dom.select("span.mceItemNbsp",o);for(g=a.length-1;g>=0;g--){k.dom.remove(a[g],1)}}q.moveToBookmark(f)}});tinymce.PluginManager.add("visualchars",tinymce.plugins.VisualChars)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js deleted file mode 100644 index df985905b..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js +++ /dev/null @@ -1,83 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.VisualChars', { - init : function(ed, url) { - var t = this; - - t.editor = ed; - - // Register commands - ed.addCommand('mceVisualChars', t._toggleVisualChars, t); - - // Register buttons - ed.addButton('visualchars', {title : 'visualchars.desc', cmd : 'mceVisualChars'}); - - ed.onBeforeGetContent.add(function(ed, o) { - if (t.state && o.format != 'raw' && !o.draft) { - t.state = true; - t._toggleVisualChars(false); - } - }); - }, - - getInfo : function() { - return { - longname : 'Visual characters', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - }, - - // Private methods - - _toggleVisualChars : function(bookmark) { - var t = this, ed = t.editor, nl, i, h, d = ed.getDoc(), b = ed.getBody(), nv, s = ed.selection, bo, div, bm; - - t.state = !t.state; - ed.controlManager.setActive('visualchars', t.state); - - if (bookmark) - bm = s.getBookmark(); - - if (t.state) { - nl = []; - tinymce.walk(b, function(n) { - if (n.nodeType == 3 && n.nodeValue && n.nodeValue.indexOf('\u00a0') != -1) - nl.push(n); - }, 'childNodes'); - - for (i = 0; i < nl.length; i++) { - nv = nl[i].nodeValue; - nv = nv.replace(/(\u00a0)/g, '$1'); - - div = ed.dom.create('div', null, nv); - while (node = div.lastChild) - ed.dom.insertAfter(node, nl[i]); - - ed.dom.remove(nl[i]); - } - } else { - nl = ed.dom.select('span.mceItemNbsp', b); - - for (i = nl.length - 1; i >= 0; i--) - ed.dom.remove(nl[i], 1); - } - - s.moveToBookmark(bm); - } - }); - - // Register plugin - tinymce.PluginManager.add('visualchars', tinymce.plugins.VisualChars); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js deleted file mode 100644 index 42ece2092..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.WordCount",{block:0,id:null,countre:null,cleanre:null,init:function(c,d){var e=this,f=0,g=tinymce.VK;e.countre=c.getParam("wordcount_countregex",/[\w\u2019\'-]+/g);e.cleanre=c.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\'\"_+=\\\/-]*/g);e.update_rate=c.getParam("wordcount_update_rate",2000);e.update_on_delete=c.getParam("wordcount_update_on_delete",false);e.id=c.id+"-word-count";c.onPostRender.add(function(i,h){var j,k;k=i.getParam("wordcount_target_id");if(!k){j=tinymce.DOM.get(i.id+"_path_row");if(j){tinymce.DOM.add(j.parentNode,"div",{style:"float: right"},i.getLang("wordcount.words","Words: ")+'0')}}else{tinymce.DOM.add(k,"span",{},'0')}});c.onInit.add(function(h){h.selection.onSetContent.add(function(){e._count(h)});e._count(h)});c.onSetContent.add(function(h){e._count(h)});function b(h){return h!==f&&(h===g.ENTER||f===g.SPACEBAR||a(f))}function a(h){return h===g.DELETE||h===g.BACKSPACE}c.onKeyUp.add(function(h,i){if(b(i.keyCode)||e.update_on_delete&&a(i.keyCode)){e._count(h)}f=i.keyCode})},_getCount:function(c){var a=0;var b=c.getContent({format:"raw"});if(b){b=b.replace(/\.\.\./g," ");b=b.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," ");b=b.replace(/(\w+)(&.+?;)+(\w+)/,"$1$3").replace(/&.+?;/g," ");b=b.replace(this.cleanre,"");var d=b.match(this.countre);if(d){a=d.length}}return a},_count:function(a){var b=this;if(b.block){return}b.block=1;setTimeout(function(){if(!a.destroyed){var c=b._getCount(a);tinymce.DOM.setHTML(b.id,c.toString());setTimeout(function(){b.block=0},b.update_rate)}},1)},getInfo:function(){return{longname:"Word Count plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("wordcount",tinymce.plugins.WordCount)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js deleted file mode 100644 index 34b265553..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js +++ /dev/null @@ -1,122 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.WordCount', { - block : 0, - id : null, - countre : null, - cleanre : null, - - init : function(ed, url) { - var t = this, last = 0, VK = tinymce.VK; - - t.countre = ed.getParam('wordcount_countregex', /[\w\u2019\'-]+/g); // u2019 == ’ - t.cleanre = ed.getParam('wordcount_cleanregex', /[0-9.(),;:!?%#$?\'\"_+=\\\/-]*/g); - t.update_rate = ed.getParam('wordcount_update_rate', 2000); - t.update_on_delete = ed.getParam('wordcount_update_on_delete', false); - t.id = ed.id + '-word-count'; - - ed.onPostRender.add(function(ed, cm) { - var row, id; - - // Add it to the specified id or the theme advanced path - id = ed.getParam('wordcount_target_id'); - if (!id) { - row = tinymce.DOM.get(ed.id + '_path_row'); - - if (row) - tinymce.DOM.add(row.parentNode, 'div', {'style': 'float: right'}, ed.getLang('wordcount.words', 'Words: ') + '0'); - } else { - tinymce.DOM.add(id, 'span', {}, '0'); - } - }); - - ed.onInit.add(function(ed) { - ed.selection.onSetContent.add(function() { - t._count(ed); - }); - - t._count(ed); - }); - - ed.onSetContent.add(function(ed) { - t._count(ed); - }); - - function checkKeys(key) { - return key !== last && (key === VK.ENTER || last === VK.SPACEBAR || checkDelOrBksp(last)); - } - - function checkDelOrBksp(key) { - return key === VK.DELETE || key === VK.BACKSPACE; - } - - ed.onKeyUp.add(function(ed, e) { - if (checkKeys(e.keyCode) || t.update_on_delete && checkDelOrBksp(e.keyCode)) { - t._count(ed); - } - - last = e.keyCode; - }); - }, - - _getCount : function(ed) { - var tc = 0; - var tx = ed.getContent({ format: 'raw' }); - - if (tx) { - tx = tx.replace(/\.\.\./g, ' '); // convert ellipses to spaces - tx = tx.replace(/<.[^<>]*?>/g, ' ').replace(/ | /gi, ' '); // remove html tags and space chars - - // deal with html entities - tx = tx.replace(/(\w+)(&.+?;)+(\w+)/, "$1$3").replace(/&.+?;/g, ' '); - tx = tx.replace(this.cleanre, ''); // remove numbers and punctuation - - var wordArray = tx.match(this.countre); - if (wordArray) { - tc = wordArray.length; - } - } - - return tc; - }, - - _count : function(ed) { - var t = this; - - // Keep multiple calls from happening at the same time - if (t.block) - return; - - t.block = 1; - - setTimeout(function() { - if (!ed.destroyed) { - var tc = t._getCount(ed); - tinymce.DOM.setHTML(t.id, tc.toString()); - setTimeout(function() {t.block = 0;}, t.update_rate); - } - }, 1); - }, - - getInfo: function() { - return { - longname : 'Word Count plugin', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - tinymce.PluginManager.add('wordcount', tinymce.plugins.WordCount); -})(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm deleted file mode 100644 index 30a894f7c..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm +++ /dev/null @@ -1,142 +0,0 @@ - - - - {#xhtmlxtras_dlg.title_abbr_element} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_attrib_tab} - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            : - -
                                            :
                                            : - -
                                            : - -
                                            -
                                            -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_events_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            -
                                            -
                                            -
                                            -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm deleted file mode 100644 index c10934592..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm +++ /dev/null @@ -1,142 +0,0 @@ - - - - {#xhtmlxtras_dlg.title_acronym_element} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_attrib_tab} - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            : - -
                                            :
                                            : - -
                                            : - -
                                            -
                                            -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_events_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            -
                                            -
                                            -
                                            -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm deleted file mode 100644 index e8d606a34..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm +++ /dev/null @@ -1,149 +0,0 @@ - - - - {#xhtmlxtras_dlg.attribs_title} - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.attribute_attrib_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            - -
                                            :
                                            : - -
                                            : - -
                                            -
                                            -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.attribute_events_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            -
                                            -
                                            -
                                            -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm deleted file mode 100644 index 0ac6bdb66..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm +++ /dev/null @@ -1,142 +0,0 @@ - - - - {#xhtmlxtras_dlg.title_cite_element} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_attrib_tab} - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            : - -
                                            :
                                            : - -
                                            : - -
                                            -
                                            -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_events_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            -
                                            -
                                            -
                                            -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css deleted file mode 100644 index 9a6a235c3..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css +++ /dev/null @@ -1,11 +0,0 @@ -.panel_wrapper div.current { - height: 290px; -} - -#id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { - width: 200px; -} - -#events_panel input { - width: 200px; -} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css deleted file mode 100644 index e67114dba..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css +++ /dev/null @@ -1,9 +0,0 @@ -input.field, select.field {width:200px;} -input.picker {width:179px; margin-left: 5px;} -input.disabled {border-color:#F2F2F2;} -img.picker {vertical-align:text-bottom; cursor:pointer;} -h1 {padding: 0 0 5px 0;} -.panel_wrapper div.current {height:160px;} -#xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} -a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} -#datetime {width:180px;} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm deleted file mode 100644 index 5f667510f..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm +++ /dev/null @@ -1,162 +0,0 @@ - - - - {#xhtmlxtras_dlg.title_del_element} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_general_tab} - - - - - - - - - -
                                            : - - - - - -
                                            -
                                            :
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_attrib_tab} - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            : - -
                                            :
                                            : - -
                                            : - -
                                            -
                                            -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_events_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            -
                                            -
                                            -
                                            -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js deleted file mode 100644 index 9b98a5154..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +++ /dev/null @@ -1 +0,0 @@ -(function(){tinymce.create("tinymce.plugins.XHTMLXtrasPlugin",{init:function(a,b){a.addCommand("mceCite",function(){a.windowManager.open({file:b+"/cite.htm",width:350+parseInt(a.getLang("xhtmlxtras.cite_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.cite_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAcronym",function(){a.windowManager.open({file:b+"/acronym.htm",width:350+parseInt(a.getLang("xhtmlxtras.acronym_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.acronym_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAbbr",function(){a.windowManager.open({file:b+"/abbr.htm",width:350+parseInt(a.getLang("xhtmlxtras.abbr_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.abbr_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceDel",function(){a.windowManager.open({file:b+"/del.htm",width:340+parseInt(a.getLang("xhtmlxtras.del_delta_width",0)),height:310+parseInt(a.getLang("xhtmlxtras.del_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceIns",function(){a.windowManager.open({file:b+"/ins.htm",width:340+parseInt(a.getLang("xhtmlxtras.ins_delta_width",0)),height:310+parseInt(a.getLang("xhtmlxtras.ins_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAttributes",function(){a.windowManager.open({file:b+"/attributes.htm",width:380+parseInt(a.getLang("xhtmlxtras.attr_delta_width",0)),height:370+parseInt(a.getLang("xhtmlxtras.attr_delta_height",0)),inline:1},{plugin_url:b})});a.addButton("cite",{title:"xhtmlxtras.cite_desc",cmd:"mceCite"});a.addButton("acronym",{title:"xhtmlxtras.acronym_desc",cmd:"mceAcronym"});a.addButton("abbr",{title:"xhtmlxtras.abbr_desc",cmd:"mceAbbr"});a.addButton("del",{title:"xhtmlxtras.del_desc",cmd:"mceDel"});a.addButton("ins",{title:"xhtmlxtras.ins_desc",cmd:"mceIns"});a.addButton("attribs",{title:"xhtmlxtras.attribs_desc",cmd:"mceAttributes"});a.onNodeChange.add(function(d,c,f,e){f=d.dom.getParent(f,"CITE,ACRONYM,ABBR,DEL,INS");c.setDisabled("cite",e);c.setDisabled("acronym",e);c.setDisabled("abbr",e);c.setDisabled("del",e);c.setDisabled("ins",e);c.setDisabled("attribs",f&&f.nodeName=="BODY");c.setActive("cite",0);c.setActive("acronym",0);c.setActive("abbr",0);c.setActive("del",0);c.setActive("ins",0);if(f){do{c.setDisabled(f.nodeName.toLowerCase(),0);c.setActive(f.nodeName.toLowerCase(),1)}while(f=f.parentNode)}});a.onPreInit.add(function(){a.dom.create("abbr")})},getInfo:function(){return{longname:"XHTML Xtras Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/xhtmlxtras",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("xhtmlxtras",tinymce.plugins.XHTMLXtrasPlugin)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js deleted file mode 100644 index f24057211..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +++ /dev/null @@ -1,132 +0,0 @@ -/** - * editor_plugin_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - tinymce.create('tinymce.plugins.XHTMLXtrasPlugin', { - init : function(ed, url) { - // Register commands - ed.addCommand('mceCite', function() { - ed.windowManager.open({ - file : url + '/cite.htm', - width : 350 + parseInt(ed.getLang('xhtmlxtras.cite_delta_width', 0)), - height : 250 + parseInt(ed.getLang('xhtmlxtras.cite_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - ed.addCommand('mceAcronym', function() { - ed.windowManager.open({ - file : url + '/acronym.htm', - width : 350 + parseInt(ed.getLang('xhtmlxtras.acronym_delta_width', 0)), - height : 250 + parseInt(ed.getLang('xhtmlxtras.acronym_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - ed.addCommand('mceAbbr', function() { - ed.windowManager.open({ - file : url + '/abbr.htm', - width : 350 + parseInt(ed.getLang('xhtmlxtras.abbr_delta_width', 0)), - height : 250 + parseInt(ed.getLang('xhtmlxtras.abbr_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - ed.addCommand('mceDel', function() { - ed.windowManager.open({ - file : url + '/del.htm', - width : 340 + parseInt(ed.getLang('xhtmlxtras.del_delta_width', 0)), - height : 310 + parseInt(ed.getLang('xhtmlxtras.del_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - ed.addCommand('mceIns', function() { - ed.windowManager.open({ - file : url + '/ins.htm', - width : 340 + parseInt(ed.getLang('xhtmlxtras.ins_delta_width', 0)), - height : 310 + parseInt(ed.getLang('xhtmlxtras.ins_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - ed.addCommand('mceAttributes', function() { - ed.windowManager.open({ - file : url + '/attributes.htm', - width : 380 + parseInt(ed.getLang('xhtmlxtras.attr_delta_width', 0)), - height : 370 + parseInt(ed.getLang('xhtmlxtras.attr_delta_height', 0)), - inline : 1 - }, { - plugin_url : url - }); - }); - - // Register buttons - ed.addButton('cite', {title : 'xhtmlxtras.cite_desc', cmd : 'mceCite'}); - ed.addButton('acronym', {title : 'xhtmlxtras.acronym_desc', cmd : 'mceAcronym'}); - ed.addButton('abbr', {title : 'xhtmlxtras.abbr_desc', cmd : 'mceAbbr'}); - ed.addButton('del', {title : 'xhtmlxtras.del_desc', cmd : 'mceDel'}); - ed.addButton('ins', {title : 'xhtmlxtras.ins_desc', cmd : 'mceIns'}); - ed.addButton('attribs', {title : 'xhtmlxtras.attribs_desc', cmd : 'mceAttributes'}); - - ed.onNodeChange.add(function(ed, cm, n, co) { - n = ed.dom.getParent(n, 'CITE,ACRONYM,ABBR,DEL,INS'); - - cm.setDisabled('cite', co); - cm.setDisabled('acronym', co); - cm.setDisabled('abbr', co); - cm.setDisabled('del', co); - cm.setDisabled('ins', co); - cm.setDisabled('attribs', n && n.nodeName == 'BODY'); - cm.setActive('cite', 0); - cm.setActive('acronym', 0); - cm.setActive('abbr', 0); - cm.setActive('del', 0); - cm.setActive('ins', 0); - - // Activate all - if (n) { - do { - cm.setDisabled(n.nodeName.toLowerCase(), 0); - cm.setActive(n.nodeName.toLowerCase(), 1); - } while (n = n.parentNode); - } - }); - - ed.onPreInit.add(function() { - // Fixed IE issue where it can't handle these elements correctly - ed.dom.create('abbr'); - }); - }, - - getInfo : function() { - return { - longname : 'XHTML Xtras Plugin', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/xhtmlxtras', - version : tinymce.majorVersion + "." + tinymce.minorVersion - }; - } - }); - - // Register plugin - tinymce.PluginManager.add('xhtmlxtras', tinymce.plugins.XHTMLXtrasPlugin); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm deleted file mode 100644 index d001ac7c4..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm +++ /dev/null @@ -1,162 +0,0 @@ - - - - {#xhtmlxtras_dlg.title_ins_element} - - - - - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_general_tab} - - - - - - - - - -
                                            : - - - - - -
                                            -
                                            :
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_attrib_tab} - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            : - -
                                            :
                                            : - -
                                            : - -
                                            -
                                            -
                                            -
                                            -
                                            - {#xhtmlxtras_dlg.fieldset_events_tab} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            :
                                            -
                                            -
                                            -
                                            -
                                            - - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js deleted file mode 100644 index 4b51a2572..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * abbr.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -function init() { - SXE.initElementDialog('abbr'); - if (SXE.currentAction == "update") { - SXE.showRemoveButton(); - } -} - -function insertAbbr() { - SXE.insertElement('abbr'); - tinyMCEPopup.close(); -} - -function removeAbbr() { - SXE.removeElement('abbr'); - tinyMCEPopup.close(); -} - -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js deleted file mode 100644 index 6ec2f8871..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * acronym.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -function init() { - SXE.initElementDialog('acronym'); - if (SXE.currentAction == "update") { - SXE.showRemoveButton(); - } -} - -function insertAcronym() { - SXE.insertElement('acronym'); - tinyMCEPopup.close(); -} - -function removeAcronym() { - SXE.removeElement('acronym'); - tinyMCEPopup.close(); -} - -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js deleted file mode 100644 index 9c99995ad..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js +++ /dev/null @@ -1,111 +0,0 @@ -/** - * attributes.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -function init() { - tinyMCEPopup.resizeToInnerSize(); - var inst = tinyMCEPopup.editor; - var dom = inst.dom; - var elm = inst.selection.getNode(); - var f = document.forms[0]; - var onclick = dom.getAttrib(elm, 'onclick'); - - setFormValue('title', dom.getAttrib(elm, 'title')); - setFormValue('id', dom.getAttrib(elm, 'id')); - setFormValue('style', dom.getAttrib(elm, "style")); - setFormValue('dir', dom.getAttrib(elm, 'dir')); - setFormValue('lang', dom.getAttrib(elm, 'lang')); - setFormValue('tabindex', dom.getAttrib(elm, 'tabindex', typeof(elm.tabindex) != "undefined" ? elm.tabindex : "")); - setFormValue('accesskey', dom.getAttrib(elm, 'accesskey', typeof(elm.accesskey) != "undefined" ? elm.accesskey : "")); - setFormValue('onfocus', dom.getAttrib(elm, 'onfocus')); - setFormValue('onblur', dom.getAttrib(elm, 'onblur')); - setFormValue('onclick', onclick); - setFormValue('ondblclick', dom.getAttrib(elm, 'ondblclick')); - setFormValue('onmousedown', dom.getAttrib(elm, 'onmousedown')); - setFormValue('onmouseup', dom.getAttrib(elm, 'onmouseup')); - setFormValue('onmouseover', dom.getAttrib(elm, 'onmouseover')); - setFormValue('onmousemove', dom.getAttrib(elm, 'onmousemove')); - setFormValue('onmouseout', dom.getAttrib(elm, 'onmouseout')); - setFormValue('onkeypress', dom.getAttrib(elm, 'onkeypress')); - setFormValue('onkeydown', dom.getAttrib(elm, 'onkeydown')); - setFormValue('onkeyup', dom.getAttrib(elm, 'onkeyup')); - className = dom.getAttrib(elm, 'class'); - - addClassesToList('classlist', 'advlink_styles'); - selectByValue(f, 'classlist', className, true); - - TinyMCE_EditableSelects.init(); -} - -function setFormValue(name, value) { - if(value && document.forms[0].elements[name]){ - document.forms[0].elements[name].value = value; - } -} - -function insertAction() { - var inst = tinyMCEPopup.editor; - var elm = inst.selection.getNode(); - - setAllAttribs(elm); - tinyMCEPopup.execCommand("mceEndUndoLevel"); - tinyMCEPopup.close(); -} - -function setAttrib(elm, attrib, value) { - var formObj = document.forms[0]; - var valueElm = formObj.elements[attrib.toLowerCase()]; - var inst = tinyMCEPopup.editor; - var dom = inst.dom; - - if (typeof(value) == "undefined" || value == null) { - value = ""; - - if (valueElm) - value = valueElm.value; - } - - dom.setAttrib(elm, attrib.toLowerCase(), value); -} - -function setAllAttribs(elm) { - var f = document.forms[0]; - - setAttrib(elm, 'title'); - setAttrib(elm, 'id'); - setAttrib(elm, 'style'); - setAttrib(elm, 'class', getSelectValue(f, 'classlist')); - setAttrib(elm, 'dir'); - setAttrib(elm, 'lang'); - setAttrib(elm, 'tabindex'); - setAttrib(elm, 'accesskey'); - setAttrib(elm, 'onfocus'); - setAttrib(elm, 'onblur'); - setAttrib(elm, 'onclick'); - setAttrib(elm, 'ondblclick'); - setAttrib(elm, 'onmousedown'); - setAttrib(elm, 'onmouseup'); - setAttrib(elm, 'onmouseover'); - setAttrib(elm, 'onmousemove'); - setAttrib(elm, 'onmouseout'); - setAttrib(elm, 'onkeypress'); - setAttrib(elm, 'onkeydown'); - setAttrib(elm, 'onkeyup'); - - // Refresh in old MSIE -// if (tinyMCE.isMSIE5) -// elm.outerHTML = elm.outerHTML; -} - -function insertAttribute() { - tinyMCEPopup.close(); -} - -tinyMCEPopup.onInit.add(init); -tinyMCEPopup.requireLangPack(); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js deleted file mode 100644 index 009b71546..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * cite.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -function init() { - SXE.initElementDialog('cite'); - if (SXE.currentAction == "update") { - SXE.showRemoveButton(); - } -} - -function insertCite() { - SXE.insertElement('cite'); - tinyMCEPopup.close(); -} - -function removeCite() { - SXE.removeElement('cite'); - tinyMCEPopup.close(); -} - -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js deleted file mode 100644 index 1f957dc78..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js +++ /dev/null @@ -1,53 +0,0 @@ -/** - * del.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -function init() { - SXE.initElementDialog('del'); - if (SXE.currentAction == "update") { - setFormValue('datetime', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'datetime')); - setFormValue('cite', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'cite')); - SXE.showRemoveButton(); - } -} - -function setElementAttribs(elm) { - setAllCommonAttribs(elm); - setAttrib(elm, 'datetime'); - setAttrib(elm, 'cite'); - elm.removeAttribute('data-mce-new'); -} - -function insertDel() { - var elm = tinyMCEPopup.editor.dom.getParent(SXE.focusElement, 'DEL'); - - if (elm == null) { - var s = SXE.inst.selection.getContent(); - if(s.length > 0) { - insertInlineElement('del'); - var elementArray = SXE.inst.dom.select('del[data-mce-new]'); - for (var i=0; i 0) { - tagName = element_name; - - insertInlineElement(element_name); - var elementArray = tinymce.grep(SXE.inst.dom.select(element_name)); - for (var i=0; i -1) ? true : false; -} - -SXE.removeClass = function(elm,cl) { - if(elm.className == null || elm.className == "" || !SXE.containsClass(elm,cl)) { - return true; - } - var classNames = elm.className.split(" "); - var newClassNames = ""; - for (var x = 0, cnl = classNames.length; x < cnl; x++) { - if (classNames[x] != cl) { - newClassNames += (classNames[x] + " "); - } - } - elm.className = newClassNames.substring(0,newClassNames.length-1); //removes extra space at the end -} - -SXE.addClass = function(elm,cl) { - if(!SXE.containsClass(elm,cl)) elm.className ? elm.className += " " + cl : elm.className = cl; - return true; -} - -function insertInlineElement(en) { - var ed = tinyMCEPopup.editor, dom = ed.dom; - - ed.getDoc().execCommand('FontName', false, 'mceinline'); - tinymce.each(dom.select('span,font'), function(n) { - if (n.style.fontFamily == 'mceinline' || n.face == 'mceinline') - dom.replace(dom.create(en, {'data-mce-new' : 1}), n, 1); - }); -} diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js deleted file mode 100644 index c4addfb01..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js +++ /dev/null @@ -1,53 +0,0 @@ -/** - * ins.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -function init() { - SXE.initElementDialog('ins'); - if (SXE.currentAction == "update") { - setFormValue('datetime', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'datetime')); - setFormValue('cite', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'cite')); - SXE.showRemoveButton(); - } -} - -function setElementAttribs(elm) { - setAllCommonAttribs(elm); - setAttrib(elm, 'datetime'); - setAttrib(elm, 'cite'); - elm.removeAttribute('data-mce-new'); -} - -function insertIns() { - var elm = tinyMCEPopup.editor.dom.getParent(SXE.focusElement, 'INS'); - - if (elm == null) { - var s = SXE.inst.selection.getContent(); - if(s.length > 0) { - insertInlineElement('ins'); - var elementArray = SXE.inst.dom.select('ins[data-mce-new]'); - for (var i=0; i - - - {#advanced_dlg.about_title} - - - - - - - -
                                            -
                                            -

                                            {#advanced_dlg.about_title}

                                            -

                                            Version: ()

                                            -

                                            TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL - by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.

                                            -

                                            Copyright © 2003-2008, Moxiecode Systems AB, All rights reserved.

                                            -

                                            For more information about this software visit the TinyMCE website.

                                            - -
                                            - Got Moxie? -
                                            -
                                            - -
                                            -
                                            -

                                            {#advanced_dlg.about_loaded}

                                            - -
                                            -
                                            - -

                                             

                                            -
                                            -
                                            - -
                                            -
                                            -
                                            -
                                            - -
                                            - -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm b/library/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm deleted file mode 100644 index 75c93b799..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm +++ /dev/null @@ -1,26 +0,0 @@ - - - - {#advanced_dlg.anchor_title} - - - - -
                                            - - - - - - - - -
                                            {#advanced_dlg.anchor_title}
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm b/library/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm deleted file mode 100644 index d4b6bdfb7..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm +++ /dev/null @@ -1,55 +0,0 @@ - - - - {#advanced_dlg.charmap_title} - - - - - - - - - - - - - - - - - - - -
                                            - - - - - - - - - -
                                             
                                             
                                            -
                                            - - - - - - - - - - - - - - - - -
                                             
                                             
                                             
                                            -
                                            {#advanced_dlg.charmap_usage}
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm b/library/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm deleted file mode 100644 index b625531a6..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm +++ /dev/null @@ -1,70 +0,0 @@ - - - - {#advanced_dlg.colorpicker_title} - - - - - - -
                                            - - -
                                            -
                                            -
                                            - {#advanced_dlg.colorpicker_picker_title} -
                                            - - -
                                            - -
                                            - -
                                            -
                                            -
                                            -
                                            - -
                                            -
                                            - {#advanced_dlg.colorpicker_palette_title} -
                                            - -
                                            - -
                                            -
                                            -
                                            - -
                                            -
                                            - {#advanced_dlg.colorpicker_named_title} -
                                            - -
                                            - -
                                            - -
                                            - {#advanced_dlg.colorpicker_name} -
                                            -
                                            -
                                            -
                                            - -
                                            - - -
                                            -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js deleted file mode 100644 index 4b8d56375..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js +++ /dev/null @@ -1 +0,0 @@ -(function(h){var i=h.DOM,g=h.dom.Event,c=h.extend,f=h.each,a=h.util.Cookie,e,d=h.explode;function b(p,m){var k,l,o=p.dom,j="",n,r;previewStyles=p.settings.preview_styles;if(previewStyles===false){return""}if(!previewStyles){previewStyles="font-family font-size font-weight text-decoration text-transform color background-color"}function q(s){return s.replace(/%(\w+)/g,"")}k=m.block||m.inline||"span";l=o.create(k);f(m.styles,function(t,s){t=q(t);if(t){o.setStyle(l,s,t)}});f(m.attributes,function(t,s){t=q(t);if(t){o.setAttrib(l,s,t)}});f(m.classes,function(s){s=q(s);if(!o.hasClass(l,s)){o.addClass(l,s)}});o.setStyles(l,{position:"absolute",left:-65535});p.getBody().appendChild(l);n=o.getStyle(p.getBody(),"fontSize",true);n=/px$/.test(n)?parseInt(n,10):0;f(previewStyles.split(" "),function(s){var t=o.getStyle(l,s,true);if(s=="background-color"&&/transparent|rgba\s*\([^)]+,\s*0\)/.test(t)){t=o.getStyle(p.getBody(),s,true);if(o.toHex(t).toLowerCase()=="#ffffff"){return}}if(s=="font-size"){if(/em|%$/.test(t)){if(n===0){return}t=parseFloat(t,10)/(/%$/.test(t)?100:1);t=(t*n)+"px"}}j+=s+":"+t+";"});o.remove(l);return j}h.ThemeManager.requireLangPack("advanced");h.create("tinymce.themes.AdvancedTheme",{sizes:[8,10,12,14,18,24,36],controls:{bold:["bold_desc","Bold"],italic:["italic_desc","Italic"],underline:["underline_desc","Underline"],strikethrough:["striketrough_desc","Strikethrough"],justifyleft:["justifyleft_desc","JustifyLeft"],justifycenter:["justifycenter_desc","JustifyCenter"],justifyright:["justifyright_desc","JustifyRight"],justifyfull:["justifyfull_desc","JustifyFull"],bullist:["bullist_desc","InsertUnorderedList"],numlist:["numlist_desc","InsertOrderedList"],outdent:["outdent_desc","Outdent"],indent:["indent_desc","Indent"],cut:["cut_desc","Cut"],copy:["copy_desc","Copy"],paste:["paste_desc","Paste"],undo:["undo_desc","Undo"],redo:["redo_desc","Redo"],link:["link_desc","mceLink"],unlink:["unlink_desc","unlink"],image:["image_desc","mceImage"],cleanup:["cleanup_desc","mceCleanup"],help:["help_desc","mceHelp"],code:["code_desc","mceCodeEditor"],hr:["hr_desc","InsertHorizontalRule"],removeformat:["removeformat_desc","RemoveFormat"],sub:["sub_desc","subscript"],sup:["sup_desc","superscript"],forecolor:["forecolor_desc","ForeColor"],forecolorpicker:["forecolor_desc","mceForeColor"],backcolor:["backcolor_desc","HiliteColor"],backcolorpicker:["backcolor_desc","mceBackColor"],charmap:["charmap_desc","mceCharMap"],visualaid:["visualaid_desc","mceToggleVisualAid"],anchor:["anchor_desc","mceInsertAnchor"],newdocument:["newdocument_desc","mceNewDocument"],blockquote:["blockquote_desc","mceBlockQuote"]},stateControls:["bold","italic","underline","strikethrough","bullist","numlist","justifyleft","justifycenter","justifyright","justifyfull","sub","sup","blockquote"],init:function(k,l){var m=this,n,j,p;m.editor=k;m.url=l;m.onResolveName=new h.util.Dispatcher(this);n=k.settings;k.forcedHighContrastMode=k.settings.detect_highcontrast&&m._isHighContrast();k.settings.skin=k.forcedHighContrastMode?"highcontrast":k.settings.skin;if(!n.theme_advanced_buttons1){n=c({theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",theme_advanced_buttons2:"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",theme_advanced_buttons3:"hr,removeformat,visualaid,|,sub,sup,|,charmap"},n)}m.settings=n=c({theme_advanced_path:true,theme_advanced_toolbar_location:"top",theme_advanced_blockformats:"p,address,pre,h1,h2,h3,h4,h5,h6",theme_advanced_toolbar_align:"left",theme_advanced_statusbar_location:"bottom",theme_advanced_fonts:"Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",theme_advanced_more_colors:1,theme_advanced_row_height:23,theme_advanced_resize_horizontal:1,theme_advanced_resizing_use_cookie:1,theme_advanced_font_sizes:"1,2,3,4,5,6,7",theme_advanced_font_selector:"span",theme_advanced_show_current_color:0,readonly:k.settings.readonly},n);if(!n.font_size_style_values){n.font_size_style_values="8pt,10pt,12pt,14pt,18pt,24pt,36pt"}if(h.is(n.theme_advanced_font_sizes,"string")){n.font_size_style_values=h.explode(n.font_size_style_values);n.font_size_classes=h.explode(n.font_size_classes||"");p={};k.settings.theme_advanced_font_sizes=n.theme_advanced_font_sizes;f(k.getParam("theme_advanced_font_sizes","","hash"),function(r,q){var o;if(q==r&&r>=1&&r<=7){q=r+" ("+m.sizes[r-1]+"pt)";o=n.font_size_classes[r-1];r=n.font_size_style_values[r-1]||(m.sizes[r-1]+"pt")}if(/^\s*\./.test(r)){o=r.replace(/\./g,"")}p[q]=o?{"class":o}:{fontSize:r}});n.theme_advanced_font_sizes=p}if((j=n.theme_advanced_path_location)&&j!="none"){n.theme_advanced_statusbar_location=n.theme_advanced_path_location}if(n.theme_advanced_statusbar_location=="none"){n.theme_advanced_statusbar_location=0}if(k.settings.content_css!==false){k.contentCSS.push(k.baseURI.toAbsolute(l+"/skins/"+k.settings.skin+"/content.css"))}k.onInit.add(function(){if(!k.settings.readonly){k.onNodeChange.add(m._nodeChanged,m);k.onKeyUp.add(m._updateUndoStatus,m);k.onMouseUp.add(m._updateUndoStatus,m);k.dom.bind(k.dom.getRoot(),"dragend",function(){m._updateUndoStatus(k)})}});k.onSetProgressState.add(function(r,o,s){var t,u=r.id,q;if(o){m.progressTimer=setTimeout(function(){t=r.getContainer();t=t.insertBefore(i.create("DIV",{style:"position:relative"}),t.firstChild);q=i.get(r.id+"_tbl");i.add(t,"div",{id:u+"_blocker","class":"mceBlocker",style:{width:q.clientWidth+2,height:q.clientHeight+2}});i.add(t,"div",{id:u+"_progress","class":"mceProgress",style:{left:q.clientWidth/2,top:q.clientHeight/2}})},s||0)}else{i.remove(u+"_blocker");i.remove(u+"_progress");clearTimeout(m.progressTimer)}});i.loadCSS(n.editor_css?k.documentBaseURI.toAbsolute(n.editor_css):l+"/skins/"+k.settings.skin+"/ui.css");if(n.skin_variant){i.loadCSS(l+"/skins/"+k.settings.skin+"/ui_"+n.skin_variant+".css")}},_isHighContrast:function(){var j,k=i.add(i.getRoot(),"div",{style:"background-color: rgb(171,239,86);"});j=(i.getStyle(k,"background-color",true)+"").toLowerCase().replace(/ /g,"");i.remove(k);return j!="rgb(171,239,86)"&&j!="#abef56"},createControl:function(m,j){var k,l;if(l=j.createControl(m)){return l}switch(m){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((k=this.controls[m])){return j.createButton(m,{title:"advanced."+k[0],cmd:k[1],ui:k[2],value:k[3]})}},execCommand:function(l,k,m){var j=this["_"+l];if(j){j.call(this,k,m);return true}return false},_importClasses:function(l){var j=this.editor,k=j.controlManager.get("styleselect");if(k.getLength()==0){f(j.dom.getClasses(),function(q,m){var p="style_"+m,n;n={inline:"span",attributes:{"class":q["class"]},selector:"*"};j.formatter.register(p,n);k.add(q["class"],p,{style:function(){return b(j,n)}})})}},_createStyleSelect:function(o){var l=this,j=l.editor,k=j.controlManager,m;m=k.createListBox("styleselect",{title:"advanced.style_select",onselect:function(q){var r,n=[],p;f(m.items,function(s){n.push(s.value)});j.focus();j.undoManager.add();r=j.formatter.matchAll(n);h.each(r,function(s){if(!q||s==q){if(s){j.formatter.remove(s)}p=true}});if(!p){j.formatter.apply(q)}j.undoManager.add();j.nodeChanged();return false}});j.onPreInit.add(function(){var p=0,n=j.getParam("style_formats");if(n){f(n,function(q){var r,s=0;f(q,function(){s++});if(s>1){r=q.name=q.name||"style_"+(p++);j.formatter.register(r,q);m.add(q.title,r,{style:function(){return b(j,q)}})}else{m.add(q.title)}})}else{f(j.getParam("theme_advanced_styles","","hash"),function(t,s){var r,q;if(t){r="style_"+(p++);q={inline:"span",classes:t,selector:"*"};j.formatter.register(r,q);m.add(l.editor.translate(s),r,{style:function(){return b(j,q)}})}})}});if(m.getLength()==0){m.onPostRender.add(function(p,q){if(!m.NativeListBox){g.add(q.id+"_text","focus",l._importClasses,l);g.add(q.id+"_text","mousedown",l._importClasses,l);g.add(q.id+"_open","focus",l._importClasses,l);g.add(q.id+"_open","mousedown",l._importClasses,l)}else{g.add(q.id,"focus",l._importClasses,l)}})}return m},_createFontSelect:function(){var l,k=this,j=k.editor;l=j.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(m){var n=l.items[l.selectedIndex];if(!m&&n){j.execCommand("FontName",false,n.value);return}j.execCommand("FontName",false,m);l.select(function(o){return m==o});if(n&&n.value==m){l.select(null)}return false}});if(l){f(j.getParam("theme_advanced_fonts",k.settings.theme_advanced_fonts,"hash"),function(n,m){l.add(j.translate(m),n,{style:n.indexOf("dings")==-1?"font-family:"+n:""})})}return l},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(o){var p=n.items[n.selectedIndex];if(!o&&p){p=p.value;if(p["class"]){k.formatter.toggle("fontsize_class",{value:p["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,p.fontSize)}return}if(o["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:o["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,o.fontSize)}n.select(function(q){return o==q});if(p&&(p.value.fontSize==o.fontSize||p.value["class"]&&p.value["class"]==o["class"])){n.select(null)}return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(p,o){var q=p.fontSize;if(q>=1&&q<=7){q=m.sizes[parseInt(q)-1]+"pt"}n.add(o,p,{style:"font-size:"+q,"class":"mceFontSize"+(l++)+(" "+(p["class"]||""))})})}return n},_createBlockFormats:function(){var l,j={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},k=this;l=k.editor.controlManager.createListBox("formatselect",{title:"advanced.block",onselect:function(m){k.editor.execCommand("FormatBlock",false,m);return false}});if(l){f(k.editor.getParam("theme_advanced_blockformats",k.settings.theme_advanced_blockformats,"hash"),function(n,m){l.add(k.editor.translate(m!=n?m:j[n]),n,{"class":"mce_formatPreview mce_"+n,style:function(){return b(k.editor,{block:n})}})})}return l},_createForeColorMenu:function(){var n,k=this,l=k.settings,m={},j;if(l.theme_advanced_more_colors){m.more_colors_func=function(){k._mceColorPicker(0,{color:n.value,func:function(o){n.setColor(o)}})}}if(j=l.theme_advanced_text_colors){m.colors=j}if(l.theme_advanced_default_foreground_color){m.default_color=l.theme_advanced_default_foreground_color}m.title="advanced.forecolor_desc";m.cmd="ForeColor";m.scope=this;n=k.editor.controlManager.createColorSplitButton("forecolor",m);return n},_createBackColorMenu:function(){var n,k=this,l=k.settings,m={},j;if(l.theme_advanced_more_colors){m.more_colors_func=function(){k._mceColorPicker(0,{color:n.value,func:function(o){n.setColor(o)}})}}if(j=l.theme_advanced_background_colors){m.colors=j}if(l.theme_advanced_default_background_color){m.default_color=l.theme_advanced_default_background_color}m.title="advanced.backcolor_desc";m.cmd="HiliteColor";m.scope=this;n=k.editor.controlManager.createColorSplitButton("backcolor",m);return n},renderUI:function(l){var q,m,r,w=this,u=w.editor,x=w.settings,v,k,j;if(u.settings){u.settings.aria_label=x.aria_label+u.getLang("advanced.help_shortcut")}q=k=i.create("span",{role:"application","aria-labelledby":u.id+"_voice",id:u.id+"_parent","class":"mceEditor "+u.settings.skin+"Skin"+(x.skin_variant?" "+u.settings.skin+"Skin"+w._ufirst(x.skin_variant):"")+(u.settings.directionality=="rtl"?" mceRtl":"")});i.add(q,"span",{"class":"mceVoiceLabel",style:"display:none;",id:u.id+"_voice"},x.aria_label);if(!i.boxModel){q=i.add(q,"div",{"class":"mceOldBoxModel"})}q=v=i.add(q,"table",{role:"presentation",id:u.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});q=r=i.add(q,"tbody");switch((x.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":m=w._rowLayout(x,r,l);break;case"customlayout":m=u.execCallback("theme_advanced_custom_layout",x,r,l,k);break;default:m=w._simpleLayout(x,r,l,k)}q=l.targetNode;j=v.rows;i.addClass(j[0],"mceFirst");i.addClass(j[j.length-1],"mceLast");f(i.select("tr",r),function(o){i.addClass(o.firstChild,"mceFirst");i.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(i.get(x.theme_advanced_toolbar_container)){i.get(x.theme_advanced_toolbar_container).appendChild(k)}else{i.insertAfter(k,q)}g.add(u.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){w._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return false}});if(!u.getParam("accessibility_focus")){g.add(i.add(k,"a",{href:"#"},""),"focus",function(){tinyMCE.get(u.id).focus()})}if(x.theme_advanced_toolbar_location=="external"){l.deltaHeight=0}w.deltaHeight=l.deltaHeight;l.targetNode=null;u.onKeyDown.add(function(p,n){var s=121,o=122;if(n.altKey){if(n.keyCode===s){if(h.isWebKit){window.focus()}w.toolbarGroup.focus();return g.cancel(n)}else{if(n.keyCode===o){i.get(p.id+"_path_row").focus();return g.cancel(n)}}}});u.addShortcut("alt+0","","mceShortcuts",w);return{iframeContainer:m,editorContainer:u.id+"_parent",sizeContainer:v,deltaHeight:l.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:h.majorVersion+"."+h.minorVersion}},resizeBy:function(j,k){var l=i.get(this.editor.id+"_ifr");this.resizeTo(l.clientWidth+j,l.clientHeight+k)},resizeTo:function(j,n,l){var k=this.editor,m=this.settings,o=i.get(k.id+"_tbl"),p=i.get(k.id+"_ifr");j=Math.max(m.theme_advanced_resizing_min_width||100,j);n=Math.max(m.theme_advanced_resizing_min_height||100,n);j=Math.min(m.theme_advanced_resizing_max_width||65535,j);n=Math.min(m.theme_advanced_resizing_max_height||65535,n);i.setStyle(o,"height","");i.setStyle(p,"height",n);if(m.theme_advanced_resize_horizontal){i.setStyle(o,"width","");i.setStyle(p,"width",j);if(j"));i.setHTML(l,r.join(""))},_addStatusBar:function(p,k){var l,w=this,q=w.editor,x=w.settings,j,u,v,m;l=i.add(p,"tr");l=m=i.add(l,"td",{"class":"mceStatusbar"});l=i.add(l,"div",{id:q.id+"_path_row",role:"group","aria-labelledby":q.id+"_path_voice"});if(x.theme_advanced_path){i.add(l,"span",{id:q.id+"_path_voice"},q.translate("advanced.path"));i.add(l,"span",{},": ")}else{i.add(l,"span",{}," ")}if(x.theme_advanced_resizing){i.add(m,"a",{id:q.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize",tabIndex:"-1"});if(x.theme_advanced_resizing_use_cookie){q.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+q.id+"_size"),r=i.get(q.id+"_tbl");if(!n){return}w.resizeTo(n.cw,n.ch)})}q.onPostRender.add(function(){g.add(q.id+"_resize","click",function(n){n.preventDefault()});g.add(q.id+"_resize","mousedown",function(E){var t,r,s,o,D,A,B,G,n,F,y;function z(H){H.preventDefault();n=B+(H.screenX-D);F=G+(H.screenY-A);w.resizeTo(n,F)}function C(H){g.remove(i.doc,"mousemove",t);g.remove(q.getDoc(),"mousemove",r);g.remove(i.doc,"mouseup",s);g.remove(q.getDoc(),"mouseup",o);n=B+(H.screenX-D);F=G+(H.screenY-A);w.resizeTo(n,F,true);q.nodeChanged()}E.preventDefault();D=E.screenX;A=E.screenY;y=i.get(w.editor.id+"_ifr");B=n=y.clientWidth;G=F=y.clientHeight;t=g.add(i.doc,"mousemove",z);r=g.add(q.getDoc(),"mousemove",z);s=g.add(i.doc,"mouseup",C);o=g.add(q.getDoc(),"mouseup",C)})})}k.deltaHeight-=21;l=p=null},_updateUndoStatus:function(k){var j=k.controlManager,l=k.undoManager;j.setDisabled("undo",!l.hasUndo()&&!l.typing);j.setDisabled("redo",!l.hasRedo())},_nodeChanged:function(o,u,E,r,F){var z=this,D,G=0,y,H,A=z.settings,x,l,w,C,m,k,j;h.each(z.stateControls,function(n){u.setActive(n,o.queryCommandState(z.controls[n][1]))});function q(p){var s,n=F.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s0){H.mark(p)}})}if(H=u.get("formatselect")){D=q(o.dom.isBlock);if(D){H.select(D.nodeName.toLowerCase())}}q(function(p){if(p.nodeName==="SPAN"){if(!x&&p.className){x=p.className}}if(o.dom.is(p,A.theme_advanced_font_selector)){if(!l&&p.style.fontSize){l=p.style.fontSize}if(!w&&p.style.fontFamily){w=p.style.fontFamily.replace(/[\"\']+/g,"").replace(/^([^,]+).*/,"$1").toLowerCase()}if(!C&&p.style.color){C=p.style.color}if(!m&&p.style.backgroundColor){m=p.style.backgroundColor}}return false});if(H=u.get("fontselect")){H.select(function(n){return n.replace(/^([^,]+).*/,"$1").toLowerCase()==w})}if(H=u.get("fontsizeselect")){if(A.theme_advanced_runtime_fontsize&&!l&&!x){l=o.dom.getStyle(E,"fontSize",true)}H.select(function(n){if(n.fontSize&&n.fontSize===l){return true}if(n["class"]&&n["class"]===x){return true}})}if(A.theme_advanced_show_current_color){function B(p,n){if(H=u.get(p)){if(!n){n=H.settings.default_color}if(n!==H.value){H.displayColor(n)}}}B("forecolor",C);B("backcolor",m)}if(A.theme_advanced_show_current_color){function B(p,n){if(H=u.get(p)){if(!n){n=H.settings.default_color}if(n!==H.value){H.displayColor(n)}}}B("forecolor",C);B("backcolor",m)}if(A.theme_advanced_path&&A.theme_advanced_statusbar_location){D=i.get(o.id+"_path")||i.add(o.id+"_path_row","span",{id:o.id+"_path"});if(z.statusKeyboardNavigation){z.statusKeyboardNavigation.destroy();z.statusKeyboardNavigation=null}i.setHTML(D,"");q(function(I){var p=I.nodeName.toLowerCase(),s,v,t="";if(I.nodeType!=1||p==="br"||I.getAttribute("data-mce-bogus")||i.hasClass(I,"mceItemHidden")||i.hasClass(I,"mceItemRemoved")){return}if(h.isIE&&I.scopeName!=="HTML"&&I.scopeName){p=I.scopeName+":"+p}p=p.replace(/mce\:/g,"");switch(p){case"b":p="strong";break;case"i":p="em";break;case"img":if(y=i.getAttrib(I,"src")){t+="src: "+y+" "}break;case"a":if(y=i.getAttrib(I,"name")){t+="name: "+y+" ";p+="#"+y}if(y=i.getAttrib(I,"href")){t+="href: "+y+" "}break;case"font":if(y=i.getAttrib(I,"face")){t+="font: "+y+" "}if(y=i.getAttrib(I,"size")){t+="size: "+y+" "}if(y=i.getAttrib(I,"color")){t+="color: "+y+" "}break;case"span":if(y=i.getAttrib(I,"style")){t+="style: "+y+" "}break}if(y=i.getAttrib(I,"id")){t+="id: "+y+" "}if(y=I.className){y=y.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g,"");if(y){t+="class: "+y+" ";if(o.dom.isBlock(I)||p=="img"||p=="span"){p+="."+y}}}p=p.replace(/(html:)/g,"");p={name:p,node:I,title:t};z.onResolveName.dispatch(z,p);t=p.title;p=p.name;v=i.create("a",{href:"javascript:;",role:"button",onmousedown:"return false;",title:t,"class":"mcePath_"+(G++)},p);if(D.hasChildNodes()){D.insertBefore(i.create("span",{"aria-hidden":"true"},"\u00a0\u00bb "),D.firstChild);D.insertBefore(v,D.firstChild)}else{D.appendChild(v)}},o.getBody());if(i.select("a",D).length>0){z.statusKeyboardNavigation=new h.ui.KeyboardNavigation({root:o.id+"_path_row",items:i.select("a",D),excludeFromTabOrder:true,onCancel:function(){o.focus()}},i)}}},_sel:function(j){this.editor.execCommand("mceSelectNodeDepth",false,j)},_mceInsertAnchor:function(l,k){var j=this.editor;j.windowManager.open({url:this.url+"/anchor.htm",width:320+parseInt(j.getLang("advanced.anchor_delta_width",0)),height:90+parseInt(j.getLang("advanced.anchor_delta_height",0)),inline:true},{theme_url:this.url})},_mceCharMap:function(){var j=this.editor;j.windowManager.open({url:this.url+"/charmap.htm",width:550+parseInt(j.getLang("advanced.charmap_delta_width",0)),height:265+parseInt(j.getLang("advanced.charmap_delta_height",0)),inline:true},{theme_url:this.url})},_mceHelp:function(){var j=this.editor;j.windowManager.open({url:this.url+"/about.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceShortcuts:function(){var j=this.editor;j.windowManager.open({url:this.url+"/shortcuts.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceColorPicker:function(l,k){var j=this.editor;k=k||{};j.windowManager.open({url:this.url+"/color_picker.htm",width:375+parseInt(j.getLang("advanced.colorpicker_delta_width",0)),height:250+parseInt(j.getLang("advanced.colorpicker_delta_height",0)),close_previous:false,inline:true},{input_color:k.color,func:k.func,theme_url:this.url})},_mceCodeEditor:function(k,l){var j=this.editor;j.windowManager.open({url:this.url+"/source_editor.htm",width:parseInt(j.getParam("theme_advanced_source_editor_width",720)),height:parseInt(j.getParam("theme_advanced_source_editor_height",580)),inline:true,resizable:true,maximizable:true},{theme_url:this.url})},_mceImage:function(k,l){var j=this.editor;if(j.dom.getAttrib(j.selection.getNode(),"class","").indexOf("mceItem")!=-1){return}j.windowManager.open({url:this.url+"/image.htm",width:355+parseInt(j.getLang("advanced.image_delta_width",0)),height:275+parseInt(j.getLang("advanced.image_delta_height",0)),inline:true},{theme_url:this.url})},_mceLink:function(k,l){var j=this.editor;j.windowManager.open({url:this.url+"/link.htm",width:310+parseInt(j.getLang("advanced.link_delta_width",0)),height:200+parseInt(j.getLang("advanced.link_delta_height",0)),inline:true},{theme_url:this.url})},_mceNewDocument:function(){var j=this.editor;j.windowManager.confirm("advanced.newdocument",function(k){if(k){j.execCommand("mceSetContent",false,"")}})},_mceForeColor:function(){var j=this;this._mceColorPicker(0,{color:j.fgColor,func:function(k){j.fgColor=k;j.editor.execCommand("ForeColor",false,k)}})},_mceBackColor:function(){var j=this;this._mceColorPicker(0,{color:j.bgColor,func:function(k){j.bgColor=k;j.editor.execCommand("HiliteColor",false,k)}})},_ufirst:function(j){return j.substring(0,1).toUpperCase()+j.substring(1)}});h.ThemeManager.add("advanced",h.themes.AdvancedTheme)}(tinymce)); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js deleted file mode 100644 index 82166dcb6..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js +++ /dev/null @@ -1,1490 +0,0 @@ -/** - * editor_template_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function(tinymce) { - var DOM = tinymce.DOM, Event = tinymce.dom.Event, extend = tinymce.extend, each = tinymce.each, Cookie = tinymce.util.Cookie, lastExtID, explode = tinymce.explode; - - // Generates a preview for a format - function getPreviewCss(ed, fmt) { - var name, previewElm, dom = ed.dom, previewCss = '', parentFontSize, previewStylesName; - - previewStyles = ed.settings.preview_styles; - - // No preview forced - if (previewStyles === false) - return ''; - - // Default preview - if (!previewStyles) - previewStyles = 'font-family font-size font-weight text-decoration text-transform color background-color'; - - // Removes any variables since these can't be previewed - function removeVars(val) { - return val.replace(/%(\w+)/g, ''); - }; - - // Create block/inline element to use for preview - name = fmt.block || fmt.inline || 'span'; - previewElm = dom.create(name); - - // Add format styles to preview element - each(fmt.styles, function(value, name) { - value = removeVars(value); - - if (value) - dom.setStyle(previewElm, name, value); - }); - - // Add attributes to preview element - each(fmt.attributes, function(value, name) { - value = removeVars(value); - - if (value) - dom.setAttrib(previewElm, name, value); - }); - - // Add classes to preview element - each(fmt.classes, function(value) { - value = removeVars(value); - - if (!dom.hasClass(previewElm, value)) - dom.addClass(previewElm, value); - }); - - // Add the previewElm outside the visual area - dom.setStyles(previewElm, {position: 'absolute', left: -0xFFFF}); - ed.getBody().appendChild(previewElm); - - // Get parent container font size so we can compute px values out of em/% for older IE:s - parentFontSize = dom.getStyle(ed.getBody(), 'fontSize', true); - parentFontSize = /px$/.test(parentFontSize) ? parseInt(parentFontSize, 10) : 0; - - each(previewStyles.split(' '), function(name) { - var value = dom.getStyle(previewElm, name, true); - - // If background is transparent then check if the body has a background color we can use - if (name == 'background-color' && /transparent|rgba\s*\([^)]+,\s*0\)/.test(value)) { - value = dom.getStyle(ed.getBody(), name, true); - - // Ignore white since it's the default color, not the nicest fix - if (dom.toHex(value).toLowerCase() == '#ffffff') { - return; - } - } - - // Old IE won't calculate the font size so we need to do that manually - if (name == 'font-size') { - if (/em|%$/.test(value)) { - if (parentFontSize === 0) { - return; - } - - // Convert font size from em/% to px - value = parseFloat(value, 10) / (/%$/.test(value) ? 100 : 1); - value = (value * parentFontSize) + 'px'; - } - } - - previewCss += name + ':' + value + ';'; - }); - - dom.remove(previewElm); - - return previewCss; - }; - - // Tell it to load theme specific language pack(s) - tinymce.ThemeManager.requireLangPack('advanced'); - - tinymce.create('tinymce.themes.AdvancedTheme', { - sizes : [8, 10, 12, 14, 18, 24, 36], - - // Control name lookup, format: title, command - controls : { - bold : ['bold_desc', 'Bold'], - italic : ['italic_desc', 'Italic'], - underline : ['underline_desc', 'Underline'], - strikethrough : ['striketrough_desc', 'Strikethrough'], - justifyleft : ['justifyleft_desc', 'JustifyLeft'], - justifycenter : ['justifycenter_desc', 'JustifyCenter'], - justifyright : ['justifyright_desc', 'JustifyRight'], - justifyfull : ['justifyfull_desc', 'JustifyFull'], - bullist : ['bullist_desc', 'InsertUnorderedList'], - numlist : ['numlist_desc', 'InsertOrderedList'], - outdent : ['outdent_desc', 'Outdent'], - indent : ['indent_desc', 'Indent'], - cut : ['cut_desc', 'Cut'], - copy : ['copy_desc', 'Copy'], - paste : ['paste_desc', 'Paste'], - undo : ['undo_desc', 'Undo'], - redo : ['redo_desc', 'Redo'], - link : ['link_desc', 'mceLink'], - unlink : ['unlink_desc', 'unlink'], - image : ['image_desc', 'mceImage'], - cleanup : ['cleanup_desc', 'mceCleanup'], - help : ['help_desc', 'mceHelp'], - code : ['code_desc', 'mceCodeEditor'], - hr : ['hr_desc', 'InsertHorizontalRule'], - removeformat : ['removeformat_desc', 'RemoveFormat'], - sub : ['sub_desc', 'subscript'], - sup : ['sup_desc', 'superscript'], - forecolor : ['forecolor_desc', 'ForeColor'], - forecolorpicker : ['forecolor_desc', 'mceForeColor'], - backcolor : ['backcolor_desc', 'HiliteColor'], - backcolorpicker : ['backcolor_desc', 'mceBackColor'], - charmap : ['charmap_desc', 'mceCharMap'], - visualaid : ['visualaid_desc', 'mceToggleVisualAid'], - anchor : ['anchor_desc', 'mceInsertAnchor'], - newdocument : ['newdocument_desc', 'mceNewDocument'], - blockquote : ['blockquote_desc', 'mceBlockQuote'] - }, - - stateControls : ['bold', 'italic', 'underline', 'strikethrough', 'bullist', 'numlist', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'sub', 'sup', 'blockquote'], - - init : function(ed, url) { - var t = this, s, v, o; - - t.editor = ed; - t.url = url; - t.onResolveName = new tinymce.util.Dispatcher(this); - s = ed.settings; - - ed.forcedHighContrastMode = ed.settings.detect_highcontrast && t._isHighContrast(); - ed.settings.skin = ed.forcedHighContrastMode ? 'highcontrast' : ed.settings.skin; - - // Setup default buttons - if (!s.theme_advanced_buttons1) { - s = extend({ - theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect", - theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code", - theme_advanced_buttons3 : "hr,removeformat,visualaid,|,sub,sup,|,charmap" - }, s); - } - - // Default settings - t.settings = s = extend({ - theme_advanced_path : true, - theme_advanced_toolbar_location : 'top', - theme_advanced_blockformats : "p,address,pre,h1,h2,h3,h4,h5,h6", - theme_advanced_toolbar_align : "left", - theme_advanced_statusbar_location : "bottom", - theme_advanced_fonts : "Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats", - theme_advanced_more_colors : 1, - theme_advanced_row_height : 23, - theme_advanced_resize_horizontal : 1, - theme_advanced_resizing_use_cookie : 1, - theme_advanced_font_sizes : "1,2,3,4,5,6,7", - theme_advanced_font_selector : "span", - theme_advanced_show_current_color: 0, - readonly : ed.settings.readonly - }, s); - - // Setup default font_size_style_values - if (!s.font_size_style_values) - s.font_size_style_values = "8pt,10pt,12pt,14pt,18pt,24pt,36pt"; - - if (tinymce.is(s.theme_advanced_font_sizes, 'string')) { - s.font_size_style_values = tinymce.explode(s.font_size_style_values); - s.font_size_classes = tinymce.explode(s.font_size_classes || ''); - - // Parse string value - o = {}; - ed.settings.theme_advanced_font_sizes = s.theme_advanced_font_sizes; - each(ed.getParam('theme_advanced_font_sizes', '', 'hash'), function(v, k) { - var cl; - - if (k == v && v >= 1 && v <= 7) { - k = v + ' (' + t.sizes[v - 1] + 'pt)'; - cl = s.font_size_classes[v - 1]; - v = s.font_size_style_values[v - 1] || (t.sizes[v - 1] + 'pt'); - } - - if (/^\s*\./.test(v)) - cl = v.replace(/\./g, ''); - - o[k] = cl ? {'class' : cl} : {fontSize : v}; - }); - - s.theme_advanced_font_sizes = o; - } - - if ((v = s.theme_advanced_path_location) && v != 'none') - s.theme_advanced_statusbar_location = s.theme_advanced_path_location; - - if (s.theme_advanced_statusbar_location == 'none') - s.theme_advanced_statusbar_location = 0; - - if (ed.settings.content_css !== false) - ed.contentCSS.push(ed.baseURI.toAbsolute(url + "/skins/" + ed.settings.skin + "/content.css")); - - // Init editor - ed.onInit.add(function() { - if (!ed.settings.readonly) { - ed.onNodeChange.add(t._nodeChanged, t); - ed.onKeyUp.add(t._updateUndoStatus, t); - ed.onMouseUp.add(t._updateUndoStatus, t); - ed.dom.bind(ed.dom.getRoot(), 'dragend', function() { - t._updateUndoStatus(ed); - }); - } - }); - - ed.onSetProgressState.add(function(ed, b, ti) { - var co, id = ed.id, tb; - - if (b) { - t.progressTimer = setTimeout(function() { - co = ed.getContainer(); - co = co.insertBefore(DOM.create('DIV', {style : 'position:relative'}), co.firstChild); - tb = DOM.get(ed.id + '_tbl'); - - DOM.add(co, 'div', {id : id + '_blocker', 'class' : 'mceBlocker', style : {width : tb.clientWidth + 2, height : tb.clientHeight + 2}}); - DOM.add(co, 'div', {id : id + '_progress', 'class' : 'mceProgress', style : {left : tb.clientWidth / 2, top : tb.clientHeight / 2}}); - }, ti || 0); - } else { - DOM.remove(id + '_blocker'); - DOM.remove(id + '_progress'); - clearTimeout(t.progressTimer); - } - }); - - DOM.loadCSS(s.editor_css ? ed.documentBaseURI.toAbsolute(s.editor_css) : url + "/skins/" + ed.settings.skin + "/ui.css"); - - if (s.skin_variant) - DOM.loadCSS(url + "/skins/" + ed.settings.skin + "/ui_" + s.skin_variant + ".css"); - }, - - _isHighContrast : function() { - var actualColor, div = DOM.add(DOM.getRoot(), 'div', {'style': 'background-color: rgb(171,239,86);'}); - - actualColor = (DOM.getStyle(div, 'background-color', true) + '').toLowerCase().replace(/ /g, ''); - DOM.remove(div); - - return actualColor != 'rgb(171,239,86)' && actualColor != '#abef56'; - }, - - createControl : function(n, cf) { - var cd, c; - - if (c = cf.createControl(n)) - return c; - - switch (n) { - case "styleselect": - return this._createStyleSelect(); - - case "formatselect": - return this._createBlockFormats(); - - case "fontselect": - return this._createFontSelect(); - - case "fontsizeselect": - return this._createFontSizeSelect(); - - case "forecolor": - return this._createForeColorMenu(); - - case "backcolor": - return this._createBackColorMenu(); - } - - if ((cd = this.controls[n])) - return cf.createButton(n, {title : "advanced." + cd[0], cmd : cd[1], ui : cd[2], value : cd[3]}); - }, - - execCommand : function(cmd, ui, val) { - var f = this['_' + cmd]; - - if (f) { - f.call(this, ui, val); - return true; - } - - return false; - }, - - _importClasses : function(e) { - var ed = this.editor, ctrl = ed.controlManager.get('styleselect'); - - if (ctrl.getLength() == 0) { - each(ed.dom.getClasses(), function(o, idx) { - var name = 'style_' + idx, fmt; - - fmt = { - inline : 'span', - attributes : {'class' : o['class']}, - selector : '*' - }; - - ed.formatter.register(name, fmt); - - ctrl.add(o['class'], name, { - style: function() { - return getPreviewCss(ed, fmt); - } - }); - }); - } - }, - - _createStyleSelect : function(n) { - var t = this, ed = t.editor, ctrlMan = ed.controlManager, ctrl; - - // Setup style select box - ctrl = ctrlMan.createListBox('styleselect', { - title : 'advanced.style_select', - onselect : function(name) { - var matches, formatNames = [], removedFormat; - - each(ctrl.items, function(item) { - formatNames.push(item.value); - }); - - ed.focus(); - ed.undoManager.add(); - - // Toggle off the current format(s) - matches = ed.formatter.matchAll(formatNames); - tinymce.each(matches, function(match) { - if (!name || match == name) { - if (match) - ed.formatter.remove(match); - - removedFormat = true; - } - }); - - if (!removedFormat) - ed.formatter.apply(name); - - ed.undoManager.add(); - ed.nodeChanged(); - - return false; // No auto select - } - }); - - // Handle specified format - ed.onPreInit.add(function() { - var counter = 0, formats = ed.getParam('style_formats'); - - if (formats) { - each(formats, function(fmt) { - var name, keys = 0; - - each(fmt, function() {keys++;}); - - if (keys > 1) { - name = fmt.name = fmt.name || 'style_' + (counter++); - ed.formatter.register(name, fmt); - ctrl.add(fmt.title, name, { - style: function() { - return getPreviewCss(ed, fmt); - } - }); - } else - ctrl.add(fmt.title); - }); - } else { - each(ed.getParam('theme_advanced_styles', '', 'hash'), function(val, key) { - var name, fmt; - - if (val) { - name = 'style_' + (counter++); - fmt = { - inline : 'span', - classes : val, - selector : '*' - }; - - ed.formatter.register(name, fmt); - ctrl.add(t.editor.translate(key), name, { - style: function() { - return getPreviewCss(ed, fmt); - } - }); - } - }); - } - }); - - // Auto import classes if the ctrl box is empty - if (ctrl.getLength() == 0) { - ctrl.onPostRender.add(function(ed, n) { - if (!ctrl.NativeListBox) { - Event.add(n.id + '_text', 'focus', t._importClasses, t); - Event.add(n.id + '_text', 'mousedown', t._importClasses, t); - Event.add(n.id + '_open', 'focus', t._importClasses, t); - Event.add(n.id + '_open', 'mousedown', t._importClasses, t); - } else - Event.add(n.id, 'focus', t._importClasses, t); - }); - } - - return ctrl; - }, - - _createFontSelect : function() { - var c, t = this, ed = t.editor; - - c = ed.controlManager.createListBox('fontselect', { - title : 'advanced.fontdefault', - onselect : function(v) { - var cur = c.items[c.selectedIndex]; - - if (!v && cur) { - ed.execCommand('FontName', false, cur.value); - return; - } - - ed.execCommand('FontName', false, v); - - // Fake selection, execCommand will fire a nodeChange and update the selection - c.select(function(sv) { - return v == sv; - }); - - if (cur && cur.value == v) { - c.select(null); - } - - return false; // No auto select - } - }); - - if (c) { - each(ed.getParam('theme_advanced_fonts', t.settings.theme_advanced_fonts, 'hash'), function(v, k) { - c.add(ed.translate(k), v, {style : v.indexOf('dings') == -1 ? 'font-family:' + v : ''}); - }); - } - - return c; - }, - - _createFontSizeSelect : function() { - var t = this, ed = t.editor, c, i = 0, cl = []; - - c = ed.controlManager.createListBox('fontsizeselect', {title : 'advanced.font_size', onselect : function(v) { - var cur = c.items[c.selectedIndex]; - - if (!v && cur) { - cur = cur.value; - - if (cur['class']) { - ed.formatter.toggle('fontsize_class', {value : cur['class']}); - ed.undoManager.add(); - ed.nodeChanged(); - } else { - ed.execCommand('FontSize', false, cur.fontSize); - } - - return; - } - - if (v['class']) { - ed.focus(); - ed.undoManager.add(); - ed.formatter.toggle('fontsize_class', {value : v['class']}); - ed.undoManager.add(); - ed.nodeChanged(); - } else - ed.execCommand('FontSize', false, v.fontSize); - - // Fake selection, execCommand will fire a nodeChange and update the selection - c.select(function(sv) { - return v == sv; - }); - - if (cur && (cur.value.fontSize == v.fontSize || cur.value['class'] && cur.value['class'] == v['class'])) { - c.select(null); - } - - return false; // No auto select - }}); - - if (c) { - each(t.settings.theme_advanced_font_sizes, function(v, k) { - var fz = v.fontSize; - - if (fz >= 1 && fz <= 7) - fz = t.sizes[parseInt(fz) - 1] + 'pt'; - - c.add(k, v, {'style' : 'font-size:' + fz, 'class' : 'mceFontSize' + (i++) + (' ' + (v['class'] || ''))}); - }); - } - - return c; - }, - - _createBlockFormats : function() { - var c, fmts = { - p : 'advanced.paragraph', - address : 'advanced.address', - pre : 'advanced.pre', - h1 : 'advanced.h1', - h2 : 'advanced.h2', - h3 : 'advanced.h3', - h4 : 'advanced.h4', - h5 : 'advanced.h5', - h6 : 'advanced.h6', - div : 'advanced.div', - blockquote : 'advanced.blockquote', - code : 'advanced.code', - dt : 'advanced.dt', - dd : 'advanced.dd', - samp : 'advanced.samp' - }, t = this; - - c = t.editor.controlManager.createListBox('formatselect', {title : 'advanced.block', onselect : function(v) { - t.editor.execCommand('FormatBlock', false, v); - return false; - }}); - - if (c) { - each(t.editor.getParam('theme_advanced_blockformats', t.settings.theme_advanced_blockformats, 'hash'), function(v, k) { - c.add(t.editor.translate(k != v ? k : fmts[v]), v, {'class' : 'mce_formatPreview mce_' + v, style: function() { - return getPreviewCss(t.editor, {block: v}); - }}); - }); - } - - return c; - }, - - _createForeColorMenu : function() { - var c, t = this, s = t.settings, o = {}, v; - - if (s.theme_advanced_more_colors) { - o.more_colors_func = function() { - t._mceColorPicker(0, { - color : c.value, - func : function(co) { - c.setColor(co); - } - }); - }; - } - - if (v = s.theme_advanced_text_colors) - o.colors = v; - - if (s.theme_advanced_default_foreground_color) - o.default_color = s.theme_advanced_default_foreground_color; - - o.title = 'advanced.forecolor_desc'; - o.cmd = 'ForeColor'; - o.scope = this; - - c = t.editor.controlManager.createColorSplitButton('forecolor', o); - - return c; - }, - - _createBackColorMenu : function() { - var c, t = this, s = t.settings, o = {}, v; - - if (s.theme_advanced_more_colors) { - o.more_colors_func = function() { - t._mceColorPicker(0, { - color : c.value, - func : function(co) { - c.setColor(co); - } - }); - }; - } - - if (v = s.theme_advanced_background_colors) - o.colors = v; - - if (s.theme_advanced_default_background_color) - o.default_color = s.theme_advanced_default_background_color; - - o.title = 'advanced.backcolor_desc'; - o.cmd = 'HiliteColor'; - o.scope = this; - - c = t.editor.controlManager.createColorSplitButton('backcolor', o); - - return c; - }, - - renderUI : function(o) { - var n, ic, tb, t = this, ed = t.editor, s = t.settings, sc, p, nl; - - if (ed.settings) { - ed.settings.aria_label = s.aria_label + ed.getLang('advanced.help_shortcut'); - } - - // TODO: ACC Should have an aria-describedby attribute which is user-configurable to describe what this field is actually for. - // Maybe actually inherit it from the original textara? - n = p = DOM.create('span', {role : 'application', 'aria-labelledby' : ed.id + '_voice', id : ed.id + '_parent', 'class' : 'mceEditor ' + ed.settings.skin + 'Skin' + (s.skin_variant ? ' ' + ed.settings.skin + 'Skin' + t._ufirst(s.skin_variant) : '') + (ed.settings.directionality == "rtl" ? ' mceRtl' : '')}); - DOM.add(n, 'span', {'class': 'mceVoiceLabel', 'style': 'display:none;', id: ed.id + '_voice'}, s.aria_label); - - if (!DOM.boxModel) - n = DOM.add(n, 'div', {'class' : 'mceOldBoxModel'}); - - n = sc = DOM.add(n, 'table', {role : "presentation", id : ed.id + '_tbl', 'class' : 'mceLayout', cellSpacing : 0, cellPadding : 0}); - n = tb = DOM.add(n, 'tbody'); - - switch ((s.theme_advanced_layout_manager || '').toLowerCase()) { - case "rowlayout": - ic = t._rowLayout(s, tb, o); - break; - - case "customlayout": - ic = ed.execCallback("theme_advanced_custom_layout", s, tb, o, p); - break; - - default: - ic = t._simpleLayout(s, tb, o, p); - } - - n = o.targetNode; - - // Add classes to first and last TRs - nl = sc.rows; - DOM.addClass(nl[0], 'mceFirst'); - DOM.addClass(nl[nl.length - 1], 'mceLast'); - - // Add classes to first and last TDs - each(DOM.select('tr', tb), function(n) { - DOM.addClass(n.firstChild, 'mceFirst'); - DOM.addClass(n.childNodes[n.childNodes.length - 1], 'mceLast'); - }); - - if (DOM.get(s.theme_advanced_toolbar_container)) - DOM.get(s.theme_advanced_toolbar_container).appendChild(p); - else - DOM.insertAfter(p, n); - - Event.add(ed.id + '_path_row', 'click', function(e) { - e = e.target; - - if (e.nodeName == 'A') { - t._sel(e.className.replace(/^.*mcePath_([0-9]+).*$/, '$1')); - return false; - } - }); -/* - if (DOM.get(ed.id + '_path_row')) { - Event.add(ed.id + '_tbl', 'mouseover', function(e) { - var re; - - e = e.target; - - if (e.nodeName == 'SPAN' && DOM.hasClass(e.parentNode, 'mceButton')) { - re = DOM.get(ed.id + '_path_row'); - t.lastPath = re.innerHTML; - DOM.setHTML(re, e.parentNode.title); - } - }); - - Event.add(ed.id + '_tbl', 'mouseout', function(e) { - if (t.lastPath) { - DOM.setHTML(ed.id + '_path_row', t.lastPath); - t.lastPath = 0; - } - }); - } -*/ - - if (!ed.getParam('accessibility_focus')) - Event.add(DOM.add(p, 'a', {href : '#'}, ''), 'focus', function() {tinyMCE.get(ed.id).focus();}); - - if (s.theme_advanced_toolbar_location == 'external') - o.deltaHeight = 0; - - t.deltaHeight = o.deltaHeight; - o.targetNode = null; - - ed.onKeyDown.add(function(ed, evt) { - var DOM_VK_F10 = 121, DOM_VK_F11 = 122; - - if (evt.altKey) { - if (evt.keyCode === DOM_VK_F10) { - // Make sure focus is given to toolbar in Safari. - // We can't do this in IE as it prevents giving focus to toolbar when editor is in a frame - if (tinymce.isWebKit) { - window.focus(); - } - t.toolbarGroup.focus(); - return Event.cancel(evt); - } else if (evt.keyCode === DOM_VK_F11) { - DOM.get(ed.id + '_path_row').focus(); - return Event.cancel(evt); - } - } - }); - - // alt+0 is the UK recommended shortcut for accessing the list of access controls. - ed.addShortcut('alt+0', '', 'mceShortcuts', t); - - return { - iframeContainer : ic, - editorContainer : ed.id + '_parent', - sizeContainer : sc, - deltaHeight : o.deltaHeight - }; - }, - - getInfo : function() { - return { - longname : 'Advanced theme', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - version : tinymce.majorVersion + "." + tinymce.minorVersion - } - }, - - resizeBy : function(dw, dh) { - var e = DOM.get(this.editor.id + '_ifr'); - - this.resizeTo(e.clientWidth + dw, e.clientHeight + dh); - }, - - resizeTo : function(w, h, store) { - var ed = this.editor, s = this.settings, e = DOM.get(ed.id + '_tbl'), ifr = DOM.get(ed.id + '_ifr'); - - // Boundery fix box - w = Math.max(s.theme_advanced_resizing_min_width || 100, w); - h = Math.max(s.theme_advanced_resizing_min_height || 100, h); - w = Math.min(s.theme_advanced_resizing_max_width || 0xFFFF, w); - h = Math.min(s.theme_advanced_resizing_max_height || 0xFFFF, h); - - // Resize iframe and container - DOM.setStyle(e, 'height', ''); - DOM.setStyle(ifr, 'height', h); - - if (s.theme_advanced_resize_horizontal) { - DOM.setStyle(e, 'width', ''); - DOM.setStyle(ifr, 'width', w); - - // Make sure that the size is never smaller than the over all ui - if (w < e.clientWidth) { - w = e.clientWidth; - DOM.setStyle(ifr, 'width', e.clientWidth); - } - } - - // Store away the size - if (store && s.theme_advanced_resizing_use_cookie) { - Cookie.setHash("TinyMCE_" + ed.id + "_size", { - cw : w, - ch : h - }); - } - }, - - destroy : function() { - var id = this.editor.id; - - Event.clear(id + '_resize'); - Event.clear(id + '_path_row'); - Event.clear(id + '_external_close'); - }, - - // Internal functions - - _simpleLayout : function(s, tb, o, p) { - var t = this, ed = t.editor, lo = s.theme_advanced_toolbar_location, sl = s.theme_advanced_statusbar_location, n, ic, etb, c; - - if (s.readonly) { - n = DOM.add(tb, 'tr'); - n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); - return ic; - } - - // Create toolbar container at top - if (lo == 'top') - t._addToolbars(tb, o); - - // Create external toolbar - if (lo == 'external') { - n = c = DOM.create('div', {style : 'position:relative'}); - n = DOM.add(n, 'div', {id : ed.id + '_external', 'class' : 'mceExternalToolbar'}); - DOM.add(n, 'a', {id : ed.id + '_external_close', href : 'javascript:;', 'class' : 'mceExternalClose'}); - n = DOM.add(n, 'table', {id : ed.id + '_tblext', cellSpacing : 0, cellPadding : 0}); - etb = DOM.add(n, 'tbody'); - - if (p.firstChild.className == 'mceOldBoxModel') - p.firstChild.appendChild(c); - else - p.insertBefore(c, p.firstChild); - - t._addToolbars(etb, o); - - ed.onMouseUp.add(function() { - var e = DOM.get(ed.id + '_external'); - DOM.show(e); - - DOM.hide(lastExtID); - - var f = Event.add(ed.id + '_external_close', 'click', function() { - DOM.hide(ed.id + '_external'); - Event.remove(ed.id + '_external_close', 'click', f); - return false; - }); - - DOM.show(e); - DOM.setStyle(e, 'top', 0 - DOM.getRect(ed.id + '_tblext').h - 1); - - // Fixes IE rendering bug - DOM.hide(e); - DOM.show(e); - e.style.filter = ''; - - lastExtID = ed.id + '_external'; - - e = null; - }); - } - - if (sl == 'top') - t._addStatusBar(tb, o); - - // Create iframe container - if (!s.theme_advanced_toolbar_container) { - n = DOM.add(tb, 'tr'); - n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); - } - - // Create toolbar container at bottom - if (lo == 'bottom') - t._addToolbars(tb, o); - - if (sl == 'bottom') - t._addStatusBar(tb, o); - - return ic; - }, - - _rowLayout : function(s, tb, o) { - var t = this, ed = t.editor, dc, da, cf = ed.controlManager, n, ic, to, a; - - dc = s.theme_advanced_containers_default_class || ''; - da = s.theme_advanced_containers_default_align || 'center'; - - each(explode(s.theme_advanced_containers || ''), function(c, i) { - var v = s['theme_advanced_container_' + c] || ''; - - switch (c.toLowerCase()) { - case 'mceeditor': - n = DOM.add(tb, 'tr'); - n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); - break; - - case 'mceelementpath': - t._addStatusBar(tb, o); - break; - - default: - a = (s['theme_advanced_container_' + c + '_align'] || da).toLowerCase(); - a = 'mce' + t._ufirst(a); - - n = DOM.add(DOM.add(tb, 'tr'), 'td', { - 'class' : 'mceToolbar ' + (s['theme_advanced_container_' + c + '_class'] || dc) + ' ' + a || da - }); - - to = cf.createToolbar("toolbar" + i); - t._addControls(v, to); - DOM.setHTML(n, to.renderHTML()); - o.deltaHeight -= s.theme_advanced_row_height; - } - }); - - return ic; - }, - - _addControls : function(v, tb) { - var t = this, s = t.settings, di, cf = t.editor.controlManager; - - if (s.theme_advanced_disable && !t._disabled) { - di = {}; - - each(explode(s.theme_advanced_disable), function(v) { - di[v] = 1; - }); - - t._disabled = di; - } else - di = t._disabled; - - each(explode(v), function(n) { - var c; - - if (di && di[n]) - return; - - // Compatiblity with 2.x - if (n == 'tablecontrols') { - each(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"], function(n) { - n = t.createControl(n, cf); - - if (n) - tb.add(n); - }); - - return; - } - - c = t.createControl(n, cf); - - if (c) - tb.add(c); - }); - }, - - _addToolbars : function(c, o) { - var t = this, i, tb, ed = t.editor, s = t.settings, v, cf = ed.controlManager, di, n, h = [], a, toolbarGroup, toolbarsExist = false; - - toolbarGroup = cf.createToolbarGroup('toolbargroup', { - 'name': ed.getLang('advanced.toolbar'), - 'tab_focus_toolbar':ed.getParam('theme_advanced_tab_focus_toolbar') - }); - - t.toolbarGroup = toolbarGroup; - - a = s.theme_advanced_toolbar_align.toLowerCase(); - a = 'mce' + t._ufirst(a); - - n = DOM.add(DOM.add(c, 'tr', {role: 'presentation'}), 'td', {'class' : 'mceToolbar ' + a, "role":"toolbar"}); - - // Create toolbar and add the controls - for (i=1; (v = s['theme_advanced_buttons' + i]); i++) { - toolbarsExist = true; - tb = cf.createToolbar("toolbar" + i, {'class' : 'mceToolbarRow' + i}); - - if (s['theme_advanced_buttons' + i + '_add']) - v += ',' + s['theme_advanced_buttons' + i + '_add']; - - if (s['theme_advanced_buttons' + i + '_add_before']) - v = s['theme_advanced_buttons' + i + '_add_before'] + ',' + v; - - t._addControls(v, tb); - toolbarGroup.add(tb); - - o.deltaHeight -= s.theme_advanced_row_height; - } - // Handle case when there are no toolbar buttons and ensure editor height is adjusted accordingly - if (!toolbarsExist) - o.deltaHeight -= s.theme_advanced_row_height; - h.push(toolbarGroup.renderHTML()); - h.push(DOM.createHTML('a', {href : '#', accesskey : 'z', title : ed.getLang("advanced.toolbar_focus"), onfocus : 'tinyMCE.getInstanceById(\'' + ed.id + '\').focus();'}, '')); - DOM.setHTML(n, h.join('')); - }, - - _addStatusBar : function(tb, o) { - var n, t = this, ed = t.editor, s = t.settings, r, mf, me, td; - - n = DOM.add(tb, 'tr'); - n = td = DOM.add(n, 'td', {'class' : 'mceStatusbar'}); - n = DOM.add(n, 'div', {id : ed.id + '_path_row', 'role': 'group', 'aria-labelledby': ed.id + '_path_voice'}); - if (s.theme_advanced_path) { - DOM.add(n, 'span', {id: ed.id + '_path_voice'}, ed.translate('advanced.path')); - DOM.add(n, 'span', {}, ': '); - } else { - DOM.add(n, 'span', {}, ' '); - } - - - if (s.theme_advanced_resizing) { - DOM.add(td, 'a', {id : ed.id + '_resize', href : 'javascript:;', onclick : "return false;", 'class' : 'mceResize', tabIndex:"-1"}); - - if (s.theme_advanced_resizing_use_cookie) { - ed.onPostRender.add(function() { - var o = Cookie.getHash("TinyMCE_" + ed.id + "_size"), c = DOM.get(ed.id + '_tbl'); - - if (!o) - return; - - t.resizeTo(o.cw, o.ch); - }); - } - - ed.onPostRender.add(function() { - Event.add(ed.id + '_resize', 'click', function(e) { - e.preventDefault(); - }); - - Event.add(ed.id + '_resize', 'mousedown', function(e) { - var mouseMoveHandler1, mouseMoveHandler2, - mouseUpHandler1, mouseUpHandler2, - startX, startY, startWidth, startHeight, width, height, ifrElm; - - function resizeOnMove(e) { - e.preventDefault(); - - width = startWidth + (e.screenX - startX); - height = startHeight + (e.screenY - startY); - - t.resizeTo(width, height); - }; - - function endResize(e) { - // Stop listening - Event.remove(DOM.doc, 'mousemove', mouseMoveHandler1); - Event.remove(ed.getDoc(), 'mousemove', mouseMoveHandler2); - Event.remove(DOM.doc, 'mouseup', mouseUpHandler1); - Event.remove(ed.getDoc(), 'mouseup', mouseUpHandler2); - - width = startWidth + (e.screenX - startX); - height = startHeight + (e.screenY - startY); - t.resizeTo(width, height, true); - - ed.nodeChanged(); - }; - - e.preventDefault(); - - // Get the current rect size - startX = e.screenX; - startY = e.screenY; - ifrElm = DOM.get(t.editor.id + '_ifr'); - startWidth = width = ifrElm.clientWidth; - startHeight = height = ifrElm.clientHeight; - - // Register envent handlers - mouseMoveHandler1 = Event.add(DOM.doc, 'mousemove', resizeOnMove); - mouseMoveHandler2 = Event.add(ed.getDoc(), 'mousemove', resizeOnMove); - mouseUpHandler1 = Event.add(DOM.doc, 'mouseup', endResize); - mouseUpHandler2 = Event.add(ed.getDoc(), 'mouseup', endResize); - }); - }); - } - - o.deltaHeight -= 21; - n = tb = null; - }, - - _updateUndoStatus : function(ed) { - var cm = ed.controlManager, um = ed.undoManager; - - cm.setDisabled('undo', !um.hasUndo() && !um.typing); - cm.setDisabled('redo', !um.hasRedo()); - }, - - _nodeChanged : function(ed, cm, n, co, ob) { - var t = this, p, de = 0, v, c, s = t.settings, cl, fz, fn, fc, bc, formatNames, matches; - - tinymce.each(t.stateControls, function(c) { - cm.setActive(c, ed.queryCommandState(t.controls[c][1])); - }); - - function getParent(name) { - var i, parents = ob.parents, func = name; - - if (typeof(name) == 'string') { - func = function(node) { - return node.nodeName == name; - }; - } - - for (i = 0; i < parents.length; i++) { - if (func(parents[i])) - return parents[i]; - } - }; - - cm.setActive('visualaid', ed.hasVisual); - t._updateUndoStatus(ed); - cm.setDisabled('outdent', !ed.queryCommandState('Outdent')); - - p = getParent('A'); - if (c = cm.get('link')) { - c.setDisabled((!p && co) || (p && !p.href)); - c.setActive(!!p && (!p.name && !p.id)); - } - - if (c = cm.get('unlink')) { - c.setDisabled(!p && co); - c.setActive(!!p && !p.name && !p.id); - } - - if (c = cm.get('anchor')) { - c.setActive(!co && !!p && (p.name || (p.id && !p.href))); - } - - p = getParent('IMG'); - if (c = cm.get('image')) - c.setActive(!co && !!p && n.className.indexOf('mceItem') == -1); - - if (c = cm.get('styleselect')) { - t._importClasses(); - - formatNames = []; - each(c.items, function(item) { - formatNames.push(item.value); - }); - - matches = ed.formatter.matchAll(formatNames); - c.select(matches[0]); - tinymce.each(matches, function(match, index) { - if (index > 0) { - c.mark(match); - } - }); - } - - if (c = cm.get('formatselect')) { - p = getParent(ed.dom.isBlock); - - if (p) - c.select(p.nodeName.toLowerCase()); - } - - // Find out current fontSize, fontFamily and fontClass - getParent(function(n) { - if (n.nodeName === 'SPAN') { - if (!cl && n.className) - cl = n.className; - } - - if (ed.dom.is(n, s.theme_advanced_font_selector)) { - if (!fz && n.style.fontSize) - fz = n.style.fontSize; - - if (!fn && n.style.fontFamily) - fn = n.style.fontFamily.replace(/[\"\']+/g, '').replace(/^([^,]+).*/, '$1').toLowerCase(); - - if (!fc && n.style.color) - fc = n.style.color; - - if (!bc && n.style.backgroundColor) - bc = n.style.backgroundColor; - } - - return false; - }); - - if (c = cm.get('fontselect')) { - c.select(function(v) { - return v.replace(/^([^,]+).*/, '$1').toLowerCase() == fn; - }); - } - - // Select font size - if (c = cm.get('fontsizeselect')) { - // Use computed style - if (s.theme_advanced_runtime_fontsize && !fz && !cl) - fz = ed.dom.getStyle(n, 'fontSize', true); - - c.select(function(v) { - if (v.fontSize && v.fontSize === fz) - return true; - - if (v['class'] && v['class'] === cl) - return true; - }); - } - - if (s.theme_advanced_show_current_color) { - function updateColor(controlId, color) { - if (c = cm.get(controlId)) { - if (!color) - color = c.settings.default_color; - if (color !== c.value) { - c.displayColor(color); - } - } - } - updateColor('forecolor', fc); - updateColor('backcolor', bc); - } - - if (s.theme_advanced_show_current_color) { - function updateColor(controlId, color) { - if (c = cm.get(controlId)) { - if (!color) - color = c.settings.default_color; - if (color !== c.value) { - c.displayColor(color); - } - } - }; - - updateColor('forecolor', fc); - updateColor('backcolor', bc); - } - - if (s.theme_advanced_path && s.theme_advanced_statusbar_location) { - p = DOM.get(ed.id + '_path') || DOM.add(ed.id + '_path_row', 'span', {id : ed.id + '_path'}); - - if (t.statusKeyboardNavigation) { - t.statusKeyboardNavigation.destroy(); - t.statusKeyboardNavigation = null; - } - - DOM.setHTML(p, ''); - - getParent(function(n) { - var na = n.nodeName.toLowerCase(), u, pi, ti = ''; - - // Ignore non element and bogus/hidden elements - if (n.nodeType != 1 || na === 'br' || n.getAttribute('data-mce-bogus') || DOM.hasClass(n, 'mceItemHidden') || DOM.hasClass(n, 'mceItemRemoved')) - return; - - // Handle prefix - if (tinymce.isIE && n.scopeName !== 'HTML' && n.scopeName) - na = n.scopeName + ':' + na; - - // Remove internal prefix - na = na.replace(/mce\:/g, ''); - - // Handle node name - switch (na) { - case 'b': - na = 'strong'; - break; - - case 'i': - na = 'em'; - break; - - case 'img': - if (v = DOM.getAttrib(n, 'src')) - ti += 'src: ' + v + ' '; - - break; - - case 'a': - if (v = DOM.getAttrib(n, 'name')) { - ti += 'name: ' + v + ' '; - na += '#' + v; - } - - if (v = DOM.getAttrib(n, 'href')) - ti += 'href: ' + v + ' '; - - break; - - case 'font': - if (v = DOM.getAttrib(n, 'face')) - ti += 'font: ' + v + ' '; - - if (v = DOM.getAttrib(n, 'size')) - ti += 'size: ' + v + ' '; - - if (v = DOM.getAttrib(n, 'color')) - ti += 'color: ' + v + ' '; - - break; - - case 'span': - if (v = DOM.getAttrib(n, 'style')) - ti += 'style: ' + v + ' '; - - break; - } - - if (v = DOM.getAttrib(n, 'id')) - ti += 'id: ' + v + ' '; - - if (v = n.className) { - v = v.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g, ''); - - if (v) { - ti += 'class: ' + v + ' '; - - if (ed.dom.isBlock(n) || na == 'img' || na == 'span') - na += '.' + v; - } - } - - na = na.replace(/(html:)/g, ''); - na = {name : na, node : n, title : ti}; - t.onResolveName.dispatch(t, na); - ti = na.title; - na = na.name; - - //u = "javascript:tinymce.EditorManager.get('" + ed.id + "').theme._sel('" + (de++) + "');"; - pi = DOM.create('a', {'href' : "javascript:;", role: 'button', onmousedown : "return false;", title : ti, 'class' : 'mcePath_' + (de++)}, na); - - if (p.hasChildNodes()) { - p.insertBefore(DOM.create('span', {'aria-hidden': 'true'}, '\u00a0\u00bb '), p.firstChild); - p.insertBefore(pi, p.firstChild); - } else - p.appendChild(pi); - }, ed.getBody()); - - if (DOM.select('a', p).length > 0) { - t.statusKeyboardNavigation = new tinymce.ui.KeyboardNavigation({ - root: ed.id + "_path_row", - items: DOM.select('a', p), - excludeFromTabOrder: true, - onCancel: function() { - ed.focus(); - } - }, DOM); - } - } - }, - - // Commands gets called by execCommand - - _sel : function(v) { - this.editor.execCommand('mceSelectNodeDepth', false, v); - }, - - _mceInsertAnchor : function(ui, v) { - var ed = this.editor; - - ed.windowManager.open({ - url : this.url + '/anchor.htm', - width : 320 + parseInt(ed.getLang('advanced.anchor_delta_width', 0)), - height : 90 + parseInt(ed.getLang('advanced.anchor_delta_height', 0)), - inline : true - }, { - theme_url : this.url - }); - }, - - _mceCharMap : function() { - var ed = this.editor; - - ed.windowManager.open({ - url : this.url + '/charmap.htm', - width : 550 + parseInt(ed.getLang('advanced.charmap_delta_width', 0)), - height : 265 + parseInt(ed.getLang('advanced.charmap_delta_height', 0)), - inline : true - }, { - theme_url : this.url - }); - }, - - _mceHelp : function() { - var ed = this.editor; - - ed.windowManager.open({ - url : this.url + '/about.htm', - width : 480, - height : 380, - inline : true - }, { - theme_url : this.url - }); - }, - - _mceShortcuts : function() { - var ed = this.editor; - ed.windowManager.open({ - url: this.url + '/shortcuts.htm', - width: 480, - height: 380, - inline: true - }, { - theme_url: this.url - }); - }, - - _mceColorPicker : function(u, v) { - var ed = this.editor; - - v = v || {}; - - ed.windowManager.open({ - url : this.url + '/color_picker.htm', - width : 375 + parseInt(ed.getLang('advanced.colorpicker_delta_width', 0)), - height : 250 + parseInt(ed.getLang('advanced.colorpicker_delta_height', 0)), - close_previous : false, - inline : true - }, { - input_color : v.color, - func : v.func, - theme_url : this.url - }); - }, - - _mceCodeEditor : function(ui, val) { - var ed = this.editor; - - ed.windowManager.open({ - url : this.url + '/source_editor.htm', - width : parseInt(ed.getParam("theme_advanced_source_editor_width", 720)), - height : parseInt(ed.getParam("theme_advanced_source_editor_height", 580)), - inline : true, - resizable : true, - maximizable : true - }, { - theme_url : this.url - }); - }, - - _mceImage : function(ui, val) { - var ed = this.editor; - - // Internal image object like a flash placeholder - if (ed.dom.getAttrib(ed.selection.getNode(), 'class', '').indexOf('mceItem') != -1) - return; - - ed.windowManager.open({ - url : this.url + '/image.htm', - width : 355 + parseInt(ed.getLang('advanced.image_delta_width', 0)), - height : 275 + parseInt(ed.getLang('advanced.image_delta_height', 0)), - inline : true - }, { - theme_url : this.url - }); - }, - - _mceLink : function(ui, val) { - var ed = this.editor; - - ed.windowManager.open({ - url : this.url + '/link.htm', - width : 310 + parseInt(ed.getLang('advanced.link_delta_width', 0)), - height : 200 + parseInt(ed.getLang('advanced.link_delta_height', 0)), - inline : true - }, { - theme_url : this.url - }); - }, - - _mceNewDocument : function() { - var ed = this.editor; - - ed.windowManager.confirm('advanced.newdocument', function(s) { - if (s) - ed.execCommand('mceSetContent', false, ''); - }); - }, - - _mceForeColor : function() { - var t = this; - - this._mceColorPicker(0, { - color: t.fgColor, - func : function(co) { - t.fgColor = co; - t.editor.execCommand('ForeColor', false, co); - } - }); - }, - - _mceBackColor : function() { - var t = this; - - this._mceColorPicker(0, { - color: t.bgColor, - func : function(co) { - t.bgColor = co; - t.editor.execCommand('HiliteColor', false, co); - } - }); - }, - - _ufirst : function(s) { - return s.substring(0, 1).toUpperCase() + s.substring(1); - } - }); - - tinymce.ThemeManager.add('advanced', tinymce.themes.AdvancedTheme); -}(tinymce)); diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/image.htm b/library/tinymce/jscripts/tiny_mce/themes/advanced/image.htm deleted file mode 100644 index b8ba729f6..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/image.htm +++ /dev/null @@ -1,80 +0,0 @@ - - - - {#advanced_dlg.image_title} - - - - - - -
                                            - - -
                                            -
                                            - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - -
                                             
                                            - x -
                                            -
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg deleted file mode 100644 index b1a377aba7784d3a0a0fabb4d22b8114cde25ace..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2584 zcmb7Bc{JPk7XQT-ib;b~B!n)ZQYwihloXMus-;?bMO70&%O72KlgJueK-#swASle5Y5YhT*O%%dE zAkc>z8ik-xeL_Q`VvZfo0TzI`m>5`0R2&QjOGtcPyzrU;Ul*Hn2<045)l;>V5-MK0^|t(rvM}*3>DEeQ&X2g z3ksC~i~iFKh=?B5i-83o3#TV^B0=RA*fOi#-=2VN?CKn!VTTmGv17_PGbp~tmc*?G?Q3b)|K!w2vr zE#B_JH@ru}sZ}~Z&Y(BdJ;w0B<_kXtGuOzs3$vq}6fO9@x%kiyX*#pRnd1k|;ZC9lr#>sh{3$yY|bYY6^>YT3sgsjiaZ zt)366^&;$S^TAwvN^I2ac+hLh>*VqIos|eL+aL&+l(KvNwWYDctNE^CZRyy^Hk}Gm zs%JVikvO#Mk)X?@TXY=wD38V@;t?)q3)?k2YvxLQMV|Z{nbR2g{a11;p-%!QgLK)B zOxbfUi(pzhsbuCxGBk6FDP#0RPN626_I($Qo;ZGhzWMfs%mMoI+aSZnc5a0+bG2w> zdwgm4&zp*i7B>D%H%G$4FMfG12)D3b{1}-HBqY<6w=n2s8b{B_D%uFYtH{l(Gjv9e zWpFy-6fULzp*cl~BJ4!l*}~J{8#NXk`;x5Nxc+^GEA?|AACg+K)(M|zxHsxFUr9^W z8>QdvdWEw!My?R7!O*p>?3Vb|(=N3|J09OD{Yf#{7*(=rbThiBH~Pm^1tz8SQ?S_2 zsL7(bX9dJ9E%uV^(+dSB)^w=MsF&jg*N2Yjo41m`+WsE&JM@CatfiOlPhC?QPlCp7 zkjesJENk4=dSaN^0M0u1TG4#qeAKgyC$GLGD7II&*kr2|#1!BvS`Grg^OIWk%YAqd zvOcmz%SU-HCVg&rbnPaNZ@-T>)?IP3SO z`YKP&>q@U~m`o*wvU{S1o};9b|8*hRw?;H&TJo4a*7;m_)Q!aD3a1rnAWdVgkH=Lu zObSl!m}$JlWj5VNXvuO#F5@@cmhB(M4yEbSXe%Ptp_SH5SxG-pk!2PJGzE6Dd$(C0 z@d~vVd*NT)SU<2GYn`hA?4|dNDwAu?ZjXWSO9CasoBO}LQ2uFAj@4t0$2xTLEHxw3 z9KJCkFq|08Vmgmxahm%mjA%=I%Gs1mlNy$Km`%^o|A2`!bMPtTrP9y*c^+0M7OCcy z*j^fh4AjCI;2fso0|cz3p5Ih7h72bSVc6YE5O%+w*;qWtI~3hL4IzfscqG;j3j4$- zGt%o#6n#5{gEJw#3{=edteC(w|C#XBp!T8k; z1)EnwGqJ26>c-cDOJv5}Snt!0vhVoS>u03BZj_q+20phaQo81-&IAo;URjUJNTP{F zJ1=+YL^+~uVv(VHc>guRDB*Gug-NN7$n25zaX5RGugKeb5qMo|<1CcSE4+{PPcxQG zv3ZU;p_ZeurmcbMiK+xooGWRsM@gr+Dhpr7I*ST8obbMa5|CLQW{h63?CM{F=X{nL zs0Exdc{AnwAx@;9BObf9QiL5^p(iN?W^L~%mn5*ee?M2!d$&oxYIK&9bd1oX&-$gA z3T&To>*_6TDnv)9{*of(wm?U7D)X3u^_3;FijXcEo0S{8x^h(v0jeTdW0Q} zOC0Y|wO&b<-xFprPec9-SKwJYz4Pbz|~nyPrCb5|2|%P;^(%>|XHw4OO3JkE+QD zWRIhqlT(0Yu4KKuvUjKlnW`S~l&?fXH-Bf`2d!J=4UHXDv4xLDnvd2_EWTb3hReh6sXpEI(hmlM{1 gF4ie0tgS$y#z=nxNn#Fpd0bt##g=j86Aowo21S>Ot^fc4 diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif deleted file mode 100644 index dec3f7c7028df98657860529461af29b8793601c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmVM~p;I&fgwbZVtlRJPxC7uw?yFxEX;uVr4IeWCJ^(5m4hjYVM>G^+2V)FnXE$mS p86yHh03AmHCKD}bWutOkFce4&0zF5CG_Myp4hRT+ig>^g06S0cRV@Gj diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif deleted file mode 100644 index ca222490188b939d695f5ff8823c42c0394c65f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11982 zcmWk!c|6mP8~^OHd#=xr`xr#KZe^z1 zi+cW6-~WA*8gu5t%@Y?N8@YtO`ShEblvh}PUnmsnyI*)PwYdKEW_~G$SG&b8bE3L) z+K=)2+1$(S?yf)MW2=)?cXyAm@tM-ArTa{`y<7RigCKSZlYZs?th33aYz{Xrrg1r$Zik zyOEnq7b3sUN)C1v><+(O*>Zo^{>HC8d)~cW`upAFF~|MFg-`tDZ{?5KGvny6t9As2MA5lH&!&zxO+gZ3_M4>#JJFVoR4xO0r(P6?}W>QD1zl>fRckFPK`~ z9BPkw`e1u{LHYgBS1(*#29m5jLTRh3s~OqXxV*2~b&K=w|D>~5*$ubju04*wvUa)Z zX6sdt;xqF2{jK(nr76*F;TClt+gsOvZW6m}W``rKBW{JAZ7jI4Qc(No5|inX+{aj6c!UeKh;a+}x52g7>QRHxGLYHuxXE{@^{CKb+QC z-|+Zwfxwfw$`=Yla{1}ao2-_Z7VaWt%ZL&cZfVwwhK*VIUfzyJI_bTa?m$TMYY#^yi!yD9i82rmKt{MkI; zxHj;7GpGHpu%zVf-A!Rc*smpmh5NBL^R1Geqw0PG!MSCek(Zv-s;!~G`u7dqg5YM| zrtgW?_LeH)hVX#j5Oz0x$A3dC?yZ(;cb$jj2Yww601CLnad#SGi12^slSl%3G zu{k>1w15Bp{rU;7qPD$)FW`RuMdNVygbw^Gd$pek7yt-?o&S8`|2+XkH2aRwl?`J_8&Sj3RRS$CH45Q{pTC0ci2{zeEPPb}CFX^0}VOL%}Vk1Ee9V^@R z4L)|&H15OvXj}c`auOY)a|};>S!yBU@0wDkoR%0#}O0#J0J1+!a^?ViSp|C z`h0jgI%{hR?J;_LTx*KpV#|FA<(sQX9D?jZKfO8MLXprPmiNLwSGde77|h77m0%k? zFVd3dP_oBd1*T!Y;kLR#go~xs$<~@NFNaXjuIY)@d0H8 z>MVddgpIIO&Ltyvclw`7vxJYn*S7wGSJT0(ff=tWzC2j>wtrPXc;~Qjkbe;P`QD+z z9(`)ruM)SFf(Y9i{Jg+$$<)zSrxJ=0!IU01s?6XP3xQm;Ot>SfOt^9WV{^}sD00hP z8AQ{~d*Z#v>|v)y`1J%W#zzjKHKYom;s_wJbwx>58e$!@1gw5(jp|8k$B`4($~$jF zXNeL8Y%AsE#eR|saFk_O`urobb%qQ-@9?i($0f)(S7OntJV4^Wf!#sR;(|9l59&%Z z-T2fS^$yWw4HKw;u+?N}#9ljXO}2>~RhAMkm{1v}_rqtY2@w zA1xWPT}qlcFVkIvw^a~L=Qt=3 zytwaeTgIZSCH4Ut>&DXJ*Yur7w;y91k~<{SZ0^|V2q{5%U7TGuuM#j{oM5vl1yAh# z%3ONCXf5^E3(HmyTl?tsx)?f{EuGh9k%-m~19*oZF5HymqAbFlHo3f`!&dgnquq#W zr(Cy?xq7ib#mzn2UZ3@N)cpuMWxNnQ-EXXtOUfHvAR@FO+|N%NHpFqIZ|C$*>V3L8 zqWw6a_3ZUj2%mONZ#NG)npF^LZCpc|f~zSnSiM>O>ULdbft(z$bRAS7*<;fR>LoeG zIjlD_otOcY*cdu_o*-*QxCl2|-A>_trt_HIFL70>@>Vze6!$V)J?!sF2Yh89)U1FY z#vb`8R@9m47q3i*6y-MGoMaqhK*Eej(-Ye?V??8TbuDB{ex1e0$Q+$7a^#38Obr?9 zZui=vz1v218)V<3bDfk6iT7*}Ot4N*cby=S)EBhHFt!*?9rvEp7)=UDpP~k@&<@S0 z!9>`>K0T+lWPYmE+w$$2AhvSk^*-+Yq3Pn)v1bKZMpp6*8xOvvROBdNJk)x~*ByGa zA@x75hjBd>REQRY9*SQic>uKIalv;r>#}v6i*^i%MppB|-q>WKuM`|M|B$ z%SSdWr31R2Vg^Ux$Xg`2v$hi51Z&8n7Tn@Wl->eZ8Jaq(Nu;xo9ov~_bSa3r4YG}a zCXAk-zwOMs^y|Cg!m|<*g)E?ulQCHJti9bXEnT6Vg|=E;lH=F{Qy<|X&^Q`F)XQYF zR;l;_(r2G`CK@p9ZV6kn7X6Uh}azrhTPY4{a$qj?1uY+M>Xxz&7ChEse$?jc9are3Otg$%IuK5 zEOl?;odf4+w4_5+`OuxiY%XyF4%s%ITq#bhh) zKQH;PKRp97wwlU-_oo~5jUC4JRo(3Yc1FbHu!i1V&Mo5&mnZ?QqH`ORaJ3aPh&O&lf9? zJbYuQs<*Lv#jdtL9sF3#BJ21mdTELT6vz_n~p7GLCxD*GF%R-@yZijRph&;Iy zmKU}}D!l*0qVC!Qn-jf-F02D`{SkumMpoDN0%5l6J)+DQ>*he?%#+j-D9MuFcT-=pZr^c?z?zGyi?P0L z1Q-XYsoE6@_OomXIO?Znys^{8I!_(>9ls0IRaP`RcCjw#$Ef*X%6#{GrAr#6ZQU)G zu$uc~Q(F-o&B}wCfJs0(oN89JdbRqSFWI1(xpS;}T8uo6ki*FFI++oW{-4DdW z+%klcabd#~v4;8jSJPL;d&8FBjR>lSl|SnDYsA7f8!MFF60CJETdh&U>2wL!i+Mjz z9vJg)wTb`JoydO8+tS=BUh1Vj$YnmDsOpECVs2?tj_2kS10uzed zt@CEf!F}%coTLSA>Y9bs5ly3NV8@fDi@Rg({10kOnO+gmydv3pC0FEC42A^YgbHvW z;)C3I#OAtc@5XB@uVBN=SNts_9@!Wox%-=7wODsUI%1ETr@A=D{w?`b0O?dJ zO>^BI9}5$eAOl%GK6!CgBWH?O4pM(+5HksoJM+g(!NRO1mSor?vnv>`2rk=p3FAP5FVgXEELk zrmZ^I^^#MQsJ=_&IMB+WkOVPlVxS4WPTMpR5E(ix+2o6FF`+A0h{jyZ%&!W$#|?2^ z$wU%l)r`|L`;$i_@P0hRU*i-n4ya1ZY-x{^ff+tE35)fP_bIY?Hd-jbsREmLNtYUV=De6Ro%D0-NXe7LzQrU2j>Ep`$874g&!Yfyxo2*Yw z{6MExAPFp>o_6Y*JD@6%m(Dai7-1on6+c{T;jg{3(>rYKRB-4@?t=_SnH}xj?lGtn zr4~t+CNS75+jL`3h_;Jp@}m+uAr8sCwa&a|IcV2LdYO&t+bz-hTJ$sD>{cD~UpPSZ z0`xr|#OyMWt@Qj7O-V|KfjGbV=YT>HQycjqjG_ zr=jv5ipGZ)>qM(mL)QiR8Z->Ha-T`P?K_>O zCSKaI0;sN8sgi+Xb8x%vi?yb4UV}$vVTgH0SPvzyUf z`1N9sWPe7k1L8p&LzyS~$3g6`4*kzJz|S9c!xSnMAjG+zLK4=9LC>8mXh!2zDnz~2 zwlw`LJ!+a9GwUS{_m-Z{h&?0O!_!K=oF(KTbV-+J%*%2yuuCfkBEP3vtQZZQfiBA7 zwH&qjfXmQixQMTz_fPyLC)oTjBH(>?XKSjzkdD8`2cqEM5gWI`2AZ?B34}@eyeD_h zrQ$Ka-0#@P^`DojvdXsL_tg5A&YG6r-3D2O$+oVPFU-32KfMTLUB%-S|GQ`}s?J#1 zqS!z}$lyxQc=4{~{C~*m)K!3*jB{Ac3y?p_E-94=k)5xVh2mv*jU5b)Wj*URp%q-U z3OTuD<)kj<5}`6-xw1^QznnI8AbZjmCT$-hqnoK#6p~P7V&yhRJU++GQC|7Cy95T5 z)&}7MW6oFqb*iqHlkDMFC8Wt19oCrnu6B5P9lBLyuHqaxDLMg|i7nKmQeC@CswmIv zHT$axlYX&3%g*8I1`^qo?(E*I>Tg2RLsqJSeMkuHcKo2C6Q9vc=J~yN8!dTvm5OJH*P20=qkO@({rQm`Hj|J@EuUo z4gvgbKvR^Y$Vh2Zs{nD5(xi}v)S-cXtg8oEDE5@elceTHJ{W0Ki4j9dX&J$bC)6ljYbQlp=O@&$UTFlf$0TIqmGu&SVM2`c2AVZiN z9PD05#08T0$Pv3CWkCbBX9G%91GK(`(u-Cl5j2&IE#g40w}bc)CmTqzm80v%0Ukbw z z88v$ey7RlYe{UZ;jUz*Wg|cpAuHLT1!tuW)#>V>|xd6P6z|`JW(7o?&avx5(aEH62 zPb3X6rL`)t?tb_PQwW5Vev4;~Nf%R~*Jg;VvFd36B8S$u_PhBIQ=LS*i|GfFDOhVV z7ZHucP5`nLEVA|1*g%u+I3!1djU7f763}uqsGR^GrizwA1EnO9y~)tNK;#|P!1l6% zXB7xeAY{sgnO3xKuYj^yK;u?%(_AQ@i^g!#;J^aEX z#(Y>JX2_TVKS9Pf>BB^cqOoNtL}d@-Pq~L{3;p5|`g#9d(6L zZtmWdb+s$!MVIP=q9kk#r~e?4gw1?`*~)>PS46r42qzYvScKO*23hh@aQ@BXr0(OK zn{Xa#FbZ0WYWdlyid00rFhns}6Jvc73;-k$_c{gMpZwH=!*d2msHZ6pe+6(bld!#9 z^vQAbULMrz0@;w@)9Nro)|jJf-?I6xkA1Muxlkx!)OCUUJ^HbD{G<0ukH4ire?%XD z3c8D-0d`cLodCC$3&T)PfH1TIFqxGt@$J~7X?2h$g*nH81w$BM->$m38iYUr}H*G+`Y6J}+V+M9K4NOwS5P|`O z{zIhu{oQ3G20s)FJuy!)SSP|jssx6FR^r|Ut;DNYP#6_duizdP|`EVo; z;StmuyYE>db>v&pgG5%F9t4t&=n*@I!lH*LWkW*hQ0CtuQT%YM>oBbhC5{_9GXaQ^ z@Ud01NA`|vGY9Qg@I$bQhm3vP4wmk^j6r7Ml59zjL9^H9=!udyDRhIr9R<@iD(XW30$~ zkd=s+OFeEcd%(&Wa0Ss1iQ*yA_Q2jw7gTp3^lAby=8G8fU}7xvQ#fAkxcW*T%uDbX zHM#Ji?1kD*NCvuR%!Nns?!pTevw9YHSuBFhW7^jt&CLaq>yQQY?kbJvO9Xb);JOwN zRRAcEv2=p02MzF`NqCSa;gbsn{$KmGHYNG z5)*CWK3zw2bHtudk?%S1ZUM@TIEQOR`cV7jqYIFe{e&i%`7Stxv`i6_22lE9L$m=q zWw9mz=}6%Vq5Ch5?n9OLAM?)&srRpbIggqII8=#%=9d^s$EAbtSTgKht3?GL)3{rt znF?L~sB-P23Z93Keu?G~n-lV$C0-MaQGSjh0H!;D9KnMS*P&s;Y-BW)DK->Bn-y6Y z&N&D@{W2?opZl!dS-1-lW1)^H;)-92l-?OAyEAZoUrTn=$UyLy|85REW<5t#0#cyW z#)Yr9Iy#Usqu$@8#*fX9G|x|bp67kW7g9uSlb?zd2t+K$zWov(IgUxAqVgc5G#|Z( z2238u?;^egCtt49;2hff70-^tI+0q_$Q62An% z5=mT!jLQ}PYx|%7xPv;z7emc-|J}Ej6L{a5B|)}?3O6M%DxwGi@YJ01KvZupd0{VQ z!59)bNPN^%Q;wNjFsyi^9t=f2{(&oaTpl83V6iv$tNf|Qi*4V2XubM@=wCPfvW^I8 zRXT*h97OD};v?L#uKE}?&XNRI9E9K=G}ujUZ?HImNKm^ z)ai=xq1yfBS}(h}AG{m=Pb7gX@hF@za zUM=Z|XmbE2T5)?KWk3)zC?Thov6b6Oqq8~=)RoPA?p50g%HvMexl7~D#S$Dnx^HQ_ z9d#%>AQrNF>cXAOzNo^GIAMhj$723Qf8|;~`$UiEf6t$Mn8~d6=)edh`fHQd&A8UT zlw{&R2w&x@FD@--OKI1+juwQb{9IY^jh>J?pkRqUIJ>XHt^9>lKYAGQ;ABD=NZgbQ zz?qozv_Enl3*|^}KLG(jbuxRN1hJPVZRK^2WdigEL;4vp8@Ef$K28xL^1)qxdNjr(#l8#F8 zOOwMj9O>BcCP+YQ*Bm=le_a9M^V!ZH#?hCoR45KKQ6goyC@-pzlrBbL8I(pgnIf-e zX3iQq;65b^k4*+|&PGbO$jw&EDnW@C=)rPbTuC+Kq{Y0GxKZ_-QwbCr%wnDtCE|R0 zPF-w_D6>+T|w zZjzkKvPXrJRmeak(=m|jpTH*5dl$klA!bfk!!R*Hybfun)bg*^2$JJM5a zxJzcPnl_E{*AlD7;F*dEv-A`428ng&wUd_$w69aL4RQ^Gvv28}JM&Q&UG7?OVOFO; zRtGO-({#6~^VfG2xTsVvMIbccgSeVCfBhQWGp@I?HH?4h&PBH6waq7d{A`kG?*B=( zK_gSRRM1Xn`1GOaQub$M+1ssZnf3-hfh=UyhW0gkxl&45OlG&57&)D@mr4FXB#0@8 zM}-u+2P^|w3c6`W%xVVQrF!XIipcD*D7lm7VXTnF*a8-iv6j(zg`p)iQ zQh)9)K2|(Q)@3nwildE+)~RecDFIc8n+fajE>xkdGT(~`2=u{aJ`tJ z&GzBdS z5%mE!-p`=k-Ndgt9c{{A{}Di(9Zh048+Ov*ho;H=Ez}u5`aC1exzRLVah`(Qp%Nle zQy79Wvkoz-p`{%dB*5iq$86Tdo(azXyA5sq^mEFg{QC+?=rcutVO3RmUw`#53S5a#!2$(%bgR4@e;aWOCf*0#R!oa0XXKJSO6pRcq zGl3=o4Z{UWkIYh}y>u8dxPGiP1Xm9qft>8dG>WD|^i1Q^q!XhQ{Uhzw=D9SDA&@4T zX4NvUxMP7*pcb%H)k0CnhU~V@eb8f{S}8bW6l{}c81g3Uk^69*&Z2xD=6W8VakJUAc>p#I^G>a{a@pri)NpwIV*6M$ zt&Akp-|e>GF&TQFZ7*-VK(i0H2Kh~B>Rgl7k6cncs#fS@pzMY@^*o_$4dawZ%_0hI z&_{_}73-Kz0&TJ8KJ5h}yz25hqb2H`)7XAtjJWovQyTmdP|Ank6>12Rw>`oXf2x-K zc*RC}lnK0dt;eA?BQ0@M24j1zqu3%3n|Negj<&$Mk0m;HB7g8Twyc) zLAf+l+CGGjJZ(B4gsl!5^ev&AyzoK64BtW;+#->0|9mNJ$g~bs%(l9Am=~DI5FX<4W_*&D%_WwW?L^5P!lzSY_Ra_6X_&awr#X6 z{<(*U9@Wa>m=$*wwWns=6a_6}nT`pgrsG-QovaIK_$-|j%LCCZ9_t`%H|>G(fomU9 zYg zU?PP#E?!lHQ1->QN(iDpd=oW+Nez%LRsmZ60WFq+p#hi@agW8C&Grq@E+{Qi!}iiQ zsh~#53pq3sG9ve?q#|oD`^KR5o*BU71~R1HH%V&W>}q*)f8-zVaN5bA2s^?9JW zDdSl&)^0=NQ7FQZP$QLmr^M7M-?85#&}!Z=-KDA~_Y9~3;EO&XFDqfM?7SP!Isdp6 zyM}eH{4<(K!PWcG+V_r)5uI;3I^SgD-c*Rb(Xq%Rf^8fFfd zpyK2*E}Ti?j#zCN$`!fL$fnks$5#q(b&={a30Brs|2F^CWq#@yUWM;Lb)I=YNr33A zyC@s!>&Kw-AEfea!q>n=4p>W1gPf4xS51&Lo^sRN?Y};Ci!TC97V@>f0`KO)>-h9GS zB+&=q?_39of9#dZcW?Oo4RdU}7C7lFw{5(WiBQ>is=eW(!trite`@$Ur^62b6UVy> z4ga*c1PqK<^IRS&a&3N(|6}&RAG8jyG?h|sbG3k!4BCYPXxB7pLe{V??q6;*YbP2S zCh{r}m0E;28p>%?CluU`0Z9?Gw1e^Fks>e~J=jF@Ewu;?{V zLO~-&rWKayIu#&6K+APE`{+f}RowEq{i=+>nkf2MApIC)`dC};vA*UF&cGe>We^FW zeugm;`SeltKlK(sV*>s8k83LE{pz+70+`H8OxtcA+&hqYW2dvxKLIpLe**=+6Gu2Y6$-$2no5-r^^ z?{Y+?*N6)vB@*LWRL!3A%8AA}QxH1;D1rd3vphSx!SE^0pl>j&&A@{1n3H$*U9y{- zTeusX$as~U9)QHl$@#-A<_hzkHElepz|bkRY@I+LeIGt7AP zIQGkQ7bcC<7*;b2GhwI2H^Y{mWaBuX6J+Ouc>)an`;uokDeMB|!$nZt_O_J)H zjh$<)Z*Oql24=pcQ{E2LzHNfub#8r^w?R|bpdkYYeie7Bxs2n?G-V9hx-VQp5TvF& z1^lI<9B*oh{Wlt)W*^Cr*r3fGk)C_WRJesW8AgkorJtNX=s>vM5JW>!;fP3vsm?1B zg}IA1O;w3}`y8yPc$MP1{K*cdsbj9w#fWJli#xs*uI?W}IWaQYy|B%#Jx67 zr`gcb5$s$Iotk*}D^fO3GAVD6=R%J&-yqKEAHC+J(e+-%0&^uH^jtD%dijmk)9gcA zvx(HZ>MKa-99W~fFiQSV6Z~OOu{7T!L>-eMV;`kW56P#|!N5*+FmLN<2CE$h}>Bx>Wm4Tc6mkhd9xG` zoYnc1T7h`D1lQ{Ej%a+Jiw&%}b8O;iwrT}!uXw&xBpl~w-K;~mrwpbZ$WFfQ+(=Fn znOz>^)9W6vN|xXU9z|ClrB!NLn&%nH1od?G<_1;h;GQU|d>CXFbGisqo4RKXi}X$9^x;VJfJ0 z1TaLM7YFt~OW8jwy}v^1-pqxu%h#jDIzNfmZyg@Vp8tYvCP&o-(;T{Lq3{?*YK)x3 zhsEH9#@kVuT#NU1*`VBR7}uh-dUF;N%L5x0v^-Dz`yZuWynTGz<2!2Qt7D15 zJ0HjH8jk&8u*$u?$~>B`I)cDe&|Ejtgl}p@@f)=1>#@(y9VejU_LRq&nUu~o?#bK$ zUb5pXOiH6RXd7SR%<5*G&tj~~&-*x@vOBb9d(T_1{LKfW)ltr|xs(-|&NcZKQP=tv znHEu5*CjgnvyE!JhhDs=<#!Lgu5_DtpOf*vsqudK@&4uU0WI-?_u_*d#~*whAN)1` zkT9Mikr1Mqa9A%P)G{H=E#b(agz%FI5vd80`3XnM6QUyG`F9ecg@sYC6Ha_hI4Mk^ zN}P^a|51DKqsIFTIm1%F#1`NFd=t6TiTS6`l%Gy&Ih}lOeUt>mSxO#C>@9K3vL?|m z#Tov*hb4aN_=g#yk?SUYw9~_xiKKyfB2C9ztwl7UF1>*yubr0Uh?C$(87x4R{G z9QsYCPR=DKcb-nZaSx<$VAhV3DokV|`^KeV{hC7?zGvu0N0JBhQtn%(3?BNWiD6hf zqQz;ME*#i_4aS{&@EuH~El+bDOtBEq>Si+sCC*N&o}JP=8+--nzk!}{IQ!(#-=`60 zpIS0C{Xn@p3~xS6l7@bng%+yO&_l^!hUG8cZB?F5Tc$0~ExDb0d+3~>9)hw#^Db_5 zAZ++kX3V(i{L?M!X6hE0Q}2Z51QMw$mgl*^Rac^SA9wAtDke) zhn{e~lGDtK`30;NZ2OIul7XBfb3rfW1?Rulz|cmK^S?fS`f0e#t8%!cd;FJCR5k{I z9=h_KP=zS>Apd4WetHv>a((cF^06#50%MB!Wi9dW!pzte!;@eB>{(l$s$ZWO`4tty zINVL0+`T|3M=lQMpX8&gs!fOB?kB%)?)$T``rmX*K9tt-(dQ7n`SM+S#1E_~Aq}aJ lNJz&f`8-6!wr>y^cxO|!j4c6)YMJs;U20j%J+ct6_kWvS@T~v< diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif deleted file mode 100644 index 410c7ad084db698e9f35e3230233aa4040682566..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 600 zcmZ?wbhEHb6krfwcoxm@|NsB$<##6SeDUYszh8g<{{H*-%a7k_-3KZc-T3+YPwBiX zzyAIE^Y`z!U%$Wp{QdX;|FQ*Fw;jIy{pasbUw?o3{yVB>Q_sRgx-G9iegFLZcfrha#d9w;%sU=Zx~6K$tw~$%z4`#O^Y@3Z zKV#~)MpSKh@#b63l#}6=>yq2|{`&JLqwny)|NnC)o%r$l&-Y)yKYjo8?#quSuRaGB zt_&<%`RV)bl#YEr{`~p)?RU|v^Y1_Z`u*?Ux8J`*N>>+5JlMAOZr+qr@y$D{mfVhO z+zt#7208-8pDc_F4ABfaAUi>E!oa?@A-bu#r8Qd6oKeb*Lx9UTz)0QBL@+vxY38ii zvqGa87c5+~h&?)zVa3W-D;=U$88}^qMBJ^ERU|z17!;#97+4%Rd1XcXJq#>t8KR;E z7zr5i6BgH5y=gAD)sAQlGB zh8au?j!n~E(Pks?@!j1fR&j*RWY8GF(-=x H6d0@lT&58X diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif deleted file mode 100644 index acdf4085f3068c4c0a1d6855f4b80dae8bac3068..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmV-L0lNN2Nk%w1VPpUd0J9GO`>v<{=;ru;boX6P{`2zsmyZ3>&HK5t_;hIbi-G;z z+4`cI{KdfcXj}GCLjV8&A^8LW000jFEC2ui0Av6R000E?@X1N5y*TU5yZ>M)j$|1M z4Ouvb$pHu>IW8BZq|n;U0s@T!VM5~w1_+1X!EiVl!&PITYdjT!ffYfpt{jAfv%qvh zA63WUHSlr7LkeyaV4(pM0f50(II?RD4RtMg4-E+tFhdAy5{3c=0}3Bg9Y8`B2To20 zR%SO62L%9}0H+dzoKB$+2TOwzUrwi{XiBM^4V#>63q3!LsU3u93zH8CdwqY%62;1g z0g8ze$k93lWExp`CUe|K4qOWk17ZeJ0|5pDP6+}};{>bI@lOWj=kf}r2sHp7w9-Ie XK%9UG6W(*AX-vY05F<*&5CH%?Gwy&_ diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif deleted file mode 100644 index 8f10e7aa6b6ab40ee69a1a41a961c092168d6fda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 301 zcmV+|0n+|QNk%w1VGsZi0Q4UK+~)L6v+~s9^fsC5ZpZP=*zu3F=Jxpf8k_5u%JNv6 z=md-84VLU4w)kSE=yI&-yw>b=v+SqE?+kq47pC+YrR?bJ^yu>Zyvpn;hTp*6^mM!O zu+8!}sO$`q%8%`=C5EEn#1d#z95FHtK5(^#(cp^e+Y!d=4FCrFbY9A3U z4-O0-4kHJPJ2(jk13n5879s!!3Q`V>8VwW`9my3H#|R8ZD+fdx0E-+693cQZ;!k;* diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif deleted file mode 100644 index fdfe0b9ac05869ae845fdd828eaad97cc0c69dbc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 439 zcmV;o0Z9HwNk%w1VI=?(0K^{vQcz8xz}f&njBB06v9GQ`Jv%NdDHCI&z`wqZw$(Lw zuFTBL!Pe#<92tv>h)9OE1Xh}vnVEHSaeb-GByg#tqM_B*)YRkdSdqTu&}n`s(k;lb>H+`#+Q6|3c{>OLTv23;utm>DSfy zuOD3adm!iUuGar)4FAhzel5=UwZ7*6(K(+k@BP_g{o}}@k7u_2k7W2iGwlom!+#Z( z|Hj5w_4MwTo8QaHxm#EFYX1DUOO|}vvgQBb!_ST${rmj+`+Fep|C$j4HGtwz7FGrZ zO$Hs1VIV&_u+2R%#bJV$RKJIcL*N7vss0Y-EsB{gGlSJaTr>sRLKbLj5HMTpyK;)l zJcfpaMYltBZdEK6Kht6+BPy*VtthFMtIoqFC=#Tu$e^eaDXCC7U0vOYOJjNk(;P!VagC#fQ*?7otVO)-#9rK#nB%ry4`E_DHQ Wm01j~^6E13^D1O7+^=wCum%9s<%z=p diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif deleted file mode 100644 index 388486517fa8da13ebd150e8f65d5096c3e10c3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43 ncmZ?wbhEHbWMp7un7{x9ia%KxMSyG_5FaGNz{KRj$Y2csb)f_x diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif deleted file mode 100644 index 3570104077a3b3585f11403c8d4c3fc9351f35d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 597 zcmZ?wbhEHb6krfwc$UTx9v<%P?Ok48Ze?YanwpxCkzrwBk(ZYzB_&l;Qw!gmM(Ep^QBwbzIoSdAh>*2n> zz9l6k0Xw#(?);y5^ls9w|LObxXI*si^YfcEYu3*P8J(S-PEJlaNB-yTd}C^Ax@_69 zzP`Ryt5)S5`=P3;TDk9SbaeFk_3NiTjGA~aFd-pf@}tlxQ>GLb7jM|Gp`oFHlaq7F zk|nvhxjsHV=g+oST3Rl6T(N1>rn0iK*Ed>3MMVn>3vF#}**q!otE>Sy|^jDoRUBoBANRc=wyaJged$+}u3x zK}ld>puWET{||NozXdO-0f3nK$V8iNkVNKl+Guy1NeYie$3 zZB}=&Zex!RYq8YfVwgNdMpdFkN|rU!Fha}0m66q>CDxczOhH^pM9qvxw1p`;Rftzu zQJ&9}g>iErlc2ORw;aC_=l*6UJ=st%r*ISVV2jgDT<)w>rXHGL<21Kdo z#uyug^O^t z0hZGrt*x!>$1C!zn`W5@`ts6_uMW)2%<0NUEKIo?SIPPE=}U0}7Z(?JcX!y=*;bF< zCWz-=h7+2ao9)(dOHM;+X=xs9)%!~xc&ICMZdRYdUQ2$^@9y(6X3NCIz{cM7f^Z=Q z1_tQ95kgl8b%R%OiYTIo7LSdE^@}A^8LW002J#EC2ui01p5U000KOz@O0K01zUifeIyT9%!RzMDgehG|mwLz+Eh; z7Z~iE zrX?OfJ^>XeDJK)xJuWOB3_l1N0Ra>g4Gk^=ED0V6LI?>4;Q|6OB{LplLMRLg8U5-E J?0y6R06W6!pgRBn diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js deleted file mode 100644 index 5b3584576..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js +++ /dev/null @@ -1,73 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -function init() { - var ed, tcont; - - tinyMCEPopup.resizeToInnerSize(); - ed = tinyMCEPopup.editor; - - // Give FF some time - window.setTimeout(insertHelpIFrame, 10); - - tcont = document.getElementById('plugintablecontainer'); - document.getElementById('plugins_tab').style.display = 'none'; - - var html = ""; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - - tinymce.each(ed.plugins, function(p, n) { - var info; - - if (!p.getInfo) - return; - - html += ''; - - info = p.getInfo(); - - if (info.infourl != null && info.infourl != '') - html += ''; - else - html += ''; - - if (info.authorurl != null && info.authorurl != '') - html += ''; - else - html += ''; - - html += ''; - html += ''; - - document.getElementById('plugins_tab').style.display = ''; - - }); - - html += ''; - html += '
                                            ' + ed.getLang('advanced_dlg.about_plugin') + '' + ed.getLang('advanced_dlg.about_author') + '' + ed.getLang('advanced_dlg.about_version') + '
                                            ' + info.longname + '' + info.longname + '' + info.author + '' + info.author + '' + info.version + '
                                            '; - - tcont.innerHTML = html; - - tinyMCEPopup.dom.get('version').innerHTML = tinymce.majorVersion + "." + tinymce.minorVersion; - tinyMCEPopup.dom.get('date').innerHTML = tinymce.releaseDate; -} - -function insertHelpIFrame() { - var html; - - if (tinyMCEPopup.getParam('docs_url')) { - html = ''; - document.getElementById('iframecontainer').innerHTML = html; - document.getElementById('help_tab').style.display = 'block'; - document.getElementById('help_tab').setAttribute("aria-hidden", "false"); - } -} - -tinyMCEPopup.onInit.add(init); diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js deleted file mode 100644 index 2909a3a4d..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js +++ /dev/null @@ -1,56 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var AnchorDialog = { - init : function(ed) { - var action, elm, f = document.forms[0]; - - this.editor = ed; - elm = ed.dom.getParent(ed.selection.getNode(), 'A'); - v = ed.dom.getAttrib(elm, 'name') || ed.dom.getAttrib(elm, 'id'); - - if (v) { - this.action = 'update'; - f.anchorName.value = v; - } - - f.insert.value = ed.getLang(elm ? 'update' : 'insert'); - }, - - update : function() { - var ed = this.editor, elm, name = document.forms[0].anchorName.value, attribName; - - if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) { - tinyMCEPopup.alert('advanced_dlg.anchor_invalid'); - return; - } - - tinyMCEPopup.restoreSelection(); - - if (this.action != 'update') - ed.selection.collapse(1); - - var aRule = ed.schema.getElementRule('a'); - if (!aRule || aRule.attributes.name) { - attribName = 'name'; - } else { - attribName = 'id'; - } - - elm = ed.dom.getParent(ed.selection.getNode(), 'A'); - if (elm) { - elm.setAttribute(attribName, name); - elm[attribName] = name; - ed.undoManager.add(); - } else { - // create with zero-sized nbsp so that in Webkit where anchor is on last line by itself caret cannot be placed after it - var attrs = {'class' : 'mceItemAnchor'}; - attrs[attribName] = name; - ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', attrs, '\uFEFF')); - ed.nodeChanged(); - } - - tinyMCEPopup.close(); - } -}; - -tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog); diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js deleted file mode 100644 index bb1869558..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js +++ /dev/null @@ -1,363 +0,0 @@ -/** - * charmap.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -tinyMCEPopup.requireLangPack(); - -var charmap = [ - [' ', ' ', true, 'no-break space'], - ['&', '&', true, 'ampersand'], - ['"', '"', true, 'quotation mark'], -// finance - ['¢', '¢', true, 'cent sign'], - ['€', '€', true, 'euro sign'], - ['£', '£', true, 'pound sign'], - ['¥', '¥', true, 'yen sign'], -// signs - ['©', '©', true, 'copyright sign'], - ['®', '®', true, 'registered sign'], - ['™', '™', true, 'trade mark sign'], - ['‰', '‰', true, 'per mille sign'], - ['µ', 'µ', true, 'micro sign'], - ['·', '·', true, 'middle dot'], - ['•', '•', true, 'bullet'], - ['…', '…', true, 'three dot leader'], - ['′', '′', true, 'minutes / feet'], - ['″', '″', true, 'seconds / inches'], - ['§', '§', true, 'section sign'], - ['¶', '¶', true, 'paragraph sign'], - ['ß', 'ß', true, 'sharp s / ess-zed'], -// quotations - ['‹', '‹', true, 'single left-pointing angle quotation mark'], - ['›', '›', true, 'single right-pointing angle quotation mark'], - ['«', '«', true, 'left pointing guillemet'], - ['»', '»', true, 'right pointing guillemet'], - ['‘', '‘', true, 'left single quotation mark'], - ['’', '’', true, 'right single quotation mark'], - ['“', '“', true, 'left double quotation mark'], - ['”', '”', true, 'right double quotation mark'], - ['‚', '‚', true, 'single low-9 quotation mark'], - ['„', '„', true, 'double low-9 quotation mark'], - ['<', '<', true, 'less-than sign'], - ['>', '>', true, 'greater-than sign'], - ['≤', '≤', true, 'less-than or equal to'], - ['≥', '≥', true, 'greater-than or equal to'], - ['–', '–', true, 'en dash'], - ['—', '—', true, 'em dash'], - ['¯', '¯', true, 'macron'], - ['‾', '‾', true, 'overline'], - ['¤', '¤', true, 'currency sign'], - ['¦', '¦', true, 'broken bar'], - ['¨', '¨', true, 'diaeresis'], - ['¡', '¡', true, 'inverted exclamation mark'], - ['¿', '¿', true, 'turned question mark'], - ['ˆ', 'ˆ', true, 'circumflex accent'], - ['˜', '˜', true, 'small tilde'], - ['°', '°', true, 'degree sign'], - ['−', '−', true, 'minus sign'], - ['±', '±', true, 'plus-minus sign'], - ['÷', '÷', true, 'division sign'], - ['⁄', '⁄', true, 'fraction slash'], - ['×', '×', true, 'multiplication sign'], - ['¹', '¹', true, 'superscript one'], - ['²', '²', true, 'superscript two'], - ['³', '³', true, 'superscript three'], - ['¼', '¼', true, 'fraction one quarter'], - ['½', '½', true, 'fraction one half'], - ['¾', '¾', true, 'fraction three quarters'], -// math / logical - ['ƒ', 'ƒ', true, 'function / florin'], - ['∫', '∫', true, 'integral'], - ['∑', '∑', true, 'n-ary sumation'], - ['∞', '∞', true, 'infinity'], - ['√', '√', true, 'square root'], - ['∼', '∼', false,'similar to'], - ['≅', '≅', false,'approximately equal to'], - ['≈', '≈', true, 'almost equal to'], - ['≠', '≠', true, 'not equal to'], - ['≡', '≡', true, 'identical to'], - ['∈', '∈', false,'element of'], - ['∉', '∉', false,'not an element of'], - ['∋', '∋', false,'contains as member'], - ['∏', '∏', true, 'n-ary product'], - ['∧', '∧', false,'logical and'], - ['∨', '∨', false,'logical or'], - ['¬', '¬', true, 'not sign'], - ['∩', '∩', true, 'intersection'], - ['∪', '∪', false,'union'], - ['∂', '∂', true, 'partial differential'], - ['∀', '∀', false,'for all'], - ['∃', '∃', false,'there exists'], - ['∅', '∅', false,'diameter'], - ['∇', '∇', false,'backward difference'], - ['∗', '∗', false,'asterisk operator'], - ['∝', '∝', false,'proportional to'], - ['∠', '∠', false,'angle'], -// undefined - ['´', '´', true, 'acute accent'], - ['¸', '¸', true, 'cedilla'], - ['ª', 'ª', true, 'feminine ordinal indicator'], - ['º', 'º', true, 'masculine ordinal indicator'], - ['†', '†', true, 'dagger'], - ['‡', '‡', true, 'double dagger'], -// alphabetical special chars - ['À', 'À', true, 'A - grave'], - ['Á', 'Á', true, 'A - acute'], - ['Â', 'Â', true, 'A - circumflex'], - ['Ã', 'Ã', true, 'A - tilde'], - ['Ä', 'Ä', true, 'A - diaeresis'], - ['Å', 'Å', true, 'A - ring above'], - ['Æ', 'Æ', true, 'ligature AE'], - ['Ç', 'Ç', true, 'C - cedilla'], - ['È', 'È', true, 'E - grave'], - ['É', 'É', true, 'E - acute'], - ['Ê', 'Ê', true, 'E - circumflex'], - ['Ë', 'Ë', true, 'E - diaeresis'], - ['Ì', 'Ì', true, 'I - grave'], - ['Í', 'Í', true, 'I - acute'], - ['Î', 'Î', true, 'I - circumflex'], - ['Ï', 'Ï', true, 'I - diaeresis'], - ['Ð', 'Ð', true, 'ETH'], - ['Ñ', 'Ñ', true, 'N - tilde'], - ['Ò', 'Ò', true, 'O - grave'], - ['Ó', 'Ó', true, 'O - acute'], - ['Ô', 'Ô', true, 'O - circumflex'], - ['Õ', 'Õ', true, 'O - tilde'], - ['Ö', 'Ö', true, 'O - diaeresis'], - ['Ø', 'Ø', true, 'O - slash'], - ['Œ', 'Œ', true, 'ligature OE'], - ['Š', 'Š', true, 'S - caron'], - ['Ù', 'Ù', true, 'U - grave'], - ['Ú', 'Ú', true, 'U - acute'], - ['Û', 'Û', true, 'U - circumflex'], - ['Ü', 'Ü', true, 'U - diaeresis'], - ['Ý', 'Ý', true, 'Y - acute'], - ['Ÿ', 'Ÿ', true, 'Y - diaeresis'], - ['Þ', 'Þ', true, 'THORN'], - ['à', 'à', true, 'a - grave'], - ['á', 'á', true, 'a - acute'], - ['â', 'â', true, 'a - circumflex'], - ['ã', 'ã', true, 'a - tilde'], - ['ä', 'ä', true, 'a - diaeresis'], - ['å', 'å', true, 'a - ring above'], - ['æ', 'æ', true, 'ligature ae'], - ['ç', 'ç', true, 'c - cedilla'], - ['è', 'è', true, 'e - grave'], - ['é', 'é', true, 'e - acute'], - ['ê', 'ê', true, 'e - circumflex'], - ['ë', 'ë', true, 'e - diaeresis'], - ['ì', 'ì', true, 'i - grave'], - ['í', 'í', true, 'i - acute'], - ['î', 'î', true, 'i - circumflex'], - ['ï', 'ï', true, 'i - diaeresis'], - ['ð', 'ð', true, 'eth'], - ['ñ', 'ñ', true, 'n - tilde'], - ['ò', 'ò', true, 'o - grave'], - ['ó', 'ó', true, 'o - acute'], - ['ô', 'ô', true, 'o - circumflex'], - ['õ', 'õ', true, 'o - tilde'], - ['ö', 'ö', true, 'o - diaeresis'], - ['ø', 'ø', true, 'o slash'], - ['œ', 'œ', true, 'ligature oe'], - ['š', 'š', true, 's - caron'], - ['ù', 'ù', true, 'u - grave'], - ['ú', 'ú', true, 'u - acute'], - ['û', 'û', true, 'u - circumflex'], - ['ü', 'ü', true, 'u - diaeresis'], - ['ý', 'ý', true, 'y - acute'], - ['þ', 'þ', true, 'thorn'], - ['ÿ', 'ÿ', true, 'y - diaeresis'], - ['Α', 'Α', true, 'Alpha'], - ['Β', 'Β', true, 'Beta'], - ['Γ', 'Γ', true, 'Gamma'], - ['Δ', 'Δ', true, 'Delta'], - ['Ε', 'Ε', true, 'Epsilon'], - ['Ζ', 'Ζ', true, 'Zeta'], - ['Η', 'Η', true, 'Eta'], - ['Θ', 'Θ', true, 'Theta'], - ['Ι', 'Ι', true, 'Iota'], - ['Κ', 'Κ', true, 'Kappa'], - ['Λ', 'Λ', true, 'Lambda'], - ['Μ', 'Μ', true, 'Mu'], - ['Ν', 'Ν', true, 'Nu'], - ['Ξ', 'Ξ', true, 'Xi'], - ['Ο', 'Ο', true, 'Omicron'], - ['Π', 'Π', true, 'Pi'], - ['Ρ', 'Ρ', true, 'Rho'], - ['Σ', 'Σ', true, 'Sigma'], - ['Τ', 'Τ', true, 'Tau'], - ['Υ', 'Υ', true, 'Upsilon'], - ['Φ', 'Φ', true, 'Phi'], - ['Χ', 'Χ', true, 'Chi'], - ['Ψ', 'Ψ', true, 'Psi'], - ['Ω', 'Ω', true, 'Omega'], - ['α', 'α', true, 'alpha'], - ['β', 'β', true, 'beta'], - ['γ', 'γ', true, 'gamma'], - ['δ', 'δ', true, 'delta'], - ['ε', 'ε', true, 'epsilon'], - ['ζ', 'ζ', true, 'zeta'], - ['η', 'η', true, 'eta'], - ['θ', 'θ', true, 'theta'], - ['ι', 'ι', true, 'iota'], - ['κ', 'κ', true, 'kappa'], - ['λ', 'λ', true, 'lambda'], - ['μ', 'μ', true, 'mu'], - ['ν', 'ν', true, 'nu'], - ['ξ', 'ξ', true, 'xi'], - ['ο', 'ο', true, 'omicron'], - ['π', 'π', true, 'pi'], - ['ρ', 'ρ', true, 'rho'], - ['ς', 'ς', true, 'final sigma'], - ['σ', 'σ', true, 'sigma'], - ['τ', 'τ', true, 'tau'], - ['υ', 'υ', true, 'upsilon'], - ['φ', 'φ', true, 'phi'], - ['χ', 'χ', true, 'chi'], - ['ψ', 'ψ', true, 'psi'], - ['ω', 'ω', true, 'omega'], -// symbols - ['ℵ', 'ℵ', false,'alef symbol'], - ['ϖ', 'ϖ', false,'pi symbol'], - ['ℜ', 'ℜ', false,'real part symbol'], - ['ϑ','ϑ', false,'theta symbol'], - ['ϒ', 'ϒ', false,'upsilon - hook symbol'], - ['℘', '℘', false,'Weierstrass p'], - ['ℑ', 'ℑ', false,'imaginary part'], -// arrows - ['←', '←', true, 'leftwards arrow'], - ['↑', '↑', true, 'upwards arrow'], - ['→', '→', true, 'rightwards arrow'], - ['↓', '↓', true, 'downwards arrow'], - ['↔', '↔', true, 'left right arrow'], - ['↵', '↵', false,'carriage return'], - ['⇐', '⇐', false,'leftwards double arrow'], - ['⇑', '⇑', false,'upwards double arrow'], - ['⇒', '⇒', false,'rightwards double arrow'], - ['⇓', '⇓', false,'downwards double arrow'], - ['⇔', '⇔', false,'left right double arrow'], - ['∴', '∴', false,'therefore'], - ['⊂', '⊂', false,'subset of'], - ['⊃', '⊃', false,'superset of'], - ['⊄', '⊄', false,'not a subset of'], - ['⊆', '⊆', false,'subset of or equal to'], - ['⊇', '⊇', false,'superset of or equal to'], - ['⊕', '⊕', false,'circled plus'], - ['⊗', '⊗', false,'circled times'], - ['⊥', '⊥', false,'perpendicular'], - ['⋅', '⋅', false,'dot operator'], - ['⌈', '⌈', false,'left ceiling'], - ['⌉', '⌉', false,'right ceiling'], - ['⌊', '⌊', false,'left floor'], - ['⌋', '⌋', false,'right floor'], - ['⟨', '〈', false,'left-pointing angle bracket'], - ['⟩', '〉', false,'right-pointing angle bracket'], - ['◊', '◊', true, 'lozenge'], - ['♠', '♠', true, 'black spade suit'], - ['♣', '♣', true, 'black club suit'], - ['♥', '♥', true, 'black heart suit'], - ['♦', '♦', true, 'black diamond suit'], - [' ', ' ', false,'en space'], - [' ', ' ', false,'em space'], - [' ', ' ', false,'thin space'], - ['‌', '‌', false,'zero width non-joiner'], - ['‍', '‍', false,'zero width joiner'], - ['‎', '‎', false,'left-to-right mark'], - ['‏', '‏', false,'right-to-left mark'], - ['­', '­', false,'soft hyphen'] -]; - -tinyMCEPopup.onInit.add(function() { - tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML()); - addKeyboardNavigation(); -}); - -function addKeyboardNavigation(){ - var tableElm, cells, settings; - - cells = tinyMCEPopup.dom.select("a.charmaplink", "charmapgroup"); - - settings ={ - root: "charmapgroup", - items: cells - }; - cells[0].tabindex=0; - tinyMCEPopup.dom.addClass(cells[0], "mceFocus"); - if (tinymce.isGecko) { - cells[0].focus(); - } else { - setTimeout(function(){ - cells[0].focus(); - }, 100); - } - tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom); -} - -function renderCharMapHTML() { - var charsPerRow = 20, tdWidth=20, tdHeight=20, i; - var html = '
                                            '+ - ''; - var cols=-1; - - for (i=0; i' - + '' - + charmap[i][1] - + ''; - if ((cols+1) % charsPerRow == 0) - html += ''; - } - } - - if (cols % charsPerRow > 0) { - var padd = charsPerRow - (cols % charsPerRow); - for (var i=0; i '; - } - - html += '
                                            '; - html = html.replace(/<\/tr>/g, ''); - - return html; -} - -function insertChar(chr) { - tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';'); - - // Refocus in window - if (tinyMCEPopup.isWindow) - window.focus(); - - tinyMCEPopup.editor.focus(); - tinyMCEPopup.close(); -} - -function previewChar(codeA, codeB, codeN) { - var elmA = document.getElementById('codeA'); - var elmB = document.getElementById('codeB'); - var elmV = document.getElementById('codeV'); - var elmN = document.getElementById('codeN'); - - if (codeA=='#160;') { - elmV.innerHTML = '__'; - } else { - elmV.innerHTML = '&' + codeA; - } - - elmB.innerHTML = '&' + codeA; - elmA.innerHTML = '&' + codeB; - elmN.innerHTML = codeN; -} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js deleted file mode 100644 index cc891c171..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js +++ /dev/null @@ -1,345 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var detail = 50, strhex = "0123456789abcdef", i, isMouseDown = false, isMouseOver = false; - -var colors = [ - "#000000","#000033","#000066","#000099","#0000cc","#0000ff","#330000","#330033", - "#330066","#330099","#3300cc","#3300ff","#660000","#660033","#660066","#660099", - "#6600cc","#6600ff","#990000","#990033","#990066","#990099","#9900cc","#9900ff", - "#cc0000","#cc0033","#cc0066","#cc0099","#cc00cc","#cc00ff","#ff0000","#ff0033", - "#ff0066","#ff0099","#ff00cc","#ff00ff","#003300","#003333","#003366","#003399", - "#0033cc","#0033ff","#333300","#333333","#333366","#333399","#3333cc","#3333ff", - "#663300","#663333","#663366","#663399","#6633cc","#6633ff","#993300","#993333", - "#993366","#993399","#9933cc","#9933ff","#cc3300","#cc3333","#cc3366","#cc3399", - "#cc33cc","#cc33ff","#ff3300","#ff3333","#ff3366","#ff3399","#ff33cc","#ff33ff", - "#006600","#006633","#006666","#006699","#0066cc","#0066ff","#336600","#336633", - "#336666","#336699","#3366cc","#3366ff","#666600","#666633","#666666","#666699", - "#6666cc","#6666ff","#996600","#996633","#996666","#996699","#9966cc","#9966ff", - "#cc6600","#cc6633","#cc6666","#cc6699","#cc66cc","#cc66ff","#ff6600","#ff6633", - "#ff6666","#ff6699","#ff66cc","#ff66ff","#009900","#009933","#009966","#009999", - "#0099cc","#0099ff","#339900","#339933","#339966","#339999","#3399cc","#3399ff", - "#669900","#669933","#669966","#669999","#6699cc","#6699ff","#999900","#999933", - "#999966","#999999","#9999cc","#9999ff","#cc9900","#cc9933","#cc9966","#cc9999", - "#cc99cc","#cc99ff","#ff9900","#ff9933","#ff9966","#ff9999","#ff99cc","#ff99ff", - "#00cc00","#00cc33","#00cc66","#00cc99","#00cccc","#00ccff","#33cc00","#33cc33", - "#33cc66","#33cc99","#33cccc","#33ccff","#66cc00","#66cc33","#66cc66","#66cc99", - "#66cccc","#66ccff","#99cc00","#99cc33","#99cc66","#99cc99","#99cccc","#99ccff", - "#cccc00","#cccc33","#cccc66","#cccc99","#cccccc","#ccccff","#ffcc00","#ffcc33", - "#ffcc66","#ffcc99","#ffcccc","#ffccff","#00ff00","#00ff33","#00ff66","#00ff99", - "#00ffcc","#00ffff","#33ff00","#33ff33","#33ff66","#33ff99","#33ffcc","#33ffff", - "#66ff00","#66ff33","#66ff66","#66ff99","#66ffcc","#66ffff","#99ff00","#99ff33", - "#99ff66","#99ff99","#99ffcc","#99ffff","#ccff00","#ccff33","#ccff66","#ccff99", - "#ccffcc","#ccffff","#ffff00","#ffff33","#ffff66","#ffff99","#ffffcc","#ffffff" -]; - -var named = { - '#F0F8FF':'Alice Blue','#FAEBD7':'Antique White','#00FFFF':'Aqua','#7FFFD4':'Aquamarine','#F0FFFF':'Azure','#F5F5DC':'Beige', - '#FFE4C4':'Bisque','#000000':'Black','#FFEBCD':'Blanched Almond','#0000FF':'Blue','#8A2BE2':'Blue Violet','#A52A2A':'Brown', - '#DEB887':'Burly Wood','#5F9EA0':'Cadet Blue','#7FFF00':'Chartreuse','#D2691E':'Chocolate','#FF7F50':'Coral','#6495ED':'Cornflower Blue', - '#FFF8DC':'Cornsilk','#DC143C':'Crimson','#00FFFF':'Cyan','#00008B':'Dark Blue','#008B8B':'Dark Cyan','#B8860B':'Dark Golden Rod', - '#A9A9A9':'Dark Gray','#A9A9A9':'Dark Grey','#006400':'Dark Green','#BDB76B':'Dark Khaki','#8B008B':'Dark Magenta','#556B2F':'Dark Olive Green', - '#FF8C00':'Darkorange','#9932CC':'Dark Orchid','#8B0000':'Dark Red','#E9967A':'Dark Salmon','#8FBC8F':'Dark Sea Green','#483D8B':'Dark Slate Blue', - '#2F4F4F':'Dark Slate Gray','#2F4F4F':'Dark Slate Grey','#00CED1':'Dark Turquoise','#9400D3':'Dark Violet','#FF1493':'Deep Pink','#00BFFF':'Deep Sky Blue', - '#696969':'Dim Gray','#696969':'Dim Grey','#1E90FF':'Dodger Blue','#B22222':'Fire Brick','#FFFAF0':'Floral White','#228B22':'Forest Green', - '#FF00FF':'Fuchsia','#DCDCDC':'Gainsboro','#F8F8FF':'Ghost White','#FFD700':'Gold','#DAA520':'Golden Rod','#808080':'Gray','#808080':'Grey', - '#008000':'Green','#ADFF2F':'Green Yellow','#F0FFF0':'Honey Dew','#FF69B4':'Hot Pink','#CD5C5C':'Indian Red','#4B0082':'Indigo','#FFFFF0':'Ivory', - '#F0E68C':'Khaki','#E6E6FA':'Lavender','#FFF0F5':'Lavender Blush','#7CFC00':'Lawn Green','#FFFACD':'Lemon Chiffon','#ADD8E6':'Light Blue', - '#F08080':'Light Coral','#E0FFFF':'Light Cyan','#FAFAD2':'Light Golden Rod Yellow','#D3D3D3':'Light Gray','#D3D3D3':'Light Grey','#90EE90':'Light Green', - '#FFB6C1':'Light Pink','#FFA07A':'Light Salmon','#20B2AA':'Light Sea Green','#87CEFA':'Light Sky Blue','#778899':'Light Slate Gray','#778899':'Light Slate Grey', - '#B0C4DE':'Light Steel Blue','#FFFFE0':'Light Yellow','#00FF00':'Lime','#32CD32':'Lime Green','#FAF0E6':'Linen','#FF00FF':'Magenta','#800000':'Maroon', - '#66CDAA':'Medium Aqua Marine','#0000CD':'Medium Blue','#BA55D3':'Medium Orchid','#9370D8':'Medium Purple','#3CB371':'Medium Sea Green','#7B68EE':'Medium Slate Blue', - '#00FA9A':'Medium Spring Green','#48D1CC':'Medium Turquoise','#C71585':'Medium Violet Red','#191970':'Midnight Blue','#F5FFFA':'Mint Cream','#FFE4E1':'Misty Rose','#FFE4B5':'Moccasin', - '#FFDEAD':'Navajo White','#000080':'Navy','#FDF5E6':'Old Lace','#808000':'Olive','#6B8E23':'Olive Drab','#FFA500':'Orange','#FF4500':'Orange Red','#DA70D6':'Orchid', - '#EEE8AA':'Pale Golden Rod','#98FB98':'Pale Green','#AFEEEE':'Pale Turquoise','#D87093':'Pale Violet Red','#FFEFD5':'Papaya Whip','#FFDAB9':'Peach Puff', - '#CD853F':'Peru','#FFC0CB':'Pink','#DDA0DD':'Plum','#B0E0E6':'Powder Blue','#800080':'Purple','#FF0000':'Red','#BC8F8F':'Rosy Brown','#4169E1':'Royal Blue', - '#8B4513':'Saddle Brown','#FA8072':'Salmon','#F4A460':'Sandy Brown','#2E8B57':'Sea Green','#FFF5EE':'Sea Shell','#A0522D':'Sienna','#C0C0C0':'Silver', - '#87CEEB':'Sky Blue','#6A5ACD':'Slate Blue','#708090':'Slate Gray','#708090':'Slate Grey','#FFFAFA':'Snow','#00FF7F':'Spring Green', - '#4682B4':'Steel Blue','#D2B48C':'Tan','#008080':'Teal','#D8BFD8':'Thistle','#FF6347':'Tomato','#40E0D0':'Turquoise','#EE82EE':'Violet', - '#F5DEB3':'Wheat','#FFFFFF':'White','#F5F5F5':'White Smoke','#FFFF00':'Yellow','#9ACD32':'Yellow Green' -}; - -var namedLookup = {}; - -function init() { - var inputColor = convertRGBToHex(tinyMCEPopup.getWindowArg('input_color')), key, value; - - tinyMCEPopup.resizeToInnerSize(); - - generatePicker(); - generateWebColors(); - generateNamedColors(); - - if (inputColor) { - changeFinalColor(inputColor); - - col = convertHexToRGB(inputColor); - - if (col) - updateLight(col.r, col.g, col.b); - } - - for (key in named) { - value = named[key]; - namedLookup[value.replace(/\s+/, '').toLowerCase()] = key.replace(/#/, '').toLowerCase(); - } -} - -function toHexColor(color) { - var matches, red, green, blue, toInt = parseInt; - - function hex(value) { - value = parseInt(value).toString(16); - - return value.length > 1 ? value : '0' + value; // Padd with leading zero - }; - - color = tinymce.trim(color); - color = color.replace(/^[#]/, '').toLowerCase(); // remove leading '#' - color = namedLookup[color] || color; - - matches = /^rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)$/.exec(color); - - if (matches) { - red = toInt(matches[1]); - green = toInt(matches[2]); - blue = toInt(matches[3]); - } else { - matches = /^([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/.exec(color); - - if (matches) { - red = toInt(matches[1], 16); - green = toInt(matches[2], 16); - blue = toInt(matches[3], 16); - } else { - matches = /^([0-9a-f])([0-9a-f])([0-9a-f])$/.exec(color); - - if (matches) { - red = toInt(matches[1] + matches[1], 16); - green = toInt(matches[2] + matches[2], 16); - blue = toInt(matches[3] + matches[3], 16); - } else { - return ''; - } - } - } - - return '#' + hex(red) + hex(green) + hex(blue); -} - -function insertAction() { - var color = document.getElementById("color").value, f = tinyMCEPopup.getWindowArg('func'); - - var hexColor = toHexColor(color); - - if (hexColor === '') { - var text = tinyMCEPopup.editor.getLang('advanced_dlg.invalid_color_value'); - tinyMCEPopup.alert(text + ': ' + color); - } - else { - tinyMCEPopup.restoreSelection(); - - if (f) - f(hexColor); - - tinyMCEPopup.close(); - } -} - -function showColor(color, name) { - if (name) - document.getElementById("colorname").innerHTML = name; - - document.getElementById("preview").style.backgroundColor = color; - document.getElementById("color").value = color.toUpperCase(); -} - -function convertRGBToHex(col) { - var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi"); - - if (!col) - return col; - - var rgb = col.replace(re, "$1,$2,$3").split(','); - if (rgb.length == 3) { - r = parseInt(rgb[0]).toString(16); - g = parseInt(rgb[1]).toString(16); - b = parseInt(rgb[2]).toString(16); - - r = r.length == 1 ? '0' + r : r; - g = g.length == 1 ? '0' + g : g; - b = b.length == 1 ? '0' + b : b; - - return "#" + r + g + b; - } - - return col; -} - -function convertHexToRGB(col) { - if (col.indexOf('#') != -1) { - col = col.replace(new RegExp('[^0-9A-F]', 'gi'), ''); - - r = parseInt(col.substring(0, 2), 16); - g = parseInt(col.substring(2, 4), 16); - b = parseInt(col.substring(4, 6), 16); - - return {r : r, g : g, b : b}; - } - - return null; -} - -function generatePicker() { - var el = document.getElementById('light'), h = '', i; - - for (i = 0; i < detail; i++){ - h += '
                                            '; - } - - el.innerHTML = h; -} - -function generateWebColors() { - var el = document.getElementById('webcolors'), h = '', i; - - if (el.className == 'generated') - return; - - // TODO: VoiceOver doesn't seem to support legend as a label referenced by labelledby. - h += '
                                            ' - + ''; - - for (i=0; i' - + ''; - if (tinyMCEPopup.editor.forcedHighContrastMode) { - h += ''; - } - h += ''; - h += ''; - if ((i+1) % 18 == 0) - h += ''; - } - - h += '
                                            '; - - el.innerHTML = h; - el.className = 'generated'; - - paintCanvas(el); - enableKeyboardNavigation(el.firstChild); -} - -function paintCanvas(el) { - tinyMCEPopup.getWin().tinymce.each(tinyMCEPopup.dom.select('canvas.mceColorSwatch', el), function(canvas) { - var context; - if (canvas.getContext && (context = canvas.getContext("2d"))) { - context.fillStyle = canvas.getAttribute('data-color'); - context.fillRect(0, 0, 10, 10); - } - }); -} -function generateNamedColors() { - var el = document.getElementById('namedcolors'), h = '', n, v, i = 0; - - if (el.className == 'generated') - return; - - for (n in named) { - v = named[n]; - h += ''; - if (tinyMCEPopup.editor.forcedHighContrastMode) { - h += ''; - } - h += ''; - h += ''; - i++; - } - - el.innerHTML = h; - el.className = 'generated'; - - paintCanvas(el); - enableKeyboardNavigation(el); -} - -function enableKeyboardNavigation(el) { - tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', { - root: el, - items: tinyMCEPopup.dom.select('a', el) - }, tinyMCEPopup.dom); -} - -function dechex(n) { - return strhex.charAt(Math.floor(n / 16)) + strhex.charAt(n % 16); -} - -function computeColor(e) { - var x, y, partWidth, partDetail, imHeight, r, g, b, coef, i, finalCoef, finalR, finalG, finalB, pos = tinyMCEPopup.dom.getPos(e.target); - - x = e.offsetX ? e.offsetX : (e.target ? e.clientX - pos.x : 0); - y = e.offsetY ? e.offsetY : (e.target ? e.clientY - pos.y : 0); - - partWidth = document.getElementById('colors').width / 6; - partDetail = detail / 2; - imHeight = document.getElementById('colors').height; - - r = (x >= 0)*(x < partWidth)*255 + (x >= partWidth)*(x < 2*partWidth)*(2*255 - x * 255 / partWidth) + (x >= 4*partWidth)*(x < 5*partWidth)*(-4*255 + x * 255 / partWidth) + (x >= 5*partWidth)*(x < 6*partWidth)*255; - g = (x >= 0)*(x < partWidth)*(x * 255 / partWidth) + (x >= partWidth)*(x < 3*partWidth)*255 + (x >= 3*partWidth)*(x < 4*partWidth)*(4*255 - x * 255 / partWidth); - b = (x >= 2*partWidth)*(x < 3*partWidth)*(-2*255 + x * 255 / partWidth) + (x >= 3*partWidth)*(x < 5*partWidth)*255 + (x >= 5*partWidth)*(x < 6*partWidth)*(6*255 - x * 255 / partWidth); - - coef = (imHeight - y) / imHeight; - r = 128 + (r - 128) * coef; - g = 128 + (g - 128) * coef; - b = 128 + (b - 128) * coef; - - changeFinalColor('#' + dechex(r) + dechex(g) + dechex(b)); - updateLight(r, g, b); -} - -function updateLight(r, g, b) { - var i, partDetail = detail / 2, finalCoef, finalR, finalG, finalB, color; - - for (i=0; i=0) && (i'); - }, - - init : function() { - var f = document.forms[0], ed = tinyMCEPopup.editor; - - // Setup browse button - document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image'); - if (isVisible('srcbrowser')) - document.getElementById('src').style.width = '180px'; - - e = ed.selection.getNode(); - - this.fillFileList('image_list', tinyMCEPopup.getParam('external_image_list', 'tinyMCEImageList')); - - if (e.nodeName == 'IMG') { - f.src.value = ed.dom.getAttrib(e, 'src'); - f.alt.value = ed.dom.getAttrib(e, 'alt'); - f.border.value = this.getAttrib(e, 'border'); - f.vspace.value = this.getAttrib(e, 'vspace'); - f.hspace.value = this.getAttrib(e, 'hspace'); - f.width.value = ed.dom.getAttrib(e, 'width'); - f.height.value = ed.dom.getAttrib(e, 'height'); - f.insert.value = ed.getLang('update'); - this.styleVal = ed.dom.getAttrib(e, 'style'); - selectByValue(f, 'image_list', f.src.value); - selectByValue(f, 'align', this.getAttrib(e, 'align')); - this.updateStyle(); - } - }, - - fillFileList : function(id, l) { - var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - - l = typeof(l) === 'function' ? l() : window[l]; - - if (l && l.length > 0) { - lst.options[lst.options.length] = new Option('', ''); - - tinymce.each(l, function(o) { - lst.options[lst.options.length] = new Option(o[0], o[1]); - }); - } else - dom.remove(dom.getParent(id, 'tr')); - }, - - update : function() { - var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, args = {}, el; - - tinyMCEPopup.restoreSelection(); - - if (f.src.value === '') { - if (ed.selection.getNode().nodeName == 'IMG') { - ed.dom.remove(ed.selection.getNode()); - ed.execCommand('mceRepaint'); - } - - tinyMCEPopup.close(); - return; - } - - if (!ed.settings.inline_styles) { - args = tinymce.extend(args, { - vspace : nl.vspace.value, - hspace : nl.hspace.value, - border : nl.border.value, - align : getSelectValue(f, 'align') - }); - } else - args.style = this.styleVal; - - tinymce.extend(args, { - src : f.src.value.replace(/ /g, '%20'), - alt : f.alt.value, - width : f.width.value, - height : f.height.value - }); - - el = ed.selection.getNode(); - - if (el && el.nodeName == 'IMG') { - ed.dom.setAttribs(el, args); - tinyMCEPopup.editor.execCommand('mceRepaint'); - tinyMCEPopup.editor.focus(); - } else { - tinymce.each(args, function(value, name) { - if (value === "") { - delete args[name]; - } - }); - - ed.execCommand('mceInsertContent', false, tinyMCEPopup.editor.dom.createHTML('img', args), {skip_undo : 1}); - ed.undoManager.add(); - } - - tinyMCEPopup.close(); - }, - - updateStyle : function() { - var dom = tinyMCEPopup.dom, st = {}, v, f = document.forms[0]; - - if (tinyMCEPopup.editor.settings.inline_styles) { - tinymce.each(tinyMCEPopup.dom.parseStyle(this.styleVal), function(value, key) { - st[key] = value; - }); - - // Handle align - v = getSelectValue(f, 'align'); - if (v) { - if (v == 'left' || v == 'right') { - st['float'] = v; - delete st['vertical-align']; - } else { - st['vertical-align'] = v; - delete st['float']; - } - } else { - delete st['float']; - delete st['vertical-align']; - } - - // Handle border - v = f.border.value; - if (v || v == '0') { - if (v == '0') - st['border'] = '0'; - else - st['border'] = v + 'px solid black'; - } else - delete st['border']; - - // Handle hspace - v = f.hspace.value; - if (v) { - delete st['margin']; - st['margin-left'] = v + 'px'; - st['margin-right'] = v + 'px'; - } else { - delete st['margin-left']; - delete st['margin-right']; - } - - // Handle vspace - v = f.vspace.value; - if (v) { - delete st['margin']; - st['margin-top'] = v + 'px'; - st['margin-bottom'] = v + 'px'; - } else { - delete st['margin-top']; - delete st['margin-bottom']; - } - - // Merge - st = tinyMCEPopup.dom.parseStyle(dom.serializeStyle(st), 'img'); - this.styleVal = dom.serializeStyle(st, 'img'); - } - }, - - getAttrib : function(e, at) { - var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2; - - if (ed.settings.inline_styles) { - switch (at) { - case 'align': - if (v = dom.getStyle(e, 'float')) - return v; - - if (v = dom.getStyle(e, 'vertical-align')) - return v; - - break; - - case 'hspace': - v = dom.getStyle(e, 'margin-left') - v2 = dom.getStyle(e, 'margin-right'); - if (v && v == v2) - return parseInt(v.replace(/[^0-9]/g, '')); - - break; - - case 'vspace': - v = dom.getStyle(e, 'margin-top') - v2 = dom.getStyle(e, 'margin-bottom'); - if (v && v == v2) - return parseInt(v.replace(/[^0-9]/g, '')); - - break; - - case 'border': - v = 0; - - tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) { - sv = dom.getStyle(e, 'border-' + sv + '-width'); - - // False or not the same as prev - if (!sv || (sv != v && v !== 0)) { - v = 0; - return false; - } - - if (sv) - v = sv; - }); - - if (v) - return parseInt(v.replace(/[^0-9]/g, '')); - - break; - } - } - - if (v = dom.getAttrib(e, at)) - return v; - - return ''; - }, - - resetImageData : function() { - var f = document.forms[0]; - - f.width.value = f.height.value = ""; - }, - - updateImageData : function() { - var f = document.forms[0], t = ImageDialog; - - if (f.width.value == "") - f.width.value = t.preloadImg.width; - - if (f.height.value == "") - f.height.value = t.preloadImg.height; - }, - - getImageData : function() { - var f = document.forms[0]; - - this.preloadImg = new Image(); - this.preloadImg.onload = this.updateImageData; - this.preloadImg.onerror = this.resetImageData; - this.preloadImg.src = tinyMCEPopup.editor.documentBaseURI.toAbsolute(f.src.value); - } -}; - -ImageDialog.preInit(); -tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog); diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js deleted file mode 100644 index 8c1d73c50..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js +++ /dev/null @@ -1,159 +0,0 @@ -tinyMCEPopup.requireLangPack(); - -var LinkDialog = { - preInit : function() { - var url; - - if (url = tinyMCEPopup.getParam("external_link_list_url")) - document.write(''); - }, - - init : function() { - var f = document.forms[0], ed = tinyMCEPopup.editor; - - // Setup browse button - document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser', 'href', 'file', 'theme_advanced_link'); - if (isVisible('hrefbrowser')) - document.getElementById('href').style.width = '180px'; - - this.fillClassList('class_list'); - this.fillFileList('link_list', 'tinyMCELinkList'); - this.fillTargetList('target_list'); - - if (e = ed.dom.getParent(ed.selection.getNode(), 'A')) { - f.href.value = ed.dom.getAttrib(e, 'href'); - f.linktitle.value = ed.dom.getAttrib(e, 'title'); - f.insert.value = ed.getLang('update'); - selectByValue(f, 'link_list', f.href.value); - selectByValue(f, 'target_list', ed.dom.getAttrib(e, 'target')); - selectByValue(f, 'class_list', ed.dom.getAttrib(e, 'class')); - } - }, - - update : function() { - var f = document.forms[0], ed = tinyMCEPopup.editor, e, b, href = f.href.value.replace(/ /g, '%20'); - - tinyMCEPopup.restoreSelection(); - e = ed.dom.getParent(ed.selection.getNode(), 'A'); - - // Remove element if there is no href - if (!f.href.value) { - if (e) { - b = ed.selection.getBookmark(); - ed.dom.remove(e, 1); - ed.selection.moveToBookmark(b); - tinyMCEPopup.execCommand("mceEndUndoLevel"); - tinyMCEPopup.close(); - return; - } - } - - // Create new anchor elements - if (e == null) { - ed.getDoc().execCommand("unlink", false, null); - tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1}); - - tinymce.each(ed.dom.select("a"), function(n) { - if (ed.dom.getAttrib(n, 'href') == '#mce_temp_url#') { - e = n; - - ed.dom.setAttribs(e, { - href : href, - title : f.linktitle.value, - target : f.target_list ? getSelectValue(f, "target_list") : null, - 'class' : f.class_list ? getSelectValue(f, "class_list") : null - }); - } - }); - } else { - ed.dom.setAttribs(e, { - href : href, - title : f.linktitle.value - }); - - if (f.target_list) { - ed.dom.setAttrib(e, 'target', getSelectValue(f, "target_list")); - } - - if (f.class_list) { - ed.dom.setAttrib(e, 'class', getSelectValue(f, "class_list")); - } - } - - // Don't move caret if selection was image - if (e.childNodes.length != 1 || e.firstChild.nodeName != 'IMG') { - ed.focus(); - ed.selection.select(e); - ed.selection.collapse(0); - tinyMCEPopup.storeSelection(); - } - - tinyMCEPopup.execCommand("mceEndUndoLevel"); - tinyMCEPopup.close(); - }, - - checkPrefix : function(n) { - if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_email'))) - n.value = 'mailto:' + n.value; - - if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_external'))) - n.value = 'http://' + n.value; - }, - - fillFileList : function(id, l) { - var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - - l = window[l]; - - if (l && l.length > 0) { - lst.options[lst.options.length] = new Option('', ''); - - tinymce.each(l, function(o) { - lst.options[lst.options.length] = new Option(o[0], o[1]); - }); - } else - dom.remove(dom.getParent(id, 'tr')); - }, - - fillClassList : function(id) { - var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - - if (v = tinyMCEPopup.getParam('theme_advanced_styles')) { - cl = []; - - tinymce.each(v.split(';'), function(v) { - var p = v.split('='); - - cl.push({'title' : p[0], 'class' : p[1]}); - }); - } else - cl = tinyMCEPopup.editor.dom.getClasses(); - - if (cl.length > 0) { - lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), ''); - - tinymce.each(cl, function(o) { - lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']); - }); - } else - dom.remove(dom.getParent(id, 'tr')); - }, - - fillTargetList : function(id) { - var dom = tinyMCEPopup.dom, lst = dom.get(id), v; - - lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), ''); - lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_same'), '_self'); - lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_blank'), '_blank'); - - if (v = tinyMCEPopup.getParam('theme_advanced_link_targets')) { - tinymce.each(v.split(','), function(v) { - v = v.split('='); - lst.options[lst.options.length] = new Option(v[0], v[1]); - }); - } - } -}; - -LinkDialog.preInit(); -tinyMCEPopup.onInit.add(LinkDialog.init, LinkDialog); diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js deleted file mode 100644 index dd5e366fa..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js +++ /dev/null @@ -1,78 +0,0 @@ -tinyMCEPopup.requireLangPack(); -tinyMCEPopup.onInit.add(onLoadInit); - -function saveContent() { - tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value, {source_view : true}); - tinyMCEPopup.close(); -} - -function onLoadInit() { - tinyMCEPopup.resizeToInnerSize(); - - // Remove Gecko spellchecking - if (tinymce.isGecko) - document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck"); - - document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({source_view : true}); - - if (tinyMCEPopup.editor.getParam("theme_advanced_source_editor_wrap", true)) { - turnWrapOn(); - document.getElementById('wraped').checked = true; - } - - resizeInputs(); -} - -function setWrap(val) { - var v, n, s = document.getElementById('htmlSource'); - - s.wrap = val; - - if (!tinymce.isIE) { - v = s.value; - n = s.cloneNode(false); - n.setAttribute("wrap", val); - s.parentNode.replaceChild(n, s); - n.value = v; - } -} - -function setWhiteSpaceCss(value) { - var el = document.getElementById('htmlSource'); - tinymce.DOM.setStyle(el, 'white-space', value); -} - -function turnWrapOff() { - if (tinymce.isWebKit) { - setWhiteSpaceCss('pre'); - } else { - setWrap('off'); - } -} - -function turnWrapOn() { - if (tinymce.isWebKit) { - setWhiteSpaceCss('pre-wrap'); - } else { - setWrap('soft'); - } -} - -function toggleWordWrap(elm) { - if (elm.checked) { - turnWrapOn(); - } else { - turnWrapOff(); - } -} - -function resizeInputs() { - var vp = tinyMCEPopup.dom.getViewPort(window), el; - - el = document.getElementById('htmlSource'); - - if (el) { - el.style.width = (vp.w - 20) + 'px'; - el.style.height = (vp.h - 65) + 'px'; - } -} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js deleted file mode 100644 index 6e5848187..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.advanced',{"underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)",dd:"Definition Description",dt:"Definition Term ",samp:"Code Sample",code:"Code",blockquote:"Block Quote",h6:"Heading 6",h5:"Heading 5",h4:"Heading 4",h3:"Heading 3",h2:"Heading 2",h1:"Heading 1",pre:"Preformatted",address:"Address",div:"DIV",paragraph:"Paragraph",block:"Format",fontdefault:"Font Family","font_size":"Font Size","style_select":"Styles","anchor_delta_height":"","anchor_delta_width":"","charmap_delta_height":"","charmap_delta_width":"","colorpicker_delta_height":"","colorpicker_delta_width":"","link_delta_height":"","link_delta_width":"","image_delta_height":"","image_delta_width":"","more_colors":"More Colors...","toolbar_focus":"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",newdocument:"Are you sure you want clear all contents?",path:"Path","clipboard_msg":"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?","blockquote_desc":"Block Quote","help_desc":"Help","newdocument_desc":"New Document","image_props_desc":"Image Properties","paste_desc":"Paste (Ctrl+V)","copy_desc":"Copy (Ctrl+C)","cut_desc":"Cut (Ctrl+X)","anchor_desc":"Insert/Edit Anchor","visualaid_desc":"show/Hide Guidelines/Invisible Elements","charmap_desc":"Insert Special Character","backcolor_desc":"Select Background Color","forecolor_desc":"Select Text Color","custom1_desc":"Your Custom Description Here","removeformat_desc":"Remove Formatting","hr_desc":"Insert Horizontal Line","sup_desc":"Superscript","sub_desc":"Subscript","code_desc":"Edit HTML Source","cleanup_desc":"Cleanup Messy Code","image_desc":"Insert/Edit Image","unlink_desc":"Unlink","link_desc":"Insert/Edit Link","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","indent_desc":"Increase Indent","outdent_desc":"Decrease Indent","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","justifyfull_desc":"Align Full","justifyright_desc":"Align Right","justifycenter_desc":"Align Center","justifyleft_desc":"Align Left","striketrough_desc":"Strikethrough","help_shortcut":"Press ALT-F10 for toolbar. Press ALT-0 for help","rich_text_area":"Rich Text Area","shortcuts_desc":"Accessability Help",toolbar:"Toolbar"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js b/library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js deleted file mode 100644 index 50cd87e3d..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.advanced_dlg', {"link_list":"Link List","link_is_external":"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?","link_is_email":"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?","link_titlefield":"Title","link_target_blank":"Open Link in a New Window","link_target_same":"Open Link in the Same Window","link_target":"Target","link_url":"Link URL","link_title":"Insert/Edit Link","image_align_right":"Right","image_align_left":"Left","image_align_textbottom":"Text Bottom","image_align_texttop":"Text Top","image_align_bottom":"Bottom","image_align_middle":"Middle","image_align_top":"Top","image_align_baseline":"Baseline","image_align":"Alignment","image_hspace":"Horizontal Space","image_vspace":"Vertical Space","image_dimensions":"Dimensions","image_alt":"Image Description","image_list":"Image List","image_border":"Border","image_src":"Image URL","image_title":"Insert/Edit Image","charmap_title":"Select Special Character", "charmap_usage":"Use left and right arrows to navigate.","colorpicker_name":"Name:","colorpicker_color":"Color:","colorpicker_named_title":"Named Colors","colorpicker_named_tab":"Named","colorpicker_palette_title":"Palette Colors","colorpicker_palette_tab":"Palette","colorpicker_picker_title":"Color Picker","colorpicker_picker_tab":"Picker","colorpicker_title":"Select a Color","code_wordwrap":"Word Wrap","code_title":"HTML Source Editor","anchor_name":"Anchor Name","anchor_title":"Insert/Edit Anchor","about_loaded":"Loaded Plugins","about_version":"Version","about_author":"Author","about_plugin":"Plugin","about_plugins":"Plugins","about_license":"License","about_help":"Help","about_general":"About","about_title":"About TinyMCE","anchor_invalid":"Please specify a valid anchor name.","accessibility_help":"Accessibility Help","accessibility_usage_title":"General Usage","invalid_color_value":"Invalid color value","":""}); diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/link.htm b/library/tinymce/jscripts/tiny_mce/themes/advanced/link.htm deleted file mode 100644 index 5d9dea9b8..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/link.htm +++ /dev/null @@ -1,57 +0,0 @@ - - - - {#advanced_dlg.link_title} - - - - - - - -
                                            - - -
                                            -
                                            - - - - - - - - - - - - - - - - - - - - - -
                                            - - - - -
                                             
                                            -
                                            -
                                            - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm b/library/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm deleted file mode 100644 index 20ec2f5a3..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm +++ /dev/null @@ -1,47 +0,0 @@ - - - - {#advanced_dlg.accessibility_help} - - - - -

                                            {#advanced_dlg.accessibility_usage_title}

                                            -

                                            Toolbars

                                            -

                                            Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys. - Press enter to activate a button and return focus to the editor. - Press escape to return focus to the editor without performing any actions.

                                            - -

                                            Status Bar

                                            -

                                            To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path. - Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.

                                            - -

                                            Context Menu

                                            -

                                            Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key. - To close submenus press the left arrow key. Press escape to close the context menu.

                                            - -

                                            Keyboard Shortcuts

                                            - - - - - - - - - - - - - - - - - - - - - -
                                            KeystrokeFunction
                                            Control-BBold
                                            Control-IItalic
                                            Control-ZUndo
                                            Control-YRedo
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css deleted file mode 100644 index 2fd94a1f9..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css +++ /dev/null @@ -1,50 +0,0 @@ -body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;} -body {background:#FFF;} -body.mceForceColors {background:#FFF; color:#000;} -body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;} -h1 {font-size: 2em} -h2 {font-size: 1.5em} -h3 {font-size: 1.17em} -h4 {font-size: 1em} -h5 {font-size: .83em} -h6 {font-size: .75em} -.mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} -a.mceItemAnchor {display:inline-block; -webkit-user-select:all; -webkit-user-modify:read-only; -moz-user-select:all; -moz-user-modify:read-only; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat center center} -span.mceItemNbsp {background: #DDD} -td.mceSelected, th.mceSelected {background-color:#3399ff !important} -img {border:0;} -table, img, hr, .mceItemAnchor {cursor:default} -table td, table th {cursor:text} -ins {border-bottom:1px solid green; text-decoration: none; color:green} -del {color:red; text-decoration:line-through} -cite {border-bottom:1px dashed blue} -acronym {border-bottom:1px dotted #CCC; cursor:help} -abbr {border-bottom:1px dashed #CCC; cursor:help} - -/* IE */ -* html body { -scrollbar-3dlight-color:#F0F0EE; -scrollbar-arrow-color:#676662; -scrollbar-base-color:#F0F0EE; -scrollbar-darkshadow-color:#DDD; -scrollbar-face-color:#E0E0DD; -scrollbar-highlight-color:#F0F0EE; -scrollbar-shadow-color:#F0F0EE; -scrollbar-track-color:#F5F5F5; -} - -img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} -font[face=mceinline] {font-family:inherit !important} -*[contentEditable]:focus {outline:0} - -.mceItemMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc} -.mceItemShockWave {background-image:url(../../img/shockwave.gif)} -.mceItemFlash {background-image:url(../../img/flash.gif)} -.mceItemQuickTime {background-image:url(../../img/quicktime.gif)} -.mceItemWindowsMedia {background-image:url(../../img/windowsmedia.gif)} -.mceItemRealMedia {background-image:url(../../img/realmedia.gif)} -.mceItemVideo {background-image:url(../../img/video.gif)} -.mceItemAudio {background-image:url(../../img/video.gif)} -.mceItemEmbeddedAudio {background-image:url(../../img/video.gif)} -.mceItemIframe {background-image:url(../../img/iframe.gif)} -.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css deleted file mode 100644 index 879786fc1..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css +++ /dev/null @@ -1,118 +0,0 @@ -/* Generic */ -body { -font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; -scrollbar-3dlight-color:#F0F0EE; -scrollbar-arrow-color:#676662; -scrollbar-base-color:#F0F0EE; -scrollbar-darkshadow-color:#DDDDDD; -scrollbar-face-color:#E0E0DD; -scrollbar-highlight-color:#F0F0EE; -scrollbar-shadow-color:#F0F0EE; -scrollbar-track-color:#F5F5F5; -background:#F0F0EE; -padding:0; -margin:8px 8px 0 8px; -} - -html {background:#F0F0EE;} -td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -textarea {resize:none;outline:none;} -a:link, a:visited {color:black;} -a:hover {color:#2B6FB6;} -.nowrap {white-space: nowrap} - -/* Forms */ -fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;} -legend {color:#2B6FB6; font-weight:bold;} -label.msg {display:none;} -label.invalid {color:#EE0000; display:inline;} -input.invalid {border:1px solid #EE0000;} -input {background:#FFF; border:1px solid #CCC;} -input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -input, select, textarea {border:1px solid #808080;} -input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} -input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} -.input_noborder {border:0;} - -/* Buttons */ -#insert, #cancel, input.button, .updateButton { -border:0; margin:0; padding:0; -font-weight:bold; -width:94px; height:26px; -background:url(img/buttons.png) 0 -26px; -cursor:pointer; -padding-bottom:2px; -float:left; -} - -#insert {background:url(img/buttons.png) 0 -52px} -#cancel {background:url(img/buttons.png) 0 0; float:right} - -/* Browse */ -a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} -.mceOldBoxModel a.browse span {width:22px; height:20px;} -a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} -a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} -.mceOldBoxModel a.pickcolor span {width:21px; height:17px;} -a.pickcolor:hover span {background-color:#B2BBD0;} -a.pickcolor:hover span.disabled {} - -/* Charmap */ -table.charmap {border:1px solid #AAA; text-align:center} -td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;} -#charmap a {display:block; color:#000; text-decoration:none; border:0} -#charmap a:hover {background:#CCC;color:#2B6FB6} -#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center} -#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center} - -/* Source */ -.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;} -.mceActionPanel {margin-top:5px;} - -/* Tabs classes */ -.tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;} -.tabs ul {margin:0; padding:0; list-style:none;} -.tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;} -.tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;} -.tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;} -.tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;} -.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} -.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} - -/* Panels */ -.panel_wrapper div.panel {display:none;} -.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} -.panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;} - -/* Columns */ -.column {float:left;} -.properties {width:100%;} -.properties .column1 {} -.properties .column2 {text-align:left;} - -/* Titles */ -h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;} -h3 {font-size:14px;} -.title {font-size:12px; font-weight:bold; color:#2B6FB6;} - -/* Dialog specific */ -#link .panel_wrapper, #link div.current {height:125px;} -#image .panel_wrapper, #image div.current {height:200px;} -#plugintable thead {font-weight:bold; background:#DDD;} -#plugintable, #about #plugintable td {border:1px solid #919B9C;} -#plugintable {width:96%; margin-top:10px;} -#pluginscontainer {height:290px; overflow:auto;} -#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px} -#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline} -#colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap} -#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;} -#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;} -#colorpicker #light div {overflow:hidden;} -#colorpicker .panel_wrapper div.current {height:175px;} -#colorpicker #namedcolors {width:150px;} -#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;} -#colorpicker #colornamecontainer {margin-top:5px;} -#colorpicker #picker_panel fieldset {margin:auto;width:325px;} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png deleted file mode 100644 index 1e53560e0aa7bb1b9a0373fc2f330acab7d1d51f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3133 zcmV-D48rq?P)gng~>+0yq!tBh% zt0xP1czF2u_k)9j>dM0B$HDja_H1ly_V)Go`1nXjNaW+;^YZfD+t}*M#Nxuc=*Yq1 z;NB`KDhCG#@bK{R@$l@+!)t46+`F{;`ugO=z30fm^Yila^6}@#zv02U-oCc!%EL4? zH23%S=jP<#-rMNs>FMdm#>K$Dy`ivK#l*utK0e&s+{nkq>gea}%)@eWa<{g% z>dL@PO-FDO<;_vP3{r&yS z%gJYFXW`)8?90T9iiya`$o2O1+}hao_x2?vCGqg?<>cY)?CRy@;^N@n=jG#KaTS=D zm+I)|g@uFe?(C6}kHNve?(FOH^YiBA;_dD0_xJVh?(XR4=IY46=jG(~_V(`W?9I*1 z!^6SJF#_`P^4;Ct@9*!-P0sTG012r{L_t(|+O?MXUsG2ahi}PpNZ7ob12ts4 zA_nFqLtjdnoh+!creNnz_KL?&0LP2uu@&_VjZFOf^A4upSXxT<`l7sS>g!pxJp2~b zgUf1h)S;pzug4E}@{1@iQEJjdaP@Ltb^$+T7zI?z4@yu#C-3srtNyDv6^9}$t5I62 z>xb$~{1JaiNl_6V8bd?=JbL9-OZ-DXKO)}#7Xi}+6#OZW7Begij5aQTVUu2>r61l7mL6M%W;u2b1cxN5qol8KVq;TnzZb$VIutgWfp%2Ix?b*q1c zp^rpdy`U!2+}vDCtV5;l-Wsivb|!ywlycE%FI3t1UC}6o*QwN+^e&e(+6tmh&IV$* zwKr1BS*PP_W%O>?$}xn9*J^BNZXP!2n_RA@)&|hpN1XEREc(VbqzbSVA5n4^h7iXM|9ZGb3fK`idO7ys2Lt+`qm~5qe2Y=O=dNx30Fri zO%RZ1g`tQ4_sh%*NOe8@%T1~FFYSIIXUE2k`Uvcx=T}~&aOr7E^L^Zb*nQ}WPrdxk zJ1^$|SWi(Sa_XfVacZGB*KO4MjfcaFIU#(w@qM8&{Po|#YujGmtnxR;Yuh-x-oA6^ zuPW=;|7B_P^k$a3bLVa1+i;_B_~hj6+w(c#_U(fw4-4VUKe^uY^@!eVA}U?3JN zw_3}~%v4||MYYOBD+pBBK=CiB2=GM=ZK74QsnEWGf%6%rzj!7P2v}t?l}eTCl$E#0 zCt|T!SuA#?$iibMaNC?>Kiw?CEKdz7J@m zh=3#=raCG7elLNAKrH)!qKsKt#0a)nOqN=3Ipr#WE9WM;em?(%Xq9ft;&=}b#V3I$ zVj$2nbyH3S@RR!2vy>>^v{Son5CX1CHOG#5ljy)?^FYn1j{`_;M zADPb=ZhIQ? zHi5i*0!a~!kBegd{0P&(I-l?JIeb2!v}MbdD$qi>-D#hIVvMoz@o}r2GQRY`r|cGi z4IOo&281m>pFB3k;xjWdZg>8ChpzV$j-yf?=hiJ*-qPv)1oe0=FyoffUNeFlHkBhs z+(*6MIyZ&4Fl3Y7(s`pD2p`>>vJ*#-;!E?jd#RF4@GUKZ(yrmPyBRG|GN;h~pQ9AL zRR<)g&ZJL&;iwD%4EptL_49PIl6 zhXKmq;2s}=Ev71;4-O8#m(B)@zP`a(n8A(2;9z3Td*z&}zj)?uJLsF9RTO3K;Pmt( z#fu7;o=yjG4h|InKc>^l^z>7oVg8Y(vD*K1`T=t9_6H%ju3Wl%=Hdv~4-CxT{qm2? z%9nTN2L_n_!g<_I&Roe~R<4}E?c_ObC*jPu2RV}+Bik6)ULEP^7@2&Ir`I^IgI%1r zu3>uDTZ~;ASf0c*?dzDlcI_HjMmoOEgmEkX>BA3y$^o$AR^AvsnYoZzejq&=Zp?KX zWwTjxrMKE_f-U@bGbpSq+-wFD3{0>8ZS=G`y!mn1CRl@QXV0$60cX!v2CewRY+Ji( z-@a9AmlJNRq%JMfhVjakqPSAWMx;bBWwWis3mYtrDFB0LnuotKvq<`V`_MU{CtI0? zHj_e^M#Eo`>xYW`2>4Sop9r3$7^9D0|tV3X(>MKmaTjd zTktrvwvFjGojrtexg~ch8%eTiL$?HEDrQFQ(o|zg&NduBtLhIOr!H+##_1SX!$S-& zLZ~82VT&b<_XeVjKkdaT)8&MZn3s6O? z@Gec#kU^Eh>o9787rQi=j4n;`dL2Ex7py*wi-C_@W;tGmM2H0td2k}Eu?UR&MBu6|>VLK7V2WZmcZX6GS zxVhu-27`juJ?VIY96{1iSCn8dt4q`M`ww_PhzNR&E=>uAmgv&rzt*M2LqTW>>P+IH z1N(Ko7y4j=2*o|XK`4oY=fy6~L8&FXv_z1HX=^Bv(Dl0y&{q|&t_}qgctS0PQeCYe z`pYgYR9#&iU!qG3RR?(*S6W@22p-sN=n3pnlmu<&1!%&<&tk3;N5Y%VhNKDTS)3e+ zxYwj#O?s^3If&gM#p`AIphv@~pdjEet2rJm%>~M8L%)0X>M#DVtbDN=Qm(JW=)me_ z<^ZH^(1$aRD>-eOHt8eKM$d&WQn~arrTISYK3<2LI5 XtZb~ra4Vor00000NkvXXu0mjf(5kL( diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif deleted file mode 100644 index d2f93671ca3090b277e16a67b1aa6cfb6ac4915f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 64 zcmZ?wbhEHbjEB<5wG8q|kKzxu41Cw-5|H{*E`4`XOxxoD9Y}F^Z SLTQbO*E^TJI;F+RU=09Vu@yA{ diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif deleted file mode 100644 index adfdddccd7cac62a17d68873fa53c248bff8351a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 70 zcmZ?wbhEHb6k!lyXkcUjg8%>jEB<5wG8q|kKzxu41Cwk||H{*E`4`XG(j;}D)%x|1 U%)82UlRJ8EoZ9xTT7&iJhvXcHF*h)T1OnEW1i^?zgDfop1p?usL*#PMGT;HQkSO{q6FlJyb$PWkPf|h*eTST}7h8z$}MF(XD(aQ)ZLZ zM?v0rT<1C4XHn<6PbNA{XL@>1^)apdD_@tcYDrW#m`k#MmslI7p^P;Az74wGs`!SI zLs$GEZHsafXsu1i-WleMzAL(yw$-LK{0hv;6hrx8kx!!4$``dAyBnY9Jz&DqJo2$A z!(L$H=KqBeY~CF_viHPz^tTglc?D97CqEBjzUwH}7GI zapg8YZM~>2Wk%E$d&r@9ly9b4Q zJpM7T@}r63I(OExUlG%Xcjz3MU+9U^r!SkpjNThDtaP)7>j6L5z%o5|^hlVOyI*uY zt^UU6NTuY?(Lb4ZIU2Zb5Vz}Pb7KF%ivf&j^CL>$cDz?rMNTQQ|NqDVD7mhghUp%h zhIA{gi{S8y9YhIIbSv$`B!JiPi!0#4#Jge0)p&YVPHchWcyAn zQhvb8ggXGXs9;k`u9Uq*YB>O+Q3Rq=2hlLFcG{Q3ORH_}JnY8C+r%@}6|%ySP%bWG zV~mA;?P`Q2L_Ss})nrJ{$TmeA9Tt*4=}X5x%RioM@_?ZsKSEST-f+GBv~Ya)xX3O{ z8!d=YthI-13OI;RN~`>|6u5L{z20oBp%9MIj)n$!Aw{Wpq&Rtr4~*_74Gjo@3el>B zz(Rk;;>2lp73<2;d=r*8z%WkdsG=vRuG_fvxO#uN^El|+5Qoz^X!2MfxJ3m}vyi?> zMLLDi8+${Z6YbUg?8GNR>-+SwHKdFyr%HqWcs|X_l*-DAC^bG&KCqWg7-_`UlwQ`EdOp_LJkr`L$mHHs75uP?fSgVfsDjuE#ft2b8HDt0yFt!+;C zEgL=)G9ZFt4wa+N3Xg7FGc0~`&EEt6_%7tyzmnb9B_h1~7~GD4V-Bhx7~QKRkF>&aT>(-!Us@aJxAY@8E?HW$G8g zSz@7Jcp>iCp;lU1ieF6n7!oAa-1E!rS0 zF1lBFVS%G#ZO}b@*+bIk+7@Q|iG60vIDVpV%4tW8rKyzwRo_<25;8*Ky@n z-sX>W*b;M){5lB_Edc@m1`VHy0@dg$PTR9uE$O2&a?KAe?xRlCj&Z$iZYw{QLU)`S|$v@$cX6?dI$1gD3v=j7e% z=;7w$-Rb7w=;hz@@$UBY^8Wt*`uh6+|Nj60000000000000000000000000000000 z00000A^8La001@sEC2ui04xDo06+%+K$1gIC>oE*q;kn@I-k&}bV{vSuh^_MTj5x~ z;IMd1E}PHjw0g~MyWjA*d`_1aD382;&+q&HfPsR8goTEOh>41ejE#C>oB7x?gDgX`C@W6PdRySDAy zxO3~?&AYen-@tu z`Sa-0t6$H)z5Dm@LOZmO%>O00UfxnIvLj zmiZW&W~QkanrgNg7@Ka!Dd(JY)@kRRc;=aq0|XcV`m}aW!rkr-_>81sY;K8V*mTKy$sHUpws;su^>Z`EED(kGY)@tjm zxZYZTYZdhB>#x8DE9|hu7HjOW$R?}ovdlK??6c5DD=oAId~w{h*k-Hkw%m5>?YH2D zEAF`DmTT_0=%%ax?z-w0009Ik#VhZ;^ww+dz4+#<@4o!@>+in+2Q2Ww1Q$$j0U2bV z!NLqT?C`@7M=bHg6jyBV#TaL-@x~l??D5ASdtAVH6qIc8$tb6+^2#i??DESn$1L;A zG}mnN%{b?*GtOJ|?DNk+2QBo_L>Daue_181^wLZ>?ex=7N9~l1I}U2~)mXDawT@YL z?e*83Y@H+6WS1?d*f^T4_Sz?+eIwg&$E~5;Hp*@H-M-LWBi?-X{fgc`1}^yEgcol3 z;X3N6_(2E|;K1UL57dDST1Ia9J29Y8`Q@Cev*hNThaS!eb%|~|J5qvv`s&nRsXFVh zKVw2)vDa=#`|SV?;3e+7Ljz~;z#H>>@Wcl*eDTB|k38_oFVB1P&fgAw^tDe<{q@*q gul@Gickli8;D;~%_~eUY^!ezgum1Y%w;u!mJFYAXt^fc4 diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css deleted file mode 100644 index 77083f311..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css +++ /dev/null @@ -1,219 +0,0 @@ -/* Reset */ -.defaultSkin table, .defaultSkin tbody, .defaultSkin a, .defaultSkin img, .defaultSkin tr, .defaultSkin div, .defaultSkin td, .defaultSkin iframe, .defaultSkin span, .defaultSkin *, .defaultSkin .mceText {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000; vertical-align:baseline; width:auto; border-collapse:separate; text-align:left} -.defaultSkin a:hover, .defaultSkin a:link, .defaultSkin a:visited, .defaultSkin a:active {text-decoration:none; font-weight:normal; cursor:default; color:#000} -.defaultSkin table td {vertical-align:middle} - -/* Containers */ -.defaultSkin table {direction:ltr;background:transparent} -.defaultSkin iframe {display:block;} -.defaultSkin .mceToolbar {height:26px} -.defaultSkin .mceLeft {text-align:left} -.defaultSkin .mceRight {text-align:right} - -/* External */ -.defaultSkin .mceExternalToolbar {position:absolute; border:1px solid #CCC; border-bottom:0; display:none;} -.defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;} -.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0} - -/* Layout */ -.defaultSkin table.mceLayout {border:0; border-left:1px solid #CCC; border-right:1px solid #CCC} -.defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC} -.defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC} -.defaultSkin table.mceToolbar, .defaultSkin tr.mceFirst .mceToolbar tr td, .defaultSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;} -.defaultSkin td.mceToolbar {background:#F0F0EE; padding-top:1px; vertical-align:top} -.defaultSkin .mceIframeContainer {border-top:1px solid #CCC; border-bottom:1px solid #CCC} -.defaultSkin .mceStatusbar {background:#F0F0EE; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px} -.defaultSkin .mceStatusbar div {float:left; margin:2px} -.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} -.defaultSkin .mceStatusbar a:hover {text-decoration:underline} -.defaultSkin table.mceToolbar {margin-left:3px} -.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {display:block; width:20px; height:20px} -.defaultSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} -.defaultSkin td.mceCenter {text-align:center;} -.defaultSkin td.mceCenter table {margin:0 auto; text-align:left;} -.defaultSkin td.mceRight table {margin:0 0 0 auto;} - -/* Button */ -.defaultSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px; margin-right:1px} -.defaultSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0} -.defaultSkin a.mceButtonActive, .defaultSkin a.mceButtonSelected {border:1px solid #0A246A; background-color:#C2CBE0} -.defaultSkin .mceButtonDisabled .mceIcon {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -.defaultSkin .mceButtonLabeled {width:auto} -.defaultSkin .mceButtonLabeled span.mceIcon {float:left} -.defaultSkin span.mceButtonLabel {display:block; font-size:10px; padding:4px 6px 0 22px; font-family:Tahoma,Verdana,Arial,Helvetica} -.defaultSkin .mceButtonDisabled .mceButtonLabel {color:#888} - -/* Separator */ -.defaultSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:2px 2px 0 4px} - -/* ListBox */ -.defaultSkin .mceListBox, .defaultSkin .mceListBox a {display:block} -.defaultSkin .mceListBox .mceText {padding-left:4px; width:70px; text-align:left; border:1px solid #CCC; border-right:0; background:#FFF; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden} -.defaultSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(../../img/icons.gif) -741px 0; margin-right:2px; border:1px solid #CCC;} -.defaultSkin table.mceListBoxEnabled:hover .mceText, .defaultSkin .mceListBoxHover .mceText, .defaultSkin .mceListBoxSelected .mceText {border:1px solid #A2ABC0; border-right:0; background:#FFF} -.defaultSkin table.mceListBoxEnabled:hover .mceOpen, .defaultSkin .mceListBoxHover .mceOpen, .defaultSkin .mceListBoxSelected .mceOpen {background-color:#FFF; border:1px solid #A2ABC0} -.defaultSkin .mceListBoxDisabled a.mceText {color:gray; background-color:transparent;} -.defaultSkin .mceListBoxMenu {overflow:auto; overflow-x:hidden} -.defaultSkin .mceOldBoxModel .mceListBox .mceText {height:22px} -.defaultSkin .mceOldBoxModel .mceListBox .mceOpen {width:11px; height:22px;} -.defaultSkin select.mceNativeListBox {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:7pt; background:#F0F0EE; border:1px solid gray; margin-right:2px;} - -/* SplitButton */ -.defaultSkin .mceSplitButton {width:32px; height:20px; direction:ltr} -.defaultSkin .mceSplitButton a, .defaultSkin .mceSplitButton span {height:20px; display:block} -.defaultSkin .mceSplitButton a.mceAction {width:20px; border:1px solid #F0F0EE; border-right:0;} -.defaultSkin .mceSplitButton span.mceAction {width:20px; background-image:url(../../img/icons.gif);} -.defaultSkin .mceSplitButton a.mceOpen {width:9px; background:url(../../img/icons.gif) -741px 0; border:1px solid #F0F0EE;} -.defaultSkin .mceSplitButton span.mceOpen {display:none} -.defaultSkin table.mceSplitButtonEnabled:hover a.mceAction, .defaultSkin .mceSplitButtonHover a.mceAction, .defaultSkin .mceSplitButtonSelected a.mceAction {border:1px solid #0A246A; border-right:0; background-color:#B2BBD0} -.defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen, .defaultSkin .mceSplitButtonHover a.mceOpen, .defaultSkin .mceSplitButtonSelected a.mceOpen {background-color:#B2BBD0; border:1px solid #0A246A;} -.defaultSkin .mceSplitButtonDisabled .mceAction, .defaultSkin .mceSplitButtonDisabled a.mceOpen {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -.defaultSkin .mceSplitButtonActive a.mceAction {border:1px solid #0A246A; background-color:#C2CBE0} -.defaultSkin .mceSplitButtonActive a.mceOpen {border-left:0;} - -/* ColorSplitButton */ -.defaultSkin div.mceColorSplitMenu table {background:#FFF; border:1px solid gray} -.defaultSkin .mceColorSplitMenu td {padding:2px} -.defaultSkin .mceColorSplitMenu a {display:block; width:9px; height:9px; overflow:hidden; border:1px solid #808080} -.defaultSkin .mceColorSplitMenu td.mceMoreColors {padding:1px 3px 1px 1px} -.defaultSkin .mceColorSplitMenu a.mceMoreColors {width:100%; height:auto; text-align:center; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; line-height:20px; border:1px solid #FFF} -.defaultSkin .mceColorSplitMenu a.mceMoreColors:hover {border:1px solid #0A246A; background-color:#B6BDD2} -.defaultSkin a.mceMoreColors:hover {border:1px solid #0A246A} -.defaultSkin .mceColorPreview {margin-left:2px; width:16px; height:4px; overflow:hidden; background:#9a9b9a} -.defaultSkin .mce_forecolor span.mceAction, .defaultSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px} - -/* Menu */ -.defaultSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8; direction:ltr} -.defaultSkin .mceNoIcons span.mceIcon {width:0;} -.defaultSkin .mceNoIcons a .mceText {padding-left:10px} -.defaultSkin .mceMenu table {background:#FFF} -.defaultSkin .mceMenu a, .defaultSkin .mceMenu span, .defaultSkin .mceMenu {display:block} -.defaultSkin .mceMenu td {height:20px} -.defaultSkin .mceMenu a {position:relative;padding:3px 0 4px 0} -.defaultSkin .mceMenu .mceText {position:relative; display:block; font-family:Tahoma,Verdana,Arial,Helvetica; color:#000; cursor:default; margin:0; padding:0 25px 0 25px; display:block} -.defaultSkin .mceMenu span.mceText, .defaultSkin .mceMenu .mcePreview {font-size:11px} -.defaultSkin .mceMenu pre.mceText {font-family:Monospace} -.defaultSkin .mceMenu .mceIcon {position:absolute; top:0; left:0; width:22px;} -.defaultSkin .mceMenu .mceMenuItemEnabled a:hover, .defaultSkin .mceMenu .mceMenuItemActive {background-color:#dbecf3} -.defaultSkin td.mceMenuItemSeparator {background:#DDD; height:1px} -.defaultSkin .mceMenuItemTitle a {border:0; background:#EEE; border-bottom:1px solid #DDD} -.defaultSkin .mceMenuItemTitle span.mceText {color:#000; font-weight:bold; padding-left:4px} -.defaultSkin .mceMenuItemDisabled .mceText {color:#888} -.defaultSkin .mceMenuItemSelected .mceIcon {background:url(img/menu_check.gif)} -.defaultSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center} -.defaultSkin .mceMenu span.mceMenuLine {display:none} -.defaultSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;} -.defaultSkin .mceMenuItem td, .defaultSkin .mceMenuItem th {line-height: normal} - -/* Progress,Resize */ -.defaultSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50); background:#FFF} -.defaultSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px} - -/* Rtl */ -.mceRtl .mceListBox .mceText {text-align: right; padding: 0 4px 0 0} -.mceRtl .mceMenuItem .mceText {text-align: right} - -/* Formats */ -.defaultSkin .mce_formatPreview a {font-size:10px} -.defaultSkin .mce_p span.mceText {} -.defaultSkin .mce_address span.mceText {font-style:italic} -.defaultSkin .mce_pre span.mceText {font-family:monospace} -.defaultSkin .mce_h1 span.mceText {font-weight:bolder; font-size: 2em} -.defaultSkin .mce_h2 span.mceText {font-weight:bolder; font-size: 1.5em} -.defaultSkin .mce_h3 span.mceText {font-weight:bolder; font-size: 1.17em} -.defaultSkin .mce_h4 span.mceText {font-weight:bolder; font-size: 1em} -.defaultSkin .mce_h5 span.mceText {font-weight:bolder; font-size: .83em} -.defaultSkin .mce_h6 span.mceText {font-weight:bolder; font-size: .75em} - -/* Theme */ -.defaultSkin span.mce_bold {background-position:0 0} -.defaultSkin span.mce_italic {background-position:-60px 0} -.defaultSkin span.mce_underline {background-position:-140px 0} -.defaultSkin span.mce_strikethrough {background-position:-120px 0} -.defaultSkin span.mce_undo {background-position:-160px 0} -.defaultSkin span.mce_redo {background-position:-100px 0} -.defaultSkin span.mce_cleanup {background-position:-40px 0} -.defaultSkin span.mce_bullist {background-position:-20px 0} -.defaultSkin span.mce_numlist {background-position:-80px 0} -.defaultSkin span.mce_justifyleft {background-position:-460px 0} -.defaultSkin span.mce_justifyright {background-position:-480px 0} -.defaultSkin span.mce_justifycenter {background-position:-420px 0} -.defaultSkin span.mce_justifyfull {background-position:-440px 0} -.defaultSkin span.mce_anchor {background-position:-200px 0} -.defaultSkin span.mce_indent {background-position:-400px 0} -.defaultSkin span.mce_outdent {background-position:-540px 0} -.defaultSkin span.mce_link {background-position:-500px 0} -.defaultSkin span.mce_unlink {background-position:-640px 0} -.defaultSkin span.mce_sub {background-position:-600px 0} -.defaultSkin span.mce_sup {background-position:-620px 0} -.defaultSkin span.mce_removeformat {background-position:-580px 0} -.defaultSkin span.mce_newdocument {background-position:-520px 0} -.defaultSkin span.mce_image {background-position:-380px 0} -.defaultSkin span.mce_help {background-position:-340px 0} -.defaultSkin span.mce_code {background-position:-260px 0} -.defaultSkin span.mce_hr {background-position:-360px 0} -.defaultSkin span.mce_visualaid {background-position:-660px 0} -.defaultSkin span.mce_charmap {background-position:-240px 0} -.defaultSkin span.mce_paste {background-position:-560px 0} -.defaultSkin span.mce_copy {background-position:-700px 0} -.defaultSkin span.mce_cut {background-position:-680px 0} -.defaultSkin span.mce_blockquote {background-position:-220px 0} -.defaultSkin .mce_forecolor span.mceAction {background-position:-720px 0} -.defaultSkin .mce_backcolor span.mceAction {background-position:-760px 0} -.defaultSkin span.mce_forecolorpicker {background-position:-720px 0} -.defaultSkin span.mce_backcolorpicker {background-position:-760px 0} - -/* Plugins */ -.defaultSkin span.mce_advhr {background-position:-0px -20px} -.defaultSkin span.mce_ltr {background-position:-20px -20px} -.defaultSkin span.mce_rtl {background-position:-40px -20px} -.defaultSkin span.mce_emotions {background-position:-60px -20px} -.defaultSkin span.mce_fullpage {background-position:-80px -20px} -.defaultSkin span.mce_fullscreen {background-position:-100px -20px} -.defaultSkin span.mce_iespell {background-position:-120px -20px} -.defaultSkin span.mce_insertdate {background-position:-140px -20px} -.defaultSkin span.mce_inserttime {background-position:-160px -20px} -.defaultSkin span.mce_absolute {background-position:-180px -20px} -.defaultSkin span.mce_backward {background-position:-200px -20px} -.defaultSkin span.mce_forward {background-position:-220px -20px} -.defaultSkin span.mce_insert_layer {background-position:-240px -20px} -.defaultSkin span.mce_insertlayer {background-position:-260px -20px} -.defaultSkin span.mce_movebackward {background-position:-280px -20px} -.defaultSkin span.mce_moveforward {background-position:-300px -20px} -.defaultSkin span.mce_media {background-position:-320px -20px} -.defaultSkin span.mce_nonbreaking {background-position:-340px -20px} -.defaultSkin span.mce_pastetext {background-position:-360px -20px} -.defaultSkin span.mce_pasteword {background-position:-380px -20px} -.defaultSkin span.mce_selectall {background-position:-400px -20px} -.defaultSkin span.mce_preview {background-position:-420px -20px} -.defaultSkin span.mce_print {background-position:-440px -20px} -.defaultSkin span.mce_cancel {background-position:-460px -20px} -.defaultSkin span.mce_save {background-position:-480px -20px} -.defaultSkin span.mce_replace {background-position:-500px -20px} -.defaultSkin span.mce_search {background-position:-520px -20px} -.defaultSkin span.mce_styleprops {background-position:-560px -20px} -.defaultSkin span.mce_table {background-position:-580px -20px} -.defaultSkin span.mce_cell_props {background-position:-600px -20px} -.defaultSkin span.mce_delete_table {background-position:-620px -20px} -.defaultSkin span.mce_delete_col {background-position:-640px -20px} -.defaultSkin span.mce_delete_row {background-position:-660px -20px} -.defaultSkin span.mce_col_after {background-position:-680px -20px} -.defaultSkin span.mce_col_before {background-position:-700px -20px} -.defaultSkin span.mce_row_after {background-position:-720px -20px} -.defaultSkin span.mce_row_before {background-position:-740px -20px} -.defaultSkin span.mce_merge_cells {background-position:-760px -20px} -.defaultSkin span.mce_table_props {background-position:-980px -20px} -.defaultSkin span.mce_row_props {background-position:-780px -20px} -.defaultSkin span.mce_split_cells {background-position:-800px -20px} -.defaultSkin span.mce_template {background-position:-820px -20px} -.defaultSkin span.mce_visualchars {background-position:-840px -20px} -.defaultSkin span.mce_abbr {background-position:-860px -20px} -.defaultSkin span.mce_acronym {background-position:-880px -20px} -.defaultSkin span.mce_attribs {background-position:-900px -20px} -.defaultSkin span.mce_cite {background-position:-920px -20px} -.defaultSkin span.mce_del {background-position:-940px -20px} -.defaultSkin span.mce_ins {background-position:-960px -20px} -.defaultSkin span.mce_pagebreak {background-position:0 -40px} -.defaultSkin span.mce_restoredraft {background-position:-20px -40px} -.defaultSkin span.mce_spellchecker {background-position:-540px -20px} -.defaultSkin span.mce_visualblocks {background-position: -40px -40px} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css deleted file mode 100644 index cbce6c6a2..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +++ /dev/null @@ -1,24 +0,0 @@ -body, td, pre { margin:8px;} -body.mceForceColors {background:#FFF; color:#000;} -h1 {font-size: 2em} -h2 {font-size: 1.5em} -h3 {font-size: 1.17em} -h4 {font-size: 1em} -h5 {font-size: .83em} -h6 {font-size: .75em} -.mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} -a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(../default/img/items.gif) no-repeat 0 0;} -span.mceItemNbsp {background: #DDD} -td.mceSelected, th.mceSelected {background-color:#3399ff !important} -img {border:0;} -table, img, hr, .mceItemAnchor {cursor:default} -table td, table th {cursor:text} -ins {border-bottom:1px solid green; text-decoration: none; color:green} -del {color:red; text-decoration:line-through} -cite {border-bottom:1px dashed blue} -acronym {border-bottom:1px dotted #CCC; cursor:help} -abbr {border-bottom:1px dashed #CCC; cursor:help} - -img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} -font[face=mceinline] {font-family:inherit !important} -*[contentEditable]:focus {outline:0} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css deleted file mode 100644 index 6d9fc8dd6..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +++ /dev/null @@ -1,106 +0,0 @@ -/* Generic */ -body { -font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; -background:#F0F0EE; -color: black; -padding:0; -margin:8px 8px 0 8px; -} - -html {background:#F0F0EE; color:#000;} -td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -textarea {resize:none;outline:none;} -a:link, a:visited {color:black;background-color:transparent;} -a:hover {color:#2B6FB6;background-color:transparent;} -.nowrap {white-space: nowrap} - -/* Forms */ -fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;} -legend {color:#2B6FB6; font-weight:bold;} -label.msg {display:none;} -label.invalid {color:#EE0000; display:inline;background-color:transparent;} -input.invalid {border:1px solid #EE0000;background-color:transparent;} -input {background:#FFF; border:1px solid #CCC;color:black;} -input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -input, select, textarea {border:1px solid #808080;} -input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} -input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} -.input_noborder {border:0;} - -/* Buttons */ -#insert, #cancel, input.button, .updateButton { -font-weight:bold; -width:94px; height:23px; -cursor:pointer; -padding-bottom:2px; -float:left; -} - -#cancel {float:right} - -/* Browse */ -a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} -.mceOldBoxModel a.browse span {width:22px; height:20px;} -a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} -a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} -.mceOldBoxModel a.pickcolor span {width:21px; height:17px;} -a.pickcolor:hover span {background-color:#B2BBD0;} -a.pickcolor:hover span.disabled {} - -/* Charmap */ -table.charmap {border:1px solid #AAA; text-align:center} -td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;} -#charmap a {display:block; color:#000; text-decoration:none; border:0} -#charmap a:hover {background:#CCC;color:#2B6FB6} -#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center} -#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center} - -/* Source */ -.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;} -.mceActionPanel {margin-top:5px;} - -/* Tabs classes */ -.tabs {width:100%; height:18px; line-height:normal;} -.tabs ul {margin:0; padding:0; list-style:none;} -.tabs li {float:left; border: 1px solid black; border-bottom:0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block; cursor:pointer;} -.tabs li.current {font-weight: bold; margin-right:2px;} -.tabs span {float:left; display:block; padding:0px 10px 0 0;} -.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} -.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} - -/* Panels */ -.panel_wrapper div.panel {display:none;} -.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} -.panel_wrapper {border:1px solid #919B9C; padding:10px; padding-top:5px; clear:both; background:white;} - -/* Columns */ -.column {float:left;} -.properties {width:100%;} -.properties .column1 {} -.properties .column2 {text-align:left;} - -/* Titles */ -h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;} -h3 {font-size:14px;} -.title {font-size:12px; font-weight:bold; color:#2B6FB6;} - -/* Dialog specific */ -#link .panel_wrapper, #link div.current {height:125px;} -#image .panel_wrapper, #image div.current {height:200px;} -#plugintable thead {font-weight:bold; background:#DDD;} -#plugintable, #about #plugintable td {border:1px solid #919B9C;} -#plugintable {width:96%; margin-top:10px;} -#pluginscontainer {height:290px; overflow:auto;} -#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px} -#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline} -#colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap} -#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;} -#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;} -#colorpicker #light div {overflow:hidden;} -#colorpicker .panel_wrapper div.current {height:175px;} -#colorpicker #namedcolors {width:150px;} -#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;} -#colorpicker #colornamecontainer {margin-top:5px;} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css deleted file mode 100644 index effbbe158..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css +++ /dev/null @@ -1,106 +0,0 @@ -/* Reset */ -.highcontrastSkin table, .highcontrastSkin tbody, .highcontrastSkin a, .highcontrastSkin img, .highcontrastSkin tr, .highcontrastSkin div, .highcontrastSkin td, .highcontrastSkin iframe, .highcontrastSkin span, .highcontrastSkin *, .highcontrastSkin .mceText {border:0; margin:0; padding:0; vertical-align:baseline; border-collapse:separate;} -.highcontrastSkin a:hover, .highcontrastSkin a:link, .highcontrastSkin a:visited, .highcontrastSkin a:active {text-decoration:none; font-weight:normal; cursor:default;} -.highcontrastSkin table td {vertical-align:middle} - -.highcontrastSkin .mceIconOnly {display: block !important;} - -/* External */ -.highcontrastSkin .mceExternalToolbar {position:absolute; border:1px solid; border-bottom:0; display:none; background-color: white;} -.highcontrastSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;} -.highcontrastSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px;} - -/* Layout */ -.highcontrastSkin table.mceLayout {border: 1px solid;} -.highcontrastSkin .mceIframeContainer {border-top:1px solid; border-bottom:1px solid} -.highcontrastSkin .mceStatusbar a:hover {text-decoration:underline} -.highcontrastSkin .mceStatusbar {display:block; line-height:1.5em; overflow:visible;} -.highcontrastSkin .mceStatusbar div {float:left} -.highcontrastSkin .mceStatusbar a.mceResize {display:block; float:right; width:20px; height:20px; cursor:se-resize; outline:0} - -.highcontrastSkin .mceToolbar td { display: inline-block; float: left;} -.highcontrastSkin .mceToolbar tr { display: block;} -.highcontrastSkin .mceToolbar table { display: block; } - -/* Button */ - -.highcontrastSkin .mceButton { display:block; margin: 2px; padding: 5px 10px;border: 1px solid; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; -ms-border-radius: 3px; height: 2em;} -.highcontrastSkin .mceButton .mceVoiceLabel { height: 100%; vertical-align: center; line-height: 2em} -.highcontrastSkin .mceButtonDisabled .mceVoiceLabel { opacity:0.6; -ms-filter:'alpha(opacity=60)'; filter:alpha(opacity=60);} -.highcontrastSkin .mceButtonActive, .highcontrastSkin .mceButton:focus, .highcontrastSkin .mceButton:active { border: 5px solid; padding: 1px 6px;-webkit-focus-ring-color:none;outline:none;} - -/* Separator */ -.highcontrastSkin .mceSeparator {display:block; width:16px; height:26px;} - -/* ListBox */ -.highcontrastSkin .mceListBox { display: block; margin:2px;-webkit-focus-ring-color:none;outline:none;} -.highcontrastSkin .mceListBox .mceText {padding: 5px 6px; line-height: 2em; width: 15ex; overflow: hidden;} -.highcontrastSkin .mceListBoxDisabled .mceText { opacity:0.6; -ms-filter:'alpha(opacity=60)'; filter:alpha(opacity=60);} -.highcontrastSkin .mceListBox a.mceText { padding: 5px 10px; display: block; height: 2em; line-height: 2em; border: 1px solid; border-right: 0; border-radius: 3px 0px 0px 3px; -moz-border-radius: 3px 0px 0px 3px; -webkit-border-radius: 3px 0px 0px 3px; -ms-border-radius: 3px 0px 0px 3px;} -.highcontrastSkin .mceListBox a.mceOpen { padding: 5px 4px; display: block; height: 2em; line-height: 2em; border: 1px solid; border-left: 0; border-radius: 0px 3px 3px 0px; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; -ms-border-radius: 0px 3px 3px 0px;} -.highcontrastSkin .mceListBox:focus a.mceText, .highcontrastSkin .mceListBox:active a.mceText { border-width: 5px; padding: 1px 10px 1px 6px;} -.highcontrastSkin .mceListBox:focus a.mceOpen, .highcontrastSkin .mceListBox:active a.mceOpen { border-width: 5px; padding: 1px 0px 1px 4px;} - -.highcontrastSkin .mceListBoxMenu {overflow-y:auto} - -/* SplitButton */ -.highcontrastSkin .mceSplitButtonDisabled .mceAction {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} - -.highcontrastSkin .mceSplitButton { border-collapse: collapse; margin: 2px; height: 2em; line-height: 2em;-webkit-focus-ring-color:none;outline:none;} -.highcontrastSkin .mceSplitButton td { display: table-cell; float: none; margin: 0; padding: 0; height: 2em;} -.highcontrastSkin .mceSplitButton tr { display: table-row; } -.highcontrastSkin table.mceSplitButton { display: table; } -.highcontrastSkin .mceSplitButton a.mceAction { padding: 5px 10px; display: block; height: 2em; line-height: 2em; overflow: hidden; border: 1px solid; border-right: 0; border-radius: 3px 0px 0px 3px; -moz-border-radius: 3px 0px 0px 3px; -webkit-border-radius: 3px 0px 0px 3px; -ms-border-radius: 3px 0px 0px 3px;} -.highcontrastSkin .mceSplitButton a.mceOpen { padding: 5px 4px; display: block; height: 2em; line-height: 2em; border: 1px solid; border-radius: 0px 3px 3px 0px; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; -ms-border-radius: 0px 3px 3px 0px;} -.highcontrastSkin .mceSplitButton .mceVoiceLabel { height: 2em; vertical-align: center; line-height: 2em; } -.highcontrastSkin .mceSplitButton:focus a.mceAction, .highcontrastSkin .mceSplitButton:active a.mceAction { border-width: 5px; border-right-width: 1px; padding: 1px 10px 1px 6px;-webkit-focus-ring-color:none;outline:none;} -.highcontrastSkin .mceSplitButton:focus a.mceOpen, .highcontrastSkin .mceSplitButton:active a.mceOpen { border-width: 5px; border-left-width: 1px; padding: 1px 0px 1px 4px;-webkit-focus-ring-color:none;outline:none;} - -/* Menu */ -.highcontrastSkin .mceNoIcons span.mceIcon {width:0;} -.highcontrastSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid; direction:ltr} -.highcontrastSkin .mceMenu table {background:white; color: black} -.highcontrastSkin .mceNoIcons a .mceText {padding-left:10px} -.highcontrastSkin .mceMenu a, .highcontrastSkin .mceMenu span, .highcontrastSkin .mceMenu {display:block;background:white; color: black} -.highcontrastSkin .mceMenu td {height:2em} -.highcontrastSkin .mceMenu a {position:relative;padding:3px 0 4px 0; display: block;} -.highcontrastSkin .mceMenu .mceText {position:relative; display:block; cursor:default; margin:0; padding:0 25px 0 25px;} -.highcontrastSkin .mceMenu pre.mceText {font-family:Monospace} -.highcontrastSkin .mceMenu .mceIcon {position:absolute; top:0; left:0; width:26px;} -.highcontrastSkin td.mceMenuItemSeparator {border-top:1px solid; height:1px} -.highcontrastSkin .mceMenuItemTitle a {border:0; border-bottom:1px solid} -.highcontrastSkin .mceMenuItemTitle span.mceText {font-weight:bold; padding-left:4px} -.highcontrastSkin .mceNoIcons .mceMenuItemSelected span.mceText:before {content: "\2713\A0";} -.highcontrastSkin .mceMenu span.mceMenuLine {display:none} -.highcontrastSkin .mceMenuItemSub a .mceText:after {content: "\A0\25B8"} -.highcontrastSkin .mceMenuItem td, .highcontrastSkin .mceMenuItem th {line-height: normal} - -/* ColorSplitButton */ -.highcontrastSkin div.mceColorSplitMenu table {background:#FFF; border:1px solid; color: #000} -.highcontrastSkin .mceColorSplitMenu td {padding:2px} -.highcontrastSkin .mceColorSplitMenu a {display:block; width:16px; height:16px; overflow:hidden; color:#000; margin: 0; padding: 0;} -.highcontrastSkin .mceColorSplitMenu td.mceMoreColors {padding:1px 3px 1px 1px} -.highcontrastSkin .mceColorSplitMenu a.mceMoreColors {width:100%; height:auto; text-align:center; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; line-height:20px; border:1px solid #FFF} -.highcontrastSkin .mceColorSplitMenu a.mceMoreColors:hover {border:1px solid; background-color:#B6BDD2} -.highcontrastSkin a.mceMoreColors:hover {border:1px solid #0A246A; color: #000;} -.highcontrastSkin .mceColorPreview {display:none;} -.highcontrastSkin .mce_forecolor span.mceAction, .highcontrastSkin .mce_backcolor span.mceAction {height:17px;overflow:hidden} - -/* Progress,Resize */ -.highcontrastSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=50); background:#FFF} -.highcontrastSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(../default/img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px} - -/* Rtl */ -.mceRtl .mceListBox .mceText {text-align: right; padding: 0 4px 0 0} -.mceRtl .mceMenuItem .mceText {text-align: right} - -/* Formats */ -.highcontrastSkin .mce_p span.mceText {} -.highcontrastSkin .mce_address span.mceText {font-style:italic} -.highcontrastSkin .mce_pre span.mceText {font-family:monospace} -.highcontrastSkin .mce_h1 span.mceText {font-weight:bolder; font-size: 2em} -.highcontrastSkin .mce_h2 span.mceText {font-weight:bolder; font-size: 1.5em} -.highcontrastSkin .mce_h3 span.mceText {font-weight:bolder; font-size: 1.17em} -.highcontrastSkin .mce_h4 span.mceText {font-weight:bolder; font-size: 1em} -.highcontrastSkin .mce_h5 span.mceText {font-weight:bolder; font-size: .83em} -.highcontrastSkin .mce_h6 span.mceText {font-weight:bolder; font-size: .75em} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css deleted file mode 100644 index a1a8f9bd3..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css +++ /dev/null @@ -1,48 +0,0 @@ -body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;} -body {background:#FFF;} -body.mceForceColors {background:#FFF; color:#000;} -h1 {font-size: 2em} -h2 {font-size: 1.5em} -h3 {font-size: 1.17em} -h4 {font-size: 1em} -h5 {font-size: .83em} -h6 {font-size: .75em} -.mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} -a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(../default/img/items.gif) no-repeat 0 0;} -span.mceItemNbsp {background: #DDD} -td.mceSelected, th.mceSelected {background-color:#3399ff !important} -img {border:0;} -table, img, hr, .mceItemAnchor {cursor:default} -table td, table th {cursor:text} -ins {border-bottom:1px solid green; text-decoration: none; color:green} -del {color:red; text-decoration:line-through} -cite {border-bottom:1px dashed blue} -acronym {border-bottom:1px dotted #CCC; cursor:help} -abbr {border-bottom:1px dashed #CCC; cursor:help} - -/* IE */ -* html body { -scrollbar-3dlight-color:#F0F0EE; -scrollbar-arrow-color:#676662; -scrollbar-base-color:#F0F0EE; -scrollbar-darkshadow-color:#DDD; -scrollbar-face-color:#E0E0DD; -scrollbar-highlight-color:#F0F0EE; -scrollbar-shadow-color:#F0F0EE; -scrollbar-track-color:#F5F5F5; -} - -img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} -font[face=mceinline] {font-family:inherit !important} -*[contentEditable]:focus {outline:0} - -.mceItemMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc} -.mceItemShockWave {background-image:url(../../img/shockwave.gif)} -.mceItemFlash {background-image:url(../../img/flash.gif)} -.mceItemQuickTime {background-image:url(../../img/quicktime.gif)} -.mceItemWindowsMedia {background-image:url(../../img/windowsmedia.gif)} -.mceItemRealMedia {background-image:url(../../img/realmedia.gif)} -.mceItemVideo {background-image:url(../../img/video.gif)} -.mceItemAudio {background-image:url(../../img/video.gif)} -.mceItemIframe {background-image:url(../../img/iframe.gif)} -.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css deleted file mode 100644 index a54db98df..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +++ /dev/null @@ -1,118 +0,0 @@ -/* Generic */ -body { -font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; -scrollbar-3dlight-color:#F0F0EE; -scrollbar-arrow-color:#676662; -scrollbar-base-color:#F0F0EE; -scrollbar-darkshadow-color:#DDDDDD; -scrollbar-face-color:#E0E0DD; -scrollbar-highlight-color:#F0F0EE; -scrollbar-shadow-color:#F0F0EE; -scrollbar-track-color:#F5F5F5; -background:#F0F0EE; -padding:0; -margin:8px 8px 0 8px; -} - -html {background:#F0F0EE;} -td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -textarea {resize:none;outline:none;} -a:link, a:visited {color:black;} -a:hover {color:#2B6FB6;} -.nowrap {white-space: nowrap} - -/* Forms */ -fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;} -legend {color:#2B6FB6; font-weight:bold;} -label.msg {display:none;} -label.invalid {color:#EE0000; display:inline;} -input.invalid {border:1px solid #EE0000;} -input {background:#FFF; border:1px solid #CCC;} -input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} -input, select, textarea {border:1px solid #808080;} -input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} -input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} -.input_noborder {border:0;} - -/* Buttons */ -#insert, #cancel, input.button, .updateButton { -border:0; margin:0; padding:0; -font-weight:bold; -width:94px; height:26px; -background:url(../default/img/buttons.png) 0 -26px; -cursor:pointer; -padding-bottom:2px; -float:left; -} - -#insert {background:url(../default/img/buttons.png) 0 -52px} -#cancel {background:url(../default/img/buttons.png) 0 0; float:right} - -/* Browse */ -a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} -.mceOldBoxModel a.browse span {width:22px; height:20px;} -a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} -a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} -a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} -.mceOldBoxModel a.pickcolor span {width:21px; height:17px;} -a.pickcolor:hover span {background-color:#B2BBD0;} -a.pickcolor:hover span.disabled {} - -/* Charmap */ -table.charmap {border:1px solid #AAA; text-align:center} -td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;} -#charmap a {display:block; color:#000; text-decoration:none; border:0} -#charmap a:hover {background:#CCC;color:#2B6FB6} -#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center} -#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center} - -/* Source */ -.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;} -.mceActionPanel {margin-top:5px;} - -/* Tabs classes */ -.tabs {width:100%; height:18px; line-height:normal; background:url(../default/img/tabs.gif) repeat-x 0 -72px;} -.tabs ul {margin:0; padding:0; list-style:none;} -.tabs li {float:left; background:url(../default/img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;} -.tabs li.current {background:url(../default/img/tabs.gif) no-repeat 0 -18px; margin-right:2px;} -.tabs span {float:left; display:block; background:url(../default/img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;} -.tabs .current span {background:url(../default/img/tabs.gif) no-repeat right -54px;} -.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} -.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} - -/* Panels */ -.panel_wrapper div.panel {display:none;} -.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} -.panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;} - -/* Columns */ -.column {float:left;} -.properties {width:100%;} -.properties .column1 {} -.properties .column2 {text-align:left;} - -/* Titles */ -h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;} -h3 {font-size:14px;} -.title {font-size:12px; font-weight:bold; color:#2B6FB6;} - -/* Dialog specific */ -#link .panel_wrapper, #link div.current {height:125px;} -#image .panel_wrapper, #image div.current {height:200px;} -#plugintable thead {font-weight:bold; background:#DDD;} -#plugintable, #about #plugintable td {border:1px solid #919B9C;} -#plugintable {width:96%; margin-top:10px;} -#pluginscontainer {height:290px; overflow:auto;} -#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px} -#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline} -#colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap} -#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;} -#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;} -#colorpicker #light div {overflow:hidden;} -#colorpicker .panel_wrapper div.current {height:175px;} -#colorpicker #namedcolors {width:150px;} -#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;} -#colorpicker #colornamecontainer {margin-top:5px;} -#colorpicker #picker_panel fieldset {margin:auto;width:325px;} diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png deleted file mode 100644 index 13a5cb03097c004f7b37658654a9250748cf073c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2766 zcmd^B`#;nBAK!9c(dCSc_`04XBu+J597MXvt(oeZlcJpHIOSO7atc#AMWG$3$V7)q zNx38nEwRmIE*oapX3E%2Y_rQ}@3ZgU@qIsD@7L?`e7_#g=kxt|zu!N+{|XHbG)7n; zU@(~Rf&KpB+Imzw{S0-qnWxWD!C*SD&>&2J76Jgq`yNnO3$>r8@B|Y69x0pfIh#Ow z)WjyX^8T)+6I-}NwZreI-$r>-HeZJQv#zX#Th_uMwsMIrlO4mNj{|cbX#CdxSrSA1 zi7x6G7Jj7hJB9?EBN7TrO5@0TC%zA`m*~?n<~POISNRA}Ix(kW@s(5astLYgTBw@h z%VrlKo=`C@ST1R1m9LYgOf7Md z%vzvMe5Z_y2DwWEoJHD{xNkz(%My(67Mb6qJc(v%ez|*GL}7^sxZ0gBO!Bo{;Q&WM zV~hKzM04L20BA!600h)@pk@MPCs0oSH5X{4K+yx#GXN3-jT}guz%o@MqX6}sMoQL5 zDbQRgH1}A|FIDkNfw)Q|r2+XcBpuQyW`K$hDQ1Cc9;n4YEdkIH;ALod*EG}Dz-$rp zodRS-8tD*F2^9QBm7ql>XjO|zDiH~iGQlzzD86d`M;8Iw0Wf$N3>*f7!C)X53}FF1 zT0@Toj5C077L3FL<|Sw<4{-A#&RxJIKpX-MAm?_cBlxb#&;M-FLuSz*n4d&h` zXWyvinw0!TAZh`kHX!Z*ViJ&afdz_MOab5f!Qzm5fd-Zs&>|hkCV+ej$T>j02*z+= z>_u@$tA>DwJ(UpDP?lurK+A9mzvO(D-+gFH)8MEW*O2c>3^gu}@HCz3w3$-%Bg0iD72j)nmts zO~01P6^cappH!;k{M1!%*t$nQ=-$~$cX+fEkj^3P+$d^La54PkS=(gpNkdn~8?D*hW^hb50#Qbv(Vr z7mux=@03*OzkBFr1euY0!)>k{MMqGw8F#U zRe``TW;?0PDm5oCUDqnyR2D|VTUKrljh??&VAFx_Y8>n0){SLYN4rN@58&~EY<8F( z0{QSBO|7FRtIxB?ykG0dfo2c-Y&e&zlYMnqkV9vq+=EwnBv2HB%MeBD4xS7LeKIpT_! z`x2_k`zl`LzeQ$W8QpB(KQ+0LVyEJr9M?0CO4qCq-VU);<`uj}<}S1&Q7xSe=5T(8 ziLmqu&AMuP>etg&fo)XY<9~c4ufJu@Ux>Osj0^B-);#sZ?RMt%g}dL*c}ZebdsbpF zCGfuwrDfcoU0*mJ)RD4V;PPr$+Lrfm`b7p-cJd8)xqdLm^ZH#<*JQfYJ~PoB*LK5| zH$C3CzsVSRfseg&M51H8?1)k+yOYwqQqn)B#!aMev)#63aXG;9DDJn_0c)Gxymon< zymu+j@mLckYTb1Up+$oES-Qj(fgx}5+7lCfvmr6-7IAsgPaDgPES=EUr(Q2%O-m}?RmP5S6{I{NuN(T6$1*`X7IJXi>l zhX)mey1{@?Zefvr;ZbWC>l|x544h)bavSVvqawV&>mHYcaIE7arJsyhy0aAZ28%Ea^Z`=aTvh4miaaN0)5vL*wCb?j}Dsf4O@AD!~!zsLr>lt6x7K z3`4aaD)%xv?5(p|tKkpFdnS6dqgrLbo&zQ4gEPu=g5tj(#rWP>nDR~6@jTSz^oix< mOkD9tMJf;J-L)*xtX8`HcJ}PmJwolr6m}pW*#DJZbk@H_2$Vel diff --git a/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png b/library/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png deleted file mode 100644 index 7fc57f2bc2d63a3ad6fbf98b663f336539f011ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 651 zcmV;60(AX}P)~UV&BV#i#>&vh%+bls)637) z|EoX$u}%N7Q2(@4|Fu{Dw_E?XUjMpc|GQ=Xy=niyZU4b?|HF3w#e4t9fd9#a|I3O0 z&5r-ub^qLY|J{H8--Q3*iT~k_|KpSYd|L3Cr=%)YbtN-h;|LwH@@45f* zzW?&W|MbWI_00eO|F&Wq@&Et;0(4SNQveUqL%#keZfRNo2=jQw7k!se7X^9V1j4iLUp68Z@t=r4G(h~O zNf#5nT>kpvo%+~iMX{n4jABdM%#4?wj5qS!L>wXh2IPsmmi~l5Z*gRt`Huw!S{nag zygxXo!EY-rAUF!s;uNGb)obDTa;U{!asI0iv51EeU)nfId~s{&Jwj9nO>J@7?&+bL86o&f`_+2dMjNDlznHevZxL*5CO3g!A%X+HtoOt*;a#?S#1tH|-{3nqVC~3) z-TZe2lRd$Eg7*aH=fv^j*7(0A*nUqK2MS);6Z}sFFDxvGP0yz zu<#RHZ#1M{S2O^|jk+{4RMd0zG2?zjm17>gsz-r(G{Jg*xXugDJ!hfztM(r#SifJy zyRXgnjO+UeE>|j2E?1-iDrG5Gke9O@^$g@HGRGWpJ=U*9k6I&|U|du0Q$!2__$qTB z!Gf_az%?eUt=*u{Q!oW?qrwFA`rM|&V>jzZjg$#wpx?d_7sf& z8U{&4lFA(t)Q~5rtDL=N4LzKTCYbvp_)5(EBL)lR{t3RY7HeGJOYr>syd)X(^ND1+ zMUrGONmQ=je6j_uf&OTM&3z{3p3FR0uwIjJE#&}F^b9`{S#it!1pPlzWJ1(avR;FV7+1Waz2(|Uc;urnCmH` z!L@zx6WnSxrP*vrv(=JThRQ)R8*>hQYQ71wvFg#UXH>6?^{X=WplEV0ExjMW`9Q(y z{i(G;wl>F@)APzl%kNj^PNyxMPDk494x$C>ZH`GBSan^CCfK|VA>41MV6M?- zyf)x|0tM?efzDYo-?QTb_y5n4(Y||qWEADl6Knb&dIn0kFJKR$f>#3827ZU0Xo>+A zk3p0@aNS6!%7e}(qkdcE!yC*wXVg;Ws5A20GXkl|Xx+&V=g)@1MbTE*L+4Hoo%#y%6mDum^XrA#ikAq_KzC(jyDTxBt>PqC_AX^<0AcU6Jcg6Rxes1igNO1%i#c)FIBO6OJPb zUMpt;rwky#s;&N>Q}AH}tj#g;7CdTvD01zwF{9Z>0dk{;NFGOY5l=Ag%;oRhtd;W# zo_pShT!KNkVAjzaU+~I|$jxat>q)p^Jlg&7iVx`Z6O2cy^y=YE$}@;M-yE~{tj;ZD zR`nwS)S?N#c~RunB{%EUVhF}B2I<_Zz+ZS)}ov59sw54Dg5DWImc)L*zU^%8VwsgeQcZ>32c6;K5Ci z)^Q)u>wT)s&wzpYoY(sNm$~z^;g(b6R$T9&;IKO%}Dcw_FgZ2W#^OdmPN z$XT~wpYBma7Cc%tPqS_C3=E1PSgwC8>2D`Dk-1N-F?tx)JaWF4V-Q(z_RnP(IMpbK z;H$@Emx17@r^@NAX(zIt6hrXnr`JS&eq9i){L&j3gULPiTx7w^UMJk?>Rd4d4}W-C zMi)#}?T}S7#@|21u}O5ngI>wO*OIQx7DMphivt26WgDt~W_#^H=6tOY(G&B?Xrq0~ z$?)do;t6I>ftGN;7*}xPq>HR=x)_2d3Y=WC?_j$Y_f+}v{eXv(1a(F2NHGMbUq2$l z(!-)7b0h9dDTBSS?_f%_PkxIhcr^8dq~AU{2037U5RtH#eRdspa@j?wcy^IhX_f&c2fC1!MwfeDQ2%d1p2CN#-?if+mxdwuxo+{5i;sT#d z7ep}5-6ou^sdG2x3ibiytScZm>Z$Ut2i>%e7eg@5(ZU!_o`c}Hr^<7O+_XO}h+v+r znP+XtS+}WzyPoAiaNJYnKVEio<5V#O4?6EldgB8@9FB7}Mnp}+Ippja>K@kOKBg_5 z^E+1WepL*?TF~8ua*ktDs?Lo$+`(~Am8(acpsyH$DTeT_reNlrGy4B6!6ox_+lGGu z@E*(MsdD{Ak@`zA`cp-qYr-++84ZkH2#$NI+`s7JUpq3|`(J7AF@FQ|kL}L{k<6z6 O0000 - - {#advanced_dlg.code_title} - - - - -
                                            -
                                            - -
                                            - -
                                            - -
                                            - - - -
                                            - - -
                                            -
                                            - - diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js b/library/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js deleted file mode 100644 index 4b3209cc9..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var a=tinymce.DOM;tinymce.ThemeManager.requireLangPack("simple");tinymce.create("tinymce.themes.SimpleTheme",{init:function(c,d){var e=this,b=["Bold","Italic","Underline","Strikethrough","InsertUnorderedList","InsertOrderedList"],f=c.settings;e.editor=c;c.contentCSS.push(d+"/skins/"+f.skin+"/content.css");c.onInit.add(function(){c.onNodeChange.add(function(h,g){tinymce.each(b,function(i){g.get(i.toLowerCase()).setActive(h.queryCommandState(i))})})});a.loadCSS((f.editor_css?c.documentBaseURI.toAbsolute(f.editor_css):"")||d+"/skins/"+f.skin+"/ui.css")},renderUI:function(h){var e=this,i=h.targetNode,b,c,d=e.editor,f=d.controlManager,g;i=a.insertAfter(a.create("span",{id:d.id+"_container","class":"mceEditor "+d.settings.skin+"SimpleSkin"}),i);i=g=a.add(i,"table",{cellPadding:0,cellSpacing:0,"class":"mceLayout"});i=c=a.add(i,"tbody");i=a.add(c,"tr");i=b=a.add(a.add(i,"td"),"div",{"class":"mceIframeContainer"});i=a.add(a.add(c,"tr",{"class":"last"}),"td",{"class":"mceToolbar mceLast",align:"center"});c=e.toolbar=f.createToolbar("tools1");c.add(f.createButton("bold",{title:"simple.bold_desc",cmd:"Bold"}));c.add(f.createButton("italic",{title:"simple.italic_desc",cmd:"Italic"}));c.add(f.createButton("underline",{title:"simple.underline_desc",cmd:"Underline"}));c.add(f.createButton("strikethrough",{title:"simple.striketrough_desc",cmd:"Strikethrough"}));c.add(f.createSeparator());c.add(f.createButton("undo",{title:"simple.undo_desc",cmd:"Undo"}));c.add(f.createButton("redo",{title:"simple.redo_desc",cmd:"Redo"}));c.add(f.createSeparator());c.add(f.createButton("cleanup",{title:"simple.cleanup_desc",cmd:"mceCleanup"}));c.add(f.createSeparator());c.add(f.createButton("insertunorderedlist",{title:"simple.bullist_desc",cmd:"InsertUnorderedList"}));c.add(f.createButton("insertorderedlist",{title:"simple.numlist_desc",cmd:"InsertOrderedList"}));c.renderTo(i);return{iframeContainer:b,editorContainer:d.id+"_container",sizeContainer:g,deltaHeight:-20}},getInfo:function(){return{longname:"Simple theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.ThemeManager.add("simple",tinymce.themes.SimpleTheme)})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js b/library/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js deleted file mode 100644 index 01ce87c58..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js +++ /dev/null @@ -1,84 +0,0 @@ -/** - * editor_template_src.js - * - * Copyright 2009, Moxiecode Systems AB - * Released under LGPL License. - * - * License: http://tinymce.moxiecode.com/license - * Contributing: http://tinymce.moxiecode.com/contributing - */ - -(function() { - var DOM = tinymce.DOM; - - // Tell it to load theme specific language pack(s) - tinymce.ThemeManager.requireLangPack('simple'); - - tinymce.create('tinymce.themes.SimpleTheme', { - init : function(ed, url) { - var t = this, states = ['Bold', 'Italic', 'Underline', 'Strikethrough', 'InsertUnorderedList', 'InsertOrderedList'], s = ed.settings; - - t.editor = ed; - ed.contentCSS.push(url + "/skins/" + s.skin + "/content.css"); - - ed.onInit.add(function() { - ed.onNodeChange.add(function(ed, cm) { - tinymce.each(states, function(c) { - cm.get(c.toLowerCase()).setActive(ed.queryCommandState(c)); - }); - }); - }); - - DOM.loadCSS((s.editor_css ? ed.documentBaseURI.toAbsolute(s.editor_css) : '') || url + "/skins/" + s.skin + "/ui.css"); - }, - - renderUI : function(o) { - var t = this, n = o.targetNode, ic, tb, ed = t.editor, cf = ed.controlManager, sc; - - n = DOM.insertAfter(DOM.create('span', {id : ed.id + '_container', 'class' : 'mceEditor ' + ed.settings.skin + 'SimpleSkin'}), n); - n = sc = DOM.add(n, 'table', {cellPadding : 0, cellSpacing : 0, 'class' : 'mceLayout'}); - n = tb = DOM.add(n, 'tbody'); - - // Create iframe container - n = DOM.add(tb, 'tr'); - n = ic = DOM.add(DOM.add(n, 'td'), 'div', {'class' : 'mceIframeContainer'}); - - // Create toolbar container - n = DOM.add(DOM.add(tb, 'tr', {'class' : 'last'}), 'td', {'class' : 'mceToolbar mceLast', align : 'center'}); - - // Create toolbar - tb = t.toolbar = cf.createToolbar("tools1"); - tb.add(cf.createButton('bold', {title : 'simple.bold_desc', cmd : 'Bold'})); - tb.add(cf.createButton('italic', {title : 'simple.italic_desc', cmd : 'Italic'})); - tb.add(cf.createButton('underline', {title : 'simple.underline_desc', cmd : 'Underline'})); - tb.add(cf.createButton('strikethrough', {title : 'simple.striketrough_desc', cmd : 'Strikethrough'})); - tb.add(cf.createSeparator()); - tb.add(cf.createButton('undo', {title : 'simple.undo_desc', cmd : 'Undo'})); - tb.add(cf.createButton('redo', {title : 'simple.redo_desc', cmd : 'Redo'})); - tb.add(cf.createSeparator()); - tb.add(cf.createButton('cleanup', {title : 'simple.cleanup_desc', cmd : 'mceCleanup'})); - tb.add(cf.createSeparator()); - tb.add(cf.createButton('insertunorderedlist', {title : 'simple.bullist_desc', cmd : 'InsertUnorderedList'})); - tb.add(cf.createButton('insertorderedlist', {title : 'simple.numlist_desc', cmd : 'InsertOrderedList'})); - tb.renderTo(n); - - return { - iframeContainer : ic, - editorContainer : ed.id + '_container', - sizeContainer : sc, - deltaHeight : -20 - }; - }, - - getInfo : function() { - return { - longname : 'Simple theme', - author : 'Moxiecode Systems AB', - authorurl : 'http://tinymce.moxiecode.com', - version : tinymce.majorVersion + "." + tinymce.minorVersion - } - } - }); - - tinymce.ThemeManager.add('simple', tinymce.themes.SimpleTheme); -})(); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif b/library/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif deleted file mode 100644 index 6fcbcb5dedf16a5fa1d15c2aa127bceb612f1e71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 806 zcmZ?wbhEHbJi#Es@KuxH{{08bHy>kQU|4+kcV*u?6Yu2z|Nk2X_I-c9E~4fBsnb_x z&7Ngzq1inB@Woqi-rnfiGF7yw9zM z^p;~=3MY4TT)2AY!iC=7fBwej_wPS(UDm1P!}|}9?`#au+qhx#R?Fl=KuakHia%Lc z85lGfbU;Rd{N%v)|G<<24;`ug6HAIt=2*?Yu%d)ZG@><(acbwmDSj%f4MMZ#%vkt3 z%+g~)i8kP^LLB_(WJHBo z)4eilyozQ8a&qqSt%<6xpa0;xA7k;M?mchbzI*>+`RnL~M?L!{MDwZt;o_B2F2$0=pQSpQ!u@RcUGT{(44KaY91N#ws_nDH9G%Qf=ZF z5o_THWH`G~`GwyilS^z$ZvV~I`dh4Lx_8c>?R@8gr-07UIgFjp0y#A&c{B)cE>2kS zL5I1;i$zoEA)6qV`HGJvVWE!{8MZ6ST|PC}d%Kid7{KiD{l18xziSGKuWtj9AkWy-*`}#c~0`Lrjq> z-;O-o=3A#@&dst%_SasuJq0xZW;OwR3vM!diY%Es?;J~Pp}LYununP(i|XxU>#u=* zSvNC^0?cJ=S?=UK4&2DdcCO^BsHxjWc4vR-Z64x&8r#>V9!JMd4O!Z*d@mNrgX=jUy;0|T>ZntHjDU$=-I8y`|tN~Y9 diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js b/library/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js deleted file mode 100644 index 088ed0fcb..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js +++ /dev/null @@ -1 +0,0 @@ -tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css b/library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css deleted file mode 100644 index 2506c807c..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css +++ /dev/null @@ -1,25 +0,0 @@ -body, td, pre { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -body { - background-color: #FFFFFF; -} - -.mceVisualAid { - border: 1px dashed #BBBBBB; -} - -/* MSIE specific */ - -* html body { - scrollbar-3dlight-color: #F0F0EE; - scrollbar-arrow-color: #676662; - scrollbar-base-color: #F0F0EE; - scrollbar-darkshadow-color: #DDDDDD; - scrollbar-face-color: #E0E0DD; - scrollbar-highlight-color: #F0F0EE; - scrollbar-shadow-color: #F0F0EE; - scrollbar-track-color: #F5F5F5; -} diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css b/library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css deleted file mode 100644 index 076fe84e3..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css +++ /dev/null @@ -1,32 +0,0 @@ -/* Reset */ -.defaultSimpleSkin table, .defaultSimpleSkin tbody, .defaultSimpleSkin a, .defaultSimpleSkin img, .defaultSimpleSkin tr, .defaultSimpleSkin div, .defaultSimpleSkin td, .defaultSimpleSkin iframe, .defaultSimpleSkin span, .defaultSimpleSkin * {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000} - -/* Containers */ -.defaultSimpleSkin {position:relative} -.defaultSimpleSkin table.mceLayout {background:#F0F0EE; border:1px solid #CCC;} -.defaultSimpleSkin iframe {display:block; background:#FFF; border-bottom:1px solid #CCC;} -.defaultSimpleSkin .mceToolbar {height:24px;} - -/* Layout */ -.defaultSimpleSkin span.mceIcon, .defaultSimpleSkin img.mceIcon {display:block; width:20px; height:20px} -.defaultSimpleSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} - -/* Button */ -.defaultSimpleSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px} -.defaultSimpleSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0} -.defaultSimpleSkin a.mceButtonActive {border:1px solid #0A246A; background-color:#C2CBE0} -.defaultSimpleSkin .mceButtonDisabled span {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} - -/* Separator */ -.defaultSimpleSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:0 2px 0 4px} - -/* Theme */ -.defaultSimpleSkin span.mce_bold {background-position:0 0} -.defaultSimpleSkin span.mce_italic {background-position:-60px 0} -.defaultSimpleSkin span.mce_underline {background-position:-140px 0} -.defaultSimpleSkin span.mce_strikethrough {background-position:-120px 0} -.defaultSimpleSkin span.mce_undo {background-position:-160px 0} -.defaultSimpleSkin span.mce_redo {background-position:-100px 0} -.defaultSimpleSkin span.mce_cleanup {background-position:-40px 0} -.defaultSimpleSkin span.mce_insertunorderedlist {background-position:-20px 0} -.defaultSimpleSkin span.mce_insertorderedlist {background-position:-80px 0} diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css b/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css deleted file mode 100644 index 595809fa6..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css +++ /dev/null @@ -1,17 +0,0 @@ -body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} - -body {background: #FFF;} -.mceVisualAid {border: 1px dashed #BBB;} - -/* IE */ - -* html body { -scrollbar-3dlight-color: #F0F0EE; -scrollbar-arrow-color: #676662; -scrollbar-base-color: #F0F0EE; -scrollbar-darkshadow-color: #DDDDDD; -scrollbar-face-color: #E0E0DD; -scrollbar-highlight-color: #F0F0EE; -scrollbar-shadow-color: #F0F0EE; -scrollbar-track-color: #F5F5F5; -} diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png b/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png deleted file mode 100644 index 527e3495a653e57d76bf7e55316793d17dda497a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5102 zcmd^Ci96I^7ypWw?8;J!C`Gc9QubX!7+c8}rXowpTC!y=vhPca?365N$TIeQ$u=`g z7%`X;V+>~bzVrJ#-t*jZ&pr2fKKGn^&V9~vZo*x2BQEx{>;M38nHcL^F{BiObs@}* z`J{#WLxwovXYBAC060$l$4o$8!D#?sw|K0lclYii-vHm|k9_^aO!V}`{GR!GKKAwi zfM8^yH4JKv6VxCt?&+GwM`W1#S_weJtaOti_){-Si=W`V9WVZ2Ucj=G&%l61xW6Qx zIXOAvt$?KrXCnI?8&>>da`dP8#6ikZ*e9=Xj!Y3TOdSEKH%uWB{D5|7vhEi^+mI=uFz2#0P{IPZ3_WyP0q)8IE|RbRP5}{x z2f1NP!2Jwy0j82vKX1B3cwNuxb$DV7!1VZ0{n)%cIrDj8dcu&mZD20F_l+P$K~x|}=gXx@k6>Qpl6&#z^PNTmmnMl1(^x`y}el%5+)I}ziC z{+nV%ZRP-}B2yQ-P25`SrTJGZPx>e8=e;E=m0n2DO}o-_X%ci_#>h~ZH8IzKuTM0Y z!ct|+A3S80mwAc^uuzL3L4$(Us`#(&g1vdn3IGLcQB-!%*n8~-# z(8-gNhLb*47jZHb`6|X|FQyM5-M#AB)G}nmuJ*sd7Ge=tWvnn(eD^+kp_{h<=L73y zDXYOJx6iEduBxoEdgLhS*nG;fS}6Yj<-3-0Pq*enlU1E%T=^-L7kO$U(SjzXr8OTj zr_MeSdPII)w;u45Zy{6EJbT=3atLR%p1sbz7sSaGD-him50g5Rf12$y>`c(4Pd?@RJM(g;u(Uk1qVh}SVkL(S(PjvmQsHF% zs@Bj(*?Oho#P6&so65qwo7TeCu!>vdah0%gU#QmSa0glfs{`T=!b0z}Wyv?^mDXM{ zj)!Ny2g`_iaaF~>h`iQ)`P<0+%Rp&(4ow7}q)}P%K}}EjwzA!KD`JMH7TZdW|3N{3 z`H3~DvTR~_;v)a{mE|kKUsUe2D0(=0Rc2*p*;g4?SymZswyD1=8NeMVk=#0c zwL3k?%w8Sn54MXzP`_X1ZoC#iX`OsDGL^ zd}qk>_HnP{ip0v(-lx5vF0)=1zieu@VMfTaGHdyA<;$%*x9;?f43B&qnaRDDuc0`r zw3fe?KbwzfcDWaPPo}B7>4%3&J@(!g2SQV;&zpN{4yE=s_a1yVtSPLyGy|`Jm+_Ug zn5Uap70tj9Uw4`Ynkt&ld|jPmMb$PvZF=Pja}$C!_tYW?>22w+e!hA~(_rI@o9C_) zxhE3-yx|%DP1~D`d7}jctyevJSvYx^{TT1qobpQ3si7;~j|;8yr;K1iu$Jf1#Q3BH z)2Jc2Y)!d*;ogP*Htg*HlK+FH&`DBZ{`dSYd^xI)ph|d5h(i|-s}x@;a!`Igj_B9> zW4St^#ZjE8;DxCUx6reQgf*^Rlz%9nYF9J+wYfB?lI*%Iq`9y8tawFpMg97s(xQX& z@b!-7{^lVIgm01a8;suTi=aCg3QhoJ5to=?%n6Y?k@t^L4nkjwwUdtIx9evFG=5F}<%s89tU)Ll=IH%;BxHopOTFHL# z_Gc#)v#$kBp!J?(^pEtj^cVACiWX{hvbV2EYgWoVQAb|?sq#~+SI*O6c-p?u-o)GV zoSK|;t*VdrFANn=j9V^T=2!_6%8~DX;1}{?v}^B8nP7$7Ntv5j+IQm3Z)E(_;gv2I ze0yp4RM4el_K+@-F4zV63Dt@CIXy>dQS)76X|vF@t<=_QArd{xr8286F_IPUTkmk) zS;)UxB$yW{_EbsZW}9MkTIzd$-AZw@^d{H_?5}6wP_@UKdU}sfQnS2hCfk75_xIJu z9c0;?bib@a?@7%{v(>{q>^$2?5(d?>s*0|T;D^5tqTXLG*e(X~C%aBAr8Sktn%c>V z*#B*-exg>d?jM3;UlBNdHP)83TKz|2ll0SRiz>Wbc5QguA2Nw474wy#Qqu4@WO@V~OT7HyJw!rH-DRl6vaGdX8doDVop`xn0#eK|k z(i8W0QMTwlcUEQg-)wFlu6bkw7sj>$Pue#?$!Cv9q2SR?dM%&Y)qk{llnsoI+|q)6 zhVDU+psIw)g+|xe1D^?ka9HcU%GNaMek+-#Iq(Z*!(?MN?K$m1F`;}XYt<%H;tsMX zPao8nKlR7=F;6nn*e-H6&9?lW7Maw5TBXcf-8ACvJO7JbxE&U z7DqmTA&YX|L1m~Wj&x$k!Wr^T@5#LUKGDAfpco~J-X z-67;Q5jyY~iHn*_hwYBNEzB%@6)ty(c0qk?3R`FHAzeeeQ!UTuq`R|_Gutuf4#j1w-pKDw~i7P2D< z&P*4nX)Lr6Lw(6TWD-VjA^e#nZFC4eA0$brX|-r|-qXhG%5n!qvy8Kub*@T zl@KS;Mr77E(PQ*fQVNgW@s!+@p;)fi&7vEcYHG_`&uBPmnckTD*ySQ2`bYXut&pI6 z_`&q%?C3 zL<7Jf$dEVyc%c9Q8!iBFGY0^KeAAqJ3;}={xO)d`z`%eYh#JiuMDNsfW1=$<(dmeo zjP95WM1J$1l2&YH-E;|jIjipXkD;|WEa?w!-}cqFV)$|~e5s^$xdgu0`J3=-Vxw&w z*E+V2nAz@{CUpMB{~E`2PHpwf{u@M-#+S$=3%e74_NG_%k!y$Zf6230(!vG>jXT0@ zQWkKBD|iY9x4*ta!{QHDwhjtf(8ch@lGepy_(H?L@-N2uQ~0)tjbD=+0}K1zvkVjX zeiX51?%&Yje((Ihp1JK2%>KyY?kI*hvwAR%B~LEx&0zP(76>cb^ko8V2~SK&K zhZgtxQ9FG|29P*_-Wgih9Yhf(m-i-?h~t>;(FObndTSO-M6Qvr|LB;_gMJiY5WPLI z%qL(;yWI9`%6K1(3Q7(n;XqFi2emX?T!M z21(7}!4Q3a5TtI4U6L8WDoG=3?&A|zCaLN{(cA-zZgEJoBj3+qz1VjeXFz>+S_q3%Ha5;mvltEk0 z0I@mXY5{${dec;X@b$bxp z9RrC|)SYo~Z-z#k2KN_0G6p0sfm9+m{{oy329Ym8bR>w5rp-swkufx642VghGpsLV zfa_J@<_~aZ7~Go&NhpxA1I~ni(;>9q!Qf0NZ9WD(+@ue@p!NmO2Lh@6FQ{;5TB{2k z@raIiLhE`Aj>gePV!^R^N`noh!Is)&M{TsD!Ck=LIkdTQ5Lr3ckUh|l1I||*p_&en zje`w21K)GDrW!Y=8jp~TjF;a|x}gsMOhAB@xiv%meO2x_!p66W8|!3F z3K<7F$K0Opu&RXCgY0kj(}Md=k40Ax3**GROT%0zW&NB3QY@Ac&kyGl^e-&ALU@lcY9Q}1h&TWo z+k?8hnE8OA{@y=VwBtoF@ihygu@)0b$2x5Lov1td z-k(2Ze}N=k@O+&25t3H|iTZ-W?aUDy#Sicgc12CnBuq5L+a-$MlL@I3Y8rf~(>P;3 z6|)Hzvs3&!*8B$J{E8Z)sCX_~-HCM8E*6rI;^47^s=UobI%jJMp zUEHb>8saG^lr1R4=HWje>a6xd&1c<7%aN7wAskl%AhM|DwH^LGE<~=j0xyL1Sf`8F zffz3*Ycx-kPN=ks(AiKa(byk%<5z5p{T<`)uilX3XZL^m(C70?&g>>B^n3^&aS>j9 z(=a=hH}sEs46p9_z0MHG2c9n8K7X{?dLX>Or_5^-R}=tu3__0%m^4q(9!oU$T2(;h zNEfnimp*HOZcw1o*@LAD3YkNR4wn4n!2NCwOMU}OG@k+IaKgNZV*bJaAt7uzSt@b9 zI%mY~Pg3{HjIBCfO5aNUj=q~RUy9^Of6ie-JM#Qs73~!#+PX12@5|%LBP$yl8|!N} z(<+WeX4cottl1cv*%Xu$t)~l`4PMZ6FIm&W3$-3l_^?6o_l`b`;8X`NC zCSjT;Go-{Vy}Ran$)Ua?Ci?hcquG{?heOssk(AxT=;)W4uiuZYVX$@4afkW;MwkRe zg#{4hP)@|byaFde!CYEWl9lzz>a&*5*_D^tDmPctYVAn%wGT@|gM)()rq-0of86@S zpW$YCMNq)NG9$`LhM%M70yp9Oe27W3YD3n< zV?=oxR(68L_JS3@&Ti7CH)#u-q^YxN7b22`Or8ynbtoJ~GYNN6M}36p0QHtFr;sN(-`SjCLE z^;=~`c}nHAqS=&+**WhTU?amp#_E%kugb=cbTvjcRPdpJo_T*OLJ~E+ z!ioz{$NIZL-zNH7DRMHiRe7{kW|Putvu{sV*4mj)KM`Q#@$FtzjJr`TWl&lobv$g0 zKk0a>J=E{+oZtaA(2AEuGZ)*O-YVuT>7N}ZloloSuk}6lP(mKk+94U@XrwtnRBxAs zm^c~xa2y+x-0}0iUT9JlG=jv-)(>n)f262E!2209 VmjT$ODWe$zObpERYjs_s{s;8{A&me4 diff --git a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css b/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css deleted file mode 100644 index cf6c35d10..000000000 --- a/library/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css +++ /dev/null @@ -1,35 +0,0 @@ -/* Reset */ -.o2k7SimpleSkin table, .o2k7SimpleSkin tbody, .o2k7SimpleSkin a, .o2k7SimpleSkin img, .o2k7SimpleSkin tr, .o2k7SimpleSkin div, .o2k7SimpleSkin td, .o2k7SimpleSkin iframe, .o2k7SimpleSkin span, .o2k7SimpleSkin * {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000} - -/* Containers */ -.o2k7SimpleSkin {position:relative} -.o2k7SimpleSkin table.mceLayout {background:#E5EFFD; border:1px solid #ABC6DD;} -.o2k7SimpleSkin iframe {display:block; background:#FFF; border-bottom:1px solid #ABC6DD;} -.o2k7SimpleSkin .mceToolbar {height:26px;} - -/* Layout */ -.o2k7SimpleSkin .mceToolbar .mceToolbarStart span {display:block; background:url(img/button_bg.png) -22px 0; width:1px; height:22px; } -.o2k7SimpleSkin .mceToolbar .mceToolbarEnd span {display:block; background:url(img/button_bg.png) -22px 0; width:1px; height:22px} -.o2k7SimpleSkin span.mceIcon, .o2k7SimpleSkin img.mceIcon {display:block; width:20px; height:20px} -.o2k7SimpleSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} - -/* Button */ -.o2k7SimpleSkin .mceButton {display:block; background:url(img/button_bg.png); width:22px; height:22px} -.o2k7SimpleSkin a.mceButton span, .o2k7SimpleSkin a.mceButton img {margin:1px 0 0 1px} -.o2k7SimpleSkin a.mceButtonEnabled:hover {background-color:#B2BBD0; background-position:0 -22px} -.o2k7SimpleSkin a.mceButtonActive {background-position:0 -44px} -.o2k7SimpleSkin .mceButtonDisabled span {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} - -/* Separator */ -.o2k7SimpleSkin .mceSeparator {display:block; background:url(img/button_bg.png) -22px 0; width:5px; height:22px} - -/* Theme */ -.o2k7SimpleSkin span.mce_bold {background-position:0 0} -.o2k7SimpleSkin span.mce_italic {background-position:-60px 0} -.o2k7SimpleSkin span.mce_underline {background-position:-140px 0} -.o2k7SimpleSkin span.mce_strikethrough {background-position:-120px 0} -.o2k7SimpleSkin span.mce_undo {background-position:-160px 0} -.o2k7SimpleSkin span.mce_redo {background-position:-100px 0} -.o2k7SimpleSkin span.mce_cleanup {background-position:-40px 0} -.o2k7SimpleSkin span.mce_insertunorderedlist {background-position:-20px 0} -.o2k7SimpleSkin span.mce_insertorderedlist {background-position:-80px 0} diff --git a/library/tinymce/jscripts/tiny_mce/tiny_mce.js b/library/tinymce/jscripts/tiny_mce/tiny_mce.js deleted file mode 100644 index 44d9fd902..000000000 --- a/library/tinymce/jscripts/tiny_mce/tiny_mce.js +++ /dev/null @@ -1 +0,0 @@ -(function(e){var a=/^\s*|\s*$/g,b,d="B".replace(/A(.)|B/,"$1")==="$1";var c={majorVersion:"3",minorVersion:"5.8",releaseDate:"2012-11-20",_init:function(){var s=this,q=document,o=navigator,g=o.userAgent,m,f,l,k,j,r;s.isOpera=e.opera&&opera.buildNumber;s.isWebKit=/WebKit/.test(g);s.isIE=!s.isWebKit&&!s.isOpera&&(/MSIE/gi).test(g)&&(/Explorer/gi).test(o.appName);s.isIE6=s.isIE&&/MSIE [56]/.test(g);s.isIE7=s.isIE&&/MSIE [7]/.test(g);s.isIE8=s.isIE&&/MSIE [8]/.test(g);s.isIE9=s.isIE&&/MSIE [9]/.test(g);s.isGecko=!s.isWebKit&&/Gecko/.test(g);s.isMac=g.indexOf("Mac")!=-1;s.isAir=/adobeair/i.test(g);s.isIDevice=/(iPad|iPhone)/.test(g);s.isIOS5=s.isIDevice&&g.match(/AppleWebKit\/(\d*)/)[1]>=534;if(e.tinyMCEPreInit){s.suffix=tinyMCEPreInit.suffix;s.baseURL=tinyMCEPreInit.base;s.query=tinyMCEPreInit.query;return}s.suffix="";f=q.getElementsByTagName("base");for(m=0;m0?b:[f.scope]);if(e===false){break}}a.inDispatch=false;return e}});(function(){var a=tinymce.each;tinymce.create("tinymce.util.URI",{URI:function(e,g){var f=this,i,d,c,h;e=tinymce.trim(e);g=f.settings=g||{};if(/^([\w\-]+):([^\/]{2})/i.test(e)||/^\s*#/.test(e)){f.source=e;return}if(e.indexOf("/")===0&&e.indexOf("//")!==0){e=(g.base_uri?g.base_uri.protocol||"http":"http")+"://mce_host"+e}if(!/^[\w\-]*:?\/\//.test(e)){h=g.base_uri?g.base_uri.path:new tinymce.util.URI(location.href).directory;e=((g.base_uri&&g.base_uri.protocol)||"http")+"://mce_host"+f.toAbsPath(h,e)}e=e.replace(/@@/g,"(mce_at)");e=/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/.exec(e);a(["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],function(b,j){var k=e[j];if(k){k=k.replace(/\(mce_at\)/g,"@@")}f[b]=k});c=g.base_uri;if(c){if(!f.protocol){f.protocol=c.protocol}if(!f.userInfo){f.userInfo=c.userInfo}if(!f.port&&f.host==="mce_host"){f.port=c.port}if(!f.host||f.host==="mce_host"){f.host=c.host}f.source=""}},setPath:function(c){var b=this;c=/^(.*?)\/?(\w+)?$/.exec(c);b.path=c[0];b.directory=c[1];b.file=c[2];b.source="";b.getURI()},toRelative:function(b){var d=this,f;if(b==="./"){return b}b=new tinymce.util.URI(b,{base_uri:d});if((b.host!="mce_host"&&d.host!=b.host&&b.host)||d.port!=b.port||d.protocol!=b.protocol){return b.getURI()}var c=d.getURI(),e=b.getURI();if(c==e||(c.charAt(c.length-1)=="/"&&c.substr(0,c.length-1)==e)){return c}f=d.toRelPath(d.path,b.path);if(b.query){f+="?"+b.query}if(b.anchor){f+="#"+b.anchor}return f},toAbsolute:function(b,c){b=new tinymce.util.URI(b,{base_uri:this});return b.getURI(this.host==b.host&&this.protocol==b.protocol?c:0)},toRelPath:function(g,h){var c,f=0,d="",e,b;g=g.substring(0,g.lastIndexOf("/"));g=g.split("/");c=h.split("/");if(g.length>=c.length){for(e=0,b=g.length;e=c.length||g[e]!=c[e]){f=e+1;break}}}if(g.length=g.length||g[e]!=c[e]){f=e+1;break}}}if(f===1){return h}for(e=0,b=g.length-(f-1);e=0;c--){if(f[c].length===0||f[c]==="."){continue}if(f[c]===".."){b++;continue}if(b>0){b--;continue}h.push(f[c])}c=e.length-b;if(c<=0){g=h.reverse().join("/")}else{g=e.slice(0,c).join("/")+"/"+h.reverse().join("/")}if(g.indexOf("/")!==0){g="/"+g}if(d&&g.lastIndexOf("/")!==g.length-1){g+=d}return g},getURI:function(d){var c,b=this;if(!b.source||d){c="";if(!d){if(b.protocol){c+=b.protocol+"://"}if(b.userInfo){c+=b.userInfo+"@"}if(b.host){c+=b.host}if(b.port){c+=":"+b.port}}if(b.path){c+=b.path}if(b.query){c+="?"+b.query}if(b.anchor){c+="#"+b.anchor}b.source=c}return b.source}})})();(function(){var a=tinymce.each;tinymce.create("static tinymce.util.Cookie",{getHash:function(d){var b=this.get(d),c;if(b){a(b.split("&"),function(e){e=e.split("=");c=c||{};c[unescape(e[0])]=unescape(e[1])})}return c},setHash:function(j,b,g,f,i,c){var h="";a(b,function(e,d){h+=(!h?"":"&")+escape(d)+"="+escape(e)});this.set(j,h,g,f,i,c)},get:function(i){var h=document.cookie,g,f=i+"=",d;if(!h){return}d=h.indexOf("; "+f);if(d==-1){d=h.indexOf(f);if(d!==0){return null}}else{d+=2}g=h.indexOf(";",d);if(g==-1){g=h.length}return unescape(h.substring(d+f.length,g))},set:function(i,b,g,f,h,c){document.cookie=i+"="+escape(b)+((g)?"; expires="+g.toGMTString():"")+((f)?"; path="+escape(f):"")+((h)?"; domain="+h:"")+((c)?"; secure":"")},remove:function(c,e,d){var b=new Date();b.setTime(b.getTime()-1000);this.set(c,"",b,e,d)}})})();(function(){function serialize(o,quote){var i,v,t,name;quote=quote||'"';if(o==null){return"null"}t=typeof o;if(t=="string"){v="\bb\tt\nn\ff\rr\"\"''\\\\";return quote+o.replace(/([\u0080-\uFFFF\x00-\x1f\"\'\\])/g,function(a,b){if(quote==='"'&&a==="'"){return a}i=v.indexOf(b);if(i+1){return"\\"+v.charAt(i+1)}a=b.charCodeAt().toString(16);return"\\u"+"0000".substring(a.length)+a})+quote}if(t=="object"){if(o.hasOwnProperty&&Object.prototype.toString.call(o)==="[object Array]"){for(i=0,v="[";i0?",":"")+serialize(o[i],quote)}return v+"]"}v="{";for(name in o){if(o.hasOwnProperty(name)){v+=typeof o[name]!="function"?(v.length>1?","+quote:quote)+name+quote+":"+serialize(o[name],quote):""}}return v+"}"}return""+o}tinymce.util.JSON={serialize:serialize,parse:function(s){try{return eval("("+s+")")}catch(ex){}}}})();tinymce.create("static tinymce.util.XHR",{send:function(g){var a,e,b=window,h=0;function f(){if(!g.async||a.readyState==4||h++>10000){if(g.success&&h<10000&&a.status==200){g.success.call(g.success_scope,""+a.responseText,a,g)}else{if(g.error){g.error.call(g.error_scope,h>10000?"TIMED_OUT":"GENERAL",a,g)}}a=null}else{b.setTimeout(f,10)}}g.scope=g.scope||this;g.success_scope=g.success_scope||g.scope;g.error_scope=g.error_scope||g.scope;g.async=g.async===false?false:true;g.data=g.data||"";function d(i){a=0;try{a=new ActiveXObject(i)}catch(c){}return a}a=b.XMLHttpRequest?new XMLHttpRequest():d("Microsoft.XMLHTTP")||d("Msxml2.XMLHTTP");if(a){if(a.overrideMimeType){a.overrideMimeType(g.content_type)}a.open(g.type||(g.data?"POST":"GET"),g.url,g.async);if(g.content_type){a.setRequestHeader("Content-Type",g.content_type)}a.setRequestHeader("X-Requested-With","XMLHttpRequest");a.send(g.data);if(!g.async){return f()}e=b.setTimeout(f,10)}}});(function(){var c=tinymce.extend,b=tinymce.util.JSON,a=tinymce.util.XHR;tinymce.create("tinymce.util.JSONRequest",{JSONRequest:function(d){this.settings=c({},d);this.count=0},send:function(f){var e=f.error,d=f.success;f=c(this.settings,f);f.success=function(h,g){h=b.parse(h);if(typeof(h)=="undefined"){h={error:"JSON Parse error."}}if(h.error){e.call(f.error_scope||f.scope,h.error,g)}else{d.call(f.success_scope||f.scope,h.result)}};f.error=function(h,g){if(e){e.call(f.error_scope||f.scope,h,g)}};f.data=b.serialize({id:f.id||"c"+(this.count++),method:f.method,params:f.params});f.content_type="application/json";a.send(f)},"static":{sendRPC:function(d){return new tinymce.util.JSONRequest().send(d)}}})}());(function(a){a.VK={BACKSPACE:8,DELETE:46,DOWN:40,ENTER:13,LEFT:37,RIGHT:39,SPACEBAR:32,TAB:9,UP:38,modifierPressed:function(b){return b.shiftKey||b.ctrlKey||b.altKey},metaKeyPressed:function(b){return a.isMac?b.metaKey:b.ctrlKey&&!b.altKey}}})(tinymce);tinymce.util.Quirks=function(a){var j=tinymce.VK,f=j.BACKSPACE,k=j.DELETE,e=a.dom,l=a.selection,H=a.settings,v=a.parser,o=a.serializer,E=tinymce.each;function A(N,M){try{a.getDoc().execCommand(N,false,M)}catch(L){}}function n(){var L=a.getDoc().documentMode;return L?L:6}function z(L){return L.isDefaultPrevented()}function J(){function L(O){var M,Q,N,P;M=l.getRng();Q=e.getParent(M.startContainer,e.isBlock);if(O){Q=e.getNext(Q,e.isBlock)}if(Q){N=Q.firstChild;while(N&&N.nodeType==3&&N.nodeValue.length===0){N=N.nextSibling}if(N&&N.nodeName==="SPAN"){P=N.cloneNode(false)}}E(e.select("span",Q),function(R){R.setAttribute("data-mce-mark","1")});a.getDoc().execCommand(O?"ForwardDelete":"Delete",false,null);Q=e.getParent(M.startContainer,e.isBlock);E(e.select("span",Q),function(R){var S=l.getBookmark();if(P){e.replace(P.cloneNode(false),R,true)}else{if(!R.getAttribute("data-mce-mark")){e.remove(R,true)}else{R.removeAttribute("data-mce-mark")}}l.moveToBookmark(S)})}a.onKeyDown.add(function(M,O){var N;N=O.keyCode==k;if(!z(O)&&(N||O.keyCode==f)&&!j.modifierPressed(O)){O.preventDefault();L(N)}});a.addCommand("Delete",function(){L()})}function q(){function L(O){var N=e.create("body");var P=O.cloneContents();N.appendChild(P);return l.serializer.serialize(N,{format:"html"})}function M(N){var P=L(N);var Q=e.createRng();Q.selectNode(a.getBody());var O=L(Q);return P===O}a.onKeyDown.add(function(O,Q){var P=Q.keyCode,N;if(!z(Q)&&(P==k||P==f)){N=O.selection.isCollapsed();if(N&&!e.isEmpty(O.getBody())){return}if(tinymce.isIE&&!N){return}if(!N&&!M(O.selection.getRng())){return}O.setContent("");O.selection.setCursorLocation(O.getBody(),0);O.nodeChanged()}})}function I(){a.onKeyDown.add(function(L,M){if(!z(M)&&M.keyCode==65&&j.metaKeyPressed(M)){M.preventDefault();L.execCommand("SelectAll")}})}function K(){if(!a.settings.content_editable){e.bind(a.getDoc(),"focusin",function(L){l.setRng(l.getRng())});e.bind(a.getDoc(),"mousedown",function(L){if(L.target==a.getDoc().documentElement){a.getWin().focus();l.setRng(l.getRng())}})}}function B(){a.onKeyDown.add(function(L,O){if(!z(O)&&O.keyCode===f){if(l.isCollapsed()&&l.getRng(true).startOffset===0){var N=l.getNode();var M=N.previousSibling;if(M&&M.nodeName&&M.nodeName.toLowerCase()==="hr"){e.remove(M);tinymce.dom.Event.cancel(O)}}}})}function y(){if(!Range.prototype.getClientRects){a.onMouseDown.add(function(M,N){if(!z(N)&&N.target.nodeName==="HTML"){var L=M.getBody();L.blur();setTimeout(function(){L.focus()},0)}})}}function h(){a.onClick.add(function(L,M){M=M.target;if(/^(IMG|HR)$/.test(M.nodeName)){l.getSel().setBaseAndExtent(M,0,M,1)}if(M.nodeName=="A"&&e.hasClass(M,"mceItemAnchor")){l.select(M)}L.nodeChanged()})}function c(){function M(){var O=e.getAttribs(l.getStart().cloneNode(false));return function(){var P=l.getStart();if(P!==a.getBody()){e.setAttrib(P,"style",null);E(O,function(Q){P.setAttributeNode(Q.cloneNode(true))})}}}function L(){return !l.isCollapsed()&&e.getParent(l.getStart(),e.isBlock)!=e.getParent(l.getEnd(),e.isBlock)}function N(O,P){P.preventDefault();return false}a.onKeyPress.add(function(O,Q){var P;if(!z(Q)&&(Q.keyCode==8||Q.keyCode==46)&&L()){P=M();O.getDoc().execCommand("delete",false,null);P();Q.preventDefault();return false}});e.bind(a.getDoc(),"cut",function(P){var O;if(!z(P)&&L()){O=M();a.onKeyUp.addToTop(N);setTimeout(function(){O();a.onKeyUp.remove(N)},0)}})}function b(){var M,L;e.bind(a.getDoc(),"selectionchange",function(){if(L){clearTimeout(L);L=0}L=window.setTimeout(function(){var N=l.getRng();if(!M||!tinymce.dom.RangeUtils.compareRanges(N,M)){a.nodeChanged();M=N}},50)})}function x(){document.body.setAttribute("role","application")}function t(){a.onKeyDown.add(function(L,N){if(!z(N)&&N.keyCode===f){if(l.isCollapsed()&&l.getRng(true).startOffset===0){var M=l.getNode().previousSibling;if(M&&M.nodeName&&M.nodeName.toLowerCase()==="table"){return tinymce.dom.Event.cancel(N)}}}})}function C(){if(n()>7){return}A("RespectVisibilityInDesign",true);a.contentStyles.push(".mceHideBrInPre pre br {display: none}");e.addClass(a.getBody(),"mceHideBrInPre");v.addNodeFilter("pre",function(L,N){var O=L.length,Q,M,R,P;while(O--){Q=L[O].getAll("br");M=Q.length;while(M--){R=Q[M];P=R.prev;if(P&&P.type===3&&P.value.charAt(P.value-1)!="\n"){P.value+="\n"}else{R.parent.insert(new tinymce.html.Node("#text",3),R,true).value="\n"}}}});o.addNodeFilter("pre",function(L,N){var O=L.length,Q,M,R,P;while(O--){Q=L[O].getAll("br");M=Q.length;while(M--){R=Q[M];P=R.prev;if(P&&P.type==3){P.value=P.value.replace(/\r?\n$/,"")}}}})}function g(){e.bind(a.getBody(),"mouseup",function(N){var M,L=l.getNode();if(L.nodeName=="IMG"){if(M=e.getStyle(L,"width")){e.setAttrib(L,"width",M.replace(/[^0-9%]+/g,""));e.setStyle(L,"width","")}if(M=e.getStyle(L,"height")){e.setAttrib(L,"height",M.replace(/[^0-9%]+/g,""));e.setStyle(L,"height","")}}})}function d(){a.onKeyDown.add(function(R,S){var Q,L,M,O,P,T,N;Q=S.keyCode==k;if(!z(S)&&(Q||S.keyCode==f)&&!j.modifierPressed(S)){L=l.getRng();M=L.startContainer;O=L.startOffset;N=L.collapsed;if(M.nodeType==3&&M.nodeValue.length>0&&((O===0&&!N)||(N&&O===(Q?0:1)))){nonEmptyElements=R.schema.getNonEmptyElements();S.preventDefault();P=e.create("br",{id:"__tmp"});M.parentNode.insertBefore(P,M);R.getDoc().execCommand(Q?"ForwardDelete":"Delete",false,null);M=l.getRng().startContainer;T=M.previousSibling;if(T&&T.nodeType==1&&!e.isBlock(T)&&e.isEmpty(T)&&!nonEmptyElements[T.nodeName.toLowerCase()]){e.remove(T)}e.remove("__tmp")}}})}function G(){a.onKeyDown.add(function(P,Q){var N,M,R,L,O;if(z(Q)||Q.keyCode!=j.BACKSPACE){return}N=l.getRng();M=N.startContainer;R=N.startOffset;L=e.getRoot();O=M;if(!N.collapsed||R!==0){return}while(O&&O.parentNode&&O.parentNode.firstChild==O&&O.parentNode!=L){O=O.parentNode}if(O.tagName==="BLOCKQUOTE"){P.formatter.toggle("blockquote",null,O);N=e.createRng();N.setStart(M,0);N.setEnd(M,0);l.setRng(N)}})}function F(){function L(){a._refreshContentEditable();A("StyleWithCSS",false);A("enableInlineTableEditing",false);if(!H.object_resizing){A("enableObjectResizing",false)}}if(!H.readonly){a.onBeforeExecCommand.add(L);a.onMouseDown.add(L)}}function s(){function L(M,N){E(e.select("a"),function(Q){var O=Q.parentNode,P=e.getRoot();if(O.lastChild===Q){while(O&&!e.isBlock(O)){if(O.parentNode.lastChild!==O||O===P){return}O=O.parentNode}e.add(O,"br",{"data-mce-bogus":1})}})}a.onExecCommand.add(function(M,N){if(N==="CreateLink"){L(M)}});a.onSetContent.add(l.onSetContent.add(L))}function m(){if(H.forced_root_block){a.onInit.add(function(){A("DefaultParagraphSeparator",H.forced_root_block)})}}function p(){function L(N,M){if(!N||!M.initial){a.execCommand("mceRepaint")}}a.onUndo.add(L);a.onRedo.add(L);a.onSetContent.add(L)}function i(){a.onKeyDown.add(function(M,N){var L;if(!z(N)&&N.keyCode==f){L=M.getDoc().selection.createRange();if(L&&L.item){N.preventDefault();M.undoManager.beforeChange();e.remove(L.item(0));M.undoManager.add()}}})}function r(){var L;if(n()>=10){L="";E("p div h1 h2 h3 h4 h5 h6".split(" "),function(M,N){L+=(N>0?",":"")+M+":empty"});a.contentStyles.push(L+"{padding-right: 1px !important}")}}function u(){var N,M,ad,L,Y,ab,Z,ac,O,P,aa,W,V,X=document,T=a.getDoc();if(!H.object_resizing||H.webkit_fake_resize===false){return}A("enableObjectResizing",false);aa={n:[0.5,0,0,-1],e:[1,0.5,1,0],s:[0.5,1,0,1],w:[0,0.5,-1,0],nw:[0,0,-1,-1],ne:[1,0,1,-1],se:[1,1,1,1],sw:[0,1,-1,1]};function R(ah){var ag,af;ag=ah.screenX-ab;af=ah.screenY-Z;W=ag*Y[2]+ac;V=af*Y[3]+O;W=W<5?5:W;V=V<5?5:V;if(j.modifierPressed(ah)||(ad.nodeName=="IMG"&&Y[2]*Y[3]!==0)){W=Math.round(V/P);V=Math.round(W*P)}e.setStyles(L,{width:W,height:V});if(Y[2]<0&&L.clientWidth<=W){e.setStyle(L,"left",N+(ac-W))}if(Y[3]<0&&L.clientHeight<=V){e.setStyle(L,"top",M+(O-V))}}function ae(){function af(ag,ah){if(ah){if(ad.style[ag]||!a.schema.isValid(ad.nodeName.toLowerCase(),ag)){e.setStyle(ad,ag,ah)}else{e.setAttrib(ad,ag,ah)}}}af("width",W);af("height",V);e.unbind(T,"mousemove",R);e.unbind(T,"mouseup",ae);if(X!=T){e.unbind(X,"mousemove",R);e.unbind(X,"mouseup",ae)}e.remove(L);Q(ad)}function Q(ai){var ag,ah,af;S();ag=e.getPos(ai);N=ag.x;M=ag.y;ah=ai.offsetWidth;af=ai.offsetHeight;if(ad!=ai){ad=ai;W=V=0}E(aa,function(al,aj){var ak;ak=e.get("mceResizeHandle"+aj);if(!ak){ak=e.add(T.documentElement,"div",{id:"mceResizeHandle"+aj,"class":"mceResizeHandle",style:"cursor:"+aj+"-resize; margin:0; padding:0"});e.bind(ak,"mousedown",function(am){am.preventDefault();ae();ab=am.screenX;Z=am.screenY;ac=ad.clientWidth;O=ad.clientHeight;P=O/ac;Y=al;L=ad.cloneNode(true);e.addClass(L,"mceClonedResizable");e.setStyles(L,{left:N,top:M,margin:0});T.documentElement.appendChild(L);e.bind(T,"mousemove",R);e.bind(T,"mouseup",ae);if(X!=T){e.bind(X,"mousemove",R);e.bind(X,"mouseup",ae)}})}else{e.show(ak)}e.setStyles(ak,{left:(ah*al[0]+N)-(ak.offsetWidth/2),top:(af*al[1]+M)-(ak.offsetHeight/2)})});if(!tinymce.isOpera&&ad.nodeName=="IMG"){ad.setAttribute("data-mce-selected","1")}}function S(){if(ad){ad.removeAttribute("data-mce-selected")}for(var af in aa){e.hide("mceResizeHandle"+af)}}a.contentStyles.push(".mceResizeHandle {position: absolute;border: 1px solid black;background: #FFF;width: 5px;height: 5px;z-index: 10000}.mceResizeHandle:hover {background: #000}img[data-mce-selected] {outline: 1px solid black}img.mceClonedResizable, table.mceClonedResizable {position: absolute;outline: 1px dashed black;opacity: .5;z-index: 10000}");function U(){var af=e.getParent(l.getNode(),"table,img");E(e.select("img[data-mce-selected]"),function(ag){ag.removeAttribute("data-mce-selected")});if(af){Q(af)}else{S()}}a.onNodeChange.add(U);e.bind(T,"selectionchange",U);a.serializer.addAttributeFilter("data-mce-selected",function(af,ag){var ah=af.length;while(ah--){af[ah].attr(ag,null)}})}function D(){if(n()<9){v.addNodeFilter("noscript",function(L){var M=L.length,N,O;while(M--){N=L[M];O=N.firstChild;if(O){N.attr("data-mce-innertext",O.value)}}});o.addNodeFilter("noscript",function(L){var M=L.length,N,P,O;while(M--){N=L[M];P=L[M].firstChild;if(P){P.value=tinymce.html.Entities.decode(P.value)}else{O=N.attributes.map["data-mce-innertext"];if(O){N.attr("data-mce-innertext",null);P=new tinymce.html.Node("#text",3);P.value=O;P.raw=true;N.append(P)}}}})}}t();G();q();if(tinymce.isWebKit){d();J();K();h();m();if(tinymce.isIDevice){b()}else{u();I()}}if(tinymce.isIE){B();x();C();g();i();r();D()}if(tinymce.isGecko){B();y();c();F();s();p()}if(tinymce.isOpera){u()}};(function(j){var a,g,d,k=/[&<>\"\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,b=/[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,f=/[<>&\"\']/g,c=/&(#x|#)?([\w]+);/g,i={128:"\u20AC",130:"\u201A",131:"\u0192",132:"\u201E",133:"\u2026",134:"\u2020",135:"\u2021",136:"\u02C6",137:"\u2030",138:"\u0160",139:"\u2039",140:"\u0152",142:"\u017D",145:"\u2018",146:"\u2019",147:"\u201C",148:"\u201D",149:"\u2022",150:"\u2013",151:"\u2014",152:"\u02DC",153:"\u2122",154:"\u0161",155:"\u203A",156:"\u0153",158:"\u017E",159:"\u0178"};g={'"':""","'":"'","<":"<",">":">","&":"&"};d={"<":"<",">":">","&":"&",""":'"',"'":"'"};function h(l){var m;m=document.createElement("div");m.innerHTML=l;return m.textContent||m.innerText||l}function e(m,p){var n,o,l,q={};if(m){m=m.split(",");p=p||10;for(n=0;n1){return"&#"+(((n.charCodeAt(0)-55296)*1024)+(n.charCodeAt(1)-56320)+65536)+";"}return g[n]||"&#"+n.charCodeAt(0)+";"})},encodeNamed:function(n,l,m){m=m||a;return n.replace(l?k:b,function(o){return g[o]||m[o]||o})},getEncodeFunc:function(l,o){var p=j.html.Entities;o=e(o)||a;function m(r,q){return r.replace(q?k:b,function(s){return g[s]||o[s]||"&#"+s.charCodeAt(0)+";"||s})}function n(r,q){return p.encodeNamed(r,q,o)}l=j.makeMap(l.replace(/\+/g,","));if(l.named&&l.numeric){return m}if(l.named){if(o){return n}return p.encodeNamed}if(l.numeric){return p.encodeNumeric}return p.encodeRaw},decode:function(l){return l.replace(c,function(n,m,o){if(m){o=parseInt(o,m.length===2?16:10);if(o>65535){o-=65536;return String.fromCharCode(55296+(o>>10),56320+(o&1023))}else{return i[o]||String.fromCharCode(o)}}return d[n]||a[n]||h(n)})}}})(tinymce);tinymce.html.Styles=function(d,f){var k=/rgb\s*\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)/gi,h=/(?:url(?:(?:\(\s*\"([^\"]+)\"\s*\))|(?:\(\s*\'([^\']+)\'\s*\))|(?:\(\s*([^)\s]+)\s*\))))|(?:\'([^\']+)\')|(?:\"([^\"]+)\")/gi,b=/\s*([^:]+):\s*([^;]+);?/g,l=/\s+$/,m=/rgb/,e,g,a={},j;d=d||{};j="\\\" \\' \\; \\: ; : \uFEFF".split(" ");for(g=0;g1?r:"0"+r}return"#"+o(q)+o(p)+o(i)}return{toHex:function(i){return i.replace(k,c)},parse:function(s){var z={},q,n,x,r,v=d.url_converter,y=d.url_converter_scope||this;function p(D,G){var F,C,B,E;F=z[D+"-top"+G];if(!F){return}C=z[D+"-right"+G];if(F!=C){return}B=z[D+"-bottom"+G];if(C!=B){return}E=z[D+"-left"+G];if(B!=E){return}z[D+G]=E;delete z[D+"-top"+G];delete z[D+"-right"+G];delete z[D+"-bottom"+G];delete z[D+"-left"+G]}function u(C){var D=z[C],B;if(!D||D.indexOf(" ")<0){return}D=D.split(" ");B=D.length;while(B--){if(D[B]!==D[0]){return false}}z[C]=D[0];return true}function A(D,C,B,E){if(!u(C)){return}if(!u(B)){return}if(!u(E)){return}z[D]=z[C]+" "+z[B]+" "+z[E];delete z[C];delete z[B];delete z[E]}function t(B){r=true;return a[B]}function i(C,B){if(r){C=C.replace(/\uFEFF[0-9]/g,function(D){return a[D]})}if(!B){C=C.replace(/\\([\'\";:])/g,"$1")}return C}function o(C,B,F,E,G,D){G=G||D;if(G){G=i(G);return"'"+G.replace(/\'/g,"\\'")+"'"}B=i(B||F||E);if(v){B=v.call(y,B,"style")}return"url('"+B.replace(/\'/g,"\\'")+"')"}if(s){s=s.replace(/\\[\"\';:\uFEFF]/g,t).replace(/\"[^\"]+\"|\'[^\']+\'/g,function(B){return B.replace(/[;:]/g,t)});while(q=b.exec(s)){n=q[1].replace(l,"").toLowerCase();x=q[2].replace(l,"");if(n&&x.length>0){if(n==="font-weight"&&x==="700"){x="bold"}else{if(n==="color"||n==="background-color"){x=x.toLowerCase()}}x=x.replace(k,c);x=x.replace(h,o);z[n]=r?i(x,true):x}b.lastIndex=q.index+q[0].length}p("border","");p("border","-width");p("border","-color");p("border","-style");p("padding","");p("margin","");A("border","border-width","border-style","border-color");if(z.border==="medium none"){delete z.border}}return z},serialize:function(p,r){var o="",n,q;function i(t){var x,u,s,v;x=f.styles[t];if(x){for(u=0,s=x.length;u0){o+=(o.length>0?" ":"")+t+": "+v+";"}}}}if(r&&f&&f.styles){i("*");i(r)}else{for(n in p){q=p[n];if(q!==e&&q.length>0){o+=(o.length>0?" ":"")+n+": "+q+";"}}}return o}}};(function(f){var a={},e=f.makeMap,g=f.each;function d(j,i){return j.split(i||",")}function h(m,l){var j,k={};function i(n){return n.replace(/[A-Z]+/g,function(o){return i(m[o])})}for(j in m){if(m.hasOwnProperty(j)){m[j]=i(m[j])}}i(l).replace(/#/g,"#text").replace(/(\w+)\[([^\]]+)\]\[([^\]]*)\]/g,function(q,o,n,p){n=d(n,"|");k[o]={attributes:e(n),attributesOrder:n,children:e(p,"|",{"#comment":{}})}});return k}function b(){var i=a.html5;if(!i){i=a.html5=h({A:"id|accesskey|class|dir|draggable|item|hidden|itemprop|role|spellcheck|style|subject|title|onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|onkeydown|onkeyup",B:"#|a|abbr|area|audio|b|bdo|br|button|canvas|cite|code|command|datalist|del|dfn|em|embed|i|iframe|img|input|ins|kbd|keygen|label|link|map|mark|meta|meter|noscript|object|output|progress|q|ruby|samp|script|select|small|span|strong|sub|sup|svg|textarea|time|var|video|wbr",C:"#|a|abbr|area|address|article|aside|audio|b|bdo|blockquote|br|button|canvas|cite|code|command|datalist|del|details|dfn|dialog|div|dl|em|embed|fieldset|figure|footer|form|h1|h2|h3|h4|h5|h6|header|hgroup|hr|i|iframe|img|input|ins|kbd|keygen|label|link|map|mark|menu|meta|meter|nav|noscript|ol|object|output|p|pre|progress|q|ruby|samp|script|section|select|small|span|strong|style|sub|sup|svg|table|textarea|time|ul|var|video"},"html[A|manifest][body|head]head[A][base|command|link|meta|noscript|script|style|title]title[A][#]base[A|href|target][]link[A|href|rel|media|type|sizes][]meta[A|http-equiv|name|content|charset][]style[A|type|media|scoped][#]script[A|charset|type|src|defer|async][#]noscript[A][C]body[A][C]section[A][C]nav[A][C]article[A][C]aside[A][C]h1[A][B]h2[A][B]h3[A][B]h4[A][B]h5[A][B]h6[A][B]hgroup[A][h1|h2|h3|h4|h5|h6]header[A][C]footer[A][C]address[A][C]p[A][B]br[A][]pre[A][B]dialog[A][dd|dt]blockquote[A|cite][C]ol[A|start|reversed][li]ul[A][li]li[A|value][C]dl[A][dd|dt]dt[A][B]dd[A][C]a[A|href|target|ping|rel|media|type][B]em[A][B]strong[A][B]small[A][B]cite[A][B]q[A|cite][B]dfn[A][B]abbr[A][B]code[A][B]var[A][B]samp[A][B]kbd[A][B]sub[A][B]sup[A][B]i[A][B]b[A][B]mark[A][B]progress[A|value|max][B]meter[A|value|min|max|low|high|optimum][B]time[A|datetime][B]ruby[A][B|rt|rp]rt[A][B]rp[A][B]bdo[A][B]span[A][B]ins[A|cite|datetime][B]del[A|cite|datetime][B]figure[A][C|legend|figcaption]figcaption[A][C]img[A|alt|src|height|width|usemap|ismap][]iframe[A|name|src|height|width|sandbox|seamless][]embed[A|src|height|width|type][]object[A|data|type|height|width|usemap|name|form|classid][param]param[A|name|value][]details[A|open][C|legend]command[A|type|label|icon|disabled|checked|radiogroup][]menu[A|type|label][C|li]legend[A][C|B]div[A][C]source[A|src|type|media][]audio[A|src|autobuffer|autoplay|loop|controls][source]video[A|src|autobuffer|autoplay|loop|controls|width|height|poster][source]hr[A][]form[A|accept-charset|action|autocomplete|enctype|method|name|novalidate|target][C]fieldset[A|disabled|form|name][C|legend]label[A|form|for][B]input[A|type|accept|alt|autocomplete|autofocus|checked|disabled|form|formaction|formenctype|formmethod|formnovalidate|formtarget|height|list|max|maxlength|min|multiple|pattern|placeholder|readonly|required|size|src|step|width|files|value|name][]button[A|autofocus|disabled|form|formaction|formenctype|formmethod|formnovalidate|formtarget|name|value|type][B]select[A|autofocus|disabled|form|multiple|name|size][option|optgroup]datalist[A][B|option]optgroup[A|disabled|label][option]option[A|disabled|selected|label|value][]textarea[A|autofocus|disabled|form|maxlength|name|placeholder|readonly|required|rows|cols|wrap][]keygen[A|autofocus|challenge|disabled|form|keytype|name][]output[A|for|form|name][B]canvas[A|width|height][]map[A|name][B|C]area[A|shape|coords|href|alt|target|media|rel|ping|type][]mathml[A][]svg[A][]table[A|border][caption|colgroup|thead|tfoot|tbody|tr]caption[A][C]colgroup[A|span][col]col[A|span][]thead[A][tr]tfoot[A][tr]tbody[A][tr]tr[A][th|td]th[A|headers|rowspan|colspan|scope][B]td[A|headers|rowspan|colspan][C]wbr[A][]")}return i}function c(){var i=a.html4;if(!i){i=a.html4=h({Z:"H|K|N|O|P",Y:"X|form|R|Q",ZG:"E|span|width|align|char|charoff|valign",X:"p|T|div|U|W|isindex|fieldset|table",ZF:"E|align|char|charoff|valign",W:"pre|hr|blockquote|address|center|noframes",ZE:"abbr|axis|headers|scope|rowspan|colspan|align|char|charoff|valign|nowrap|bgcolor|width|height",ZD:"[E][S]",U:"ul|ol|dl|menu|dir",ZC:"p|Y|div|U|W|table|br|span|bdo|object|applet|img|map|K|N|Q",T:"h1|h2|h3|h4|h5|h6",ZB:"X|S|Q",S:"R|P",ZA:"a|G|J|M|O|P",R:"a|H|K|N|O",Q:"noscript|P",P:"ins|del|script",O:"input|select|textarea|label|button",N:"M|L",M:"em|strong|dfn|code|q|samp|kbd|var|cite|abbr|acronym",L:"sub|sup",K:"J|I",J:"tt|i|b|u|s|strike",I:"big|small|font|basefont",H:"G|F",G:"br|span|bdo",F:"object|applet|img|map|iframe",E:"A|B|C",D:"accesskey|tabindex|onfocus|onblur",C:"onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|onkeydown|onkeyup",B:"lang|xml:lang|dir",A:"id|class|style|title"},"script[id|charset|type|language|src|defer|xml:space][]style[B|id|type|media|title|xml:space][]object[E|declare|classid|codebase|data|type|codetype|archive|standby|width|height|usemap|name|tabindex|align|border|hspace|vspace][#|param|Y]param[id|name|value|valuetype|type][]p[E|align][#|S]a[E|D|charset|type|name|href|hreflang|rel|rev|shape|coords|target][#|Z]br[A|clear][]span[E][#|S]bdo[A|C|B][#|S]applet[A|codebase|archive|code|object|alt|name|width|height|align|hspace|vspace][#|param|Y]h1[E|align][#|S]img[E|src|alt|name|longdesc|width|height|usemap|ismap|align|border|hspace|vspace][]map[B|C|A|name][X|form|Q|area]h2[E|align][#|S]iframe[A|longdesc|name|src|frameborder|marginwidth|marginheight|scrolling|align|width|height][#|Y]h3[E|align][#|S]tt[E][#|S]i[E][#|S]b[E][#|S]u[E][#|S]s[E][#|S]strike[E][#|S]big[E][#|S]small[E][#|S]font[A|B|size|color|face][#|S]basefont[id|size|color|face][]em[E][#|S]strong[E][#|S]dfn[E][#|S]code[E][#|S]q[E|cite][#|S]samp[E][#|S]kbd[E][#|S]var[E][#|S]cite[E][#|S]abbr[E][#|S]acronym[E][#|S]sub[E][#|S]sup[E][#|S]input[E|D|type|name|value|checked|disabled|readonly|size|maxlength|src|alt|usemap|onselect|onchange|accept|align][]select[E|name|size|multiple|disabled|tabindex|onfocus|onblur|onchange][optgroup|option]optgroup[E|disabled|label][option]option[E|selected|disabled|label|value][]textarea[E|D|name|rows|cols|disabled|readonly|onselect|onchange][]label[E|for|accesskey|onfocus|onblur][#|S]button[E|D|name|value|type|disabled][#|p|T|div|U|W|table|G|object|applet|img|map|K|N|Q]h4[E|align][#|S]ins[E|cite|datetime][#|Y]h5[E|align][#|S]del[E|cite|datetime][#|Y]h6[E|align][#|S]div[E|align][#|Y]ul[E|type|compact][li]li[E|type|value][#|Y]ol[E|type|compact|start][li]dl[E|compact][dt|dd]dt[E][#|S]dd[E][#|Y]menu[E|compact][li]dir[E|compact][li]pre[E|width|xml:space][#|ZA]hr[E|align|noshade|size|width][]blockquote[E|cite][#|Y]address[E][#|S|p]center[E][#|Y]noframes[E][#|Y]isindex[A|B|prompt][]fieldset[E][#|legend|Y]legend[E|accesskey|align][#|S]table[E|summary|width|border|frame|rules|cellspacing|cellpadding|align|bgcolor][caption|col|colgroup|thead|tfoot|tbody|tr]caption[E|align][#|S]col[ZG][]colgroup[ZG][col]thead[ZF][tr]tr[ZF|bgcolor][th|td]th[E|ZE][#|Y]form[E|action|method|name|enctype|onsubmit|onreset|accept|accept-charset|target][#|X|R|Q]noscript[E][#|Y]td[E|ZE][#|Y]tfoot[ZF][tr]tbody[ZF][tr]area[E|D|shape|coords|href|nohref|alt|target][]base[id|href|target][]body[E|onload|onunload|background|bgcolor|text|link|vlink|alink][#|Y]")}return i}f.html.Schema=function(A){var u=this,s={},k={},j=[],D,y;var o,q,z,r,v,n,p={};function m(F,E,H){var G=A[F];if(!G){G=a[F];if(!G){G=e(E," ",e(E.toUpperCase()," "));G=f.extend(G,H);a[F]=G}}else{G=e(G,",",e(G.toUpperCase()," "))}return G}A=A||{};y=A.schema=="html5"?b():c();if(A.verify_html===false){A.valid_elements="*[*]"}if(A.valid_styles){D={};g(A.valid_styles,function(F,E){D[E]=f.explode(F)})}o=m("whitespace_elements","pre script noscript style textarea");q=m("self_closing_elements","colgroup dd dt li option p td tfoot th thead tr");z=m("short_ended_elements","area base basefont br col frame hr img input isindex link meta param embed source wbr");r=m("boolean_attributes","checked compact declare defer disabled ismap multiple nohref noresize noshade nowrap readonly selected autoplay loop controls");n=m("non_empty_elements","td th iframe video audio object",z);textBlockElementsMap=m("text_block_elements","h1 h2 h3 h4 h5 h6 p div address pre form blockquote center dir fieldset header footer article section hgroup aside nav figure");v=m("block_elements","hr table tbody thead tfoot th tr td li ol ul caption dl dt dd noscript menu isindex samp option datalist select optgroup",textBlockElementsMap);function i(E){return new RegExp("^"+E.replace(/([?+*])/g,".$1")+"$")}function C(L){var K,G,Z,V,aa,F,I,U,X,Q,Y,ac,O,J,W,E,S,H,ab,ad,P,T,N=/^([#+\-])?([^\[\/]+)(?:\/([^\[]+))?(?:\[([^\]]+)\])?$/,R=/^([!\-])?(\w+::\w+|[^=:<]+)?(?:([=:<])(.*))?$/,M=/[*?+]/;if(L){L=d(L);if(s["@"]){S=s["@"].attributes;H=s["@"].attributesOrder}for(K=0,G=L.length;K=0){for(U=A.length-1;U>=V;U--){T=A[U];if(T.valid){n.end(T.name)}}A.length=V}}function p(U,T,Y,X,W){var Z,V;T=T.toLowerCase();Y=T in H?T:j(Y||X||W||"");if(v&&!z&&T.indexOf("data-")!==0){Z=P[T];if(!Z&&F){V=F.length;while(V--){Z=F[V];if(Z.pattern.test(T)){break}}if(V===-1){Z=null}}if(!Z){return}if(Z.validValues&&!(Y in Z.validValues)){return}}N.map[T]=Y;N.push({name:T,value:Y})}l=new RegExp("<(?:(?:!--([\\w\\W]*?)-->)|(?:!\\[CDATA\\[([\\w\\W]*?)\\]\\]>)|(?:!DOCTYPE([\\w\\W]*?)>)|(?:\\?([^\\s\\/<>]+) ?([\\w\\W]*?)[?/]>)|(?:\\/([^>]+)>)|(?:([A-Za-z0-9\\-\\:\\.]+)((?:\\s+[^\"'>]+(?:(?:\"[^\"]*\")|(?:'[^']*')|[^>]*))*|\\/|\\s+)>))","g");D=/([\w:\-]+)(?:\s*=\s*(?:(?:\"((?:[^\"])*)\")|(?:\'((?:[^\'])*)\')|([^>\s]+)))?/g;K={script:/<\/script[^>]*>/gi,style:/<\/style[^>]*>/gi,noscript:/<\/noscript[^>]*>/gi};M=e.getShortEndedElements();J=c.self_closing_elements||e.getSelfClosingElements();H=e.getBoolAttrs();v=c.validate;s=c.remove_internals;y=c.fix_self_closing;q=a.isIE;o=/^:/;while(g=l.exec(E)){if(G0&&A[A.length-1].name===I){u(I)}if(!v||(m=e.getElementRule(I))){k=true;if(v){P=m.attributes;F=m.attributePatterns}if(R=g[8]){z=R.indexOf("data-mce-type")!==-1;if(z&&s){k=false}N=[];N.map={};R.replace(D,p)}else{N=[];N.map={}}if(v&&!z){S=m.attributesRequired;L=m.attributesDefault;f=m.attributesForced;if(f){Q=f.length;while(Q--){t=f[Q];r=t.name;h=t.value;if(h==="{$uid}"){h="mce_"+x++}N.map[r]=h;N.push({name:r,value:h})}}if(L){Q=L.length;while(Q--){t=L[Q];r=t.name;if(!(r in N.map)){h=t.value;if(h==="{$uid}"){h="mce_"+x++}N.map[r]=h;N.push({name:r,value:h})}}}if(S){Q=S.length;while(Q--){if(S[Q] in N.map){break}}if(Q===-1){k=false}}if(N.map["data-mce-bogus"]){k=false}}if(k){n.start(I,N,O)}}else{k=false}if(B=K[I]){B.lastIndex=G=g.index+g[0].length;if(g=B.exec(E)){if(k){C=E.substr(G,g.index-G)}G=g.index+g[0].length}else{C=E.substr(G);G=E.length}if(k&&C.length>0){n.text(C,true)}if(k){n.end(I)}l.lastIndex=G;continue}if(!O){if(!R||R.indexOf("/")!=R.length-1){A.push({name:I,valid:k})}else{if(k){n.end(I)}}}}else{if(I=g[1]){n.comment(I)}else{if(I=g[2]){n.cdata(I)}else{if(I=g[3]){n.doctype(I)}else{if(I=g[4]){n.pi(I,g[5])}}}}}}G=g.index+g[0].length}if(G=0;Q--){I=A[Q];if(I.valid){n.end(I.name)}}}}})(tinymce);(function(d){var c=/^[ \t\r\n]*$/,e={"#text":3,"#comment":8,"#cdata":4,"#pi":7,"#doctype":10,"#document-fragment":11};function a(k,l,j){var i,h,f=j?"lastChild":"firstChild",g=j?"prev":"next";if(k[f]){return k[f]}if(k!==l){i=k[g];if(i){return i}for(h=k.parent;h&&h!==l;h=h.parent){i=h[g];if(i){return i}}}}function b(f,g){this.name=f;this.type=g;if(g===1){this.attributes=[];this.attributes.map={}}}d.extend(b.prototype,{replace:function(g){var f=this;if(g.parent){g.remove()}f.insert(g,f);f.remove();return f},attr:function(h,l){var f=this,g,j,k;if(typeof h!=="string"){for(j in h){f.attr(j,h[j])}return f}if(g=f.attributes){if(l!==k){if(l===null){if(h in g.map){delete g.map[h];j=g.length;while(j--){if(g[j].name===h){g=g.splice(j,1);return f}}}return f}if(h in g.map){j=g.length;while(j--){if(g[j].name===h){g[j].value=l;break}}}else{g.push({name:h,value:l})}g.map[h]=l;return f}else{return g.map[h]}}},clone:function(){var g=this,n=new b(g.name,g.type),h,f,m,j,k;if(m=g.attributes){k=[];k.map={};for(h=0,f=m.length;h1){x.reverse();A=o=f.filterNode(x[0].clone());for(u=0;u0){Q.value=l;Q=Q.prev}else{O=Q.prev;Q.remove();Q=O}}}function H(O){var P,l={};for(P in O){if(P!=="li"&&P!="p"){l[P]=O[P]}}return l}n=new b.html.SaxParser({validate:z,self_closing_elements:H(h.getSelfClosingElements()),cdata:function(l){B.append(K("#cdata",4)).value=l},text:function(P,l){var O;if(!L){P=P.replace(k," ");if(B.lastChild&&o[B.lastChild.name]){P=P.replace(E,"")}}if(P.length!==0){O=K("#text",3);O.raw=!!l;B.append(O).value=P}},comment:function(l){B.append(K("#comment",8)).value=l},pi:function(l,O){B.append(K(l,7)).value=O;I(B)},doctype:function(O){var l;l=B.append(K("#doctype",10));l.value=O;I(B)},start:function(l,W,P){var U,R,Q,O,S,X,V,T;Q=z?h.getElementRule(l):{};if(Q){U=K(Q.outputName||l,1);U.attributes=W;U.shortEnded=P;B.append(U);T=p[B.name];if(T&&p[U.name]&&!T[U.name]){M.push(U)}R=d.length;while(R--){S=d[R].name;if(S in W.map){F=c[S];if(F){F.push(U)}else{c[S]=[U]}}}if(o[l]){I(U)}if(!P){B=U}if(!L&&s[l]){L=true}}},end:function(l){var S,P,R,O,Q;P=z?h.getElementRule(l):{};if(P){if(o[l]){if(!L){S=B.firstChild;if(S&&S.type===3){R=S.value.replace(E,"");if(R.length>0){S.value=R;S=S.next}else{O=S.next;S.remove();S=O}while(S&&S.type===3){R=S.value;O=S.next;if(R.length===0||y.test(R)){S.remove();S=O}S=O}}S=B.lastChild;if(S&&S.type===3){R=S.value.replace(t,"");if(R.length>0){S.value=R;S=S.prev}else{O=S.prev;S.remove();S=O}while(S&&S.type===3){R=S.value;O=S.prev;if(R.length===0||y.test(R)){S.remove();S=O}S=O}}}}if(L&&s[l]){L=false}if(P.removeEmpty||P.paddEmpty){if(B.isEmpty(u)){if(P.paddEmpty){B.empty().append(new a("#text","3")).value="\u00a0"}else{if(!B.attributes.map.name&&!B.attributes.map.id){Q=B.parent;B.empty().remove();B=Q;return}}}}B=B.parent}}},h);J=B=new a(m.context||g.root_name,11);n.parse(v);if(z&&M.length){if(!m.context){j(M)}else{m.invalid=true}}if(q&&J.name=="body"){G()}if(!m.invalid){for(N in i){F=e[N];A=i[N];x=A.length;while(x--){if(!A[x].parent){A.splice(x,1)}}for(D=0,C=F.length;D0){o=c[c.length-1];if(o.length>0&&o!=="\n"){c.push("\n")}}c.push("<",m);if(k){for(n=0,j=k.length;n0){o=c[c.length-1];if(o.length>0&&o!=="\n"){c.push("\n")}}},end:function(h){var i;c.push("");if(a&&d[h]&&c.length>0){i=c[c.length-1];if(i.length>0&&i!=="\n"){c.push("\n")}}},text:function(i,h){if(i.length>0){c[c.length]=h?i:f(i)}},cdata:function(h){c.push("")},comment:function(h){c.push("")},pi:function(h,i){if(i){c.push("")}else{c.push("")}if(a){c.push("\n")}},doctype:function(h){c.push("",a?"\n":"")},reset:function(){c.length=0},getContent:function(){return c.join("").replace(/\n$/,"")}}};(function(a){a.html.Serializer=function(c,d){var b=this,e=new a.html.Writer(c);c=c||{};c.validate="validate" in c?c.validate:true;b.schema=d=d||new a.html.Schema();b.writer=e;b.serialize=function(h){var g,i;i=c.validate;g={3:function(k,j){e.text(k.value,k.raw)},8:function(j){e.comment(j.value)},7:function(j){e.pi(j.name,j.value)},10:function(j){e.doctype(j.value)},4:function(j){e.cdata(j.value)},11:function(j){if((j=j.firstChild)){do{f(j)}while(j=j.next)}}};e.reset();function f(k){var t=g[k.type],j,o,s,r,p,u,n,m,q;if(!t){j=k.name;o=k.shortEnded;s=k.attributes;if(i&&s&&s.length>1){u=[];u.map={};q=d.getElementRule(k.name);for(n=0,m=q.attributesOrder.length;n=8;k.boxModel=!e.isIE||o.compatMode=="CSS1Compat"||k.stdMode;k.hasOuterHTML="outerHTML" in o.createElement("a");k.settings=l=e.extend({keep_values:false,hex_colors:1},l);k.schema=l.schema;k.styles=new e.html.Styles({url_converter:l.url_converter,url_converter_scope:l.url_converter_scope},l.schema);if(e.isIE6){try{o.execCommand("BackgroundImageCache",false,true)}catch(m){k.cssFlicker=true}}k.fixDoc(o);k.events=l.ownEvents?new e.dom.EventUtils(l.proxy):e.dom.Event;e.addUnload(k.destroy,k);n=l.schema?l.schema.getBlockElements():{};k.isBlock=function(q){if(!q){return false}var p=q.nodeType;if(p){return !!(p===1&&n[q.nodeName])}return !!n[q]}},fixDoc:function(k){var j=this.settings,i;if(b&&j.schema){("abbr article aside audio canvas details figcaption figure footer header hgroup mark menu meter nav output progress section summary time video").replace(/\w+/g,function(l){k.createElement(l)});for(i in j.schema.getCustomElements()){k.createElement(i)}}},clone:function(k,i){var j=this,m,l;if(!b||k.nodeType!==1||i){return k.cloneNode(i)}l=j.doc;if(!i){m=l.createElement(k.nodeName);g(j.getAttribs(k),function(n){j.setAttrib(m,n.nodeName,j.getAttrib(k,n.nodeName))});return m}return m.firstChild},getRoot:function(){var i=this,j=i.settings;return(j&&i.get(j.root_element))||i.doc.body},getViewPort:function(j){var k,i;j=!j?this.win:j;k=j.document;i=this.boxModel?k.documentElement:k.body;return{x:j.pageXOffset||i.scrollLeft,y:j.pageYOffset||i.scrollTop,w:j.innerWidth||i.clientWidth,h:j.innerHeight||i.clientHeight}},getRect:function(l){var k,i=this,j;l=i.get(l);k=i.getPos(l);j=i.getSize(l);return{x:k.x,y:k.y,w:j.w,h:j.h}},getSize:function(l){var j=this,i,k;l=j.get(l);i=j.getStyle(l,"width");k=j.getStyle(l,"height");if(i.indexOf("px")===-1){i=0}if(k.indexOf("px")===-1){k=0}return{w:parseInt(i,10)||l.offsetWidth||l.clientWidth,h:parseInt(k,10)||l.offsetHeight||l.clientHeight}},getParent:function(k,j,i){return this.getParents(k,j,i,false)},getParents:function(s,m,k,q){var j=this,i,l=j.settings,p=[];s=j.get(s);q=q===undefined;if(l.strict_root){k=k||j.getRoot()}if(d(m,"string")){i=m;if(m==="*"){m=function(o){return o.nodeType==1}}else{m=function(o){return j.is(o,i)}}}while(s){if(s==k||!s.nodeType||s.nodeType===9){break}if(!m||m(s)){if(q){p.push(s)}else{return s}}s=s.parentNode}return q?p:null},get:function(i){var j;if(i&&this.doc&&typeof(i)=="string"){j=i;i=this.doc.getElementById(i);if(i&&i.id!==j){return this.doc.getElementsByName(j)[1]}}return i},getNext:function(j,i){return this._findSib(j,i,"nextSibling")},getPrev:function(j,i){return this._findSib(j,i,"previousSibling")},select:function(k,j){var i=this;return e.dom.Sizzle(k,i.get(j)||i.get(i.settings.root_element)||i.doc,[])},is:function(l,j){var k;if(l.length===undefined){if(j==="*"){return l.nodeType==1}if(c.test(j)){j=j.toLowerCase().split(/,/);l=l.nodeName.toLowerCase();for(k=j.length-1;k>=0;k--){if(j[k]==l){return true}}return false}}return e.dom.Sizzle.matches(j,l.nodeType?[l]:l).length>0},add:function(l,o,i,k,m){var j=this;return this.run(l,function(r){var q,n;q=d(o,"string")?j.doc.createElement(o):o;j.setAttribs(q,i);if(k){if(k.nodeType){q.appendChild(k)}else{j.setHTML(q,k)}}return !m?r.appendChild(q):q})},create:function(k,i,j){return this.add(this.doc.createElement(k),k,i,j,1)},createHTML:function(q,i,m){var p="",l=this,j;p+="<"+q;for(j in i){if(i.hasOwnProperty(j)){p+=" "+j+'="'+l.encode(i[j])+'"'}}if(typeof(m)!="undefined"){return p+">"+m+""}return p+" />"},remove:function(i,j){return this.run(i,function(l){var m,k=l.parentNode;if(!k){return null}if(j){while(m=l.firstChild){if(!e.isIE||m.nodeType!==3||m.nodeValue){k.insertBefore(m,l)}else{l.removeChild(m)}}}return k.removeChild(l)})},setStyle:function(l,i,j){var k=this;return k.run(l,function(o){var n,m;n=o.style;i=i.replace(/-(\D)/g,function(q,p){return p.toUpperCase()});if(k.pixelStyles.test(i)&&(e.is(j,"number")||/^[\-0-9\.]+$/.test(j))){j+="px"}switch(i){case"opacity":if(b){n.filter=j===""?"":"alpha(opacity="+(j*100)+")";if(!l.currentStyle||!l.currentStyle.hasLayout){n.display="inline-block"}}n[i]=n["-moz-opacity"]=n["-khtml-opacity"]=j||"";break;case"float":b?n.styleFloat=j:n.cssFloat=j;break;default:n[i]=j||""}if(k.settings.update_styles){k.setAttrib(o,"data-mce-style")}})},getStyle:function(l,i,k){l=this.get(l);if(!l){return}if(this.doc.defaultView&&k){i=i.replace(/[A-Z]/g,function(m){return"-"+m});try{return this.doc.defaultView.getComputedStyle(l,null).getPropertyValue(i)}catch(j){return null}}i=i.replace(/-(\D)/g,function(n,m){return m.toUpperCase()});if(i=="float"){i=b?"styleFloat":"cssFloat"}if(l.currentStyle&&k){return l.currentStyle[i]}return l.style?l.style[i]:undefined},setStyles:function(l,m){var j=this,k=j.settings,i;i=k.update_styles;k.update_styles=0;g(m,function(o,p){j.setStyle(l,p,o)});k.update_styles=i;if(k.update_styles){j.setAttrib(l,k.cssText)}},removeAllAttribs:function(i){return this.run(i,function(l){var k,j=l.attributes;for(k=j.length-1;k>=0;k--){l.removeAttributeNode(j.item(k))}})},setAttrib:function(k,l,i){var j=this;if(!k||!l){return}if(j.settings.strict){l=l.toLowerCase()}return this.run(k,function(p){var o=j.settings;var m=p.getAttribute(l);if(i!==null){switch(l){case"style":if(!d(i,"string")){g(i,function(q,r){j.setStyle(p,r,q)});return}if(o.keep_values){if(i&&!j._isRes(i)){p.setAttribute("data-mce-style",i,2)}else{p.removeAttribute("data-mce-style",2)}}p.style.cssText=i;break;case"class":p.className=i||"";break;case"src":case"href":if(o.keep_values){if(o.url_converter){i=o.url_converter.call(o.url_converter_scope||j,i,l,p)}j.setAttrib(p,"data-mce-"+l,i,2)}break;case"shape":p.setAttribute("data-mce-style",i);break}}if(d(i)&&i!==null&&i.length!==0){p.setAttribute(l,""+i,2)}else{p.removeAttribute(l,2)}if(tinyMCE.activeEditor&&m!=i){var n=tinyMCE.activeEditor;n.onSetAttrib.dispatch(n,p,l,i)}})},setAttribs:function(j,k){var i=this;return this.run(j,function(l){g(k,function(m,o){i.setAttrib(l,o,m)})})},getAttrib:function(m,o,k){var i,j=this,l;m=j.get(m);if(!m||m.nodeType!==1){return k===l?false:k}if(!d(k)){k=""}if(/^(src|href|style|coords|shape)$/.test(o)){i=m.getAttribute("data-mce-"+o);if(i){return i}}if(b&&j.props[o]){i=m[j.props[o]];i=i&&i.nodeValue?i.nodeValue:i}if(!i){i=m.getAttribute(o,2)}if(/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noshade|nowrap|readonly|selected)$/.test(o)){if(m[j.props[o]]===true&&i===""){return o}return i?o:""}if(m.nodeName==="FORM"&&m.getAttributeNode(o)){return m.getAttributeNode(o).nodeValue}if(o==="style"){i=i||m.style.cssText;if(i){i=j.serializeStyle(j.parseStyle(i),m.nodeName);if(j.settings.keep_values&&!j._isRes(i)){m.setAttribute("data-mce-style",i)}}}if(f&&o==="class"&&i){i=i.replace(/(apple|webkit)\-[a-z\-]+/gi,"")}if(b){switch(o){case"rowspan":case"colspan":if(i===1){i=""}break;case"size":if(i==="+0"||i===20||i===0){i=""}break;case"width":case"height":case"vspace":case"checked":case"disabled":case"readonly":if(i===0){i=""}break;case"hspace":if(i===-1){i=""}break;case"maxlength":case"tabindex":if(i===32768||i===2147483647||i==="32768"){i=""}break;case"multiple":case"compact":case"noshade":case"nowrap":if(i===65535){return o}return k;case"shape":i=i.toLowerCase();break;default:if(o.indexOf("on")===0&&i){i=e._replace(/^function\s+\w+\(\)\s+\{\s+(.*)\s+\}$/,"$1",""+i)}}}return(i!==l&&i!==null&&i!=="")?""+i:k},getPos:function(q,l){var j=this,i=0,p=0,m,o=j.doc,k;q=j.get(q);l=l||o.body;if(q){if(q.getBoundingClientRect){q=q.getBoundingClientRect();m=j.boxModel?o.documentElement:o.body;i=q.left+(o.documentElement.scrollLeft||o.body.scrollLeft)-m.clientTop;p=q.top+(o.documentElement.scrollTop||o.body.scrollTop)-m.clientLeft;return{x:i,y:p}}k=q;while(k&&k!=l&&k.nodeType){i+=k.offsetLeft||0;p+=k.offsetTop||0;k=k.offsetParent}k=q.parentNode;while(k&&k!=l&&k.nodeType){i-=k.scrollLeft||0;p-=k.scrollTop||0;k=k.parentNode}}return{x:i,y:p}},parseStyle:function(i){return this.styles.parse(i)},serializeStyle:function(j,i){return this.styles.serialize(j,i)},addStyle:function(j){var k=this.doc,i;styleElm=k.getElementById("mceDefaultStyles");if(!styleElm){styleElm=k.createElement("style"),styleElm.id="mceDefaultStyles";styleElm.type="text/css";i=k.getElementsByTagName("head")[0];if(i.firstChild){i.insertBefore(styleElm,i.firstChild)}else{i.appendChild(styleElm)}}if(styleElm.styleSheet){styleElm.styleSheet.cssText+=j}else{styleElm.appendChild(k.createTextNode(j))}},loadCSS:function(i){var k=this,l=k.doc,j;if(!i){i=""}j=l.getElementsByTagName("head")[0];g(i.split(","),function(m){var n;if(k.files[m]){return}k.files[m]=true;n=k.create("link",{rel:"stylesheet",href:e._addVer(m)});if(b&&l.documentMode&&l.recalc){n.onload=function(){if(l.recalc){l.recalc()}n.onload=null}}j.appendChild(n)})},addClass:function(i,j){return this.run(i,function(k){var l;if(!j){return 0}if(this.hasClass(k,j)){return k.className}l=this.removeClass(k,j);return k.className=(l!=""?(l+" "):"")+j})},removeClass:function(k,l){var i=this,j;return i.run(k,function(n){var m;if(i.hasClass(n,l)){if(!j){j=new RegExp("(^|\\s+)"+l+"(\\s+|$)","g")}m=n.className.replace(j," ");m=e.trim(m!=" "?m:"");n.className=m;if(!m){n.removeAttribute("class");n.removeAttribute("className")}return m}return n.className})},hasClass:function(j,i){j=this.get(j);if(!j||!i){return false}return(" "+j.className+" ").indexOf(" "+i+" ")!==-1},show:function(i){return this.setStyle(i,"display","block")},hide:function(i){return this.setStyle(i,"display","none")},isHidden:function(i){i=this.get(i);return !i||i.style.display=="none"||this.getStyle(i,"display")=="none"},uniqueId:function(i){return(!i?"mce_":i)+(this.counter++)},setHTML:function(k,j){var i=this;return i.run(k,function(m){if(b){while(m.firstChild){m.removeChild(m.firstChild)}try{m.innerHTML="
                                            "+j;m.removeChild(m.firstChild)}catch(l){var n=i.create("div");n.innerHTML="
                                            "+j;g(e.grep(n.childNodes),function(p,o){if(o&&m.canHaveHTML){m.appendChild(p)}})}}else{m.innerHTML=j}return j})},getOuterHTML:function(k){var j,i=this;k=i.get(k);if(!k){return null}if(k.nodeType===1&&i.hasOuterHTML){return k.outerHTML}j=(k.ownerDocument||i.doc).createElement("body");j.appendChild(k.cloneNode(true));return j.innerHTML},setOuterHTML:function(l,j,m){var i=this;function k(p,o,r){var s,q;q=r.createElement("body");q.innerHTML=o;s=q.lastChild;while(s){i.insertAfter(s.cloneNode(true),p);s=s.previousSibling}i.remove(p)}return this.run(l,function(o){o=i.get(o);if(o.nodeType==1){m=m||o.ownerDocument||i.doc;if(b){try{if(b&&o.nodeType==1){o.outerHTML=j}else{k(o,j,m)}}catch(n){k(o,j,m)}}else{k(o,j,m)}}})},decode:h.decode,encode:h.encodeAllRaw,insertAfter:function(i,j){j=this.get(j);return this.run(i,function(l){var k,m;k=j.parentNode;m=j.nextSibling;if(m){k.insertBefore(l,m)}else{k.appendChild(l)}return l})},replace:function(m,l,i){var j=this;if(d(l,"array")){m=m.cloneNode(true)}return j.run(l,function(k){if(i){g(e.grep(k.childNodes),function(n){m.appendChild(n)})}return k.parentNode.replaceChild(m,k)})},rename:function(l,i){var k=this,j;if(l.nodeName!=i.toUpperCase()){j=k.create(i);g(k.getAttribs(l),function(m){k.setAttrib(j,m.nodeName,k.getAttrib(l,m.nodeName))});k.replace(j,l,1)}return j||l},findCommonAncestor:function(k,i){var l=k,j;while(l){j=i;while(j&&l!=j){j=j.parentNode}if(l==j){break}l=l.parentNode}if(!l&&k.ownerDocument){return k.ownerDocument.documentElement}return l},toHex:function(i){var k=/^\s*rgb\s*?\(\s*?([0-9]+)\s*?,\s*?([0-9]+)\s*?,\s*?([0-9]+)\s*?\)\s*$/i.exec(i);function j(l){l=parseInt(l,10).toString(16);return l.length>1?l:"0"+l}if(k){i="#"+j(k[1])+j(k[2])+j(k[3]);return i}return i},getClasses:function(){var n=this,j=[],m,o={},p=n.settings.class_filter,l;if(n.classes){return n.classes}function q(i){g(i.imports,function(s){q(s)});g(i.cssRules||i.rules,function(s){switch(s.type||1){case 1:if(s.selectorText){g(s.selectorText.split(","),function(r){r=r.replace(/^\s*|\s*$|^\s\./g,"");if(/\.mce/.test(r)||!/\.[\w\-]+$/.test(r)){return}l=r;r=e._replace(/.*\.([a-z0-9_\-]+).*/i,"$1",r);if(p&&!(r=p(r,l))){return}if(!o[r]){j.push({"class":r});o[r]=1}})}break;case 3:q(s.styleSheet);break}})}try{g(n.doc.styleSheets,q)}catch(k){}if(j.length>0){n.classes=j}return j},run:function(l,k,j){var i=this,m;if(i.doc&&typeof(l)==="string"){l=i.get(l)}if(!l){return false}j=j||this;if(!l.nodeType&&(l.length||l.length===0)){m=[];g(l,function(o,n){if(o){if(typeof(o)=="string"){o=i.doc.getElementById(o)}m.push(k.call(j,o,n))}});return m}return k.call(j,l)},getAttribs:function(j){var i;j=this.get(j);if(!j){return[]}if(b){i=[];if(j.nodeName=="OBJECT"){return j.attributes}if(j.nodeName==="OPTION"&&this.getAttrib(j,"selected")){i.push({specified:1,nodeName:"selected"})}j.cloneNode(false).outerHTML.replace(/<\/?[\w:\-]+ ?|=[\"][^\"]+\"|=\'[^\']+\'|=[\w\-]+|>/gi,"").replace(/[\w:\-]+/gi,function(k){i.push({specified:1,nodeName:k})});return i}return j.attributes},isEmpty:function(m,k){var r=this,o,n,q,j,l,p=0;m=m.firstChild;if(m){j=new e.dom.TreeWalker(m,m.parentNode);k=k||r.schema?r.schema.getNonEmptyElements():null;do{q=m.nodeType;if(q===1){if(m.getAttribute("data-mce-bogus")){continue}l=m.nodeName.toLowerCase();if(k&&k[l]){if(l==="br"){p++;continue}return false}n=r.getAttribs(m);o=m.attributes.length;while(o--){l=m.attributes[o].nodeName;if(l==="name"||l==="data-mce-bookmark"){return false}}}if(q==8){return false}if((q===3&&!a.test(m.nodeValue))){return false}}while(m=j.next())}return p<=1},destroy:function(j){var i=this;i.win=i.doc=i.root=i.events=i.frag=null;if(!j){e.removeUnload(i.destroy)}},createRng:function(){var i=this.doc;return i.createRange?i.createRange():new e.dom.Range(this)},nodeIndex:function(m,n){var i=0,k,l,j;if(m){for(k=m.nodeType,m=m.previousSibling,l=m;m;m=m.previousSibling){j=m.nodeType;if(n&&j==3){if(j==k||!m.nodeValue.length){continue}}i++;k=j}}return i},split:function(m,l,p){var q=this,i=q.createRng(),n,k,o;function j(v){var t,s=v.childNodes,u=v.nodeType;function x(A){var z=A.previousSibling&&A.previousSibling.nodeName=="SPAN";var y=A.nextSibling&&A.nextSibling.nodeName=="SPAN";return z&&y}if(u==1&&v.getAttribute("data-mce-type")=="bookmark"){return}for(t=s.length-1;t>=0;t--){j(s[t])}if(u!=9){if(u==3&&v.nodeValue.length>0){var r=e.trim(v.nodeValue).length;if(!q.isBlock(v.parentNode)||r>0||r===0&&x(v)){return}}else{if(u==1){s=v.childNodes;if(s.length==1&&s[0]&&s[0].nodeType==1&&s[0].getAttribute("data-mce-type")=="bookmark"){v.parentNode.insertBefore(s[0],v)}if(s.length||/^(br|hr|input|img)$/i.test(v.nodeName)){return}}}q.remove(v)}return v}if(m&&l){i.setStart(m.parentNode,q.nodeIndex(m));i.setEnd(l.parentNode,q.nodeIndex(l));n=i.extractContents();i=q.createRng();i.setStart(l.parentNode,q.nodeIndex(l)+1);i.setEnd(m.parentNode,q.nodeIndex(m)+1);k=i.extractContents();o=m.parentNode;o.insertBefore(j(n),m);if(p){o.replaceChild(p,l)}else{o.insertBefore(l,m)}o.insertBefore(j(k),m);q.remove(m);return p||l}},bind:function(l,i,k,j){return this.events.add(l,i,k,j||this)},unbind:function(k,i,j){return this.events.remove(k,i,j)},fire:function(k,j,i){return this.events.fire(k,j,i)},getContentEditable:function(j){var i;if(j.nodeType!=1){return null}i=j.getAttribute("data-mce-contenteditable");if(i&&i!=="inherit"){return i}return j.contentEditable!=="inherit"?j.contentEditable:null},_findSib:function(l,i,j){var k=this,m=i;if(l){if(d(m,"string")){m=function(n){return k.is(n,i)}}for(l=l[j];l;l=l[j]){if(m(l)){return l}}}return null},_isRes:function(i){return/^(top|left|bottom|right|width|height)/i.test(i)||/;\s*(top|left|bottom|right|width|height)/i.test(i)}});e.DOM=new e.dom.DOMUtils(document,{process_html:0})})(tinymce);(function(a){function b(c){var O=this,e=c.doc,U=0,F=1,j=2,E=true,S=false,W="startOffset",h="startContainer",Q="endContainer",A="endOffset",k=tinymce.extend,n=c.nodeIndex;k(O,{startContainer:e,startOffset:0,endContainer:e,endOffset:0,collapsed:E,commonAncestorContainer:e,START_TO_START:0,START_TO_END:1,END_TO_END:2,END_TO_START:3,setStart:q,setEnd:s,setStartBefore:g,setStartAfter:J,setEndBefore:K,setEndAfter:u,collapse:B,selectNode:y,selectNodeContents:G,compareBoundaryPoints:v,deleteContents:p,extractContents:I,cloneContents:d,insertNode:D,surroundContents:N,cloneRange:L,toStringIE:T});function x(){return e.createDocumentFragment()}function q(X,t){C(E,X,t)}function s(X,t){C(S,X,t)}function g(t){q(t.parentNode,n(t))}function J(t){q(t.parentNode,n(t)+1)}function K(t){s(t.parentNode,n(t))}function u(t){s(t.parentNode,n(t)+1)}function B(t){if(t){O[Q]=O[h];O[A]=O[W]}else{O[h]=O[Q];O[W]=O[A]}O.collapsed=E}function y(t){g(t);u(t)}function G(t){q(t,0);s(t,t.nodeType===1?t.childNodes.length:t.nodeValue.length)}function v(aa,t){var ad=O[h],Y=O[W],ac=O[Q],X=O[A],ab=t.startContainer,af=t.startOffset,Z=t.endContainer,ae=t.endOffset;if(aa===0){return H(ad,Y,ab,af)}if(aa===1){return H(ac,X,ab,af)}if(aa===2){return H(ac,X,Z,ae)}if(aa===3){return H(ad,Y,Z,ae)}}function p(){l(j)}function I(){return l(U)}function d(){return l(F)}function D(aa){var X=this[h],t=this[W],Z,Y;if((X.nodeType===3||X.nodeType===4)&&X.nodeValue){if(!t){X.parentNode.insertBefore(aa,X)}else{if(t>=X.nodeValue.length){c.insertAfter(aa,X)}else{Z=X.splitText(t);X.parentNode.insertBefore(aa,Z)}}}else{if(X.childNodes.length>0){Y=X.childNodes[t]}if(Y){X.insertBefore(aa,Y)}else{X.appendChild(aa)}}}function N(X){var t=O.extractContents();O.insertNode(X);X.appendChild(t);O.selectNode(X)}function L(){return k(new b(c),{startContainer:O[h],startOffset:O[W],endContainer:O[Q],endOffset:O[A],collapsed:O.collapsed,commonAncestorContainer:O.commonAncestorContainer})}function P(t,X){var Y;if(t.nodeType==3){return t}if(X<0){return t}Y=t.firstChild;while(Y&&X>0){--X;Y=Y.nextSibling}if(Y){return Y}return t}function m(){return(O[h]==O[Q]&&O[W]==O[A])}function H(Z,ab,X,aa){var ac,Y,t,ad,af,ae;if(Z==X){if(ab==aa){return 0}if(ab0){O.collapse(X)}}else{O.collapse(X)}O.collapsed=m();O.commonAncestorContainer=c.findCommonAncestor(O[h],O[Q])}function l(ad){var ac,Z=0,af=0,X,ab,Y,aa,t,ae;if(O[h]==O[Q]){return f(ad)}for(ac=O[Q],X=ac.parentNode;X;ac=X,X=X.parentNode){if(X==O[h]){return r(ac,ad)}++Z}for(ac=O[h],X=ac.parentNode;X;ac=X,X=X.parentNode){if(X==O[Q]){return V(ac,ad)}++af}ab=af-Z;Y=O[h];while(ab>0){Y=Y.parentNode;ab--}aa=O[Q];while(ab<0){aa=aa.parentNode;ab++}for(t=Y.parentNode,ae=aa.parentNode;t!=ae;t=t.parentNode,ae=ae.parentNode){Y=t;aa=ae}return o(Y,aa,ad)}function f(ac){var ae,af,t,Y,Z,ad,aa,X,ab;if(ac!=j){ae=x()}if(O[W]==O[A]){return ae}if(O[h].nodeType==3){af=O[h].nodeValue;t=af.substring(O[W],O[A]);if(ac!=F){Y=O[h];X=O[W];ab=O[A]-O[W];if(X===0&&ab>=Y.nodeValue.length-1){Y.parentNode.removeChild(Y)}else{Y.deleteData(X,ab)}O.collapse(E)}if(ac==j){return}if(t.length>0){ae.appendChild(e.createTextNode(t))}return ae}Y=P(O[h],O[W]);Z=O[A]-O[W];while(Y&&Z>0){ad=Y.nextSibling;aa=z(Y,ac);if(ae){ae.appendChild(aa)}--Z;Y=ad}if(ac!=F){O.collapse(E)}return ae}function r(ad,aa){var ac,ab,X,t,Z,Y;if(aa!=j){ac=x()}ab=i(ad,aa);if(ac){ac.appendChild(ab)}X=n(ad);t=X-O[W];if(t<=0){if(aa!=F){O.setEndBefore(ad);O.collapse(S)}return ac}ab=ad.previousSibling;while(t>0){Z=ab.previousSibling;Y=z(ab,aa);if(ac){ac.insertBefore(Y,ac.firstChild)}--t;ab=Z}if(aa!=F){O.setEndBefore(ad);O.collapse(S)}return ac}function V(ab,aa){var ad,X,ac,t,Z,Y;if(aa!=j){ad=x()}ac=R(ab,aa);if(ad){ad.appendChild(ac)}X=n(ab);++X;t=O[A]-X;ac=ab.nextSibling;while(ac&&t>0){Z=ac.nextSibling;Y=z(ac,aa);if(ad){ad.appendChild(Y)}--t;ac=Z}if(aa!=F){O.setStartAfter(ab);O.collapse(E)}return ad}function o(ab,t,ae){var Y,ag,aa,ac,ad,X,af,Z;if(ae!=j){ag=x()}Y=R(ab,ae);if(ag){ag.appendChild(Y)}aa=ab.parentNode;ac=n(ab);ad=n(t);++ac;X=ad-ac;af=ab.nextSibling;while(X>0){Z=af.nextSibling;Y=z(af,ae);if(ag){ag.appendChild(Y)}af=Z;--X}Y=i(t,ae);if(ag){ag.appendChild(Y)}if(ae!=F){O.setStartAfter(ab);O.collapse(E)}return ag}function i(ac,ad){var Y=P(O[Q],O[A]-1),ae,ab,aa,t,X,Z=Y!=O[Q];if(Y==ac){return M(Y,Z,S,ad)}ae=Y.parentNode;ab=M(ae,S,S,ad);while(ae){while(Y){aa=Y.previousSibling;t=M(Y,Z,S,ad);if(ad!=j){ab.insertBefore(t,ab.firstChild)}Z=E;Y=aa}if(ae==ac){return ab}Y=ae.previousSibling;ae=ae.parentNode;X=M(ae,S,S,ad);if(ad!=j){X.appendChild(ab)}ab=X}}function R(ac,ad){var Z=P(O[h],O[W]),aa=Z!=O[h],ae,ab,Y,t,X;if(Z==ac){return M(Z,aa,E,ad)}ae=Z.parentNode;ab=M(ae,S,E,ad);while(ae){while(Z){Y=Z.nextSibling;t=M(Z,aa,E,ad);if(ad!=j){ab.appendChild(t)}aa=E;Z=Y}if(ae==ac){return ab}Z=ae.nextSibling;ae=ae.parentNode;X=M(ae,S,E,ad);if(ad!=j){X.appendChild(ab)}ab=X}}function M(t,aa,ad,ae){var Z,Y,ab,X,ac;if(aa){return z(t,ae)}if(t.nodeType==3){Z=t.nodeValue;if(ad){X=O[W];Y=Z.substring(X);ab=Z.substring(0,X)}else{X=O[A];Y=Z.substring(0,X);ab=Z.substring(X)}if(ae!=F){t.nodeValue=ab}if(ae==j){return}ac=c.clone(t,S);ac.nodeValue=Y;return ac}if(ae==j){return}return c.clone(t,S)}function z(X,t){if(t!=j){return t==F?c.clone(X,E):X}X.parentNode.removeChild(X)}function T(){return c.create("body",null,d()).outerText}return O}a.Range=b;b.prototype.toString=function(){return this.toStringIE()}})(tinymce.dom);(function(){function a(d){var b=this,h=d.dom,c=true,f=false;function e(i,j){var k,t=0,q,n,m,l,o,r,p=-1,s;k=i.duplicate();k.collapse(j);s=k.parentElement();if(s.ownerDocument!==d.dom.doc){return}while(s.contentEditable==="false"){s=s.parentNode}if(!s.hasChildNodes()){return{node:s,inside:1}}m=s.children;q=m.length-1;while(t<=q){r=Math.floor((t+q)/2);l=m[r];k.moveToElementText(l);p=k.compareEndPoints(j?"StartToStart":"EndToEnd",i);if(p>0){q=r-1}else{if(p<0){t=r+1}else{return{node:l}}}}if(p<0){if(!l){k.moveToElementText(s);k.collapse(true);l=s;n=true}else{k.collapse(false)}o=0;while(k.compareEndPoints(j?"StartToStart":"StartToEnd",i)!==0){if(k.move("character",1)===0||s!=k.parentElement()){break}o++}}else{k.collapse(true);o=0;while(k.compareEndPoints(j?"StartToStart":"StartToEnd",i)!==0){if(k.move("character",-1)===0||s!=k.parentElement()){break}o++}}return{node:l,position:p,offset:o,inside:n}}function g(){var i=d.getRng(),r=h.createRng(),l,k,p,q,m,j;l=i.item?i.item(0):i.parentElement();if(l.ownerDocument!=h.doc){return r}k=d.isCollapsed();if(i.item){r.setStart(l.parentNode,h.nodeIndex(l));r.setEnd(r.startContainer,r.startOffset+1);return r}function o(A){var u=e(i,A),s,y,z=0,x,v,t;s=u.node;y=u.offset;if(u.inside&&!s.hasChildNodes()){r[A?"setStart":"setEnd"](s,0);return}if(y===v){r[A?"setStartBefore":"setEndAfter"](s);return}if(u.position<0){x=u.inside?s.firstChild:s.nextSibling;if(!x){r[A?"setStartAfter":"setEndAfter"](s);return}if(!y){if(x.nodeType==3){r[A?"setStart":"setEnd"](x,0)}else{r[A?"setStartBefore":"setEndBefore"](x)}return}while(x){t=x.nodeValue;z+=t.length;if(z>=y){s=x;z-=y;z=t.length-z;break}x=x.nextSibling}}else{x=s.previousSibling;if(!x){return r[A?"setStartBefore":"setEndBefore"](s)}if(!y){if(s.nodeType==3){r[A?"setStart":"setEnd"](x,s.nodeValue.length)}else{r[A?"setStartAfter":"setEndAfter"](x)}return}while(x){z+=x.nodeValue.length;if(z>=y){s=x;z-=y;break}x=x.previousSibling}}r[A?"setStart":"setEnd"](s,z)}try{o(true);if(!k){o()}}catch(n){if(n.number==-2147024809){m=b.getBookmark(2);p=i.duplicate();p.collapse(true);l=p.parentElement();if(!k){p=i.duplicate();p.collapse(false);q=p.parentElement();q.innerHTML=q.innerHTML}l.innerHTML=l.innerHTML;b.moveToBookmark(m);i=d.getRng();o(true);if(!k){o()}}else{throw n}}return r}this.getBookmark=function(m){var j=d.getRng(),o,i,l={};function n(u){var t,p,s,r,q=[];t=u.parentNode;p=h.getRoot().parentNode;while(t!=p&&t.nodeType!==9){s=t.children;r=s.length;while(r--){if(u===s[r]){q.push(r);break}}u=t;t=t.parentNode}return q}function k(q){var p;p=e(j,q);if(p){return{position:p.position,offset:p.offset,indexes:n(p.node),inside:p.inside}}}if(m===2){if(!j.item){l.start=k(true);if(!d.isCollapsed()){l.end=k()}}else{l.start={ctrl:true,indexes:n(j.item(0))}}}return l};this.moveToBookmark=function(k){var j,i=h.doc.body;function m(o){var r,q,n,p;r=h.getRoot();for(q=o.length-1;q>=0;q--){p=r.children;n=o[q];if(n<=p.length-1){r=p[n]}}return r}function l(r){var n=k[r?"start":"end"],q,p,o;if(n){q=n.position>0;p=i.createTextRange();p.moveToElementText(m(n.indexes));offset=n.offset;if(offset!==o){p.collapse(n.inside||q);p.moveStart("character",q?-offset:offset)}else{p.collapse(r)}j.setEndPoint(r?"StartToStart":"EndToStart",p);if(r){j.collapse(true)}}}if(k.start){if(k.start.ctrl){j=i.createControlRange();j.addElement(m(k.start.indexes));j.select()}else{j=i.createTextRange();l(true);l();j.select()}}};this.addRange=function(i){var n,l,k,p,v,q,t,s=d.dom.doc,m=s.body,r,u;function j(C){var y,B,x,A,z;x=h.create("a");y=C?k:v;B=C?p:q;A=n.duplicate();if(y==s||y==s.documentElement){y=m;B=0}if(y.nodeType==3){y.parentNode.insertBefore(x,y);A.moveToElementText(x);A.moveStart("character",B);h.remove(x);n.setEndPoint(C?"StartToStart":"EndToEnd",A)}else{z=y.childNodes;if(z.length){if(B>=z.length){h.insertAfter(x,z[z.length-1])}else{y.insertBefore(x,z[B])}A.moveToElementText(x)}else{if(y.canHaveHTML){y.innerHTML="\uFEFF";x=y.firstChild;A.moveToElementText(x);A.collapse(f)}}n.setEndPoint(C?"StartToStart":"EndToEnd",A);h.remove(x)}}k=i.startContainer;p=i.startOffset;v=i.endContainer;q=i.endOffset;n=m.createTextRange();if(k==v&&k.nodeType==1){if(p==q&&!k.hasChildNodes()){if(k.canHaveHTML){t=k.previousSibling;if(t&&!t.hasChildNodes()&&h.isBlock(t)){t.innerHTML="\uFEFF"}else{t=null}k.innerHTML="\uFEFF\uFEFF";n.moveToElementText(k.lastChild);n.select();h.doc.selection.clear();k.innerHTML="";if(t){t.innerHTML=""}return}else{p=h.nodeIndex(k);k=k.parentNode}}if(p==q-1){try{u=k.childNodes[p];l=m.createControlRange();l.addElement(u);l.select();r=d.getRng();if(r.item&&u===r.item(0)){return}}catch(o){}}}j(true);j();n.select()};this.getRangeAt=g}tinymce.dom.TridentSelection=a})();(function(){var n=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,i="sizcache",o=0,r=Object.prototype.toString,h=false,g=true,q=/\\/g,u=/\r\n/g,x=/\W/;[0,0].sort(function(){g=false;return 0});var d=function(C,e,F,G){F=F||[];e=e||document;var I=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!C||typeof C!=="string"){return F}var z,K,N,y,J,M,L,E,B=true,A=d.isXML(e),D=[],H=C;do{n.exec("");z=n.exec(H);if(z){H=z[3];D.push(z[1]);if(z[2]){y=z[3];break}}}while(z);if(D.length>1&&j.exec(C)){if(D.length===2&&k.relative[D[0]]){K=s(D[0]+D[1],e,G)}else{K=k.relative[D[0]]?[e]:d(D.shift(),e);while(D.length){C=D.shift();if(k.relative[C]){C+=D.shift()}K=s(C,K,G)}}}else{if(!G&&D.length>1&&e.nodeType===9&&!A&&k.match.ID.test(D[0])&&!k.match.ID.test(D[D.length-1])){J=d.find(D.shift(),e,A);e=J.expr?d.filter(J.expr,J.set)[0]:J.set[0]}if(e){J=G?{expr:D.pop(),set:l(G)}:d.find(D.pop(),D.length===1&&(D[0]==="~"||D[0]==="+")&&e.parentNode?e.parentNode:e,A);K=J.expr?d.filter(J.expr,J.set):J.set;if(D.length>0){N=l(K)}else{B=false}while(D.length){M=D.pop();L=M;if(!k.relative[M]){M=""}else{L=D.pop()}if(L==null){L=e}k.relative[M](N,L,A)}}else{N=D=[]}}if(!N){N=K}if(!N){d.error(M||C)}if(r.call(N)==="[object Array]"){if(!B){F.push.apply(F,N)}else{if(e&&e.nodeType===1){for(E=0;N[E]!=null;E++){if(N[E]&&(N[E]===true||N[E].nodeType===1&&d.contains(e,N[E]))){F.push(K[E])}}}else{for(E=0;N[E]!=null;E++){if(N[E]&&N[E].nodeType===1){F.push(K[E])}}}}}else{l(N,F)}if(y){d(y,I,F,G);d.uniqueSort(F)}return F};d.uniqueSort=function(y){if(p){h=g;y.sort(p);if(h){for(var e=1;e0};d.find=function(E,e,F){var D,z,B,A,C,y;if(!E){return[]}for(z=0,B=k.order.length;z":function(D,y){var C,B=typeof y==="string",z=0,e=D.length;if(B&&!x.test(y)){y=y.toLowerCase();for(;z=0)){if(!z){e.push(C)}}else{if(z){y[B]=false}}}}return false},ID:function(e){return e[1].replace(q,"")},TAG:function(y,e){return y[1].replace(q,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){d.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var y=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(y[1]+(y[2]||1))-0;e[3]=y[3]-0}else{if(e[2]){d.error(e[0])}}e[0]=o++;return e},ATTR:function(B,y,z,e,C,D){var A=B[1]=B[1].replace(q,"");if(!D&&k.attrMap[A]){B[1]=k.attrMap[A]}B[4]=(B[4]||B[5]||"").replace(q,"");if(B[2]==="~="){B[4]=" "+B[4]+" "}return B},PSEUDO:function(B,y,z,e,C){if(B[1]==="not"){if((n.exec(B[3])||"").length>1||/^\w/.test(B[3])){B[3]=d(B[3],null,null,y)}else{var A=d.filter(B[3],y,z,true^C);if(!z){e.push.apply(e,A)}return false}}else{if(k.match.POS.test(B[0])||k.match.CHILD.test(B[0])){return true}}return B},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(z,y,e){return !!d(e[3],z).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(z){var e=z.getAttribute("type"),y=z.type;return z.nodeName.toLowerCase()==="input"&&"text"===y&&(e===y||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(y){var e=y.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===y.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(y){var e=y.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===y.type},button:function(y){var e=y.nodeName.toLowerCase();return e==="input"&&"button"===y.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(y,e){return e===0},last:function(z,y,e,A){return y===A.length-1},even:function(y,e){return e%2===0},odd:function(y,e){return e%2===1},lt:function(z,y,e){return ye[3]-0},nth:function(z,y,e){return e[3]-0===y},eq:function(z,y,e){return e[3]-0===y}},filter:{PSEUDO:function(z,E,D,F){var e=E[1],y=k.filters[e];if(y){return y(z,D,E,F)}else{if(e==="contains"){return(z.textContent||z.innerText||b([z])||"").indexOf(E[3])>=0}else{if(e==="not"){var A=E[3];for(var C=0,B=A.length;C=0)}}},ID:function(y,e){return y.nodeType===1&&y.getAttribute("id")===e},TAG:function(y,e){return(e==="*"&&y.nodeType===1)||!!y.nodeName&&y.nodeName.toLowerCase()===e},CLASS:function(y,e){return(" "+(y.className||y.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(C,A){var z=A[1],e=d.attr?d.attr(C,z):k.attrHandle[z]?k.attrHandle[z](C):C[z]!=null?C[z]:C.getAttribute(z),D=e+"",B=A[2],y=A[4];return e==null?B==="!=":!B&&d.attr?e!=null:B==="="?D===y:B==="*="?D.indexOf(y)>=0:B==="~="?(" "+D+" ").indexOf(y)>=0:!y?D&&e!==false:B==="!="?D!==y:B==="^="?D.indexOf(y)===0:B==="$="?D.substr(D.length-y.length)===y:B==="|="?D===y||D.substr(0,y.length+1)===y+"-":false},POS:function(B,y,z,C){var e=y[2],A=k.setFilters[e];if(A){return A(B,z,y,C)}}}};var j=k.match.POS,c=function(y,e){return"\\"+(e-0+1)};for(var f in k.match){k.match[f]=new RegExp(k.match[f].source+(/(?![^\[]*\])(?![^\(]*\))/.source));k.leftMatch[f]=new RegExp(/(^(?:.|\r|\n)*?)/.source+k.match[f].source.replace(/\\(\d+)/g,c))}k.match.globalPOS=j;var l=function(y,e){y=Array.prototype.slice.call(y,0);if(e){e.push.apply(e,y);return e}return y};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType}catch(v){l=function(B,A){var z=0,y=A||[];if(r.call(B)==="[object Array]"){Array.prototype.push.apply(y,B)}else{if(typeof B.length==="number"){for(var e=B.length;z";e.insertBefore(y,e.firstChild);if(document.getElementById(z)){k.find.ID=function(B,C,D){if(typeof C.getElementById!=="undefined"&&!D){var A=C.getElementById(B[1]);return A?A.id===B[1]||typeof A.getAttributeNode!=="undefined"&&A.getAttributeNode("id").nodeValue===B[1]?[A]:undefined:[]}};k.filter.ID=function(C,A){var B=typeof C.getAttributeNode!=="undefined"&&C.getAttributeNode("id");return C.nodeType===1&&B&&B.nodeValue===A}}e.removeChild(y);e=y=null})();(function(){var e=document.createElement("div");e.appendChild(document.createComment(""));if(e.getElementsByTagName("*").length>0){k.find.TAG=function(y,C){var B=C.getElementsByTagName(y[1]);if(y[1]==="*"){var A=[];for(var z=0;B[z];z++){if(B[z].nodeType===1){A.push(B[z])}}B=A}return B}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){k.attrHandle.href=function(y){return y.getAttribute("href",2)}}e=null})();if(document.querySelectorAll){(function(){var e=d,A=document.createElement("div"),z="__sizzle__";A.innerHTML="

                                            ";if(A.querySelectorAll&&A.querySelectorAll(".TEST").length===0){return}d=function(L,C,G,K){C=C||document;if(!K&&!d.isXML(C)){var J=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(L);if(J&&(C.nodeType===1||C.nodeType===9)){if(J[1]){return l(C.getElementsByTagName(L),G)}else{if(J[2]&&k.find.CLASS&&C.getElementsByClassName){return l(C.getElementsByClassName(J[2]),G)}}}if(C.nodeType===9){if(L==="body"&&C.body){return l([C.body],G)}else{if(J&&J[3]){var F=C.getElementById(J[3]);if(F&&F.parentNode){if(F.id===J[3]){return l([F],G)}}else{return l([],G)}}}try{return l(C.querySelectorAll(L),G)}catch(H){}}else{if(C.nodeType===1&&C.nodeName.toLowerCase()!=="object"){var D=C,E=C.getAttribute("id"),B=E||z,N=C.parentNode,M=/^\s*[+~]/.test(L);if(!E){C.setAttribute("id",B)}else{B=B.replace(/'/g,"\\$&")}if(M&&N){C=C.parentNode}try{if(!M||N){return l(C.querySelectorAll("[id='"+B+"'] "+L),G)}}catch(I){}finally{if(!E){D.removeAttribute("id")}}}}}return e(L,C,G,K)};for(var y in e){d[y]=e[y]}A=null})()}(function(){var e=document.documentElement,z=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(z){var B=!z.call(document.createElement("div"),"div"),y=false;try{z.call(document.documentElement,"[test!='']:sizzle")}catch(A){y=true}d.matchesSelector=function(D,F){F=F.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!d.isXML(D)){try{if(y||!k.match.PSEUDO.test(F)&&!/!=/.test(F)){var C=z.call(D,F);if(C||!B||D.document&&D.document.nodeType!==11){return C}}}catch(E){}}return d(F,null,null,[D]).length>0}}})();(function(){var e=document.createElement("div");e.innerHTML="
                                            ";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}k.order.splice(1,0,"CLASS");k.find.CLASS=function(y,z,A){if(typeof z.getElementsByClassName!=="undefined"&&!A){return z.getElementsByClassName(y[1])}};e=null})();function a(y,D,C,G,E,F){for(var A=0,z=G.length;A0){B=e;break}}}e=e[y]}G[A]=B}}}if(document.documentElement.contains){d.contains=function(y,e){return y!==e&&(y.contains?y.contains(e):true)}}else{if(document.documentElement.compareDocumentPosition){d.contains=function(y,e){return !!(y.compareDocumentPosition(e)&16)}}else{d.contains=function(){return false}}}d.isXML=function(e){var y=(e?e.ownerDocument||e:0).documentElement;return y?y.nodeName!=="HTML":false};var s=function(z,e,D){var C,E=[],B="",F=e.nodeType?[e]:e;while((C=k.match.PSEUDO.exec(z))){B+=C[0];z=z.replace(k.match.PSEUDO,"")}z=k.relative[z]?z+"*":z;for(var A=0,y=F.length;A"+(i.item?i.item(0).outerHTML:i.htmlText);m.removeChild(m.firstChild)}else{m.innerHTML=i.toString()}}if(/^\s/.test(m.innerHTML)){j=" "}if(/\s+$/.test(m.innerHTML)){l=" "}h.getInner=true;h.content=g.isCollapsed()?"":j+g.serializer.serialize(m,h)+l;g.onGetContent.dispatch(g,h);return h.content},setContent:function(h,j){var o=this,g=o.getRng(),k,l=o.win.document,n,m;j=j||{format:"html"};j.set=true;h=j.content=h;if(!j.no_events){o.onBeforeSetContent.dispatch(o,j)}h=j.content;if(g.insertNode){h+='_';if(g.startContainer==l&&g.endContainer==l){l.body.innerHTML=h}else{g.deleteContents();if(l.body.childNodes.length===0){l.body.innerHTML=h}else{if(g.createContextualFragment){g.insertNode(g.createContextualFragment(h))}else{n=l.createDocumentFragment();m=l.createElement("div");n.appendChild(m);m.outerHTML=h;g.insertNode(n)}}}k=o.dom.get("__caret");g=l.createRange();g.setStartBefore(k);g.setEndBefore(k);o.setRng(g);o.dom.remove("__caret");try{o.setRng(g)}catch(i){}}else{if(g.item){l.execCommand("Delete",false,null);g=o.getRng()}if(/^\s+/.test(h)){g.pasteHTML('_'+h);o.dom.remove("__mce_tmp")}else{g.pasteHTML(h)}}if(!j.no_events){o.onSetContent.dispatch(o,j)}},getStart:function(){var i=this,h=i.getRng(),j,g,l,k;if(h.duplicate||h.item){if(h.item){return h.item(0)}l=h.duplicate();l.collapse(1);j=l.parentElement();if(j.ownerDocument!==i.dom.doc){j=i.dom.getRoot()}g=k=h.parentElement();while(k=k.parentNode){if(k==j){j=g;break}}return j}else{j=h.startContainer;if(j.nodeType==1&&j.hasChildNodes()){j=j.childNodes[Math.min(j.childNodes.length-1,h.startOffset)]}if(j&&j.nodeType==3){return j.parentNode}return j}},getEnd:function(){var h=this,g=h.getRng(),j,i;if(g.duplicate||g.item){if(g.item){return g.item(0)}g=g.duplicate();g.collapse(0);j=g.parentElement();if(j.ownerDocument!==h.dom.doc){j=h.dom.getRoot()}if(j&&j.nodeName=="BODY"){return j.lastChild||j}return j}else{j=g.endContainer;i=g.endOffset;if(j.nodeType==1&&j.hasChildNodes()){j=j.childNodes[i>0?i-1:i]}if(j&&j.nodeType==3){return j.parentNode}return j}},getBookmark:function(s,v){var y=this,n=y.dom,h,k,j,o,i,p,q,m="\uFEFF",x;function g(z,A){var t=0;e(n.select(z),function(C,B){if(C==A){t=B}});return t}function u(t){function z(E){var A,D,C,B=E?"start":"end";A=t[B+"Container"];D=t[B+"Offset"];if(A.nodeType==1&&A.nodeName=="TR"){C=A.childNodes;A=C[Math.min(E?D:D-1,C.length-1)];if(A){D=E?0:A.childNodes.length;t["set"+(E?"Start":"End")](A,D)}}}z(true);z();return t}function l(){var z=y.getRng(true),t=n.getRoot(),A={};function B(E,J){var D=E[J?"startContainer":"endContainer"],I=E[J?"startOffset":"endOffset"],C=[],F,H,G=0;if(D.nodeType==3){if(v){for(F=D.previousSibling;F&&F.nodeType==3;F=F.previousSibling){I+=F.nodeValue.length}}C.push(I)}else{H=D.childNodes;if(I>=H.length&&H.length){G=1;I=Math.max(0,H.length-1)}C.push(y.dom.nodeIndex(H[I],v)+G)}for(;D&&D!=t;D=D.parentNode){C.push(y.dom.nodeIndex(D,v))}return C}A.start=B(z,true);if(!y.isCollapsed()){A.end=B(z)}return A}if(s==2){if(y.tridentSel){return y.tridentSel.getBookmark(s)}return l()}if(s){return{rng:y.getRng()}}h=y.getRng();j=n.uniqueId();o=tinyMCE.activeEditor.selection.isCollapsed();x="overflow:hidden;line-height:0px";if(h.duplicate||h.item){if(!h.item){k=h.duplicate();try{h.collapse();h.pasteHTML(''+m+"");if(!o){k.collapse(false);h.moveToElementText(k.parentElement());if(h.compareEndPoints("StartToEnd",k)===0){k.move("character",-1)}k.pasteHTML(''+m+"")}}catch(r){return null}}else{p=h.item(0);i=p.nodeName;return{name:i,index:g(i,p)}}}else{p=y.getNode();i=p.nodeName;if(i=="IMG"){return{name:i,index:g(i,p)}}k=u(h.cloneRange());if(!o){k.collapse(false);k.insertNode(n.create("span",{"data-mce-type":"bookmark",id:j+"_end",style:x},m))}h=u(h);h.collapse(true);h.insertNode(n.create("span",{"data-mce-type":"bookmark",id:j+"_start",style:x},m))}y.moveToBookmark({id:j,keep:1});return{id:j}},moveToBookmark:function(o){var s=this,m=s.dom,j,i,g,r,k,u,p,q;function h(A){var t=o[A?"start":"end"],x,y,z,v;if(t){z=t[0];for(y=r,x=t.length-1;x>=1;x--){v=y.childNodes;if(t[x]>v.length-1){return}y=v[t[x]]}if(y.nodeType===3){z=Math.min(t[0],y.nodeValue.length)}if(y.nodeType===1){z=Math.min(t[0],y.childNodes.length)}if(A){g.setStart(y,z)}else{g.setEnd(y,z)}}return true}function l(B){var v=m.get(o.id+"_"+B),A,t,y,z,x=o.keep;if(v){A=v.parentNode;if(B=="start"){if(!x){t=m.nodeIndex(v)}else{A=v.firstChild;t=1}k=u=A;p=q=t}else{if(!x){t=m.nodeIndex(v)}else{A=v.firstChild;t=1}u=A;q=t}if(!x){z=v.previousSibling;y=v.nextSibling;e(d.grep(v.childNodes),function(C){if(C.nodeType==3){C.nodeValue=C.nodeValue.replace(/\uFEFF/g,"")}});while(v=m.get(o.id+"_"+B)){m.remove(v,1)}if(z&&y&&z.nodeType==y.nodeType&&z.nodeType==3&&!d.isOpera){t=z.nodeValue.length;z.appendData(y.nodeValue);m.remove(y);if(B=="start"){k=u=z;p=q=t}else{u=z;q=t}}}}}function n(t){if(m.isBlock(t)&&!t.innerHTML&&!b){t.innerHTML='
                                            '}return t}if(o){if(o.start){g=m.createRng();r=m.getRoot();if(s.tridentSel){return s.tridentSel.moveToBookmark(o)}if(h(true)&&h()){s.setRng(g)}}else{if(o.id){l("start");l("end");if(k){g=m.createRng();g.setStart(n(k),p);g.setEnd(n(u),q);s.setRng(g)}}else{if(o.name){s.select(m.select(o.name)[o.index])}else{if(o.rng){s.setRng(o.rng)}}}}}},select:function(l,k){var j=this,m=j.dom,h=m.createRng(),g;function i(n,p){var o=new a(n,n);do{if(n.nodeType==3&&d.trim(n.nodeValue).length!==0){if(p){h.setStart(n,0)}else{h.setEnd(n,n.nodeValue.length)}return}if(n.nodeName=="BR"){if(p){h.setStartBefore(n)}else{h.setEndBefore(n)}return}}while(n=(p?o.next():o.prev()))}if(l){g=m.nodeIndex(l);h.setStart(l.parentNode,g);h.setEnd(l.parentNode,g+1);if(k){i(l,1);i(l)}j.setRng(h)}return l},isCollapsed:function(){var g=this,i=g.getRng(),h=g.getSel();if(!i||i.item){return false}if(i.compareEndPoints){return i.compareEndPoints("StartToEnd",i)===0}return !h||i.collapsed},collapse:function(g){var i=this,h=i.getRng(),j;if(h.item){j=h.item(0);h=i.win.document.body.createTextRange();h.moveToElementText(j)}h.collapse(!!g);i.setRng(h)},getSel:function(){var h=this,g=this.win;return g.getSelection?g.getSelection():g.document.selection},getRng:function(m){var h=this,j,g,l,k=h.win.document;if(m&&h.tridentSel){return h.tridentSel.getRangeAt(0)}try{if(j=h.getSel()){g=j.rangeCount>0?j.getRangeAt(0):(j.createRange?j.createRange():k.createRange())}}catch(i){}if(d.isIE&&g&&g.setStart&&k.selection.createRange().item){l=k.selection.createRange().item(0);g=k.createRange();g.setStartBefore(l);g.setEndAfter(l)}if(!g){g=k.createRange?k.createRange():k.body.createTextRange()}if(g.setStart&&g.startContainer.nodeType===9&&g.collapsed){l=h.dom.getRoot();g.setStart(l,0);g.setEnd(l,0)}if(h.selectedRange&&h.explicitRange){if(g.compareBoundaryPoints(g.START_TO_START,h.selectedRange)===0&&g.compareBoundaryPoints(g.END_TO_END,h.selectedRange)===0){g=h.explicitRange}else{h.selectedRange=null;h.explicitRange=null}}return g},setRng:function(k,g){var j,i=this;if(!i.tridentSel){j=i.getSel();if(j){i.explicitRange=k;try{j.removeAllRanges()}catch(h){}j.addRange(k);if(g===false&&j.extend){j.collapse(k.endContainer,k.endOffset);j.extend(k.startContainer,k.startOffset)}i.selectedRange=j.rangeCount>0?j.getRangeAt(0):null}}else{if(k.cloneRange){try{i.tridentSel.addRange(k);return}catch(h){}}try{k.select()}catch(h){}}},setNode:function(h){var g=this;g.setContent(g.dom.getOuterHTML(h));return h},getNode:function(){var i=this,h=i.getRng(),j=i.getSel(),m,l=h.startContainer,g=h.endContainer;function k(q,o){var p=q;while(q&&q.nodeType===3&&q.length===0){q=o?q.nextSibling:q.previousSibling}return q||p}if(!h){return i.dom.getRoot()}if(h.setStart){m=h.commonAncestorContainer;if(!h.collapsed){if(h.startContainer==h.endContainer){if(h.endOffset-h.startOffset<2){if(h.startContainer.hasChildNodes()){m=h.startContainer.childNodes[h.startOffset]}}}if(l.nodeType===3&&g.nodeType===3){if(l.length===h.startOffset){l=k(l.nextSibling,true)}else{l=l.parentNode}if(h.endOffset===0){g=k(g.previousSibling,false)}else{g=g.parentNode}if(l&&l===g){return l}}}if(m&&m.nodeType==3){return m.parentNode}return m}return h.item?h.item(0):h.parentElement()},getSelectedBlocks:function(p,h){var o=this,k=o.dom,m,l,i,j=[];m=k.getParent(p||o.getStart(),k.isBlock);l=k.getParent(h||o.getEnd(),k.isBlock);if(m){j.push(m)}if(m&&l&&m!=l){i=m;var g=new a(m,k.getRoot());while((i=g.next())&&i!=l){if(k.isBlock(i)){j.push(i)}}}if(l&&m!=l){j.push(l)}return j},isForward:function(){var i=this.dom,g=this.getSel(),j,h;if(!g||g.anchorNode==null||g.focusNode==null){return true}j=i.createRng();j.setStart(g.anchorNode,g.anchorOffset);j.collapse(true);h=i.createRng();h.setStart(g.focusNode,g.focusOffset);h.collapse(true);return j.compareBoundaryPoints(j.START_TO_START,h)<=0},normalize:function(){var h=this,g,m,l,j,i;function k(p){var o,r,n,s=h.dom,u=s.getRoot(),q,t,v;function y(z,A){var B=new a(z,s.getParent(z.parentNode,s.isBlock)||u);while(z=B[A?"prev":"next"]()){if(z.nodeName==="BR"){return true}}}function x(B,z){var C,A;z=z||o;C=new a(z,s.getParent(z.parentNode,s.isBlock)||u);while(q=C[B?"prev":"next"]()){if(q.nodeType===3&&q.nodeValue.length>0){o=q;r=B?q.nodeValue.length:0;m=true;return}if(s.isBlock(q)||t[q.nodeName.toLowerCase()]){return}A=q}if(l&&A){o=A;m=true;r=0}}o=g[(p?"start":"end")+"Container"];r=g[(p?"start":"end")+"Offset"];t=s.schema.getNonEmptyElements();if(o.nodeType===9){o=s.getRoot();r=0}if(o===u){if(p){q=o.childNodes[r>0?r-1:0];if(q){v=q.nodeName.toLowerCase();if(t[q.nodeName]||q.nodeName=="TABLE"){return}}}if(o.hasChildNodes()){o=o.childNodes[Math.min(!p&&r>0?r-1:r,o.childNodes.length-1)];r=0;if(o.hasChildNodes()&&!/TABLE/.test(o.nodeName)){q=o;n=new a(o,u);do{if(q.nodeType===3&&q.nodeValue.length>0){r=p?0:q.nodeValue.length;o=q;m=true;break}if(t[q.nodeName.toLowerCase()]){r=s.nodeIndex(q);o=q.parentNode;if(q.nodeName=="IMG"&&!p){r++}m=true;break}}while(q=(p?n.next():n.prev()))}}}if(l){if(o.nodeType===3&&r===0){x(true)}if(o.nodeType===1){q=o.childNodes[r];if(q&&q.nodeName==="BR"&&!y(q)&&!y(q,true)){x(true,o.childNodes[r])}}}if(p&&!l&&o.nodeType===3&&r===o.nodeValue.length){x(false)}if(m){g["set"+(p?"Start":"End")](o,r)}}if(d.isIE){return}g=h.getRng();l=g.collapsed;k(true);if(!l){k()}if(m){if(l){g.collapse(true)}h.setRng(g,h.isForward())}},selectorChanged:function(g,j){var h=this,i;if(!h.selectorChangedData){h.selectorChangedData={};i={};h.editor.onNodeChange.addToTop(function(l,k,o){var p=h.dom,m=p.getParents(o,null,p.getRoot()),n={};e(h.selectorChangedData,function(r,q){e(m,function(s){if(p.is(s,q)){if(!i[q]){e(r,function(t){t(true,{node:s,selector:q,parents:m})});i[q]=r}n[q]=r;return false}})});e(i,function(r,q){if(!n[q]){delete i[q];e(r,function(s){s(false,{node:o,selector:q,parents:m})})}})})}if(!h.selectorChangedData[g]){h.selectorChangedData[g]=[]}h.selectorChangedData[g].push(j);return h},scrollIntoView:function(k){var j,h,g=this,i=g.dom;h=i.getViewPort(g.editor.getWin());j=i.getPos(k).y;if(jh.y+h.h){g.editor.getWin().scrollTo(0,j0){p.setEndPoint("StartToStart",o)}else{p.setEndPoint("EndToEnd",o)}p.select()}}else{l()}}function l(){var p=n.selection.createRange();if(o&&!p.item&&p.compareEndPoints("StartToEnd",p)===0){o.select()}h.unbind(n,"mouseup",l);h.unbind(n,"mousemove",m);o=k=0}n.documentElement.unselectable=true;h.bind(n,["mousedown","contextmenu"],function(p){if(p.target.nodeName==="HTML"){if(k){l()}g=n.documentElement;if(g.scrollHeight>g.clientHeight){return}k=1;o=j(p.x,p.y);if(o){h.bind(n,"mouseup",l);h.bind(n,"mousemove",m);h.win.focus();o.select()}}})}})})(tinymce);(function(a){a.dom.Serializer=function(e,i,f){var h,b,d=a.isIE,g=a.each,c;if(!e.apply_source_formatting){e.indent=false}i=i||a.DOM;f=f||new a.html.Schema(e);e.entity_encoding=e.entity_encoding||"named";e.remove_trailing_brs="remove_trailing_brs" in e?e.remove_trailing_brs:true;h=new a.util.Dispatcher(self);b=new a.util.Dispatcher(self);c=new a.html.DomParser(e,f);c.addAttributeFilter("src,href,style",function(k,j){var o=k.length,l,q,n="data-mce-"+j,p=e.url_converter,r=e.url_converter_scope,m;while(o--){l=k[o];q=l.attributes.map[n];if(q!==m){l.attr(j,q.length>0?q:null);l.attr(n,null)}else{q=l.attributes.map[j];if(j==="style"){q=i.serializeStyle(i.parseStyle(q),l.name)}else{if(p){q=p.call(r,q,j,l.name)}}l.attr(j,q.length>0?q:null)}}});c.addAttributeFilter("class",function(j,k){var l=j.length,m,n;while(l--){m=j[l];n=m.attr("class").replace(/(?:^|\s)mce(Item\w+|Selected)(?!\S)/g,"");m.attr("class",n.length>0?n:null)}});c.addAttributeFilter("data-mce-type",function(j,l,k){var m=j.length,n;while(m--){n=j[m];if(n.attributes.map["data-mce-type"]==="bookmark"&&!k.cleanup){n.remove()}}});c.addAttributeFilter("data-mce-expando",function(j,l,k){var m=j.length;while(m--){j[m].attr(l,null)}});c.addNodeFilter("noscript",function(j){var k=j.length,l;while(k--){l=j[k].firstChild;if(l){l.value=a.html.Entities.decode(l.value)}}});c.addNodeFilter("script,style",function(k,l){var m=k.length,n,o;function j(p){return p.replace(/()/g,"\n").replace(/^[\r\n]*|[\r\n]*$/g,"").replace(/^\s*(()?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g,"")}while(m--){n=k[m];o=n.firstChild?n.firstChild.value:"";if(l==="script"){n.attr("type",(n.attr("type")||"text/javascript").replace(/^mce\-/,""));if(o.length>0){n.firstChild.value="// "}}else{if(o.length>0){n.firstChild.value=""}}}});c.addNodeFilter("#comment",function(j,k){var l=j.length,m;while(l--){m=j[l];if(m.value.indexOf("[CDATA[")===0){m.name="#cdata";m.type=4;m.value=m.value.replace(/^\[CDATA\[|\]\]$/g,"")}else{if(m.value.indexOf("mce:protected ")===0){m.name="#text";m.type=3;m.raw=true;m.value=unescape(m.value).substr(14)}}}});c.addNodeFilter("xml:namespace,input",function(j,k){var l=j.length,m;while(l--){m=j[l];if(m.type===7){m.remove()}else{if(m.type===1){if(k==="input"&&!("type" in m.attributes.map)){m.attr("type","text")}}}}});if(e.fix_list_elements){c.addNodeFilter("ul,ol",function(k,l){var m=k.length,n,j;while(m--){n=k[m];j=n.parent;if(j.name==="ul"||j.name==="ol"){if(n.prev&&n.prev.name==="li"){n.prev.append(n)}}}})}c.addAttributeFilter("data-mce-src,data-mce-href,data-mce-style",function(j,k){var l=j.length;while(l--){j[l].attr(k,null)}});return{schema:f,addNodeFilter:c.addNodeFilter,addAttributeFilter:c.addAttributeFilter,onPreProcess:h,onPostProcess:b,serialize:function(o,m){var l,p,k,j,n;if(d&&i.select("script,style,select,map").length>0){n=o.innerHTML;o=o.cloneNode(false);i.setHTML(o,n)}else{o=o.cloneNode(true)}l=o.ownerDocument.implementation;if(l.createHTMLDocument){p=l.createHTMLDocument("");g(o.nodeName=="BODY"?o.childNodes:[o],function(q){p.body.appendChild(p.importNode(q,true))});if(o.nodeName!="BODY"){o=p.body.firstChild}else{o=p.body}k=i.doc;i.doc=p}m=m||{};m.format=m.format||"html";if(!m.no_events){m.node=o;h.dispatch(self,m)}j=new a.html.Serializer(e,f);m.content=j.serialize(c.parse(a.trim(m.getInner?o.innerHTML:i.getOuterHTML(o)),m));if(!m.cleanup){m.content=m.content.replace(/\uFEFF/g,"")}if(!m.no_events){b.dispatch(self,m)}if(k){i.doc=k}m.node=null;return m.content},addRules:function(j){f.addValidElements(j)},setRules:function(j){f.setValidElements(j)}}}})(tinymce);(function(a){a.dom.ScriptLoader=function(h){var c=0,k=1,i=2,l={},j=[],e={},d=[],g=0,f;function b(m,v){var x=this,q=a.DOM,s,o,r,n;function p(){q.remove(n);if(s){s.onreadystatechange=s.onload=s=null}v()}function u(){if(typeof(console)!=="undefined"&&console.log){console.log("Failed to load: "+m)}}n=q.uniqueId();if(a.isIE6){o=new a.util.URI(m);r=location;if(o.host==r.hostname&&o.port==r.port&&(o.protocol+":")==r.protocol&&o.protocol.toLowerCase()!="file"){a.util.XHR.send({url:a._addVer(o.getURI()),success:function(y){var t=q.create("script",{type:"text/javascript"});t.text=y;document.getElementsByTagName("head")[0].appendChild(t);q.remove(t);p()},error:u});return}}s=document.createElement("script");s.id=n;s.type="text/javascript";s.src=a._addVer(m);if(!a.isIE){s.onload=p}s.onerror=u;if(!a.isOpera){s.onreadystatechange=function(){var t=s.readyState;if(t=="complete"||t=="loaded"){p()}}}(document.getElementsByTagName("head")[0]||document.body).appendChild(s)}this.isDone=function(m){return l[m]==i};this.markDone=function(m){l[m]=i};this.add=this.load=function(m,q,n){var o,p=l[m];if(p==f){j.push(m);l[m]=c}if(q){if(!e[m]){e[m]=[]}e[m].push({func:q,scope:n||this})}};this.loadQueue=function(n,m){this.loadScripts(j,n,m)};this.loadScripts=function(m,q,p){var o;function n(r){a.each(e[r],function(s){s.func.call(s.scope)});e[r]=f}d.push({func:q,scope:p||this});o=function(){var r=a.grep(m);m.length=0;a.each(r,function(s){if(l[s]==i){n(s);return}if(l[s]!=k){l[s]=k;g++;b(s,function(){l[s]=i;g--;n(s);o()})}});if(!g){a.each(d,function(s){s.func.call(s.scope)});d.length=0}};o()}};a.ScriptLoader=new a.dom.ScriptLoader()})(tinymce);(function(a){a.dom.RangeUtils=function(c){var b="\uFEFF";this.walk=function(d,s){var i=d.startContainer,l=d.startOffset,t=d.endContainer,m=d.endOffset,j,g,o,h,r,q,e;e=c.select("td.mceSelected,th.mceSelected");if(e.length>0){a.each(e,function(u){s([u])});return}function f(u){var v;v=u[0];if(v.nodeType===3&&v===i&&l>=v.nodeValue.length){u.splice(0,1)}v=u[u.length-1];if(m===0&&u.length>0&&v===t&&v.nodeType===3){u.splice(u.length-1,1)}return u}function p(x,v,u){var y=[];for(;x&&x!=u;x=x[v]){y.push(x)}return y}function n(v,u){do{if(v.parentNode==u){return v}v=v.parentNode}while(v)}function k(x,v,y){var u=y?"nextSibling":"previousSibling";for(h=x,r=h.parentNode;h&&h!=v;h=r){r=h.parentNode;q=p(h==x?h:h[u],u);if(q.length){if(!y){q.reverse()}s(f(q))}}}if(i.nodeType==1&&i.hasChildNodes()){i=i.childNodes[l]}if(t.nodeType==1&&t.hasChildNodes()){t=t.childNodes[Math.min(m-1,t.childNodes.length-1)]}if(i==t){return s(f([i]))}j=c.findCommonAncestor(i,t);for(h=i;h;h=h.parentNode){if(h===t){return k(i,j,true)}if(h===j){break}}for(h=t;h;h=h.parentNode){if(h===i){return k(t,j)}if(h===j){break}}g=n(i,j)||i;o=n(t,j)||t;k(i,g,true);q=p(g==i?g:g.nextSibling,"nextSibling",o==t?o.nextSibling:o);if(q.length){s(f(q))}k(t,o)};this.split=function(e){var h=e.startContainer,d=e.startOffset,i=e.endContainer,g=e.endOffset;function f(j,k){return j.splitText(k)}if(h==i&&h.nodeType==3){if(d>0&&dd){g=g-d;h=i=f(i,g).previousSibling;g=i.nodeValue.length;d=0}else{g=0}}}else{if(h.nodeType==3&&d>0&&d0&&g=m.length){r=0}}t=m[r];f.setAttrib(g,"tabindex","-1");f.setAttrib(t.id,"tabindex","0");f.get(t.id).focus();if(e.actOnFocus){e.onAction(t.id)}if(s){a.cancel(s)}};p=function(z){var v=37,u=39,y=38,A=40,r=27,t=14,s=13,x=32;switch(z.keyCode){case v:if(i){q.moveFocus(-1)}break;case u:if(i){q.moveFocus(1)}break;case y:if(o){q.moveFocus(-1)}break;case A:if(o){q.moveFocus(1)}break;case r:if(e.onCancel){e.onCancel();a.cancel(z)}break;case t:case s:case x:if(e.onAction){e.onAction(g);a.cancel(z)}break}};c(m,function(t,r){var s,u;if(!t.id){t.id=f.uniqueId("_mce_item_")}u=f.get(t.id);if(l){f.bind(u,"blur",h);s="-1"}else{s=(r===0?"0":"-1")}u.setAttribute("tabindex",s);f.bind(u,"focus",k)});if(m[0]){g=m[0].id}f.setAttrib(n,"tabindex","-1");var j=f.get(n);f.bind(j,"focus",d);f.bind(j,"keydown",p)}})})(tinymce);(function(c){var b=c.DOM,a=c.is;c.create("tinymce.ui.Control",{Control:function(f,e,d){this.id=f;this.settings=e=e||{};this.rendered=false;this.onRender=new c.util.Dispatcher(this);this.classPrefix="";this.scope=e.scope||this;this.disabled=0;this.active=0;this.editor=d},setAriaProperty:function(f,e){var d=b.get(this.id+"_aria")||b.get(this.id);if(d){b.setAttrib(d,"aria-"+f,!!e)}},focus:function(){b.get(this.id).focus()},setDisabled:function(d){if(d!=this.disabled){this.setAriaProperty("disabled",d);this.setState("Disabled",d);this.setState("Enabled",!d);this.disabled=d}},isDisabled:function(){return this.disabled},setActive:function(d){if(d!=this.active){this.setState("Active",d);this.active=d;this.setAriaProperty("pressed",d)}},isActive:function(){return this.active},setState:function(f,d){var e=b.get(this.id);f=this.classPrefix+f;if(d){b.addClass(e,f)}else{b.removeClass(e,f)}},isRendered:function(){return this.rendered},renderHTML:function(){},renderTo:function(d){b.setHTML(d,this.renderHTML())},postRender:function(){var e=this,d;if(a(e.disabled)){d=e.disabled;e.disabled=-1;e.setDisabled(d)}if(a(e.active)){d=e.active;e.active=-1;e.setActive(d)}},remove:function(){b.remove(this.id);this.destroy()},destroy:function(){c.dom.Event.clear(this.id)}})})(tinymce);tinymce.create("tinymce.ui.Container:tinymce.ui.Control",{Container:function(c,b,a){this.parent(c,b,a);this.controls=[];this.lookup={}},add:function(a){this.lookup[a.id]=a;this.controls.push(a);return a},get:function(a){return this.lookup[a]}});tinymce.create("tinymce.ui.Separator:tinymce.ui.Control",{Separator:function(b,a){this.parent(b,a);this.classPrefix="mceSeparator";this.setDisabled(true)},renderHTML:function(){return tinymce.DOM.createHTML("span",{"class":this.classPrefix,role:"separator","aria-orientation":"vertical",tabindex:"-1"})}});(function(d){var c=d.is,b=d.DOM,e=d.each,a=d.walk;d.create("tinymce.ui.MenuItem:tinymce.ui.Control",{MenuItem:function(g,f){this.parent(g,f);this.classPrefix="mceMenuItem"},setSelected:function(f){this.setState("Selected",f);this.setAriaProperty("checked",!!f);this.selected=f},isSelected:function(){return this.selected},postRender:function(){var f=this;f.parent();if(c(f.selected)){f.setSelected(f.selected)}}})})(tinymce);(function(d){var c=d.is,b=d.DOM,e=d.each,a=d.walk;d.create("tinymce.ui.Menu:tinymce.ui.MenuItem",{Menu:function(h,g){var f=this;f.parent(h,g);f.items={};f.collapsed=false;f.menuCount=0;f.onAddItem=new d.util.Dispatcher(this)},expand:function(g){var f=this;if(g){a(f,function(h){if(h.expand){h.expand()}},"items",f)}f.collapsed=false},collapse:function(g){var f=this;if(g){a(f,function(h){if(h.collapse){h.collapse()}},"items",f)}f.collapsed=true},isCollapsed:function(){return this.collapsed},add:function(f){if(!f.settings){f=new d.ui.MenuItem(f.id||b.uniqueId(),f)}this.onAddItem.dispatch(this,f);return this.items[f.id]=f},addSeparator:function(){return this.add({separator:true})},addMenu:function(f){if(!f.collapse){f=this.createMenu(f)}this.menuCount++;return this.add(f)},hasMenus:function(){return this.menuCount!==0},remove:function(f){delete this.items[f.id]},removeAll:function(){var f=this;a(f,function(g){if(g.removeAll){g.removeAll()}else{g.remove()}g.destroy()},"items",f);f.items={}},createMenu:function(g){var f=new d.ui.Menu(g.id||b.uniqueId(),g);f.onAddItem.add(this.onAddItem.dispatch,this.onAddItem);return f}})})(tinymce);(function(e){var d=e.is,c=e.DOM,f=e.each,a=e.dom.Event,b=e.dom.Element;e.create("tinymce.ui.DropMenu:tinymce.ui.Menu",{DropMenu:function(h,g){g=g||{};g.container=g.container||c.doc.body;g.offset_x=g.offset_x||0;g.offset_y=g.offset_y||0;g.vp_offset_x=g.vp_offset_x||0;g.vp_offset_y=g.vp_offset_y||0;if(d(g.icons)&&!g.icons){g["class"]+=" mceNoIcons"}this.parent(h,g);this.onShowMenu=new e.util.Dispatcher(this);this.onHideMenu=new e.util.Dispatcher(this);this.classPrefix="mceMenu"},createMenu:function(j){var h=this,i=h.settings,g;j.container=j.container||i.container;j.parent=h;j.constrain=j.constrain||i.constrain;j["class"]=j["class"]||i["class"];j.vp_offset_x=j.vp_offset_x||i.vp_offset_x;j.vp_offset_y=j.vp_offset_y||i.vp_offset_y;j.keyboard_focus=i.keyboard_focus;g=new e.ui.DropMenu(j.id||c.uniqueId(),j);g.onAddItem.add(h.onAddItem.dispatch,h.onAddItem);return g},focus:function(){var g=this;if(g.keyboardNav){g.keyboardNav.focus()}},update:function(){var i=this,j=i.settings,g=c.get("menu_"+i.id+"_tbl"),l=c.get("menu_"+i.id+"_co"),h,k;h=j.max_width?Math.min(g.offsetWidth,j.max_width):g.offsetWidth;k=j.max_height?Math.min(g.offsetHeight,j.max_height):g.offsetHeight;if(!c.boxModel){i.element.setStyles({width:h+2,height:k+2})}else{i.element.setStyles({width:h,height:k})}if(j.max_width){c.setStyle(l,"width",h)}if(j.max_height){c.setStyle(l,"height",k);if(g.clientHeightv){p=r?r-u:Math.max(0,(v-A.vp_offset_x)-u)}if((n+A.vp_offset_y+l)>q){n=Math.max(0,(q-A.vp_offset_y)-l)}}c.setStyles(o,{left:p,top:n});z.element.update();z.isMenuVisible=1;z.mouseClickFunc=a.add(o,"click",function(s){var h;s=s.target;if(s&&(s=c.getParent(s,"tr"))&&!c.hasClass(s,m+"ItemSub")){h=z.items[s.id];if(h.isDisabled()){return}k=z;while(k){if(k.hideMenu){k.hideMenu()}k=k.settings.parent}if(h.settings.onclick){h.settings.onclick(s)}return false}});if(z.hasMenus()){z.mouseOverFunc=a.add(o,"mouseover",function(x){var h,t,s;x=x.target;if(x&&(x=c.getParent(x,"tr"))){h=z.items[x.id];if(z.lastMenu){z.lastMenu.collapse(1)}if(h.isDisabled()){return}if(x&&c.hasClass(x,m+"ItemSub")){t=c.getRect(x);h.showMenu((t.x+t.w-i),t.y-i,t.x);z.lastMenu=h;c.addClass(c.get(h.id).firstChild,m+"ItemActive")}}})}a.add(o,"keydown",z._keyHandler,z);z.onShowMenu.dispatch(z);if(A.keyboard_focus){z._setupKeyboardNav()}},hideMenu:function(j){var g=this,i=c.get("menu_"+g.id),h;if(!g.isMenuVisible){return}if(g.keyboardNav){g.keyboardNav.destroy()}a.remove(i,"mouseover",g.mouseOverFunc);a.remove(i,"click",g.mouseClickFunc);a.remove(i,"keydown",g._keyHandler);c.hide(i);g.isMenuVisible=0;if(!j){g.collapse(1)}if(g.element){g.element.hide()}if(h=c.get(g.id)){c.removeClass(h.firstChild,g.classPrefix+"ItemActive")}g.onHideMenu.dispatch(g)},add:function(i){var g=this,h;i=g.parent(i);if(g.isRendered&&(h=c.get("menu_"+g.id))){g._add(c.select("tbody",h)[0],i)}return i},collapse:function(g){this.parent(g);this.hideMenu(1)},remove:function(g){c.remove(g.id);this.destroy();return this.parent(g)},destroy:function(){var g=this,h=c.get("menu_"+g.id);if(g.keyboardNav){g.keyboardNav.destroy()}a.remove(h,"mouseover",g.mouseOverFunc);a.remove(c.select("a",h),"focus",g.mouseOverFunc);a.remove(h,"click",g.mouseClickFunc);a.remove(h,"keydown",g._keyHandler);if(g.element){g.element.remove()}c.remove(h)},renderNode:function(){var i=this,j=i.settings,l,h,k,g;g=c.create("div",{role:"listbox",id:"menu_"+i.id,"class":j["class"],style:"position:absolute;left:0;top:0;z-index:200000;outline:0"});if(i.settings.parent){c.setAttrib(g,"aria-parent","menu_"+i.settings.parent.id)}k=c.add(g,"div",{role:"presentation",id:"menu_"+i.id+"_co","class":i.classPrefix+(j["class"]?" "+j["class"]:"")});i.element=new b("menu_"+i.id,{blocker:1,container:j.container});if(j.menu_line){c.add(k,"span",{"class":i.classPrefix+"Line"})}l=c.add(k,"table",{role:"presentation",id:"menu_"+i.id+"_tbl",border:0,cellPadding:0,cellSpacing:0});h=c.add(l,"tbody");f(i.items,function(m){i._add(h,m)});i.rendered=true;return g},_setupKeyboardNav:function(){var i,h,g=this;i=c.get("menu_"+g.id);h=c.select("a[role=option]","menu_"+g.id);h.splice(0,0,i);g.keyboardNav=new e.ui.KeyboardNavigation({root:"menu_"+g.id,items:h,onCancel:function(){g.hideMenu()},enableUpDown:true});i.focus()},_keyHandler:function(g){var h=this,i;switch(g.keyCode){case 37:if(h.settings.parent){h.hideMenu();h.settings.parent.focus();a.cancel(g)}break;case 39:if(h.mouseOverFunc){h.mouseOverFunc(g)}break}},_add:function(j,h){var i,q=h.settings,p,l,k,m=this.classPrefix,g;if(q.separator){l=c.add(j,"tr",{id:h.id,"class":m+"ItemSeparator"});c.add(l,"td",{"class":m+"ItemSeparator"});if(i=l.previousSibling){c.addClass(i,"mceLast")}return}i=l=c.add(j,"tr",{id:h.id,"class":m+"Item "+m+"ItemEnabled"});i=k=c.add(i,q.titleItem?"th":"td");i=p=c.add(i,"a",{id:h.id+"_aria",role:q.titleItem?"presentation":"option",href:"javascript:;",onclick:"return false;",onmousedown:"return false;"});if(q.parent){c.setAttrib(p,"aria-haspopup","true");c.setAttrib(p,"aria-owns","menu_"+h.id)}c.addClass(k,q["class"]);g=c.add(i,"span",{"class":"mceIcon"+(q.icon?" mce_"+q.icon:"")});if(q.icon_src){c.add(g,"img",{src:q.icon_src})}i=c.add(i,q.element||"span",{"class":"mceText",title:h.settings.title},h.settings.title);if(h.settings.style){if(typeof h.settings.style=="function"){h.settings.style=h.settings.style()}c.setAttrib(i,"style",h.settings.style)}if(j.childNodes.length==1){c.addClass(l,"mceFirst")}if((i=l.previousSibling)&&c.hasClass(i,m+"ItemSeparator")){c.addClass(l,"mceFirst")}if(h.collapse){c.addClass(l,m+"ItemSub")}if(i=l.previousSibling){c.removeClass(i,"mceLast")}c.addClass(l,"mceLast")}})})(tinymce);(function(b){var a=b.DOM;b.create("tinymce.ui.Button:tinymce.ui.Control",{Button:function(e,d,c){this.parent(e,d,c);this.classPrefix="mceButton"},renderHTML:function(){var f=this.classPrefix,e=this.settings,d,c;c=a.encode(e.label||"");d='';if(e.image&&!(this.editor&&this.editor.forcedHighContrastMode)){d+=''+a.encode(e.title)+''+(c?''+c+"":"")}else{d+=''+(c?''+c+"":"")}d+='";d+="";return d},postRender:function(){var d=this,e=d.settings,c;if(b.isIE&&d.editor){b.dom.Event.add(d.id,"mousedown",function(f){var g=d.editor.selection.getNode().nodeName;c=g==="IMG"?d.editor.selection.getBookmark():null})}b.dom.Event.add(d.id,"click",function(f){if(!d.isDisabled()){if(b.isIE&&d.editor&&c!==null){d.editor.selection.moveToBookmark(c)}return e.onclick.call(e.scope,f)}});b.dom.Event.add(d.id,"keyup",function(f){if(!d.isDisabled()&&f.keyCode==b.VK.SPACEBAR){return e.onclick.call(e.scope,f)}})}})})(tinymce);(function(e){var d=e.DOM,b=e.dom.Event,f=e.each,a=e.util.Dispatcher,c;e.create("tinymce.ui.ListBox:tinymce.ui.Control",{ListBox:function(j,i,g){var h=this;h.parent(j,i,g);h.items=[];h.onChange=new a(h);h.onPostRender=new a(h);h.onAdd=new a(h);h.onRenderMenu=new e.util.Dispatcher(this);h.classPrefix="mceListBox";h.marked={}},select:function(h){var g=this,j,i;g.marked={};if(h==c){return g.selectByIndex(-1)}if(h&&typeof(h)=="function"){i=h}else{i=function(k){return k==h}}if(h!=g.selectedValue){f(g.items,function(l,k){if(i(l.value)){j=1;g.selectByIndex(k);return false}});if(!j){g.selectByIndex(-1)}}},selectByIndex:function(g){var i=this,j,k,h;i.marked={};if(g!=i.selectedIndex){j=d.get(i.id+"_text");h=d.get(i.id+"_voiceDesc");k=i.items[g];if(k){i.selectedValue=k.value;i.selectedIndex=g;d.setHTML(j,d.encode(k.title));d.setHTML(h,i.settings.title+" - "+k.title);d.removeClass(j,"mceTitle");d.setAttrib(i.id,"aria-valuenow",k.title)}else{d.setHTML(j,d.encode(i.settings.title));d.setHTML(h,d.encode(i.settings.title));d.addClass(j,"mceTitle");i.selectedValue=i.selectedIndex=null;d.setAttrib(i.id,"aria-valuenow",i.settings.title)}j=0}},mark:function(g){this.marked[g]=true},add:function(j,g,i){var h=this;i=i||{};i=e.extend(i,{title:j,value:g});h.items.push(i);h.onAdd.dispatch(h,i)},getLength:function(){return this.items.length},renderHTML:function(){var j="",g=this,i=g.settings,k=g.classPrefix;j='';j+="";j+="";j+="";return j},showMenu:function(){var h=this,j,i=d.get(this.id),g;if(h.isDisabled()||h.items.length===0){return}if(h.menu&&h.menu.isMenuVisible){return h.hideMenu()}if(!h.isMenuRendered){h.renderMenu();h.isMenuRendered=true}j=d.getPos(i);g=h.menu;g.settings.offset_x=j.x;g.settings.offset_y=j.y;g.settings.keyboard_focus=!e.isOpera;f(h.items,function(k){if(g.items[k.id]){g.items[k.id].setSelected(0)}});f(h.items,function(k){if(g.items[k.id]&&h.marked[k.value]){g.items[k.id].setSelected(1)}if(k.value===h.selectedValue){g.items[k.id].setSelected(1)}});g.showMenu(0,i.clientHeight);b.add(d.doc,"mousedown",h.hideMenu,h);d.addClass(h.id,h.classPrefix+"Selected")},hideMenu:function(h){var g=this;if(g.menu&&g.menu.isMenuVisible){d.removeClass(g.id,g.classPrefix+"Selected");if(h&&h.type=="mousedown"&&(h.target.id==g.id+"_text"||h.target.id==g.id+"_open")){return}if(!h||!d.getParent(h.target,".mceMenu")){d.removeClass(g.id,g.classPrefix+"Selected");b.remove(d.doc,"mousedown",g.hideMenu,g);g.menu.hideMenu()}}},renderMenu:function(){var h=this,g;g=h.settings.control_manager.createDropMenu(h.id+"_menu",{menu_line:1,"class":h.classPrefix+"Menu mceNoIcons",max_width:250,max_height:150});g.onHideMenu.add(function(){h.hideMenu();h.focus()});g.add({title:h.settings.title,"class":"mceMenuItemTitle",onclick:function(){if(h.settings.onselect("")!==false){h.select("")}}});f(h.items,function(i){if(i.value===c){g.add({title:i.title,role:"option","class":"mceMenuItemTitle",onclick:function(){if(h.settings.onselect("")!==false){h.select("")}}})}else{i.id=d.uniqueId();i.role="option";i.onclick=function(){if(h.settings.onselect(i.value)!==false){h.select(i.value)}};g.add(i)}});h.onRenderMenu.dispatch(h,g);h.menu=g},postRender:function(){var g=this,h=g.classPrefix;b.add(g.id,"click",g.showMenu,g);b.add(g.id,"keydown",function(i){if(i.keyCode==32){g.showMenu(i);b.cancel(i)}});b.add(g.id,"focus",function(){if(!g._focused){g.keyDownHandler=b.add(g.id,"keydown",function(i){if(i.keyCode==40){g.showMenu();b.cancel(i)}});g.keyPressHandler=b.add(g.id,"keypress",function(j){var i;if(j.keyCode==13){i=g.selectedValue;g.selectedValue=null;b.cancel(j);g.settings.onselect(i)}})}g._focused=1});b.add(g.id,"blur",function(){b.remove(g.id,"keydown",g.keyDownHandler);b.remove(g.id,"keypress",g.keyPressHandler);g._focused=0});if(e.isIE6||!d.boxModel){b.add(g.id,"mouseover",function(){if(!d.hasClass(g.id,h+"Disabled")){d.addClass(g.id,h+"Hover")}});b.add(g.id,"mouseout",function(){if(!d.hasClass(g.id,h+"Disabled")){d.removeClass(g.id,h+"Hover")}})}g.onPostRender.dispatch(g,d.get(g.id))},destroy:function(){this.parent();b.clear(this.id+"_text");b.clear(this.id+"_open")}})})(tinymce);(function(e){var d=e.DOM,b=e.dom.Event,f=e.each,a=e.util.Dispatcher,c;e.create("tinymce.ui.NativeListBox:tinymce.ui.ListBox",{NativeListBox:function(h,g){this.parent(h,g);this.classPrefix="mceNativeListBox"},setDisabled:function(g){d.get(this.id).disabled=g;this.setAriaProperty("disabled",g)},isDisabled:function(){return d.get(this.id).disabled},select:function(h){var g=this,j,i;if(h==c){return g.selectByIndex(-1)}if(h&&typeof(h)=="function"){i=h}else{i=function(k){return k==h}}if(h!=g.selectedValue){f(g.items,function(l,k){if(i(l.value)){j=1;g.selectByIndex(k);return false}});if(!j){g.selectByIndex(-1)}}},selectByIndex:function(g){d.get(this.id).selectedIndex=g+1;this.selectedValue=this.items[g]?this.items[g].value:null},add:function(k,h,g){var j,i=this;g=g||{};g.value=h;if(i.isRendered()){d.add(d.get(this.id),"option",g,k)}j={title:k,value:h,attribs:g};i.items.push(j);i.onAdd.dispatch(i,j)},getLength:function(){return this.items.length},renderHTML:function(){var i,g=this;i=d.createHTML("option",{value:""},"-- "+g.settings.title+" --");f(g.items,function(h){i+=d.createHTML("option",{value:h.value},h.title)});i=d.createHTML("select",{id:g.id,"class":"mceNativeListBox","aria-labelledby":g.id+"_aria"},i);i+=d.createHTML("span",{id:g.id+"_aria",style:"display: none"},g.settings.title);return i},postRender:function(){var h=this,i,j=true;h.rendered=true;function g(l){var k=h.items[l.target.selectedIndex-1];if(k&&(k=k.value)){h.onChange.dispatch(h,k);if(h.settings.onselect){h.settings.onselect(k)}}}b.add(h.id,"change",g);b.add(h.id,"keydown",function(l){var k;b.remove(h.id,"change",i);j=false;k=b.add(h.id,"blur",function(){if(j){return}j=true;b.add(h.id,"change",g);b.remove(h.id,"blur",k)});if(e.isWebKit&&(l.keyCode==37||l.keyCode==39)){return b.prevent(l)}if(l.keyCode==13||l.keyCode==32){g(l);return b.cancel(l)}});h.onPostRender.dispatch(h,d.get(h.id))}})})(tinymce);(function(c){var b=c.DOM,a=c.dom.Event,d=c.each;c.create("tinymce.ui.MenuButton:tinymce.ui.Button",{MenuButton:function(g,f,e){this.parent(g,f,e);this.onRenderMenu=new c.util.Dispatcher(this);f.menu_container=f.menu_container||b.doc.body},showMenu:function(){var g=this,j,i,h=b.get(g.id),f;if(g.isDisabled()){return}if(!g.isMenuRendered){g.renderMenu();g.isMenuRendered=true}if(g.isMenuVisible){return g.hideMenu()}j=b.getPos(g.settings.menu_container);i=b.getPos(h);f=g.menu;f.settings.offset_x=i.x;f.settings.offset_y=i.y;f.settings.vp_offset_x=i.x;f.settings.vp_offset_y=i.y;f.settings.keyboard_focus=g._focused;f.showMenu(0,h.firstChild.clientHeight);a.add(b.doc,"mousedown",g.hideMenu,g);g.setState("Selected",1);g.isMenuVisible=1},renderMenu:function(){var f=this,e;e=f.settings.control_manager.createDropMenu(f.id+"_menu",{menu_line:1,"class":this.classPrefix+"Menu",icons:f.settings.icons});e.onHideMenu.add(function(){f.hideMenu();f.focus()});f.onRenderMenu.dispatch(f,e);f.menu=e},hideMenu:function(g){var f=this;if(g&&g.type=="mousedown"&&b.getParent(g.target,function(h){return h.id===f.id||h.id===f.id+"_open"})){return}if(!g||!b.getParent(g.target,".mceMenu")){f.setState("Selected",0);a.remove(b.doc,"mousedown",f.hideMenu,f);if(f.menu){f.menu.hideMenu()}}f.isMenuVisible=0},postRender:function(){var e=this,f=e.settings;a.add(e.id,"click",function(){if(!e.isDisabled()){if(f.onclick){f.onclick(e.value)}e.showMenu()}})}})})(tinymce);(function(c){var b=c.DOM,a=c.dom.Event,d=c.each;c.create("tinymce.ui.SplitButton:tinymce.ui.MenuButton",{SplitButton:function(g,f,e){this.parent(g,f,e);this.classPrefix="mceSplitButton"},renderHTML:function(){var i,f=this,g=f.settings,e;i="";if(g.image){e=b.createHTML("img ",{src:g.image,role:"presentation","class":"mceAction "+g["class"]})}else{e=b.createHTML("span",{"class":"mceAction "+g["class"]},"")}e+=b.createHTML("span",{"class":"mceVoiceLabel mceIconOnly",id:f.id+"_voice",style:"display:none;"},g.title);i+=""+b.createHTML("a",{role:"button",id:f.id+"_action",tabindex:"-1",href:"javascript:;","class":"mceAction "+g["class"],onclick:"return false;",onmousedown:"return false;",title:g.title},e)+"";e=b.createHTML("span",{"class":"mceOpen "+g["class"]},'');i+=""+b.createHTML("a",{role:"button",id:f.id+"_open",tabindex:"-1",href:"javascript:;","class":"mceOpen "+g["class"],onclick:"return false;",onmousedown:"return false;",title:g.title},e)+"";i+="";i=b.createHTML("table",{role:"presentation","class":"mceSplitButton mceSplitButtonEnabled "+g["class"],cellpadding:"0",cellspacing:"0",title:g.title},i);return b.createHTML("div",{id:f.id,role:"button",tabindex:"0","aria-labelledby":f.id+"_voice","aria-haspopup":"true"},i)},postRender:function(){var e=this,g=e.settings,f;if(g.onclick){f=function(h){if(!e.isDisabled()){g.onclick(e.value);a.cancel(h)}};a.add(e.id+"_action","click",f);a.add(e.id,["click","keydown"],function(h){var k=32,m=14,i=13,j=38,l=40;if((h.keyCode===32||h.keyCode===13||h.keyCode===14)&&!h.altKey&&!h.ctrlKey&&!h.metaKey){f();a.cancel(h)}else{if(h.type==="click"||h.keyCode===l){e.showMenu();a.cancel(h)}}})}a.add(e.id+"_open","click",function(h){e.showMenu();a.cancel(h)});a.add([e.id,e.id+"_open"],"focus",function(){e._focused=1});a.add([e.id,e.id+"_open"],"blur",function(){e._focused=0});if(c.isIE6||!b.boxModel){a.add(e.id,"mouseover",function(){if(!b.hasClass(e.id,"mceSplitButtonDisabled")){b.addClass(e.id,"mceSplitButtonHover")}});a.add(e.id,"mouseout",function(){if(!b.hasClass(e.id,"mceSplitButtonDisabled")){b.removeClass(e.id,"mceSplitButtonHover")}})}},destroy:function(){this.parent();a.clear(this.id+"_action");a.clear(this.id+"_open");a.clear(this.id)}})})(tinymce);(function(d){var c=d.DOM,a=d.dom.Event,b=d.is,e=d.each;d.create("tinymce.ui.ColorSplitButton:tinymce.ui.SplitButton",{ColorSplitButton:function(i,h,f){var g=this;g.parent(i,h,f);g.settings=h=d.extend({colors:"000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,008000,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF",grid_width:8,default_color:"#888888"},g.settings);g.onShowMenu=new d.util.Dispatcher(g);g.onHideMenu=new d.util.Dispatcher(g);g.value=h.default_color},showMenu:function(){var f=this,g,j,i,h;if(f.isDisabled()){return}if(!f.isMenuRendered){f.renderMenu();f.isMenuRendered=true}if(f.isMenuVisible){return f.hideMenu()}i=c.get(f.id);c.show(f.id+"_menu");c.addClass(i,"mceSplitButtonSelected");h=c.getPos(i);c.setStyles(f.id+"_menu",{left:h.x,top:h.y+i.firstChild.clientHeight,zIndex:200000});i=0;a.add(c.doc,"mousedown",f.hideMenu,f);f.onShowMenu.dispatch(f);if(f._focused){f._keyHandler=a.add(f.id+"_menu","keydown",function(k){if(k.keyCode==27){f.hideMenu()}});c.select("a",f.id+"_menu")[0].focus()}f.keyboardNav=new d.ui.KeyboardNavigation({root:f.id+"_menu",items:c.select("a",f.id+"_menu"),onCancel:function(){f.hideMenu();f.focus()}});f.keyboardNav.focus();f.isMenuVisible=1},hideMenu:function(g){var f=this;if(f.isMenuVisible){if(g&&g.type=="mousedown"&&c.getParent(g.target,function(h){return h.id===f.id+"_open"})){return}if(!g||!c.getParent(g.target,".mceSplitButtonMenu")){c.removeClass(f.id,"mceSplitButtonSelected");a.remove(c.doc,"mousedown",f.hideMenu,f);a.remove(f.id+"_menu","keydown",f._keyHandler);c.hide(f.id+"_menu")}f.isMenuVisible=0;f.onHideMenu.dispatch();f.keyboardNav.destroy()}},renderMenu:function(){var p=this,h,k=0,q=p.settings,g,j,l,o,f;o=c.add(q.menu_container,"div",{role:"listbox",id:p.id+"_menu","class":q.menu_class+" "+q["class"],style:"position:absolute;left:0;top:-1000px;"});h=c.add(o,"div",{"class":q["class"]+" mceSplitButtonMenu"});c.add(h,"span",{"class":"mceMenuLine"});g=c.add(h,"table",{role:"presentation","class":"mceColorSplitMenu"});j=c.add(g,"tbody");k=0;e(b(q.colors,"array")?q.colors:q.colors.split(","),function(m){m=m.replace(/^#/,"");if(!k--){l=c.add(j,"tr");k=q.grid_width-1}g=c.add(l,"td");var i={href:"javascript:;",style:{backgroundColor:"#"+m},title:p.editor.getLang("colors."+m,m),"data-mce-color":"#"+m};if(!d.isIE){i.role="option"}g=c.add(g,"a",i);if(p.editor.forcedHighContrastMode){g=c.add(g,"canvas",{width:16,height:16,"aria-hidden":"true"});if(g.getContext&&(f=g.getContext("2d"))){f.fillStyle="#"+m;f.fillRect(0,0,16,16)}else{c.remove(g)}}});if(q.more_colors_func){g=c.add(j,"tr");g=c.add(g,"td",{colspan:q.grid_width,"class":"mceMoreColors"});g=c.add(g,"a",{role:"option",id:p.id+"_more",href:"javascript:;",onclick:"return false;","class":"mceMoreColors"},q.more_colors_title);a.add(g,"click",function(i){q.more_colors_func.call(q.more_colors_scope||this);return a.cancel(i)})}c.addClass(h,"mceColorSplitMenu");a.add(p.id+"_menu","mousedown",function(i){return a.cancel(i)});a.add(p.id+"_menu","click",function(i){var m;i=c.getParent(i.target,"a",j);if(i&&i.nodeName.toLowerCase()=="a"&&(m=i.getAttribute("data-mce-color"))){p.setColor(m)}return false});return o},setColor:function(f){this.displayColor(f);this.hideMenu();this.settings.onselect(f)},displayColor:function(g){var f=this;c.setStyle(f.id+"_preview","backgroundColor",g);f.value=g},postRender:function(){var f=this,g=f.id;f.parent();c.add(g+"_action","div",{id:g+"_preview","class":"mceColorPreview"});c.setStyle(f.id+"_preview","backgroundColor",f.value)},destroy:function(){var f=this;f.parent();a.clear(f.id+"_menu");a.clear(f.id+"_more");c.remove(f.id+"_menu");if(f.keyboardNav){f.keyboardNav.destroy()}}})})(tinymce);(function(b){var d=b.DOM,c=b.each,a=b.dom.Event;b.create("tinymce.ui.ToolbarGroup:tinymce.ui.Container",{renderHTML:function(){var f=this,i=[],e=f.controls,j=b.each,g=f.settings;i.push('
                                            ');i.push("");i.push('");j(e,function(h){i.push(h.renderHTML())});i.push("");i.push("
                                            ");return i.join("")},focus:function(){var e=this;d.get(e.id).focus()},postRender:function(){var f=this,e=[];c(f.controls,function(g){c(g.controls,function(h){if(h.id){e.push(h)}})});f.keyNav=new b.ui.KeyboardNavigation({root:f.id,items:e,onCancel:function(){if(b.isWebKit){d.get(f.editor.id+"_ifr").focus()}f.editor.focus()},excludeFromTabOrder:!f.settings.tab_focus_toolbar})},destroy:function(){var e=this;e.parent();e.keyNav.destroy();a.clear(e.id)}})})(tinymce);(function(a){var c=a.DOM,b=a.each;a.create("tinymce.ui.Toolbar:tinymce.ui.Container",{renderHTML:function(){var m=this,f="",j,k,n=m.settings,e,d,g,l;l=m.controls;for(e=0;e"))}if(d&&k.ListBox){if(d.Button||d.SplitButton){f+=c.createHTML("td",{"class":"mceToolbarEnd"},c.createHTML("span",null,""))}}if(c.stdMode){f+=''+k.renderHTML()+""}else{f+=""+k.renderHTML()+""}if(g&&k.ListBox){if(g.Button||g.SplitButton){f+=c.createHTML("td",{"class":"mceToolbarStart"},c.createHTML("span",null,""))}}}j="mceToolbarEnd";if(k.Button){j+=" mceToolbarEndButton"}else{if(k.SplitButton){j+=" mceToolbarEndSplitButton"}else{if(k.ListBox){j+=" mceToolbarEndListBox"}}}f+=c.createHTML("td",{"class":j},c.createHTML("span",null,""));return c.createHTML("table",{id:m.id,"class":"mceToolbar"+(n["class"]?" "+n["class"]:""),cellpadding:"0",cellspacing:"0",align:m.settings.align||"",role:"presentation",tabindex:"-1"},""+f+"")}})})(tinymce);(function(b){var a=b.util.Dispatcher,c=b.each;b.create("tinymce.AddOnManager",{AddOnManager:function(){var d=this;d.items=[];d.urls={};d.lookup={};d.onAdd=new a(d)},get:function(d){if(this.lookup[d]){return this.lookup[d].instance}else{return undefined}},dependencies:function(e){var d;if(this.lookup[e]){d=this.lookup[e].dependencies}return d||[]},requireLangPack:function(e){var d=b.settings;if(d&&d.language&&d.language_load!==false){b.ScriptLoader.add(this.urls[e]+"/langs/"+d.language+".js")}},add:function(f,e,d){this.items.push(e);this.lookup[f]={instance:e,dependencies:d};this.onAdd.dispatch(this,f,e);return e},createUrl:function(d,e){if(typeof e==="object"){return e}else{return{prefix:d.prefix,resource:e,suffix:d.suffix}}},addComponents:function(f,d){var e=this.urls[f];b.each(d,function(g){b.ScriptLoader.add(e+"/"+g)})},load:function(j,f,d,h){var g=this,e=f;function i(){var k=g.dependencies(j);b.each(k,function(m){var l=g.createUrl(f,m);g.load(l.resource,l,undefined,undefined)});if(d){if(h){d.call(h)}else{d.call(b.ScriptLoader)}}}if(g.urls[j]){return}if(typeof f==="object"){e=f.prefix+f.resource+f.suffix}if(e.indexOf("/")!==0&&e.indexOf("://")==-1){e=b.baseURL+"/"+e}g.urls[j]=e.substring(0,e.lastIndexOf("/"));if(g.lookup[j]){i()}else{b.ScriptLoader.add(e,i,h)}}});b.PluginManager=new b.AddOnManager();b.ThemeManager=new b.AddOnManager()}(tinymce));(function(j){var g=j.each,d=j.extend,k=j.DOM,i=j.dom.Event,f=j.ThemeManager,b=j.PluginManager,e=j.explode,h=j.util.Dispatcher,a,c=0;j.documentBaseURL=window.location.href.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,"");if(!/[\/\\]$/.test(j.documentBaseURL)){j.documentBaseURL+="/"}j.baseURL=new j.util.URI(j.documentBaseURL).toAbsolute(j.baseURL);j.baseURI=new j.util.URI(j.baseURL);j.onBeforeUnload=new h(j);i.add(window,"beforeunload",function(l){j.onBeforeUnload.dispatch(j,l)});j.onAddEditor=new h(j);j.onRemoveEditor=new h(j);j.EditorManager=d(j,{editors:[],i18n:{},activeEditor:null,init:function(x){var v=this,o,n=j.ScriptLoader,u,l=[],r;function q(t){var s=t.id;if(!s){s=t.name;if(s&&!k.get(s)){s=t.name}else{s=k.uniqueId()}t.setAttribute("id",s)}return s}function m(z,A,t){var y=z[A];if(!y){return}if(j.is(y,"string")){t=y.replace(/\.\w+$/,"");t=t?j.resolve(t):0;y=j.resolve(y)}return y.apply(t||this,Array.prototype.slice.call(arguments,2))}function p(t,s){return s.constructor===RegExp?s.test(t.className):k.hasClass(t,s)}v.settings=x;i.bind(window,"ready",function(){var s,t;m(x,"onpageload");switch(x.mode){case"exact":s=x.elements||"";if(s.length>0){g(e(s),function(y){if(k.get(y)){r=new j.Editor(y,x);l.push(r);r.render(1)}else{g(document.forms,function(z){g(z.elements,function(A){if(A.name===y){y="mce_editor_"+c++;k.setAttrib(A,"id",y);r=new j.Editor(y,x);l.push(r);r.render(1)}})})}})}break;case"textareas":case"specific_textareas":g(k.select("textarea"),function(y){if(x.editor_deselector&&p(y,x.editor_deselector)){return}if(!x.editor_selector||p(y,x.editor_selector)){r=new j.Editor(q(y),x);l.push(r);r.render(1)}});break;default:if(x.types){g(x.types,function(y){g(k.select(y.selector),function(A){var z=new j.Editor(q(A),j.extend({},x,y));l.push(z);z.render(1)})})}else{if(x.selector){g(k.select(x.selector),function(z){var y=new j.Editor(q(z),x);l.push(y);y.render(1)})}}}if(x.oninit){s=t=0;g(l,function(y){t++;if(!y.initialized){y.onInit.add(function(){s++;if(s==t){m(x,"oninit")}})}else{s++}if(s==t){m(x,"oninit")}})}})},get:function(l){if(l===a){return this.editors}if(!this.editors.hasOwnProperty(l)){return a}return this.editors[l]},getInstanceById:function(l){return this.get(l)},add:function(m){var l=this,n=l.editors;n[m.id]=m;n.push(m);l._setActive(m);l.onAddEditor.dispatch(l,m);return m},remove:function(n){var m=this,l,o=m.editors;if(!o[n.id]){return null}delete o[n.id];for(l=0;l':"",visual:n,font_size_style_values:"xx-small,x-small,small,medium,large,x-large,xx-large",font_size_legacy_values:"xx-small,small,medium,large,x-large,xx-large,300%",apply_source_formatting:n,directionality:"ltr",forced_root_block:"p",hidden_input:n,padd_empty_editor:n,render_ui:n,indentation:"30px",fix_table_elements:n,inline_styles:n,convert_fonts_to_spans:n,indent:"simple",indent_before:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",indent_after:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",validate:n,entity_encoding:"named",url_converter:m.convertURL,url_converter_scope:m,ie7_compat:n},o);m.id=m.editorId=p;m.isNotDirty=false;m.plugins={};m.documentBaseURI=new k.util.URI(o.document_base_url||k.documentBaseURL,{base_uri:tinyMCE.baseURI});m.baseURI=k.baseURI;m.contentCSS=[];m.contentStyles=[];m.setupEvents();m.execCommands={};m.queryStateCommands={};m.queryValueCommands={};m.execCallback("setup",m)},render:function(o){var p=this,q=p.settings,r=p.id,m=k.ScriptLoader;if(!j.domLoaded){j.add(window,"ready",function(){p.render()});return}tinyMCE.settings=q;if(!p.getElement()){return}if(k.isIDevice&&!k.isIOS5){return}if(!/TEXTAREA|INPUT/i.test(p.getElement().nodeName)&&q.hidden_input&&l.getParent(r,"form")){l.insertAfter(l.create("input",{type:"hidden",name:r}),r)}if(!q.content_editable){p.orgVisibility=p.getElement().style.visibility;p.getElement().style.visibility="hidden"}if(k.WindowManager){p.windowManager=new k.WindowManager(p)}if(q.encoding=="xml"){p.onGetContent.add(function(s,t){if(t.save){t.content=l.encode(t.content)}})}if(q.add_form_submit_trigger){p.onSubmit.addToTop(function(){if(p.initialized){p.save();p.isNotDirty=1}})}if(q.add_unload_trigger){p._beforeUnload=tinyMCE.onBeforeUnload.add(function(){if(p.initialized&&!p.destroyed&&!p.isHidden()){p.save({format:"raw",no_events:true})}})}k.addUnload(p.destroy,p);if(q.submit_patch){p.onBeforeRenderUI.add(function(){var s=p.getElement().form;if(!s){return}if(s._mceOldSubmit){return}if(!s.submit.nodeType&&!s.submit.length){p.formElement=s;s._mceOldSubmit=s.submit;s.submit=function(){k.triggerSave();p.isNotDirty=1;return p.formElement._mceOldSubmit(p.formElement)}}s=null})}function n(){if(q.language&&q.language_load!==false){m.add(k.baseURL+"/langs/"+q.language+".js")}if(q.theme&&typeof q.theme!="function"&&q.theme.charAt(0)!="-"&&!h.urls[q.theme]){h.load(q.theme,"themes/"+q.theme+"/editor_template"+k.suffix+".js")}i(g(q.plugins),function(t){if(t&&!c.urls[t]){if(t.charAt(0)=="-"){t=t.substr(1,t.length);var s=c.dependencies(t);i(s,function(v){var u={prefix:"plugins/",resource:v,suffix:"/editor_plugin"+k.suffix+".js"};v=c.createUrl(u,v);c.load(v.resource,v)})}else{if(t=="safari"){return}c.load(t,{prefix:"plugins/",resource:t,suffix:"/editor_plugin"+k.suffix+".js"})}}});m.loadQueue(function(){if(!p.removed){p.init()}})}n()},init:function(){var q,G=this,H=G.settings,D,y,z,C=G.getElement(),p,m,E,v,B,F,x,r=[];k.add(G);H.aria_label=H.aria_label||l.getAttrib(C,"aria-label",G.getLang("aria.rich_text_area"));if(H.theme){if(typeof H.theme!="function"){H.theme=H.theme.replace(/-/,"");p=h.get(H.theme);G.theme=new p();if(G.theme.init){G.theme.init(G,h.urls[H.theme]||k.documentBaseURL.replace(/\/$/,""))}}else{G.theme=H.theme}}function A(s){var t=c.get(s),o=c.urls[s]||k.documentBaseURL.replace(/\/$/,""),n;if(t&&k.inArray(r,s)===-1){i(c.dependencies(s),function(u){A(u)});n=new t(G,o);G.plugins[s]=n;if(n.init){n.init(G,o);r.push(s)}}}i(g(H.plugins.replace(/\-/g,"")),A);if(H.popup_css!==false){if(H.popup_css){H.popup_css=G.documentBaseURI.toAbsolute(H.popup_css)}else{H.popup_css=G.baseURI.toAbsolute("themes/"+H.theme+"/skins/"+H.skin+"/dialog.css")}}if(H.popup_css_add){H.popup_css+=","+G.documentBaseURI.toAbsolute(H.popup_css_add)}G.controlManager=new k.ControlManager(G);G.onBeforeRenderUI.dispatch(G,G.controlManager);if(H.render_ui&&G.theme){G.orgDisplay=C.style.display;if(typeof H.theme!="function"){D=H.width||C.style.width||C.offsetWidth;y=H.height||C.style.height||C.offsetHeight;z=H.min_height||100;F=/^[0-9\.]+(|px)$/i;if(F.test(""+D)){D=Math.max(parseInt(D,10)+(p.deltaWidth||0),100)}if(F.test(""+y)){y=Math.max(parseInt(y,10)+(p.deltaHeight||0),z)}p=G.theme.renderUI({targetNode:C,width:D,height:y,deltaWidth:H.delta_width,deltaHeight:H.delta_height});l.setStyles(p.sizeContainer||p.editorContainer,{width:D,height:y});y=(p.iframeHeight||y)+(typeof(y)=="number"?(p.deltaHeight||0):"");if(y';if(H.document_base_url!=k.documentBaseURL){G.iframeHTML+=''}if(k.isIE8){if(H.ie7_compat){G.iframeHTML+=''}else{G.iframeHTML+=''}}G.iframeHTML+='';for(x=0;x'}G.contentCSS=[];v=H.body_id||"tinymce";if(v.indexOf("=")!=-1){v=G.getParam("body_id","","hash");v=v[G.id]||v}B=H.body_class||"";if(B.indexOf("=")!=-1){B=G.getParam("body_class","","hash");B=B[G.id]||""}G.iframeHTML+='
                                            ";if(k.relaxedDomain&&(b||(k.isOpera&&parseFloat(opera.version())<11))){E='javascript:(function(){document.open();document.domain="'+document.domain+'";var ed = window.parent.tinyMCE.get("'+G.id+'");document.write(ed.iframeHTML);document.close();ed.initContentBody();})()'}q=l.add(p.iframeContainer,"iframe",{id:G.id+"_ifr",src:E||'javascript:""',frameBorder:"0",allowTransparency:"true",title:H.aria_label,style:{width:"100%",height:y,display:"block"}});G.contentAreaContainer=p.iframeContainer;if(p.editorContainer){l.get(p.editorContainer).style.display=G.orgDisplay}C.style.visibility=G.orgVisibility;l.get(G.id).style.display="none";l.setAttrib(G.id,"aria-hidden",true);if(!k.relaxedDomain||!E){G.initContentBody()}C=q=p=null},initContentBody:function(){var n=this,p=n.settings,q=l.get(n.id),r=n.getDoc(),o,m,s;if((!b||!k.relaxedDomain)&&!p.content_editable){r.open();r.write(n.iframeHTML);r.close();if(k.relaxedDomain){r.domain=k.relaxedDomain}}if(p.content_editable){l.addClass(q,"mceContentBody");n.contentDocument=r=p.content_document||document;n.contentWindow=p.content_window||window;n.bodyElement=q;p.content_document=p.content_window=null}m=n.getBody();m.disabled=true;if(!p.readonly){m.contentEditable=n.getParam("content_editable_state",true)}m.disabled=false;n.schema=new k.html.Schema(p);n.dom=new k.dom.DOMUtils(r,{keep_values:true,url_converter:n.convertURL,url_converter_scope:n,hex_colors:p.force_hex_style_colors,class_filter:p.class_filter,update_styles:true,root_element:p.content_editable?n.id:null,schema:n.schema});n.parser=new k.html.DomParser(p,n.schema);n.parser.addAttributeFilter("src,href,style",function(t,u){var v=t.length,y,A=n.dom,z,x;while(v--){y=t[v];z=y.attr(u);x="data-mce-"+u;if(!y.attributes.map[x]){if(u==="style"){y.attr(x,A.serializeStyle(A.parseStyle(z),y.name))}else{y.attr(x,n.convertURL(z,u,y.name))}}}});n.parser.addNodeFilter("script",function(t,u){var v=t.length,x;while(v--){x=t[v];x.attr("type","mce-"+(x.attr("type")||"text/javascript"))}});n.parser.addNodeFilter("#cdata",function(t,u){var v=t.length,x;while(v--){x=t[v];x.type=8;x.name="#comment";x.value="[CDATA["+x.value+"]]"}});n.parser.addNodeFilter("p,h1,h2,h3,h4,h5,h6,div",function(u,v){var x=u.length,y,t=n.schema.getNonEmptyElements();while(x--){y=u[x];if(y.isEmpty(t)){y.empty().append(new k.html.Node("br",1)).shortEnded=true}}});n.serializer=new k.dom.Serializer(p,n.dom,n.schema);n.selection=new k.dom.Selection(n.dom,n.getWin(),n.serializer,n);n.formatter=new k.Formatter(n);n.undoManager=new k.UndoManager(n);n.forceBlocks=new k.ForceBlocks(n);n.enterKey=new k.EnterKey(n);n.editorCommands=new k.EditorCommands(n);n.onExecCommand.add(function(t,u){if(!/^(FontName|FontSize)$/.test(u)){n.nodeChanged()}});n.serializer.onPreProcess.add(function(t,u){return n.onPreProcess.dispatch(n,u,t)});n.serializer.onPostProcess.add(function(t,u){return n.onPostProcess.dispatch(n,u,t)});n.onPreInit.dispatch(n);if(!p.browser_spellcheck&&!p.gecko_spellcheck){r.body.spellcheck=false}if(!p.readonly){n.bindNativeEvents()}n.controlManager.onPostRender.dispatch(n,n.controlManager);n.onPostRender.dispatch(n);n.quirks=k.util.Quirks(n);if(p.directionality){m.dir=p.directionality}if(p.nowrap){m.style.whiteSpace="nowrap"}if(p.protect){n.onBeforeSetContent.add(function(t,u){i(p.protect,function(v){u.content=u.content.replace(v,function(x){return""})})})}n.onSetContent.add(function(){n.addVisual(n.getBody())});if(p.padd_empty_editor){n.onPostProcess.add(function(t,u){u.content=u.content.replace(/^(]*>( | |\s|\u00a0|)<\/p>[\r\n]*|
                                            [\r\n]*)$/,"")})}n.load({initial:true,format:"html"});n.startContent=n.getContent({format:"raw"});n.initialized=true;n.onInit.dispatch(n);n.execCallback("setupcontent_callback",n.id,m,r);n.execCallback("init_instance_callback",n);n.focus(true);n.nodeChanged({initial:true});if(n.contentStyles.length>0){s="";i(n.contentStyles,function(t){s+=t+"\r\n"});n.dom.addStyle(s)}i(n.contentCSS,function(t){n.dom.loadCSS(t)});if(p.auto_focus){setTimeout(function(){var t=k.get(p.auto_focus);t.selection.select(t.getBody(),1);t.selection.collapse(1);t.getBody().focus();t.getWin().focus()},100)}q=r=m=null},focus:function(p){var o,u=this,t=u.selection,q=u.settings.content_editable,n,r,s=u.getDoc(),m;if(!p){if(u.lastIERng){t.setRng(u.lastIERng)}n=t.getRng();if(n.item){r=n.item(0)}u._refreshContentEditable();if(!q){u.getWin().focus()}if(k.isGecko||q){m=u.getBody();if(m.setActive){m.setActive()}else{m.focus()}if(q){t.normalize()}}if(r&&r.ownerDocument==s){n=s.body.createControlRange();n.addElement(r);n.select()}}if(k.activeEditor!=u){if((o=k.activeEditor)!=null){o.onDeactivate.dispatch(o,u)}u.onActivate.dispatch(u,o)}k._setActive(u)},execCallback:function(q){var m=this,p=m.settings[q],o;if(!p){return}if(m.callbackLookup&&(o=m.callbackLookup[q])){p=o.func;o=o.scope}if(d(p,"string")){o=p.replace(/\.\w+$/,"");o=o?k.resolve(o):0;p=k.resolve(p);m.callbackLookup=m.callbackLookup||{};m.callbackLookup[q]={func:p,scope:o}}return p.apply(o||m,Array.prototype.slice.call(arguments,1))},translate:function(m){var o=this.settings.language||"en",n=k.i18n;if(!m){return""}return n[o+"."+m]||m.replace(/\{\#([^\}]+)\}/g,function(q,p){return n[o+"."+p]||"{#"+p+"}"})},getLang:function(o,m){return k.i18n[(this.settings.language||"en")+"."+o]||(d(m)?m:"{#"+o+"}")},getParam:function(t,q,m){var r=k.trim,p=d(this.settings[t])?this.settings[t]:q,s;if(m==="hash"){s={};if(d(p,"string")){i(p.indexOf("=")>0?p.split(/[;,](?![^=;,]*(?:[;,]|$))/):p.split(","),function(n){n=n.split("=");if(n.length>1){s[r(n[0])]=r(n[1])}else{s[r(n[0])]=r(n)}})}else{s=p}return s}return p},nodeChanged:function(q){var m=this,n=m.selection,p;if(m.initialized){q=q||{};p=n.getStart()||m.getBody();p=b&&p.ownerDocument!=m.getDoc()?m.getBody():p;q.parents=[];m.dom.getParent(p,function(o){if(o.nodeName=="BODY"){return true}q.parents.push(o)});m.onNodeChange.dispatch(m,q?q.controlManager||m.controlManager:m.controlManager,p,n.isCollapsed(),q)}},addButton:function(n,o){var m=this;m.buttons=m.buttons||{};m.buttons[n]=o},addCommand:function(m,o,n){this.execCommands[m]={func:o,scope:n||this}},addQueryStateHandler:function(m,o,n){this.queryStateCommands[m]={func:o,scope:n||this}},addQueryValueHandler:function(m,o,n){this.queryValueCommands[m]={func:o,scope:n||this}},addShortcut:function(o,q,m,p){var n=this,r;if(n.settings.custom_shortcuts===false){return false}n.shortcuts=n.shortcuts||{};if(d(m,"string")){r=m;m=function(){n.execCommand(r,false,null)}}if(d(m,"object")){r=m;m=function(){n.execCommand(r[0],r[1],r[2])}}i(g(o),function(s){var t={func:m,scope:p||this,desc:n.translate(q),alt:false,ctrl:false,shift:false};i(g(s,"+"),function(u){switch(u){case"alt":case"ctrl":case"shift":t[u]=true;break;default:t.charCode=u.charCodeAt(0);t.keyCode=u.toUpperCase().charCodeAt(0)}});n.shortcuts[(t.ctrl?"ctrl":"")+","+(t.alt?"alt":"")+","+(t.shift?"shift":"")+","+t.keyCode]=t});return true},execCommand:function(u,r,x,m){var p=this,q=0,v,n;if(!/^(mceAddUndoLevel|mceEndUndoLevel|mceBeginUndoLevel|mceRepaint|SelectAll)$/.test(u)&&(!m||!m.skip_focus)){p.focus()}m=f({},m);p.onBeforeExecCommand.dispatch(p,u,r,x,m);if(m.terminate){return false}if(p.execCallback("execcommand_callback",p.id,p.selection.getNode(),u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);return true}if(v=p.execCommands[u]){n=v.func.call(v.scope,r,x);if(n!==true){p.onExecCommand.dispatch(p,u,r,x,m);return n}}i(p.plugins,function(o){if(o.execCommand&&o.execCommand(u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);q=1;return false}});if(q){return true}if(p.theme&&p.theme.execCommand&&p.theme.execCommand(u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);return true}if(p.editorCommands.execCommand(u,r,x)){p.onExecCommand.dispatch(p,u,r,x,m);return true}p.getDoc().execCommand(u,r,x);p.onExecCommand.dispatch(p,u,r,x,m)},queryCommandState:function(q){var n=this,r,p;if(n._isHidden()){return}if(r=n.queryStateCommands[q]){p=r.func.call(r.scope);if(p!==true){return p}}r=n.editorCommands.queryCommandState(q);if(r!==-1){return r}try{return this.getDoc().queryCommandState(q)}catch(m){}},queryCommandValue:function(r){var n=this,q,p;if(n._isHidden()){return}if(q=n.queryValueCommands[r]){p=q.func.call(q.scope);if(p!==true){return p}}q=n.editorCommands.queryCommandValue(r);if(d(q)){return q}try{return this.getDoc().queryCommandValue(r)}catch(m){}},show:function(){var m=this;l.show(m.getContainer());l.hide(m.id);m.load()},hide:function(){var m=this,n=m.getDoc();if(b&&n){n.execCommand("SelectAll")}m.save();l.hide(m.getContainer());l.setStyle(m.id,"display",m.orgDisplay)},isHidden:function(){return !l.isHidden(this.id)},setProgressState:function(m,n,p){this.onSetProgressState.dispatch(this,m,n,p);return m},load:function(q){var m=this,p=m.getElement(),n;if(p){q=q||{};q.load=true;n=m.setContent(d(p.value)?p.value:p.innerHTML,q);q.element=p;if(!q.no_events){m.onLoadContent.dispatch(m,q)}q.element=p=null;return n}},save:function(r){var m=this,q=m.getElement(),n,p;if(!q||!m.initialized){return}r=r||{};r.save=true;r.element=q;n=r.content=m.getContent(r);if(!r.no_events){m.onSaveContent.dispatch(m,r)}n=r.content;if(!/TEXTAREA|INPUT/i.test(q.nodeName)){q.innerHTML=n;if(p=l.getParent(m.id,"form")){i(p.elements,function(o){if(o.name==m.id){o.value=n;return false}})}}else{q.value=n}r.element=q=null;return n},setContent:function(r,p){var o=this,n,m=o.getBody(),q;p=p||{};p.format=p.format||"html";p.set=true;p.content=r;if(!p.no_events){o.onBeforeSetContent.dispatch(o,p)}r=p.content;if(!k.isIE&&(r.length===0||/^\s+$/.test(r))){q=o.settings.forced_root_block;if(q){r="<"+q+'>
                                            "}else{r='
                                            '}m.innerHTML=r;o.selection.select(m,true);o.selection.collapse(true);return}if(p.format!=="raw"){r=new k.html.Serializer({},o.schema).serialize(o.parser.parse(r))}p.content=k.trim(r);o.dom.setHTML(m,p.content);if(!p.no_events){o.onSetContent.dispatch(o,p)}if(!o.settings.content_editable||document.activeElement===o.getBody()){o.selection.normalize()}return p.content},getContent:function(o){var n=this,p,m=n.getBody();o=o||{};o.format=o.format||"html";o.get=true;o.getInner=true;if(!o.no_events){n.onBeforeGetContent.dispatch(n,o)}if(o.format=="raw"){p=m.innerHTML}else{if(o.format=="text"){p=m.innerText||m.textContent}else{p=n.serializer.serialize(m,o)}}if(o.format!="text"){o.content=k.trim(p)}else{o.content=p}if(!o.no_events){n.onGetContent.dispatch(n,o)}return o.content},isDirty:function(){var m=this;return k.trim(m.startContent)!=k.trim(m.getContent({format:"raw",no_events:1}))&&!m.isNotDirty},getContainer:function(){var m=this;if(!m.container){m.container=l.get(m.editorContainer||m.id+"_parent")}return m.container},getContentAreaContainer:function(){return this.contentAreaContainer},getElement:function(){return l.get(this.settings.content_element||this.id)},getWin:function(){var m=this,n;if(!m.contentWindow){n=l.get(m.id+"_ifr");if(n){m.contentWindow=n.contentWindow}}return m.contentWindow},getDoc:function(){var m=this,n;if(!m.contentDocument){n=m.getWin();if(n){m.contentDocument=n.document}}return m.contentDocument},getBody:function(){return this.bodyElement||this.getDoc().body},convertURL:function(o,n,q){var m=this,p=m.settings;if(p.urlconverter_callback){return m.execCallback("urlconverter_callback",o,q,true,n)}if(!p.convert_urls||(q&&q.nodeName=="LINK")||o.indexOf("file:")===0){return o}if(p.relative_urls){return m.documentBaseURI.toRelative(o)}o=m.documentBaseURI.toAbsolute(o,p.remove_script_host);return o},addVisual:function(q){var n=this,o=n.settings,p=n.dom,m;q=q||n.getBody();if(!d(n.hasVisual)){n.hasVisual=o.visual}i(p.select("table,a",q),function(s){var r;switch(s.nodeName){case"TABLE":m=o.visual_table_class||"mceItemTable";r=p.getAttrib(s,"border");if(!r||r=="0"){if(n.hasVisual){p.addClass(s,m)}else{p.removeClass(s,m)}}return;case"A":if(!p.getAttrib(s,"href",false)){r=p.getAttrib(s,"name")||s.id;m="mceItemAnchor";if(r){if(n.hasVisual){p.addClass(s,m)}else{p.removeClass(s,m)}}}return}});n.onVisualAid.dispatch(n,q,n.hasVisual)},remove:function(){var m=this,o=m.getContainer(),n=m.getDoc();if(!m.removed){m.removed=1;if(b&&n){n.execCommand("SelectAll")}m.save();l.setStyle(m.id,"display",m.orgDisplay);if(!m.settings.content_editable){j.unbind(m.getWin());j.unbind(m.getDoc())}j.unbind(m.getBody());j.clear(o);m.execCallback("remove_instance_callback",m);m.onRemove.dispatch(m);m.onExecCommand.listeners=[];k.remove(m);l.remove(o)}},destroy:function(n){var m=this;if(m.destroyed){return}if(a){j.unbind(m.getDoc());j.unbind(m.getWin());j.unbind(m.getBody())}if(!n){k.removeUnload(m.destroy);tinyMCE.onBeforeUnload.remove(m._beforeUnload);if(m.theme&&m.theme.destroy){m.theme.destroy()}m.controlManager.destroy();m.selection.destroy();m.dom.destroy()}if(m.formElement){m.formElement.submit=m.formElement._mceOldSubmit;m.formElement._mceOldSubmit=null}m.contentAreaContainer=m.formElement=m.container=m.settings.content_element=m.bodyElement=m.contentDocument=m.contentWindow=null;if(m.selection){m.selection=m.selection.win=m.selection.dom=m.selection.dom.doc=null}m.destroyed=1},_refreshContentEditable:function(){var n=this,m,o;if(n._isHidden()){m=n.getBody();o=m.parentNode;o.removeChild(m);o.appendChild(m);m.focus()}},_isHidden:function(){var m;if(!a){return 0}m=this.selection.getSel();return(!m||!m.rangeCount||m.rangeCount===0)}})})(tinymce);(function(a){var b=a.each;a.Editor.prototype.setupEvents=function(){var c=this,d=c.settings;b(["onPreInit","onBeforeRenderUI","onPostRender","onLoad","onInit","onRemove","onActivate","onDeactivate","onClick","onEvent","onMouseUp","onMouseDown","onDblClick","onKeyDown","onKeyUp","onKeyPress","onContextMenu","onSubmit","onReset","onPaste","onPreProcess","onPostProcess","onBeforeSetContent","onBeforeGetContent","onSetContent","onGetContent","onLoadContent","onSaveContent","onNodeChange","onChange","onBeforeExecCommand","onExecCommand","onUndo","onRedo","onVisualAid","onSetProgressState","onSetAttrib"],function(e){c[e]=new a.util.Dispatcher(c)});if(d.cleanup_callback){c.onBeforeSetContent.add(function(e,f){f.content=e.execCallback("cleanup_callback","insert_to_editor",f.content,f)});c.onPreProcess.add(function(e,f){if(f.set){e.execCallback("cleanup_callback","insert_to_editor_dom",f.node,f)}if(f.get){e.execCallback("cleanup_callback","get_from_editor_dom",f.node,f)}});c.onPostProcess.add(function(e,f){if(f.set){f.content=e.execCallback("cleanup_callback","insert_to_editor",f.content,f)}if(f.get){f.content=e.execCallback("cleanup_callback","get_from_editor",f.content,f)}})}if(d.save_callback){c.onGetContent.add(function(e,f){if(f.save){f.content=e.execCallback("save_callback",e.id,f.content,e.getBody())}})}if(d.handle_event_callback){c.onEvent.add(function(f,g,h){if(c.execCallback("handle_event_callback",g,f,h)===false){g.preventDefault();g.stopPropagation()}})}if(d.handle_node_change_callback){c.onNodeChange.add(function(f,e,g){f.execCallback("handle_node_change_callback",f.id,g,-1,-1,true,f.selection.isCollapsed())})}if(d.save_callback){c.onSaveContent.add(function(e,g){var f=e.execCallback("save_callback",e.id,g.content,e.getBody());if(f){g.content=f}})}if(d.onchange_callback){c.onChange.add(function(f,e){f.execCallback("onchange_callback",f,e)})}};a.Editor.prototype.bindNativeEvents=function(){var l=this,f,d=l.settings,e=l.dom,h;h={mouseup:"onMouseUp",mousedown:"onMouseDown",click:"onClick",keyup:"onKeyUp",keydown:"onKeyDown",keypress:"onKeyPress",submit:"onSubmit",reset:"onReset",contextmenu:"onContextMenu",dblclick:"onDblClick",paste:"onPaste"};function c(i,m){var n=i.type;if(l.removed){return}if(l.onEvent.dispatch(l,i,m)!==false){l[h[i.fakeType||i.type]].dispatch(l,i,m)}}function j(i){l.focus(true)}function k(i,m){if(m.keyCode!=65||!a.VK.metaKeyPressed(m)){l.selection.normalize()}l.nodeChanged()}b(h,function(m,n){var i=d.content_editable?l.getBody():l.getDoc();switch(n){case"contextmenu":e.bind(i,n,c);break;case"paste":e.bind(l.getBody(),n,c);break;case"submit":case"reset":e.bind(l.getElement().form||a.DOM.getParent(l.id,"form"),n,c);break;default:e.bind(i,n,c)}});e.bind(d.content_editable?l.getBody():(a.isGecko?l.getDoc():l.getWin()),"focus",function(i){l.focus(true)});if(d.content_editable&&a.isOpera){e.bind(l.getBody(),"click",j);e.bind(l.getBody(),"keydown",j)}l.onMouseUp.add(k);l.onKeyUp.add(function(i,n){var m=n.keyCode;if((m>=33&&m<=36)||(m>=37&&m<=40)||m==13||m==45||m==46||m==8||(a.isMac&&(m==91||m==93))||n.ctrlKey){k(i,n)}});l.onReset.add(function(){l.setContent(l.startContent,{format:"raw"})});function g(m,i){if(m.altKey||m.ctrlKey||m.metaKey){b(l.shortcuts,function(n){var o=a.isMac?m.metaKey:m.ctrlKey;if(n.ctrl!=o||n.alt!=m.altKey||n.shift!=m.shiftKey){return}if(m.keyCode==n.keyCode||(m.charCode&&m.charCode==n.charCode)){m.preventDefault();if(i){n.func.call(n.scope)}return true}})}}l.onKeyUp.add(function(i,m){g(m)});l.onKeyPress.add(function(i,m){g(m)});l.onKeyDown.add(function(i,m){g(m,true)});if(a.isOpera){l.onClick.add(function(i,m){m.preventDefault()})}}})(tinymce);(function(d){var e=d.each,b,a=true,c=false;d.EditorCommands=function(n){var m=n.dom,p=n.selection,j={state:{},exec:{},value:{}},k=n.settings,q=n.formatter,o;function r(z,y,x){var v;z=z.toLowerCase();if(v=j.exec[z]){v(z,y,x);return a}return c}function l(x){var v;x=x.toLowerCase();if(v=j.state[x]){return v(x)}return -1}function h(x){var v;x=x.toLowerCase();if(v=j.value[x]){return v(x)}return c}function u(v,x){x=x||"exec";e(v,function(z,y){e(y.toLowerCase().split(","),function(A){j[x][A]=z})})}d.extend(this,{execCommand:r,queryCommandState:l,queryCommandValue:h,addCommands:u});function f(y,x,v){if(x===b){x=c}if(v===b){v=null}return n.getDoc().execCommand(y,x,v)}function t(v){return q.match(v)}function s(v,x){q.toggle(v,x?{value:x}:b)}function i(v){o=p.getBookmark(v)}function g(){p.moveToBookmark(o)}u({"mceResetDesignMode,mceBeginUndoLevel":function(){},"mceEndUndoLevel,mceAddUndoLevel":function(){n.undoManager.add()},"Cut,Copy,Paste":function(z){var y=n.getDoc(),v;try{f(z)}catch(x){v=a}if(v||!y.queryCommandSupported(z)){if(d.isGecko){n.windowManager.confirm(n.getLang("clipboard_msg"),function(A){if(A){open("http://www.mozilla.org/editor/midasdemo/securityprefs.html","_blank")}})}else{n.windowManager.alert(n.getLang("clipboard_no_support"))}}},unlink:function(v){if(p.isCollapsed()){p.select(p.getNode())}f(v);p.collapse(c)},"JustifyLeft,JustifyCenter,JustifyRight,JustifyFull":function(v){var x=v.substring(7);e("left,center,right,full".split(","),function(y){if(x!=y){q.remove("align"+y)}});s("align"+x);r("mceRepaint")},"InsertUnorderedList,InsertOrderedList":function(y){var v,x;f(y);v=m.getParent(p.getNode(),"ol,ul");if(v){x=v.parentNode;if(/^(H[1-6]|P|ADDRESS|PRE)$/.test(x.nodeName)){i();m.split(x,v);g()}}},"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(v){s(v)},"ForeColor,HiliteColor,FontName":function(y,x,v){s(y,v)},FontSize:function(z,y,x){var v,A;if(x>=1&&x<=7){A=d.explode(k.font_size_style_values);v=d.explode(k.font_size_classes);if(v){x=v[x-1]||x}else{x=A[x-1]||x}}s(z,x)},RemoveFormat:function(v){q.remove(v)},mceBlockQuote:function(v){s("blockquote")},FormatBlock:function(y,x,v){return s(v||"p")},mceCleanup:function(){var v=p.getBookmark();n.setContent(n.getContent({cleanup:a}),{cleanup:a});p.moveToBookmark(v)},mceRemoveNode:function(z,y,x){var v=x||p.getNode();if(v!=n.getBody()){i();n.dom.remove(v,a);g()}},mceSelectNodeDepth:function(z,y,x){var v=0;m.getParent(p.getNode(),function(A){if(A.nodeType==1&&v++==x){p.select(A);return c}},n.getBody())},mceSelectNode:function(y,x,v){p.select(v)},mceInsertContent:function(B,I,K){var y,J,E,z,F,G,D,C,L,x,A,M,v,H;y=n.parser;J=new d.html.Serializer({},n.schema);v='\uFEFF';G={content:K,format:"html"};p.onBeforeSetContent.dispatch(p,G);K=G.content;if(K.indexOf("{$caret}")==-1){K+="{$caret}"}K=K.replace(/\{\$caret\}/,v);if(!p.isCollapsed()){n.getDoc().execCommand("Delete",false,null)}E=p.getNode();G={context:E.nodeName.toLowerCase()};F=y.parse(K,G);A=F.lastChild;if(A.attr("id")=="mce_marker"){D=A;for(A=A.prev;A;A=A.walk(true)){if(A.type==3||!m.isBlock(A.name)){A.parent.insert(D,A,A.name==="br");break}}}if(!G.invalid){K=J.serialize(F);A=E.firstChild;M=E.lastChild;if(!A||(A===M&&A.nodeName==="BR")){m.setHTML(E,K)}else{p.setContent(K)}}else{p.setContent(v);E=p.getNode();z=n.getBody();if(E.nodeType==9){E=A=z}else{A=E}while(A!==z){E=A;A=A.parentNode}K=E==z?z.innerHTML:m.getOuterHTML(E);K=J.serialize(y.parse(K.replace(//i,function(){return J.serialize(F)})));if(E==z){m.setHTML(z,K)}else{m.setOuterHTML(E,K)}}D=m.get("mce_marker");C=m.getRect(D);L=m.getViewPort(n.getWin());if((C.y+C.h>L.y+L.h||C.yL.x+L.w||C.x")},mceToggleVisualAid:function(){n.hasVisual=!n.hasVisual;n.addVisual()},mceReplaceContent:function(y,x,v){n.execCommand("mceInsertContent",false,v.replace(/\{\$selection\}/g,p.getContent({format:"text"})))},mceInsertLink:function(z,y,x){var v;if(typeof(x)=="string"){x={href:x}}v=m.getParent(p.getNode(),"a");x.href=x.href.replace(" ","%20");if(!v||!x.href){q.remove("link")}if(x.href){q.apply("link",x,v)}},selectAll:function(){var x=m.getRoot(),v=m.createRng();if(p.getRng().setStart){v.setStart(x,0);v.setEnd(x,x.childNodes.length);p.setRng(v)}else{f("SelectAll")}}});u({"JustifyLeft,JustifyCenter,JustifyRight,JustifyFull":function(z){var x="align"+z.substring(7);var v=p.isCollapsed()?[m.getParent(p.getNode(),m.isBlock)]:p.getSelectedBlocks();var y=d.map(v,function(A){return !!q.matchNode(A,x)});return d.inArray(y,a)!==-1},"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(v){return t(v)},mceBlockQuote:function(){return t("blockquote")},Outdent:function(){var v;if(k.inline_styles){if((v=m.getParent(p.getStart(),m.isBlock))&&parseInt(v.style.paddingLeft)>0){return a}if((v=m.getParent(p.getEnd(),m.isBlock))&&parseInt(v.style.paddingLeft)>0){return a}}return l("InsertUnorderedList")||l("InsertOrderedList")||(!k.inline_styles&&!!m.getParent(p.getNode(),"BLOCKQUOTE"))},"InsertUnorderedList,InsertOrderedList":function(x){var v=m.getParent(p.getNode(),"ul,ol");return v&&(x==="insertunorderedlist"&&v.tagName==="UL"||x==="insertorderedlist"&&v.tagName==="OL")}},"state");u({"FontSize,FontName":function(y){var x=0,v;if(v=m.getParent(p.getNode(),"span")){if(y=="fontsize"){x=v.style.fontSize}else{x=v.style.fontFamily.replace(/, /g,",").replace(/[\'\"]/g,"").toLowerCase()}}return x}},"value");u({Undo:function(){n.undoManager.undo()},Redo:function(){n.undoManager.redo()}})}})(tinymce);(function(b){var a=b.util.Dispatcher;b.UndoManager=function(h){var l,i=0,e=[],g,k,j,f;function c(){return b.trim(h.getContent({format:"raw",no_events:1}).replace(/]+data-mce-bogus[^>]+>[\u200B\uFEFF]+<\/span>/g,""))}function d(){l.typing=false;l.add()}onBeforeAdd=new a(l);k=new a(l);j=new a(l);f=new a(l);k.add(function(m,n){if(m.hasUndo()){return h.onChange.dispatch(h,n,m)}});j.add(function(m,n){return h.onUndo.dispatch(h,n,m)});f.add(function(m,n){return h.onRedo.dispatch(h,n,m)});h.onInit.add(function(){l.add()});h.onBeforeExecCommand.add(function(m,p,o,q,n){if(p!="Undo"&&p!="Redo"&&p!="mceRepaint"&&(!n||!n.skip_undo)){l.beforeChange()}});h.onExecCommand.add(function(m,p,o,q,n){if(p!="Undo"&&p!="Redo"&&p!="mceRepaint"&&(!n||!n.skip_undo)){l.add()}});h.onSaveContent.add(d);h.dom.bind(h.dom.getRoot(),"dragend",d);h.dom.bind(h.getBody(),"focusout",function(m){if(!h.removed&&l.typing){d()}});h.onKeyUp.add(function(m,o){var n=o.keyCode;if((n>=33&&n<=36)||(n>=37&&n<=40)||n==45||n==13||o.ctrlKey){d()}});h.onKeyDown.add(function(m,o){var n=o.keyCode;if((n>=33&&n<=36)||(n>=37&&n<=40)||n==45){if(l.typing){d()}return}if((n<16||n>20)&&n!=224&&n!=91&&!l.typing){l.beforeChange();l.typing=true;l.add()}});h.onMouseDown.add(function(m,n){if(l.typing){d()}});h.addShortcut("ctrl+z","undo_desc","Undo");h.addShortcut("ctrl+y","redo_desc","Redo");l={data:e,typing:false,onBeforeAdd:onBeforeAdd,onAdd:k,onUndo:j,onRedo:f,beforeChange:function(){g=h.selection.getBookmark(2,true)},add:function(p){var m,n=h.settings,o;p=p||{};p.content=c();l.onBeforeAdd.dispatch(l,p);o=e[i];if(o&&o.content==p.content){return null}if(e[i]){e[i].beforeBookmark=g}if(n.custom_undo_redo_levels){if(e.length>n.custom_undo_redo_levels){for(m=0;m0){n=e[--i];h.setContent(n.content,{format:"raw"});h.selection.moveToBookmark(n.beforeBookmark);l.onUndo.dispatch(l,n)}return n},redo:function(){var m;if(i0||this.typing},hasRedo:function(){return i0){g.moveEnd("character",q)}g.select()}catch(n){}}}c.nodeChanged()}}if(b.forced_root_block){c.onKeyUp.add(f);c.onNodeChange.add(f)}};(function(c){var b=c.DOM,a=c.dom.Event,d=c.each,e=c.extend;c.create("tinymce.ControlManager",{ControlManager:function(f,j){var h=this,g;j=j||{};h.editor=f;h.controls={};h.onAdd=new c.util.Dispatcher(h);h.onPostRender=new c.util.Dispatcher(h);h.prefix=j.prefix||f.id+"_";h._cls={};h.onPostRender.add(function(){d(h.controls,function(i){i.postRender()})})},get:function(f){return this.controls[this.prefix+f]||this.controls[f]},setActive:function(h,f){var g=null;if(g=this.get(h)){g.setActive(f)}return g},setDisabled:function(h,f){var g=null;if(g=this.get(h)){g.setDisabled(f)}return g},add:function(g){var f=this;if(g){f.controls[g.id]=g;f.onAdd.dispatch(g,f)}return g},createControl:function(j){var o,k,g,h=this,m=h.editor,n,f;if(!h.controlFactories){h.controlFactories=[];d(m.plugins,function(i){if(i.createControl){h.controlFactories.push(i)}})}n=h.controlFactories;for(k=0,g=n.length;k1||ag==ay||ag.tagName=="BR"){return ag}}}var aq=aa.selection.getRng();var av=aq.startContainer;var ap=aq.endContainer;if(av!=ap&&aq.endOffset===0){var au=ar(av,ap);var at=au.nodeType==3?au.length:au.childNodes.length;aq.setEnd(au,at)}return aq}function ad(at,ay,aw,av,aq){var ap=[],ar=-1,ax,aA=-1,au=-1,az;T(at.childNodes,function(aC,aB){if(aC.nodeName==="UL"||aC.nodeName==="OL"){ar=aB;ax=aC;return false}});T(at.childNodes,function(aC,aB){if(aC.nodeName==="SPAN"&&c.getAttrib(aC,"data-mce-type")=="bookmark"){if(aC.id==ay.id+"_start"){aA=aB}else{if(aC.id==ay.id+"_end"){au=aB}}}});if(ar<=0||(aAar)){T(a.grep(at.childNodes),aq);return 0}else{az=c.clone(aw,X);T(a.grep(at.childNodes),function(aC,aB){if((aAar&&aB>ar)){ap.push(aC);aC.parentNode.removeChild(aC)}});if(aAar){at.insertBefore(az,ax.nextSibling)}}av.push(az);T(ap,function(aB){az.appendChild(aB)});return az}}function an(aq,at,aw){var ap=[],av,ar,au=true;av=am.inline||am.block;ar=c.create(av);ab(ar);N.walk(aq,function(ax){var ay;function az(aA){var aF,aD,aB,aC,aE;aE=au;aF=aA.nodeName.toLowerCase();aD=aA.parentNode.nodeName.toLowerCase();if(aA.nodeType===1&&x(aA)){aE=au;au=x(aA)==="true";aC=true}if(g(aF,"br")){ay=0;if(am.block){c.remove(aA)}return}if(am.wrapper&&y(aA,ae,al)){ay=0;return}if(au&&!aC&&am.block&&!am.wrapper&&I(aF)){aA=c.rename(aA,av);ab(aA);ap.push(aA);ay=0;return}if(am.selector){T(ah,function(aG){if("collapsed" in aG&&aG.collapsed!==ai){return}if(c.is(aA,aG.selector)&&!b(aA)){ab(aA,aG);aB=true}});if(!am.inline||aB){ay=0;return}}if(au&&!aC&&d(av,aF)&&d(aD,av)&&!(!aw&&aA.nodeType===3&&aA.nodeValue.length===1&&aA.nodeValue.charCodeAt(0)===65279)&&!b(aA)){if(!ay){ay=c.clone(ar,X);aA.parentNode.insertBefore(ay,aA);ap.push(ay)}ay.appendChild(aA)}else{if(aF=="li"&&at){ay=ad(aA,at,ar,ap,az)}else{ay=0;T(a.grep(aA.childNodes),az);if(aC){au=aE}ay=0}}}T(ax,az)});if(am.wrap_links===false){T(ap,function(ax){function ay(aC){var aB,aA,az;if(aC.nodeName==="A"){aA=c.clone(ar,X);ap.push(aA);az=a.grep(aC.childNodes);for(aB=0;aB1||!H(az))&&ax===0){c.remove(az,1);return}if(am.inline||am.wrapper){if(!am.exact&&ax===1){az=ay(az)}T(ah,function(aB){T(c.select(aB.inline,az),function(aD){var aC;if(aB.wrap_links===false){aC=aD.parentNode;do{if(aC.nodeName==="A"){return}}while(aC=aC.parentNode)}Z(aB,al,aD,aB.exact?aD:null)})});if(y(az.parentNode,ae,al)){c.remove(az,1);az=0;return C}if(am.merge_with_parents){c.getParent(az.parentNode,function(aB){if(y(aB,ae,al)){c.remove(az,1);az=0;return C}})}if(az&&am.merge_siblings!==false){az=u(E(az),az);az=u(az,E(az,C))}}})}if(am){if(ag){if(ag.nodeType){ac=c.createRng();ac.setStartBefore(ag);ac.setEndAfter(ag);an(p(ac,ah),null,true)}else{an(ag,null,true)}}else{if(!ai||!am.inline||c.select("td.mceSelected,th.mceSelected").length){var ao=aa.selection.getNode();if(!m&&ah[0].defaultBlock&&!c.getParent(ao,c.isBlock)){Y(ah[0].defaultBlock)}aa.selection.setRng(af());ak=r.getBookmark();an(p(r.getRng(C),ah),ak);if(am.styles&&(am.styles.color||am.styles.textDecoration)){a.walk(ao,L,"childNodes");L(ao)}r.moveToBookmark(ak);R(r.getRng(C));aa.nodeChanged()}else{U("apply",ae,al)}}}}function B(ad,am,af){var ag=V(ad),ao=ag[0],ak,aj,ac,al=true;function ae(av){var au,at,ar,aq,ax,aw;if(av.nodeType===3){return}if(av.nodeType===1&&x(av)){ax=al;al=x(av)==="true";aw=true}au=a.grep(av.childNodes);if(al&&!aw){for(at=0,ar=ag.length;at=0;ac--){ab=ah[ac].selector;if(!ab){return C}for(ag=ad.length-1;ag>=0;ag--){if(c.is(ad[ag],ab)){return C}}}}return X}function J(ab,ae,ac){var ad;if(!P){P={};ad={};aa.onNodeChange.addToTop(function(ag,af,ai){var ah=n(ai),aj={};T(P,function(ak,al){T(ah,function(am){if(y(am,al,{},ak.similar)){if(!ad[al]){T(ak,function(an){an(true,{node:am,format:al,parents:ah})});ad[al]=ak}aj[al]=ak;return false}})});T(ad,function(ak,al){if(!aj[al]){delete ad[al];T(ak,function(am){am(false,{node:ai,format:al,parents:ah})})}})})}T(ab.split(","),function(af){if(!P[af]){P[af]=[];P[af].similar=ac}P[af].push(ae)});return this}a.extend(this,{get:V,register:l,apply:Y,remove:B,toggle:F,match:k,matchAll:v,matchNode:y,canApply:z,formatChanged:J});j();W();function h(ab,ac){if(g(ab,ac.inline)){return C}if(g(ab,ac.block)){return C}if(ac.selector){return c.is(ab,ac.selector)}}function g(ac,ab){ac=ac||"";ab=ab||"";ac=""+(ac.nodeName||ac);ab=""+(ab.nodeName||ab);return ac.toLowerCase()==ab.toLowerCase()}function O(ac,ab){var ad=c.getStyle(ac,ab);if(ab=="color"||ab=="backgroundColor"){ad=c.toHex(ad)}if(ab=="fontWeight"&&ad==700){ad="bold"}return""+ad}function q(ab,ac){if(typeof(ab)!="string"){ab=ab(ac)}else{if(ac){ab=ab.replace(/%(\w+)/g,function(ae,ad){return ac[ad]||ae})}}return ab}function f(ab){return ab&&ab.nodeType===3&&/^([\t \r\n]+|)$/.test(ab.nodeValue)}function S(ad,ac,ab){var ae=c.create(ac,ab);ad.parentNode.insertBefore(ae,ad);ae.appendChild(ad);return ae}function p(ab,am,ae){var ap,an,ah,al,ad=ab.startContainer,ai=ab.startOffset,ar=ab.endContainer,ak=ab.endOffset;function ao(aA){var au,ax,az,aw,av,at;au=ax=aA?ad:ar;av=aA?"previousSibling":"nextSibling";at=c.getRoot();function ay(aB){return aB.nodeName=="BR"&&aB.getAttribute("data-mce-bogus")&&!aB.nextSibling}if(au.nodeType==3&&!f(au)){if(aA?ai>0:akan?an:ai];if(ad.nodeType==3){ai=0}}if(ar.nodeType==1&&ar.hasChildNodes()){an=ar.childNodes.length-1;ar=ar.childNodes[ak>an?an:ak-1];if(ar.nodeType==3){ak=ar.nodeValue.length}}function aq(au){var at=au;while(at){if(at.nodeType===1&&x(at)){return x(at)==="false"?at:au}at=at.parentNode}return au}function aj(au,ay,aA){var ax,av,az,at;function aw(aC,aE){var aF,aB,aD=aC.nodeValue;if(typeof(aE)=="undefined"){aE=aA?aD.length:0}if(aA){aF=aD.lastIndexOf(" ",aE);aB=aD.lastIndexOf("\u00a0",aE);aF=aF>aB?aF:aB;if(aF!==-1&&!ae){aF++}}else{aF=aD.indexOf(" ",aE);aB=aD.indexOf("\u00a0",aE);aF=aF!==-1&&(aB===-1||aF0&&ah.node.nodeType===3&&ah.node.nodeValue.charAt(ah.offset-1)===" "){if(ah.offset>1){ar=ah.node;ar.splitText(ah.offset-1)}}}}if(am[0].inline||am[0].block_expand){if(!am[0].inline||(ad.nodeType!=3||ai===0)){ad=ao(true)}if(!am[0].inline||(ar.nodeType!=3||ak===ar.nodeValue.length)){ar=ao()}}if(am[0].selector&&am[0].expand!==X&&!am[0].inline){ad=af(ad,"previousSibling");ar=af(ar,"nextSibling")}if(am[0].block||am[0].selector){ad=ac(ad,"previousSibling");ar=ac(ar,"nextSibling");if(am[0].block){if(!H(ad)){ad=ao(true)}if(!H(ar)){ar=ao()}}}if(ad.nodeType==1){ai=s(ad);ad=ad.parentNode}if(ar.nodeType==1){ak=s(ar)+1;ar=ar.parentNode}return{startContainer:ad,startOffset:ai,endContainer:ar,endOffset:ak}}function Z(ah,ag,ae,ab){var ad,ac,af;if(!h(ae,ah)){return X}if(ah.remove!="all"){T(ah.styles,function(aj,ai){aj=q(aj,ag);if(typeof(ai)==="number"){ai=aj;ab=0}if(!ab||g(O(ab,ai),aj)){c.setStyle(ae,ai,"")}af=1});if(af&&c.getAttrib(ae,"style")==""){ae.removeAttribute("style");ae.removeAttribute("data-mce-style")}T(ah.attributes,function(ak,ai){var aj;ak=q(ak,ag);if(typeof(ai)==="number"){ai=ak;ab=0}if(!ab||g(c.getAttrib(ab,ai),ak)){if(ai=="class"){ak=c.getAttrib(ae,ai);if(ak){aj="";T(ak.split(/\s+/),function(al){if(/mce\w+/.test(al)){aj+=(aj?" ":"")+al}});if(aj){c.setAttrib(ae,ai,aj);return}}}if(ai=="class"){ae.removeAttribute("className")}if(e.test(ai)){ae.removeAttribute("data-mce-"+ai)}ae.removeAttribute(ai)}});T(ah.classes,function(ai){ai=q(ai,ag);if(!ab||c.hasClass(ab,ai)){c.removeClass(ae,ai)}});ac=c.getAttribs(ae);for(ad=0;adad?ad:af]}if(ab.nodeType===3&&ag&&af>=ab.nodeValue.length){ab=new t(ab,aa.getBody()).next()||ab}if(ab.nodeType===3&&!ag&&af===0){ab=new t(ab,aa.getBody()).prev()||ab}return ab}function U(ak,ab,ai){var al="_mce_caret",ac=aa.settings.caret_debug;function ad(ap){var ao=c.create("span",{id:al,"data-mce-bogus":true,style:ac?"color:red":""});if(ap){ao.appendChild(aa.getDoc().createTextNode(G))}return ao}function aj(ap,ao){while(ap){if((ap.nodeType===3&&ap.nodeValue!==G)||ap.childNodes.length>1){return false}if(ao&&ap.nodeType===1){ao.push(ap)}ap=ap.firstChild}return true}function ag(ao){while(ao){if(ao.id===al){return ao}ao=ao.parentNode}}function af(ao){var ap;if(ao){ap=new t(ao,ao);for(ao=ap.current();ao;ao=ap.next()){if(ao.nodeType===3){return ao}}}}function ae(aq,ap){var ar,ao;if(!aq){aq=ag(r.getStart());if(!aq){while(aq=c.get(al)){ae(aq,false)}}}else{ao=r.getRng(true);if(aj(aq)){if(ap!==false){ao.setStartBefore(aq);ao.setEndBefore(aq)}c.remove(aq)}else{ar=af(aq);if(ar.nodeValue.charAt(0)===G){ar=ar.deleteData(0,1)}c.remove(aq,1)}r.setRng(ao)}}function ah(){var aq,ao,av,au,ar,ap,at;aq=r.getRng(true);au=aq.startOffset;ap=aq.startContainer;at=ap.nodeValue;ao=ag(r.getStart());if(ao){av=af(ao)}if(at&&au>0&&au=0;at--){aq.appendChild(c.clone(ax[at],false));aq=aq.firstChild}aq.appendChild(c.doc.createTextNode(G));aq=aq.firstChild;c.insertAfter(aw,ay);r.setCursorLocation(aq,1)}}function an(){var ap,ao,aq;ao=ag(r.getStart());if(ao&&!c.isEmpty(ao)){a.walk(ao,function(ar){if(ar.nodeType==1&&ar.id!==al&&!c.isEmpty(ar)){c.setAttrib(ar,"data-mce-bogus",null)}},"childNodes")}}if(!self._hasCaretEvents){aa.onBeforeGetContent.addToTop(function(){var ao=[],ap;if(aj(ag(r.getStart()),ao)){ap=ao.length;while(ap--){c.setAttrib(ao[ap],"data-mce-bogus","1")}}});a.each("onMouseUp onKeyUp".split(" "),function(ao){aa[ao].addToTop(function(){ae();an()})});aa.onKeyDown.addToTop(function(ao,aq){var ap=aq.keyCode;if(ap==8||ap==37||ap==39){ae(ag(r.getStart()))}an()});r.onSetContent.add(an);self._hasCaretEvents=true}if(ak=="apply"){ah()}else{am()}}function R(ac){var ab=ac.startContainer,ai=ac.startOffset,ae,ah,ag,ad,af;if(ab.nodeType==3&&ai>=ab.nodeValue.length){ai=s(ab);ab=ab.parentNode;ae=true}if(ab.nodeType==1){ad=ab.childNodes;ab=ad[Math.min(ai,ad.length-1)];ah=new t(ab,c.getParent(ab,c.isBlock));if(ai>ad.length-1||ae){ah.next()}for(ag=ah.current();ag;ag=ah.next()){if(ag.nodeType==3&&!f(ag)){af=c.create("a",null,G);ag.parentNode.insertBefore(af,ag);ac.setStart(ag,0);r.setRng(ac);c.remove(af);return}}}}}})(tinymce);tinymce.onAddEditor.add(function(e,a){var d,h,g,c=a.settings;function b(j,i){e.each(i,function(l,k){if(l){g.setStyle(j,k,l)}});g.rename(j,"span")}function f(i,j){g=i.dom;if(c.convert_fonts_to_spans){e.each(g.select("font,u,strike",j.node),function(k){d[k.nodeName.toLowerCase()](a.dom,k)})}}if(c.inline_styles){h=e.explode(c.font_size_legacy_values);d={font:function(j,i){b(i,{backgroundColor:i.style.backgroundColor,color:i.color,fontFamily:i.face,fontSize:h[parseInt(i.size,10)-1]})},u:function(j,i){b(i,{textDecoration:"underline"})},strike:function(j,i){b(i,{textDecoration:"line-through"})}};a.onPreProcess.add(f);a.onSetContent.add(f);a.onInit.add(function(){a.selection.onSetContent.add(f)})}});(function(b){var a=b.dom.TreeWalker;b.EnterKey=function(f){var i=f.dom,e=f.selection,d=f.settings,h=f.undoManager,c=f.schema.getNonEmptyElements();function g(A){var v=e.getRng(true),G,j,z,u,p,M,B,o,k,n,t,J,x,C;function E(N){return N&&i.isBlock(N)&&!/^(TD|TH|CAPTION|FORM)$/.test(N.nodeName)&&!/^(fixed|absolute)/i.test(N.style.position)&&i.getContentEditable(N)!=="true"}function F(O){var N;if(b.isIE&&i.isBlock(O)){N=e.getRng();O.appendChild(i.create("span",null,"\u00a0"));e.select(O);O.lastChild.outerHTML="";e.setRng(N)}}function y(P){var O=P,Q=[],N;while(O=O.firstChild){if(i.isBlock(O)){return}if(O.nodeType==1&&!c[O.nodeName.toLowerCase()]){Q.push(O)}}N=Q.length;while(N--){O=Q[N];if(!O.hasChildNodes()||(O.firstChild==O.lastChild&&O.firstChild.nodeValue==="")){i.remove(O)}else{if(O.nodeName=="A"&&(O.innerText||O.textContent)===" "){i.remove(O)}}}}function m(O){var T,R,N,U,S,Q=O,P;N=i.createRng();if(O.hasChildNodes()){T=new a(O,O);while(R=T.current()){if(R.nodeType==3){N.setStart(R,0);N.setEnd(R,0);break}if(c[R.nodeName.toLowerCase()]){N.setStartBefore(R);N.setEndBefore(R);break}Q=R;R=T.next()}if(!R){N.setStart(Q,0);N.setEnd(Q,0)}}else{if(O.nodeName=="BR"){if(O.nextSibling&&i.isBlock(O.nextSibling)){if(!M||M<9){P=i.create("br");O.parentNode.insertBefore(P,O)}N.setStartBefore(O);N.setEndBefore(O)}else{N.setStartAfter(O);N.setEndAfter(O)}}else{N.setStart(O,0);N.setEnd(O,0)}}e.setRng(N);i.remove(P);S=i.getViewPort(f.getWin());U=i.getPos(O).y;if(US.y+S.h){f.getWin().scrollTo(0,U'}return R}function q(Q){var P,O,N;if(z.nodeType==3&&(Q?u>0:u=z.nodeValue.length){if(!b.isIE&&!D()){P=i.create("br");v.insertNode(P);v.setStartAfter(P);v.setEndAfter(P);O=true}}P=i.create("br");v.insertNode(P);if(b.isIE&&t=="PRE"&&(!M||M<8)){P.parentNode.insertBefore(i.doc.createTextNode("\r"),P)}N=i.create("span",{}," ");P.parentNode.insertBefore(N,P);e.scrollIntoView(N);i.remove(N);if(!O){v.setStartAfter(P);v.setEndAfter(P)}else{v.setStartBefore(P);v.setEndBefore(P)}e.setRng(v);h.add()}function s(N){do{if(N.nodeType===3){N.nodeValue=N.nodeValue.replace(/^[\r\n]+/,"")}N=N.firstChild}while(N)}function K(P){var N=i.getRoot(),O,Q;O=P;while(O!==N&&i.getContentEditable(O)!=="false"){if(i.getContentEditable(O)==="true"){Q=O}O=O.parentNode}return O!==N?Q:N}function I(O){var N;if(!b.isIE){O.normalize();N=O.lastChild;if(!N||(/^(left|right)$/gi.test(i.getStyle(N,"float",true)))){i.add(O,"br")}}}if(!v.collapsed){f.execCommand("Delete");return}if(A.isDefaultPrevented()){return}z=v.startContainer;u=v.startOffset;x=(d.force_p_newlines?"p":"")||d.forced_root_block;x=x?x.toUpperCase():"";M=i.doc.documentMode;B=A.shiftKey;if(z.nodeType==1&&z.hasChildNodes()){C=u>z.childNodes.length-1;z=z.childNodes[Math.min(u,z.childNodes.length-1)]||z;if(C&&z.nodeType==3){u=z.nodeValue.length}else{u=0}}j=K(z);if(!j){return}h.beforeChange();if(!i.isBlock(j)&&j!=i.getRoot()){if(!x||B){L()}return}if((x&&!B)||(!x&&B)){z=l(z,u)}p=i.getParent(z,i.isBlock);n=p?i.getParent(p.parentNode,i.isBlock):null;t=p?p.nodeName.toUpperCase():"";J=n?n.nodeName.toUpperCase():"";if(J=="LI"&&!A.ctrlKey){p=n;t=J}if(t=="LI"){if(!x&&B){L();return}if(i.isEmpty(p)){if(/^(UL|OL|LI)$/.test(n.parentNode.nodeName)){return false}H();return}}if(t=="PRE"&&d.br_in_pre!==false){if(!B){L();return}}else{if((!x&&!B&&t!="LI")||(x&&B)){L();return}}x=x||"P";if(q()){if(/^(H[1-6]|PRE)$/.test(t)&&J!="HGROUP"){o=r(x)}else{o=r()}if(d.end_container_on_empty_block&&E(n)&&i.isEmpty(p)){o=i.split(n,p)}else{i.insertAfter(o,p)}m(o)}else{if(q(true)){o=p.parentNode.insertBefore(r(),p);F(o)}else{G=v.cloneRange();G.setEndAfter(p);k=G.extractContents();s(k);o=k.firstChild;i.insertAfter(k,p);y(o);I(p);m(o)}}i.setAttrib(o,"id","");h.add()}f.onKeyDown.add(function(k,j){if(j.keyCode==13){if(g(j)!==false){j.preventDefault()}}})}})(tinymce); \ No newline at end of file diff --git a/library/tinymce/jscripts/tiny_mce/tiny_mce_popup.js b/library/tinymce/jscripts/tiny_mce/tiny_mce_popup.js deleted file mode 100644 index bb8e58c88..000000000 --- a/library/tinymce/jscripts/tiny_mce/tiny_mce_popup.js +++ /dev/null @@ -1,5 +0,0 @@ - -// Uncomment and change this document.domain value if you are loading the script cross subdomains -// document.domain = 'moxiecode.com'; - -var tinymce=null,tinyMCEPopup,tinyMCE;tinyMCEPopup={init:function(){var b=this,a,c;a=b.getWin();tinymce=a.tinymce;tinyMCE=a.tinyMCE;b.editor=tinymce.EditorManager.activeEditor;b.params=b.editor.windowManager.params;b.features=b.editor.windowManager.features;b.dom=b.editor.windowManager.createInstance("tinymce.dom.DOMUtils",document,{ownEvents:true,proxy:tinyMCEPopup._eventProxy});b.dom.bind(window,"ready",b._onDOMLoaded,b);if(b.features.popup_css!==false){b.dom.loadCSS(b.features.popup_css||b.editor.settings.popup_css)}b.listeners=[];b.onInit={add:function(e,d){b.listeners.push({func:e,scope:d})}};b.isWindow=!b.getWindowArg("mce_inline");b.id=b.getWindowArg("mce_window_id");b.editor.windowManager.onOpen.dispatch(b.editor.windowManager,window)},getWin:function(){return(!window.frameElement&&window.dialogArguments)||opener||parent||top},getWindowArg:function(c,b){var a=this.params[c];return tinymce.is(a)?a:b},getParam:function(b,a){return this.editor.getParam(b,a)},getLang:function(b,a){return this.editor.getLang(b,a)},execCommand:function(d,c,e,b){b=b||{};b.skip_focus=1;this.restoreSelection();return this.editor.execCommand(d,c,e,b)},resizeToInnerSize:function(){var a=this;setTimeout(function(){var b=a.dom.getViewPort(window);a.editor.windowManager.resizeBy(a.getWindowArg("mce_width")-b.w,a.getWindowArg("mce_height")-b.h,a.id||window)},10)},executeOnLoad:function(s){this.onInit.add(function(){eval(s)})},storeSelection:function(){this.editor.windowManager.bookmark=tinyMCEPopup.editor.selection.getBookmark(1)},restoreSelection:function(){var a=tinyMCEPopup;if(!a.isWindow&&tinymce.isIE){a.editor.selection.moveToBookmark(a.editor.windowManager.bookmark)}},requireLangPack:function(){var b=this,a=b.getWindowArg("plugin_url")||b.getWindowArg("theme_url");if(a&&b.editor.settings.language&&b.features.translate_i18n!==false&&b.editor.settings.language_load!==false){a+="/langs/"+b.editor.settings.language+"_dlg.js";if(!tinymce.ScriptLoader.isDone(a)){document.write(' - - diff --git a/view/templates/event_head.tpl b/view/templates/event_head.tpl index 5461ea947..b794e6dc4 100644 --- a/view/templates/event_head.tpl +++ b/view/templates/event_head.tpl @@ -156,49 +156,10 @@ }); -{{if $editselect != 'none'}} - - diff --git a/view/templates/jot-header.tpl b/view/templates/jot-header.tpl index 7498bfc42..6ddd69545 100644 --- a/view/templates/jot-header.tpl +++ b/view/templates/jot-header.tpl @@ -2,12 +2,11 @@ - - - - + \ No newline at end of file diff --git a/view/templates/wallmsg-header.tpl b/view/templates/wallmsg-header.tpl index 2d4cd2379..3208ac460 100644 --- a/view/templates/wallmsg-header.tpl +++ b/view/templates/wallmsg-header.tpl @@ -1,52 +1,5 @@ - - - - From 4ad6a7f073c14c58a0acec2d5354a16433043b57 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 26 Jan 2017 22:54:32 -0500 Subject: [PATCH 61/68] - Remove TinyMCE mentions in themes --- view/theme/frio/templates/event_head.tpl | 43 --- view/theme/frio/templates/jot-header.tpl | 184 ++--------- view/theme/frio/templates/msg-header.tpl | 53 ---- view/theme/frio/theme.php | 3 - view/theme/frost-mobile/js/main.js | 229 +++++--------- view/theme/frost-mobile/js/theme.js | 272 +++------------- view/theme/frost-mobile/templates/jot-end.tpl | 4 +- .../frost-mobile/templates/jot-header.tpl | 2 - .../frost-mobile/templates/msg-header.tpl | 2 - .../frost-mobile/templates/profed_head.tpl | 6 - .../frost-mobile/templates/wallmsg-header.tpl | 3 - view/theme/frost/TODO | 1 - view/theme/frost/js/main.js | 188 ++++------- view/theme/frost/js/theme.js | 296 +++--------------- view/theme/frost/templates/contact_end.tpl | 3 - view/theme/frost/templates/contact_head.tpl | 5 - view/theme/frost/templates/end.tpl | 6 - view/theme/frost/templates/event_end.tpl | 2 - view/theme/frost/templates/event_head.tpl | 1 - view/theme/frost/templates/jot-header.tpl | 1 - view/theme/frost/templates/msg-header.tpl | 1 - view/theme/frost/templates/profed_end.tpl | 1 - view/theme/frost/templates/profed_head.tpl | 6 - view/theme/frost/templates/wallmsg-header.tpl | 1 - view/theme/smoothly/templates/jot-header.tpl | 204 +++--------- 25 files changed, 318 insertions(+), 1199 deletions(-) diff --git a/view/theme/frio/templates/event_head.tpl b/view/theme/frio/templates/event_head.tpl index e836f226f..4069b8877 100644 --- a/view/theme/frio/templates/event_head.tpl +++ b/view/theme/frio/templates/event_head.tpl @@ -72,51 +72,8 @@ var modparams = {{$modparams}} - -{{if $editselect != 'none'}} - diff --git a/view/theme/frio/templates/jot-header.tpl b/view/theme/frio/templates/jot-header.tpl index af9951528..27fc608e7 100644 --- a/view/theme/frio/templates/jot-header.tpl +++ b/view/theme/frio/templates/jot-header.tpl @@ -2,134 +2,37 @@ @@ -140,7 +43,7 @@ $(document).ready(function() { - /* enable tinymce on focus and click */ + /* enable editor on focus and click */ $("#profile-jot-text").focus(enableOnUser); $("#profile-jot-text").click(enableOnUser); @@ -177,33 +80,6 @@ Dialog.doFileBrowser("main"); jotActive(); }); - - /** - var uploader = new window.AjaxUpload( - 'wall-image-upload', - { action: 'wall_upload/{{$nickname}}', - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, - onComplete: function(file,response) { - addeditortext(response); - $('#profile-rotator').hide(); - } - } - ); - var file_uploader = new window.AjaxUpload( - 'wall-file-upload', - { action: 'wall_attach/{{$nickname}}', - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, - onComplete: function(file,response) { - addeditortext(response); - $('#profile-rotator').hide(); - } - } - ); - - } - **/ }); function deleteCheckedItems() { @@ -377,18 +253,14 @@ } function addeditortext(data) { - if(plaintext == 'none') { - // get the textfield - var textfield = document.getElementById("profile-jot-text"); - // check if the textfield does have the default-value - jotTextOpenUI(textfield); - // save already existent content - var currentText = $("#profile-jot-text").val(); - //insert the data as new value - textfield.value = currentText + data; - } - else - tinyMCE.execCommand('mceInsertRawHTML',false,data); + // get the textfield + var textfield = document.getElementById("profile-jot-text"); + // check if the textfield does have the default-value + jotTextOpenUI(textfield); + // save already existent content + var currentText = $("#profile-jot-text").val(); + //insert the data as new value + textfield.value = currentText + data; } {{$geotag}} diff --git a/view/theme/frio/templates/msg-header.tpl b/view/theme/frio/templates/msg-header.tpl index 8d648d89a..2d927081d 100644 --- a/view/theme/frio/templates/msg-header.tpl +++ b/view/theme/frio/templates/msg-header.tpl @@ -1,67 +1,14 @@ - - diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index d8b10c4e3..7584e0b37 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -16,9 +16,6 @@ function frio_init(App $a) { // disable the events module link in the profile tab $a->theme_events_in_profile = false; - // Disallow the richtext editor - $a->theme_richtext_editor = false; - set_template_engine($a, 'smarty3'); $baseurl = App::get_baseurl(); diff --git a/view/theme/frost-mobile/js/main.js b/view/theme/frost-mobile/js/main.js index 3ec2421df..b7b11ef1f 100644 --- a/view/theme/frost-mobile/js/main.js +++ b/view/theme/frost-mobile/js/main.js @@ -1,10 +1,10 @@ function openClose(listID) { -/* if(document.getElementById(theID).style.display == "block") { - document.getElementById(theID).style.display = "none" +/* if(document.getElementById(theID).style.display == "block") { + document.getElementById(theID).style.display = "none" } - else { - document.getElementById(theID).style.display = "block" + else { + document.getElementById(theID).style.display = "block" }*/ listID = "#" + listID.replace(/:/g, "\\:"); listID = listID.replace(/\./g, "\\."); @@ -21,11 +21,11 @@ } function openMenu(theID) { - document.getElementById(theID).style.display = "block" + document.getElementById(theID).style.display = "block" } function closeMenu(theID) { - document.getElementById(theID).style.display = "none" + document.getElementById(theID).style.display = "none" } @@ -59,29 +59,25 @@ if (e.hasClass("ttright")) pos="right"; e.tipTip({defaultPosition: pos, edgeOffset: 8}); });*/ - - - + + + /* setup onoff widgets */ $(".onoff input").each(function(){ val = $(this).val(); id = $(this).attr("id"); $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - + }); $(".onoff > a").click(function(event){ - event.preventDefault(); + event.preventDefault(); var input = $(this).siblings("input"); var val = 1-input.val(); var id = input.attr("id"); $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); $("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden"); input.val(val); - //console.log(id); }); - - /* setup field_richtext */ - /*setupFieldRichtext();*/ /* popup menus */ function close_last_popup_menu(e) { @@ -126,20 +122,20 @@ $('html').click(function(e) { close_last_popup_menu(e); }); - + // fancyboxes /*$("a.popupbox").colorbox({ 'inline' : true, 'transition' : 'none' });*/ - + /* notifications template */ var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html()); var notifications_all = unescape($('
                                            ').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack var notifications_mark = unescape($('
                                            ').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack var notifications_empty = unescape($("#nav-notifications-menu").html()); - + /* nav update event */ $('nav').bind('nav-update', function(e,data){; var invalid = $(data).find('invalid').text(); @@ -152,7 +148,7 @@ var home = $(data).find('home').text(); if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') } $('#home-update').html(home); - + var intro = $(data).find('intro').text(); if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') } $('#intro-update').html(intro); @@ -160,7 +156,7 @@ var mail = $(data).find('mail').text(); if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') } $('#mail-update').html(mail); - + var intro = $(data).find('intro').text(); if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') } $('#intro-update-li').html(intro); @@ -170,7 +166,7 @@ $('#mail-update-li').html(mail); var eNotif = $(data).find('notif') - + if (eNotif.children("note").length==0){ $("#nav-notifications-menu").html(notifications_empty); } else { @@ -201,7 +197,7 @@ } if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') } $('#notify-update').html(notif); - + var eSysmsg = $(data).find('sysmsgs'); eSysmsg.children("notice").each(function(){ text = $(this).text(); @@ -211,11 +207,11 @@ text = $(this).text(); $.jGrowl(text, { sticky: false, theme: 'info', life: 1000 }); }); - + }); - - - NavUpdate(); + + + NavUpdate(); // Allow folks to stop the ajax page updates with the pause/break key /* $(document).keydown(function(event) { if(event.keyCode == '8') { @@ -241,8 +237,8 @@ } } });*/ - - + + }); function NavUpdate() { @@ -253,11 +249,11 @@ $(data).find('result').each(function() { // send nav-update event $('nav').trigger('nav-update', this); - - + + // start live update - + if($('#live-network').length) { src = 'network'; liveUpdate(); } if($('#live-profile').length) { src = 'profile'; liveUpdate(); } @@ -267,19 +263,19 @@ /*if($('#live-display').length) { if(liking) { liking = 0; - window.location.href=window.location.href + window.location.href=window.location.href } }*/ if($('#live-photos').length) { if(liking) { liking = 0; - window.location.href=window.location.href + window.location.href=window.location.href } } - - - + + + }); }) ; } @@ -368,8 +364,8 @@ }); $('#' + prev).after($(this)); } - else { - $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); + else { + $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); if($('#' + ident + ' ' + '.comment-edit-text-empty').length) $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper')); $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total')); @@ -379,9 +375,9 @@ $(this).attr('src',$(this).attr('dst')); }); } - prev = ident; + prev = ident; });*/ - + $('.like-rotator').hide(); if(commentBusy) { commentBusy = false; @@ -416,10 +412,10 @@ $(node).removeClass("drop").addClass("drophide"); }*/ - // Since our ajax calls are asynchronous, we will give a few - // seconds for the first ajax call (setting like/dislike), then + // Since our ajax calls are asynchronous, we will give a few + // seconds for the first ajax call (setting like/dislike), then // run the updater to pick up any changes and display on the page. - // The updater will turn any rotators off when it's done. + // The updater will turn any rotators off when it's done. // This function will have returned long before any of these // events have completed and therefore there won't be any // visible feedback that anything changed without all this @@ -445,13 +441,13 @@ $('#star-' + ident).addClass('hidden'); $('#unstar-' + ident).removeClass('hidden'); } - else { + else { $('#starred-' + ident).addClass('unstarred'); $('#starred-' + ident).removeClass('starred'); $('#star-' + ident).removeClass('hidden'); $('#unstar-' + ident).addClass('hidden'); } - //$('#like-rotator-' + ident).hide(); + //$('#like-rotator-' + ident).hide(); }); } @@ -504,8 +500,8 @@ commentBusy = true; $('body').css('cursor', 'wait'); $("#comment-preview-inp-" + id).val("0"); - $.post( - "item", + $.post( + "item", $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { @@ -521,28 +517,28 @@ window.location.href=data.reload; } }, - "json" - ); - return false; + "json" + ); + return false; } function preview_comment(id) { $("#comment-preview-inp-" + id).val("1"); $("#comment-edit-preview-" + id).show(); - $.post( - "item", + $.post( + "item", $("#comment-edit-form-" + id).serialize(), function(data) { if(data.preview) { - + $("#comment-edit-preview-" + id).html(data.preview); $("#comment-edit-preview-" + id + " a").click(function() { return false; }); } }, - "json" - ); - return true; + "json" + ); + return true; } @@ -562,20 +558,19 @@ function preview_post() { $("#jot-preview").val("1"); $("#jot-preview-content").show(); - tinyMCE.triggerSave(); - $.post( - "item", + $.post( + "item", $("#profile-jot-form").serialize(), function(data) { - if(data.preview) { + if(data.preview) { $("#jot-preview-content").html(data.preview); $("#jot-preview-content" + " a").click(function() { return false; }); } }, - "json" - ); + "json" + ); $("#jot-preview").val("0"); - return true; + return true; } @@ -585,36 +580,36 @@ stopped = false; $('#pause').html(''); } - - function bin2hex(s){ - // Converts the binary representation of data to hex - // - // version: 812.316 - // discuss at: http://phpjs.org/functions/bin2hex - // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) - // + bugfixed by: Onno Marsman - // + bugfixed by: Linuxworld - // * example 1: bin2hex('Kev'); - // * returns 1: '4b6576' - // * example 2: bin2hex(String.fromCharCode(0x00)); - // * returns 2: '00' - var v,i, f = 0, a = []; - s += ''; - f = s.length; - - for (i = 0; i=5 && window.eventModeParams == 2) { @@ -209,11 +171,11 @@ $(document).ready(function() { } else if (args.length>=4 && window.eventModeParams == 1) { $("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1); } - + // show event popup var hash = location.hash.split("-") if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]); - } + } }); @@ -270,202 +232,52 @@ function showEvent(eventid) { function(data){ $.colorbox({html:data}); } - );*/ + );*/ } - - /* - * TinyMCE/Editor + * Editor */ - -var editor=false; +var editor = false; var textlen = 0; -var plaintext = 'none';//window.editSelect; -//var ispublic = window.isPublic; - -function initEditor(cb){ - if (editor==false){ -// $("#profile-jot-text-loading").show(); - if(plaintext == 'none') { -// $("#profile-jot-text-loading").hide(); - $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); - $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); - editor = true; -/* $("a#jot-perms-icon").colorbox({ - 'inline' : true, - 'transition' : 'elastic' - });*/ - $("a#jot-perms-icon, a#settings-default-perms-menu").click(function () { - var parent = $("#profile-jot-acl-wrapper").parent(); - if (parent.css('display') == 'none') { - parent.show(); - } else { - parent.hide(); - } -// $("#profile-jot-acl-wrapper").parent().toggle(); - return false; - }); - $(".jothidden").show(); - if (typeof cb!="undefined") cb(); - return; - } -/* tinyMCE.init({ - theme : "advanced", - mode : "specific_textareas", - editor_selector: window.editSelect, - auto_focus: "profile-jot-text", - plugins : "bbcode,paste,autoresize, inlinepopups", - theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", - theme_advanced_buttons2 : "", - theme_advanced_buttons3 : "", - theme_advanced_toolbar_location : "top", - theme_advanced_toolbar_align : "center", - theme_advanced_blockformats : "blockquote,code", - gecko_spellcheck : true, - paste_text_sticky : true, - entity_encoding : "raw", - add_unload_trigger : false, - remove_linebreaks : false, - //force_p_newlines : false, - //force_br_newlines : true, - forced_root_block : 'div', - convert_urls: false, - content_css: "$baseurl/view/custom_tinymce.css", - theme_advanced_path : false, - file_browser_callback : "fcFileBrowser", - setup : function(ed) { - cPopup = null; - ed.onKeyDown.add(function(ed,e) { - if(cPopup !== null) - cPopup.onkey(e); - }); - - ed.onKeyUp.add(function(ed, e) { - var txt = tinyMCE.activeEditor.getContent(); - match = txt.match(/@([^ \n]+)$/); - if(match!==null) { - if(cPopup === null) { - cPopup = new ACPopup(this,baseurl+"/acl"); - } - if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]); - if(! cPopup.ready) cPopup = null; - } - else { - if(cPopup !== null) { cPopup.close(); cPopup = null; } - } - - textlen = txt.length; - if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) { - $('#profile-jot-desc').html(ispublic); - } - else { - $('#profile-jot-desc').html(' '); - } - - //Character count - - if(textlen <= 140) { - $('#character-counter').removeClass('red'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('grey'); - } - if((textlen > 140) && (textlen <= 420)) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('red'); - $('#character-counter').addClass('orange'); - } - if(textlen > 420) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('red'); - } - $('#character-counter').text(textlen); - }); - - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - $("#profile-jot-text-loading").hide(); - $(".jothidden").show(); - if (typeof cb!="undefined") cb(); - }); +function initEditor(callback){ + if (editor == false) { + $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); + $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); + $("a#jot-perms-icon, a#settings-default-perms-menu").click(function () { + var parent = $("#profile-jot-acl-wrapper").parent(); + if (parent.css('display') == 'none') { + parent.show(); + } else { + parent.hide(); } + return false; }); + $(".jothidden").show(); + editor = true; - // setup acl popup - $("a#jot-perms-icon").colorbox({ - 'inline' : true, - 'transition' : 'elastic' - }); */ - } else { - if (typeof cb!="undefined") cb(); + } + if (typeof callback != "undefined") { + callback(); } } function enableOnUser(){ - if (editor) return; + if (editor) { + return; + } $(this).val(""); initEditor(); } -/*function wallInitEditor() { - var plaintext = window.editSelect; - - if(plaintext != 'none') { - tinyMCE.init({ - theme : "advanced", - mode : "specific_textareas", - editor_selector: /(profile-jot-text|prvmail-text)/, - plugins : "bbcode,paste", - theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor", - theme_advanced_buttons2 : "", - theme_advanced_buttons3 : "", - theme_advanced_toolbar_location : "top", - theme_advanced_toolbar_align : "center", - theme_advanced_blockformats : "blockquote,code", - gecko_spellcheck : true, - paste_text_sticky : true, - entity_encoding : "raw", - add_unload_trigger : false, - remove_linebreaks : false, - //force_p_newlines : false, - //force_br_newlines : true, - forced_root_block : 'div', - convert_urls: false, - content_css: baseurl + "/view/custom_tinymce.css", - //Character count - theme_advanced_path : false, - setup : function(ed) { - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - var editorId = ed.editorId; - var textarea = $('#'+editorId); - if (typeof(textarea.attr('tabindex')) != "undefined") { - $('#'+editorId+'_ifr').attr('tabindex', textarea.attr('tabindex')); - textarea.attr('tabindex', null); - } - }); - } - }); - } - else - $("#prvmail-text").contact_autocomplete(baseurl+"/acl"); -}*/ - - - /* * Jot */ function addeditortext(textElem, data) { - if(window.editSelect == 'none') { - var currentText = $(textElem).val(); - $(textElem).val(currentText + data); - } -/* else - tinyMCE.execCommand('mceInsertRawHTML',false,data);*/ + var currentText = $(textElem).val(); + $(textElem).val(currentText + data); } function jotVideoURL() { @@ -566,7 +378,7 @@ function confirmDelete() { return confirm(window.delItem); } else { checkedstr = $(this).val(); } - } + } }); $.post('item', { dropitems: checkedstr }, function(data) { window.location.reload(); @@ -591,7 +403,7 @@ function itemTag(id) { } function itemFiler(id) { - + $.get('filer/', function(data){ var promptText = $('#id_term_label', data).text(); @@ -609,7 +421,7 @@ function itemFiler(id) { }); /* var bordercolor = $("input").css("border-color"); - + $.get('filer/', function(data){ $.colorbox({html:data}); $("#id_term").keypress(function(){ @@ -618,7 +430,7 @@ function itemFiler(id) { $("#select_term").change(function(){ $("#id_term").css("border-color",bordercolor); }) - + $("#filer_save").click(function(e){ e.preventDefault(); reply = $("#id_term").val(); @@ -636,7 +448,7 @@ function itemFiler(id) { return false; }); }); -*/ +*/ } @@ -710,7 +522,7 @@ function qCommentInsert(obj,id) { function insertFormatting(comment,BBcode,id) { - + var tmpStr = $("#comment-edit-text-" + id).val(); if(tmpStr == comment) { tmpStr = ""; @@ -726,7 +538,7 @@ function insertFormatting(comment,BBcode,id) { selected = document.selection.createRange(); if (BBcode == "url"){ selected.text = "["+BBcode+"=http://]" + selected.text + "[/"+BBcode+"]"; - } else + } else selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; diff --git a/view/theme/frost-mobile/templates/jot-end.tpl b/view/theme/frost-mobile/templates/jot-end.tpl index 7a7f27d45..5a38b51ac 100644 --- a/view/theme/frost-mobile/templates/jot-end.tpl +++ b/view/theme/frost-mobile/templates/jot-end.tpl @@ -1,6 +1,4 @@ - - - + diff --git a/view/theme/frost-mobile/templates/jot-header.tpl b/view/theme/frost-mobile/templates/jot-header.tpl index 1ba0ef8ee..18e7f0005 100644 --- a/view/theme/frost-mobile/templates/jot-header.tpl +++ b/view/theme/frost-mobile/templates/jot-header.tpl @@ -1,8 +1,6 @@ - diff --git a/view/theme/frost-mobile/templates/wallmsg-header.tpl b/view/theme/frost-mobile/templates/wallmsg-header.tpl index 5d28b8e03..752085dbd 100644 --- a/view/theme/frost-mobile/templates/wallmsg-header.tpl +++ b/view/theme/frost-mobile/templates/wallmsg-header.tpl @@ -1,8 +1,5 @@ - - diff --git a/view/theme/frost/TODO b/view/theme/frost/TODO index 1378e5d46..9c8908b83 100644 --- a/view/theme/frost/TODO +++ b/view/theme/frost/TODO @@ -2,7 +2,6 @@ Home page edit pencil Preview spacing Photo album display -Check TinyMCE optimization "Profiles" page is wonky Settings, admin, photos upload don't look beautiful diff --git a/view/theme/frost/js/main.js b/view/theme/frost/js/main.js index 733064b30..add248fc6 100644 --- a/view/theme/frost/js/main.js +++ b/view/theme/frost/js/main.js @@ -1,10 +1,10 @@ function openClose(listID) { -/* if(document.getElementById(theID).style.display == "block") { - document.getElementById(theID).style.display = "none" +/* if(document.getElementById(theID).style.display == "block") { + document.getElementById(theID).style.display = "none" } - else { - document.getElementById(theID).style.display = "block" + else { + document.getElementById(theID).style.display = "block" }*/ listID = "#" + listID.replace(/:/g, "\\:"); listID = listID.replace(/\./g, "\\."); @@ -21,11 +21,11 @@ } function openMenu(theID) { - document.getElementById(theID).style.display = "block" + document.getElementById(theID).style.display = "block" } function closeMenu(theID) { - document.getElementById(theID).style.display = "none" + document.getElementById(theID).style.display = "none" } @@ -48,7 +48,7 @@ $.ajaxSetup({cache: false}); collapseHeight(); - + /* setup tooltips *//* $("a,.tt").each(function(){ var e = $(this); @@ -59,18 +59,18 @@ if (e.hasClass("ttright")) pos="right"; e.tipTip({defaultPosition: pos, edgeOffset: 8}); });*/ - - - + + + /* setup onoff widgets */ $(".onoff input").each(function(){ val = $(this).val(); id = $(this).attr("id"); $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - + }); $(".onoff > a").click(function(event){ - event.preventDefault(); + event.preventDefault(); var input = $(this).siblings("input"); var val = 1-input.val(); var id = input.attr("id"); @@ -79,9 +79,6 @@ input.val(val); //console.log(id); }); - - /* setup field_richtext */ - //setupFieldRichtext(); /* popup menus */ function close_last_popup_menu(e) { @@ -119,20 +116,20 @@ $('html').click(function(e) { close_last_popup_menu(e); }); - + // fancyboxes $("a.popupbox").colorbox({ 'inline' : true, 'transition' : 'elastic' }); - + /* notifications template */ var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html()); var notifications_all = unescape($('
                                            ').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack var notifications_mark = unescape($('
                                            ').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack var notifications_empty = unescape($("#nav-notifications-menu").html()); - + /* nav update event */ $('nav').bind('nav-update', function(e,data){; var invalid = $(data).find('invalid').text(); @@ -145,7 +142,7 @@ var home = $(data).find('home').text(); if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') } $('#home-update').html(home); - + var intro = $(data).find('intro').text(); if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') } $('#intro-update').html(intro); @@ -153,7 +150,7 @@ var mail = $(data).find('mail').text(); if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') } $('#mail-update').html(mail); - + var intro = $(data).find('intro').text(); if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') } $('#intro-update-li').html(intro); @@ -163,7 +160,7 @@ $('#mail-update-li').html(mail); var eNotif = $(data).find('notif') - + if (eNotif.children("note").length==0){ $("#nav-notifications-menu").html(notifications_empty); } else { @@ -194,7 +191,7 @@ } if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') } $('#notify-update').html(notif); - + var eSysmsg = $(data).find('sysmsgs'); eSysmsg.children("notice").each(function(){ text = $(this).text(); @@ -204,11 +201,11 @@ text = $(this).text(); $.jGrowl(text, { sticky: false, theme: 'info', life: 1000 }); }); - + }); - - - NavUpdate(); + + + NavUpdate(); // Allow folks to stop the ajax page updates with the pause/break key $(document).keydown(function(event) { if(event.keyCode == '8') { @@ -234,8 +231,8 @@ } } }); - - + + }); function NavUpdate() { @@ -246,11 +243,11 @@ $(data).find('result').each(function() { // send nav-update event $('nav').trigger('nav-update', this); - - + + // start live update - + if($('#live-network').length) { src = 'network'; liveUpdate(); } if($('#live-profile').length) { src = 'profile'; liveUpdate(); } @@ -260,19 +257,19 @@ /*if($('#live-display').length) { if(liking) { liking = 0; - window.location.href=window.location.href + window.location.href=window.location.href } }*/ if($('#live-photos').length) { if(liking) { liking = 0; - window.location.href=window.location.href + window.location.href=window.location.href } } - - - + + + }); }) ; } @@ -382,8 +379,8 @@ }); $('#' + prev).after($(this)); } - else { - $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); + else { + $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); if($('#' + ident + ' ' + '.comment-edit-text-empty').length) $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper')); $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total')); @@ -393,9 +390,9 @@ $(this).attr('src',$(this).attr('dst')); }); } - prev = ident; + prev = ident; });*/ - + $('.like-rotator').hide(); if(commentBusy) { commentBusy = false; @@ -403,7 +400,7 @@ } /* autocomplete @nicknames */ $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl"); - + collapseHeight(); // setup videos, since VideoJS won't take care of any loaded via AJAX @@ -422,7 +419,7 @@ $(this).divgrow({ initialHeight: 400, showBrackets: false, speed: 0 }); $(this).addClass('divmore'); $('html').height('auto'); - } + } }); } @@ -434,10 +431,10 @@ $(node).removeClass("drop").addClass("drophide"); }*/ - // Since our ajax calls are asynchronous, we will give a few - // seconds for the first ajax call (setting like/dislike), then + // Since our ajax calls are asynchronous, we will give a few + // seconds for the first ajax call (setting like/dislike), then // run the updater to pick up any changes and display on the page. - // The updater will turn any rotators off when it's done. + // The updater will turn any rotators off when it's done. // This function will have returned long before any of these // events have completed and therefore there won't be any // visible feedback that anything changed without all this @@ -461,13 +458,13 @@ $('#star-' + ident).addClass('hidden'); $('#unstar-' + ident).removeClass('hidden'); } - else { + else { $('#starred-' + ident).addClass('unstarred'); $('#starred-' + ident).removeClass('starred'); $('#star-' + ident).removeClass('hidden'); $('#unstar-' + ident).addClass('hidden'); } -// $('#like-rotator-' + ident).hide(); +// $('#like-rotator-' + ident).hide(); }); } @@ -520,8 +517,8 @@ commentBusy = true; $('body').css('cursor', 'wait'); $("#comment-preview-inp-" + id).val("0"); - $.post( - "item", + $.post( + "item", $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { @@ -537,28 +534,28 @@ window.location.href=data.reload; } }, - "json" - ); - return false; + "json" + ); + return false; } function preview_comment(id) { $("#comment-preview-inp-" + id).val("1"); $("#comment-edit-preview-" + id).show(); - $.post( - "item", + $.post( + "item", $("#comment-edit-form-" + id).serialize(), function(data) { if(data.preview) { - + $("#comment-edit-preview-" + id).html(data.preview); $("#comment-edit-preview-" + id + " a").click(function() { return false; }); } }, - "json" - ); - return true; + "json" + ); + return true; } @@ -578,20 +575,19 @@ function preview_post() { $("#jot-preview").val("1"); $("#jot-preview-content").show(); - tinyMCE.triggerSave(); - $.post( - "item", + $.post( + "item", $("#profile-jot-form").serialize(), function(data) { - if(data.preview) { + if(data.preview) { $("#jot-preview-content").html(data.preview); $("#jot-preview-content" + " a").click(function() { return false; }); } }, - "json" - ); + "json" + ); $("#jot-preview").val("0"); - return true; + return true; } @@ -630,7 +626,7 @@ $('body .fakelink').css('cursor', 'wait'); $.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) { $('#group-update-wrapper').html(data); - $('body .fakelink').css('cursor', 'auto'); + $('body .fakelink').css('cursor', 'auto'); }); } @@ -638,7 +634,7 @@ $('body .fakelink').css('cursor', 'wait'); $.get('profperm/' + gid + '/' + cid, function(data) { $('#prof-update-wrapper').html(data); - $('body .fakelink').css('cursor', 'auto'); + $('body .fakelink').css('cursor', 'auto'); }); } @@ -666,61 +662,9 @@ function notifyMarkAll() { }); } - -// code from http://www.tinymce.com/wiki.php/How-to_implement_a_custom_file_browser -function fcFileBrowser (field_name, url, type, win) { - /* TODO: If you work with sessions in PHP and your client doesn't accept cookies you might need to carry - the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5"). - These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */ - - - var cmsURL = baseurl+"/fbrowser/"+type+"/"; - - tinyMCE.activeEditor.windowManager.open({ - file : cmsURL, - title : 'File Browser', - width : 420, // Your dimensions may differ - toy around with them! - height : 400, - resizable : "yes", - inline : "yes", // This parameter only has an effect if you use the inlinepopups plugin! - close_previous : "no" - }, { - window : win, - input : field_name - }); - return false; - } - -/*function setupFieldRichtext(){ - tinyMCE.init({ - theme : "advanced", - mode : "specific_textareas", - editor_selector: "fieldRichtext", - plugins : "bbcode,paste, inlinepopups", - theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", - theme_advanced_buttons2 : "", - theme_advanced_buttons3 : "", - theme_advanced_toolbar_location : "top", - theme_advanced_toolbar_align : "center", - theme_advanced_blockformats : "blockquote,code", - paste_text_sticky : true, - entity_encoding : "raw", - add_unload_trigger : false, - remove_linebreaks : false, - //force_p_newlines : false, - //force_br_newlines : true, - forced_root_block : 'div', - convert_urls: false, - content_css: baseurl+"/view/custom_tinymce.css", - theme_advanced_path : false, - file_browser_callback : "fcFileBrowser", - }); -}*/ - - -/** - * sprintf in javascript - * "{0} and {1}".format('zero','uno'); +/** + * sprintf in javascript + * "{0} and {1}".format('zero','uno'); **/ String.prototype.format = function() { var formatted = this; diff --git a/view/theme/frost/js/theme.js b/view/theme/frost/js/theme.js index 57124bce0..44dc700ab 100644 --- a/view/theme/frost/js/theme.js +++ b/view/theme/frost/js/theme.js @@ -12,12 +12,12 @@ $(document).ready(function() { '#system-menu-list-closing': false }; -/* $.ajaxSetup({ - cache: false +/* $.ajaxSetup({ + cache: false });*/ - /* enable tinymce on focus and click */ + /* enable editor on focus and click */ $("#profile-jot-text").focus(enableOnUser); $("#profile-jot-text").click(enableOnUser); @@ -72,7 +72,7 @@ $(document).ready(function() { $('#id_share').change(function() { - if ($('#id_share').is(':checked')) { + if ($('#id_share').is(':checked')) { $('#acl-wrapper').show(); } else { @@ -103,7 +103,7 @@ $(document).ready(function() { onComplete: function(file,response) { addeditortext(window.jotId, response); $('#profile-rotator').hide(); - } + } } ); @@ -116,7 +116,7 @@ $(document).ready(function() { onComplete: function(file,response) { addeditortext(window.jotId, response); $('#profile-rotator').hide(); - } + } } ); } @@ -139,7 +139,7 @@ $(document).ready(function() { $('#jot-perms-icon').removeClass('unlock').addClass('lock'); $('#jot-public').hide(); }); - if(selstr == null) { + if(selstr == null) { $('#jot-perms-icon').removeClass('lock').addClass('unlock'); $('#jot-public').show(); } @@ -154,7 +154,7 @@ $(document).ready(function() { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay' - }, + }, timeFormat: 'H(:mm)', eventClick: function(calEvent, jsEvent, view) { showEvent(calEvent.id); @@ -164,7 +164,7 @@ $(document).ready(function() { $('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); }); } }, - + eventRender: function(event, element, view) { //console.log(view.name); if (event.item['author-name']==null) return; @@ -197,9 +197,9 @@ $(document).ready(function() { break; } } - + }); - + // center on date var args=location.href.replace(baseurl,"").split("/"); if (args.length>=5 && window.eventModeParams == 2) { @@ -211,7 +211,7 @@ $(document).ready(function() { // show event popup var hash = location.hash.split("-") if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]); - } + } switch(window.autocompleteType) { @@ -300,7 +300,7 @@ $(function(){ $(function(){ - + $("#cnftheme").click(function(){ $.colorbox({ width: 800, @@ -318,16 +318,16 @@ $(function(){ data[$(this).attr('name')] = $(this).children(":selected").val(); }); console.log(":)", url, data); - + $.post(url, data, function(data) { if(timer) clearTimeout(timer); NavUpdate(); $.colorbox.close(); }) - + return false; }); - + } }); return false; @@ -359,7 +359,7 @@ function showEvent(eventid) { $.colorbox({html:data}); $.colorbox.resize(); } - ); + ); } function doEventPreview() { @@ -423,7 +423,7 @@ function getPageContent(url) { var pos = $('.main-container').position(); - $('.main-container').css('margin-left', pos.left); + $('.main-container').css('margin-left', pos.left); $('.main-content-container').hide(0, function () { $('.main-content-loading').show(0); }); @@ -449,7 +449,7 @@ function showNavMenu(menuID) { } else { window.navMenuTimeout[menuID + '-opening'] = true; - + window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () { $(menuID).slideDown('fast').show(); window.navMenuTimeout[menuID + '-opening'] = false; @@ -465,7 +465,7 @@ function hideNavMenu(menuID) { } else { window.navMenuTimeout[menuID + '-closing'] = true; - + window.navMenuTimeout[menuID + '-timeout'] = setTimeout( function () { $(menuID).slideUp('fast'); window.navMenuTimeout[menuID + '-closing'] = false; @@ -476,254 +476,52 @@ function hideNavMenu(menuID) { /* - * TinyMCE/Editor + * Editor */ -function InitMCEEditor(editorData) { - var tinyMCEInitConfig = { - theme : "advanced", - //mode : // SPECIFIC - //editor_selector: // SPECIFIC - //elements: // SPECIFIC - plugins : "bbcode,paste,autoresize,inlinepopups", - theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", - theme_advanced_buttons2 : "", - theme_advanced_buttons3 : "", - theme_advanced_toolbar_location : "top", - theme_advanced_toolbar_align : "center", - theme_advanced_blockformats : "blockquote,code", - gecko_spellcheck : true, - paste_text_sticky : true, // COUPLED WITH paste PLUGIN - entity_encoding : "raw", - add_unload_trigger : false, - remove_linebreaks : false, - //force_p_newlines : false, - //force_br_newlines : true, - forced_root_block : 'div', - //convert_urls: false, //SPECIFIC? - content_css: baseurl + "/view/custom_tinymce.css", - theme_advanced_path : false, - file_browser_callback : "fcFileBrowser", - //setup : // SPECIFIC - }; - - if(window.editSelect != 'none') { - $.extend(tinyMCEInitConfig, editorData); - tinyMCE.init(tinyMCEInitConfig); - } - else if(typeof editorData.plaintextFn == 'function') { - (editorData.plaintextFn)(); - } -} - var editor = false; var textlen = 0; -function initEditor(cb){ - if(editor==false) { - editor = true; +function initEditor(callback) { + if(editor == false) { $("#profile-jot-text-loading").show(); - var editorData = { - mode : "specific_textareas", - editor_selector : "profile-jot-text", - auto_focus : "profile-jot-text", - //plugins : "bbcode,paste,autoresize,inlinepopups", - //paste_text_sticky : true, - convert_urls : false, - setup : function(ed) { - cPopup = null; - ed.onKeyDown.add(function(ed,e) { - if(cPopup !== null) - cPopup.onkey(e); - }); - - ed.onKeyUp.add(function(ed, e) { - var txt = tinyMCE.activeEditor.getContent(); - match = txt.match(/@([^ \n]+)$/); - if(match!==null) { - if(cPopup === null) { - cPopup = new ACPopup(this,baseurl+"/acl"); - } - if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]); - if(! cPopup.ready) cPopup = null; - } - else { - if(cPopup !== null) { cPopup.close(); cPopup = null; } - } - - textlen = txt.length; - if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) { - $('#profile-jot-desc').html(window.isPublic); - } - else { - $('#profile-jot-desc').html(' '); - } - - //Character count - - if(textlen <= 140) { - $('#character-counter').removeClass('red'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('grey'); - } - if((textlen > 140) && (textlen <= 420)) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('red'); - $('#character-counter').addClass('orange'); - } - if(textlen > 420) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('red'); - } - $('#character-counter').text(textlen); - }); - - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - $("#profile-jot-text-loading").hide(); - $(".jothidden").show(); - if (typeof cb!="undefined") cb(); - }); - - }, - plaintextFn : function() { - $("#profile-jot-text-loading").hide(); - $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); - $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); - $(".jothidden").show(); - if (typeof cb!="undefined") cb(); - } - }; - InitMCEEditor(editorData); - + $("#profile-jot-text-loading").hide(); + $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); + $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); + $(".jothidden").show(); // setup acl popup $("a#jot-perms-icon").colorbox({ 'inline' : true, 'transition' : 'elastic' - }); - } else { - if (typeof cb!="undefined") cb(); + }); + + editor = true; + } + if (typeof callback != "undefined") { + callback(); } } -function enableOnUser(){ - if (editor) return; +function enableOnUser() { + if (editor) { + return; + } $(this).val(""); initEditor(); } - function msgInitEditor() { - var editorData = { - mode : "specific_textareas", - editor_selector : "prvmail-text", - //plugins : "bbcode,paste", - //paste_text_sticky : true, - convert_urls : false, - //theme_advanced_path : false, - setup : function(ed) { - cPopup = null; - ed.onKeyDown.add(function(ed,e) { - if(cPopup !== null) - cPopup.onkey(e); - }); - - ed.onKeyUp.add(function(ed, e) { - var txt = tinyMCE.activeEditor.getContent(); - match = txt.match(/@([^ \n]+)$/); - if(match!==null) { - if(cPopup === null) { - cPopup = new ACPopup(this,baseurl+"/acl"); - } - if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]); - if(! cPopup.ready) cPopup = null; - } - else { - if(cPopup !== null) { cPopup.close(); cPopup = null; } - } - - textlen = txt.length; - if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) { - $('#profile-jot-desc').html(window.isPublic); - } - else { - $('#profile-jot-desc').html(' '); - } - }); - - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - var editorId = ed.editorId; - var textarea = $('#'+editorId); - if (typeof(textarea.attr('tabindex')) != "undefined") { - $('#'+editorId+'_ifr').attr('tabindex', textarea.attr('tabindex')); - textarea.attr('tabindex', null); - } - }); - }, - plaintextFn : function() { - $("#prvmail-text").editor_autocomplete(baseurl+"/acl"); - } - } - InitMCEEditor(editorData); + $("#prvmail-text").editor_autocomplete(baseurl+"/acl"); } - -function contactInitEditor() { - var editorData = { - mode : "exact", - elements : "contact-edit-info", - //plugins : "bbcode" - } - InitMCEEditor(editorData); -} - - -function eventInitEditor() { - var editorData = { - mode : "textareas", - //plugins : "bbcode,paste", - //paste_text_sticky : true, - //theme_advanced_path : false, - setup : function(ed) { - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - }); - } - } - InitMCEEditor(editorData); -} - - -function profInitEditor() { - var editorData = { - mode : "textareas", - //plugins : "bbcode,paste", - //paste_text_sticky : true, - //theme_advanced_path : false, - setup : function(ed) { - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - }); - } - } - InitMCEEditor(editorData); -} - - /* * Jot */ function addeditortext(textElem, data) { - if(window.editSelect == 'none') { - var currentText = $(textElem).val(); - $(textElem).val(currentText + data); - } - else - tinyMCE.execCommand('mceInsertRawHTML',false,data); + var currentText = $(textElem).val(); + $(textElem).val(currentText + data); } function jotVideoURL() { @@ -867,7 +665,7 @@ function deleteCheckedItems(delID) { else { checkedstr = $(this).val(); } - } + } }); $.post('item', { dropitems: checkedstr }, function(data) { window.location.reload(); @@ -893,9 +691,9 @@ function itemTag(id) { } function itemFiler(id) { - + var bordercolor = $("input").css("border-color"); - + $.get('filer/', function(data){ $.colorbox({html:data}); $.colorbox.resize(); @@ -905,7 +703,7 @@ function itemFiler(id) { $("#select_term").change(function(){ $("#id_term").css("border-color",bordercolor); }) - + $("#filer_save").click(function(e){ e.preventDefault(); reply = $("#id_term").val(); @@ -923,7 +721,7 @@ function itemFiler(id) { return false; }); }); - + } @@ -932,7 +730,7 @@ function itemFiler(id) { */ function insertFormatting(comment,BBcode,id) { - + var tmpStr = $("#comment-edit-text-" + id).val(); if(tmpStr == comment) { tmpStr = ""; @@ -948,7 +746,7 @@ function insertFormatting(comment,BBcode,id) { selected = document.selection.createRange(); if (BBcode == "url"){ selected.text = "["+BBcode+"=http://]" + selected.text + "[/"+BBcode+"]"; - } else + } else selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; diff --git a/view/theme/frost/templates/contact_end.tpl b/view/theme/frost/templates/contact_end.tpl index 03cef4bdd..e69de29bb 100644 --- a/view/theme/frost/templates/contact_end.tpl +++ b/view/theme/frost/templates/contact_end.tpl @@ -1,3 +0,0 @@ - - - diff --git a/view/theme/frost/templates/contact_head.tpl b/view/theme/frost/templates/contact_head.tpl index 77411431a..e69de29bb 100644 --- a/view/theme/frost/templates/contact_head.tpl +++ b/view/theme/frost/templates/contact_head.tpl @@ -1,5 +0,0 @@ - - - diff --git a/view/theme/frost/templates/end.tpl b/view/theme/frost/templates/end.tpl index 991ae7564..b9768ba89 100644 --- a/view/theme/frost/templates/end.tpl +++ b/view/theme/frost/templates/end.tpl @@ -2,12 +2,6 @@ -{{**}} -{{**}} - - diff --git a/view/theme/frost/templates/event_end.tpl b/view/theme/frost/templates/event_end.tpl index be57b155a..8bc2a5bd1 100644 --- a/view/theme/frost/templates/event_end.tpl +++ b/view/theme/frost/templates/event_end.tpl @@ -2,5 +2,3 @@ - - diff --git a/view/theme/frost/templates/event_head.tpl b/view/theme/frost/templates/event_head.tpl index 47efb56ae..ccd88f6c8 100644 --- a/view/theme/frost/templates/event_head.tpl +++ b/view/theme/frost/templates/event_head.tpl @@ -3,7 +3,6 @@ diff --git a/view/theme/frost/templates/jot-header.tpl b/view/theme/frost/templates/jot-header.tpl index 2615ceb55..db8b08af0 100644 --- a/view/theme/frost/templates/jot-header.tpl +++ b/view/theme/frost/templates/jot-header.tpl @@ -1,7 +1,6 @@ diff --git a/view/theme/frost/templates/profed_head.tpl b/view/theme/frost/templates/profed_head.tpl index 4c7b6c8da..e69de29bb 100644 --- a/view/theme/frost/templates/profed_head.tpl +++ b/view/theme/frost/templates/profed_head.tpl @@ -1,6 +0,0 @@ - - - - diff --git a/view/theme/frost/templates/wallmsg-header.tpl b/view/theme/frost/templates/wallmsg-header.tpl index 0949c3d3e..3fbb56863 100644 --- a/view/theme/frost/templates/wallmsg-header.tpl +++ b/view/theme/frost/templates/wallmsg-header.tpl @@ -1,7 +1,6 @@ diff --git a/view/theme/smoothly/templates/jot-header.tpl b/view/theme/smoothly/templates/jot-header.tpl index 880764da0..eb8c13f21 100644 --- a/view/theme/smoothly/templates/jot-header.tpl +++ b/view/theme/smoothly/templates/jot-header.tpl @@ -2,150 +2,46 @@ - - + + +
                                            + - // insert information now - win.document.getElementById(tinyMCEPopup.getWindowArg("input")).value = URL; +
                                            + {{foreach $path as $p}}{{$p.1}}{{/foreach}} +
                                            - // are we an image browser - if (typeof(win.ImageDialog) != "undefined") { - // we are, so update image dimensions... - if (win.ImageDialog.getImageData) - win.ImageDialog.getImageData(); - - // ... and preview if necessary - if (win.ImageDialog.showPreviewImage) - win.ImageDialog.showPreviewImage(URL); - } - - // close popup window - tinyMCEPopup.close(); - } - } - - tinyMCEPopup.onInit.add(FileBrowserDialogue.init, FileBrowserDialogue); - - - - -
                                            -
                                              -
                                            • FileBrowser
                                            • + {{if $folders }} +
                                              +
                                                + {{foreach $folders as $f}}
                                              • {{$f.1}}
                                              • {{/foreach}}
                                              -
                                              + {{/if}} -
                                              -
                                              - {{foreach $path as $p}}{{$p.1}}{{/foreach}} -
                                              -
                                              -
                                                - {{foreach $folders as $f}}
                                              • {{$f.1}}
                                              • {{/foreach}} -
                                              -
                                              -
                                              -
                                                - {{foreach $files as $f}} -
                                              • {{$f.1}}
                                              • - {{/foreach}} -
                                              -
                                              +
                                              + {{foreach $files as $f}} + + {{/foreach}}
                                              -
                                              - -
                                              + +
                                              + +
                                              +
                                              + + - + diff --git a/view/templates/filebrowser_plain.tpl b/view/templates/filebrowser_plain.tpl deleted file mode 100644 index 1ebf8a2cc..000000000 --- a/view/templates/filebrowser_plain.tpl +++ /dev/null @@ -1,51 +0,0 @@ - - - - - -
                                              - - -
                                              - {{foreach $path as $p}}{{$p.1}}{{/foreach}} -
                                              - - {{if $folders }} -
                                              -
                                                - {{foreach $folders as $f}}
                                              • {{$f.1}}
                                              • {{/foreach}} -
                                              -
                                              - {{/if}} - -
                                              - {{foreach $files as $f}} - - {{/foreach}} -
                                              - -
                                              - -
                                              -
                                              - - - - - diff --git a/view/theme/frio/templates/filebrowser_plain.tpl b/view/theme/frio/templates/filebrowser.tpl similarity index 92% rename from view/theme/frio/templates/filebrowser_plain.tpl rename to view/theme/frio/templates/filebrowser.tpl index b1127c8a3..55cecabb8 100644 --- a/view/theme/frio/templates/filebrowser_plain.tpl +++ b/view/theme/frio/templates/filebrowser.tpl @@ -1,6 +1,5 @@ - - - - -
                                              -
                                                -
                                              • FileBrowser
                                              • -
                                              -
                                              -
                                              - -
                                              -
                                              - {{foreach $path as $p}}{{$p.1}}{{/foreach}} -
                                              -
                                              -
                                                - {{foreach $folders as $f}}
                                              • {{$f.1}}
                                              • {{/foreach}} -
                                              -
                                              -
                                              -
                                                - {{foreach $files as $f}} -
                                              • {{$f.1}}
                                              • - {{/foreach}} -
                                              -
                                              -
                                              -
                                              -
                                              - -
                                              - - - From 8f59833c51f0877c79c376b77493a05350388119 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 27 Jan 2017 12:39:21 +0100 Subject: [PATCH 65/68] translation docs now contain basic usage of the Transifex client --- README.translate.md | 31 ++++++++++++++++++++++++++++++- doc/translations.md | 32 +++++++++++++++++++++++++++++++- 2 files changed, 61 insertions(+), 2 deletions(-) diff --git a/README.translate.md b/README.translate.md index 861e98440..696dec10b 100644 --- a/README.translate.md +++ b/README.translate.md @@ -64,5 +64,34 @@ If you only want to translate friendica into another language you wont need any For further information see the utils/README file. -[1]: https://www.transifex.com/projects/p/friendica/ +Transifex-Client +---------------- +Transifex has a client program which let you interact with the translation files in a similar way to git. +Help for the client can be found at the [Transifex Help Center] [2]. +Here we will only cover basic usage. + +After installation of the client, you should have a `tx` command available on your system. +To use it, first create a configuration file with your credentials. +On Linux this file should be placed into your home directory `~/.transifexrc`. +The content of the file should be something like the following: + + [https://www.transifex.com] + username = user + token = + password = p@ssw0rd + hostname = https://www.transifex.com + +Since Friendica version 3.5.1 we ship configuration files for the Transifex client in the core repository and the addon repository. +To update the translation files after you have translated strings of e.g. Esperanto in the web-UI of transifex you can use `tx` to download the file. + + $> tx pull -l eo + +And then use the `po2php` utility described above to convert the `messages.po` file to the `strings.php` file Friendica is loading. + + $> php util/po2php.php view/lang/eo/messages.po + +Afterwards, just commit the two changed files to a feature branch of your Friendica repository, push the changes to github and open a pull request for your changes. + +[1]: https://www.transifex.com/projects/p/friendica/ +[2]: https://docs.transifex.com/client/introduction diff --git a/doc/translations.md b/doc/translations.md index 4a703f340..61d91bee5 100644 --- a/doc/translations.md +++ b/doc/translations.md @@ -66,5 +66,35 @@ If you only want to translate friendica into another language you wont need any For further information see the utils/README file. -[1]: https://www.transifex.com/projects/p/friendica/ +Transifex-Client +---------------- + +Transifex has a client program which let you interact with the translation files in a similar way to git. +Help for the client can be found at the [Transifex Help Center] [2]. +Here we will only cover basic usage. + +After installation of the client, you should have a `tx` command available on your system. +To use it, first create a configuration file with your credentials. +On Linux this file should be placed into your home directory `~/.transifexrc`. +The content of the file should be something like the following: + + [https://www.transifex.com] + username = user + token = + password = p@ssw0rd + hostname = https://www.transifex.com + +Since Friendica version 3.5.1 we ship configuration files for the Transifex client in the core repository and the addon repository. +To update the translation files after you have translated strings of e.g. Esperanto in the web-UI of transifex you can use `tx` to download the file. + + $> tx pull -l eo + +And then use the `po2php` utility described above to convert the `messages.po` file to the `strings.php` file Friendica is loading. + + $> php util/po2php.php view/lang/eo/messages.po + +Afterwards, just commit the two changed files to a feature branch of your Friendica repository, push the changes to github and open a pull request for your changes. + +[1]: https://www.transifex.com/projects/p/friendica/ +[2]: https://docs.transifex.com/client/introduction From 4523753455f6b57ec3e59d7904c528512f3a8722 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 27 Jan 2017 13:31:04 +0100 Subject: [PATCH 66/68] update to the translations --- view/lang/bg/messages.po | 15337 +++++++++++++++++---------------- view/lang/bg/strings.php | 3533 ++++---- view/lang/ca/messages.po | 15269 +++++++++++++++++---------------- view/lang/ca/strings.php | 3537 ++++---- view/lang/cs/messages.po | 16117 ++++++++++++++++++----------------- view/lang/cs/strings.php | 3622 ++++---- view/lang/eo/messages.po | 15341 +++++++++++++++++---------------- view/lang/eo/strings.php | 3537 ++++---- view/lang/fr/messages.po | 12219 +++++++++++++------------- view/lang/fr/strings.php | 1828 ++-- view/lang/is/messages.po | 13536 ++++++++++++++--------------- view/lang/is/strings.php | 2660 +++--- view/lang/nl/messages.po | 16522 ++++++++++++++++++------------------ view/lang/nl/strings.php | 3137 +++---- view/lang/ru/messages.po | 16939 +++++++++++++++++++------------------ view/lang/ru/strings.php | 3251 +++---- view/lang/sv/messages.po | 12508 ++++++++++++++++++--------- view/lang/sv/strings.php | 3355 +++++--- 18 files changed, 86792 insertions(+), 75456 deletions(-) diff --git a/view/lang/bg/messages.po b/view/lang/bg/messages.po index d75c13148..b22d6918e 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -9,5685 +9,1657 @@ 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" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" "Last-Translator: fabrixxm \n" -"Language-Team: Bulgarian (http://www.transifex.com/projects/p/friendica/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/Friendica/friendica/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Добавяне на нов контакт" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Въведете местоположение на адрес или уеб" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Пример: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Свързване! " + +#: include/contact_widgets.php:24 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" +msgid "%d invitation available" +msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Не може да бъде достъп до запис за контакт." +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Намерете хора," -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Не може да намери избрания профил." +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Въведете името или интерес" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Свържете се актуализират." +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "Свържете се / последваща" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Неуспех да се актуализира рекорд за контакт." +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Примери: Робърт Morgenstein, Риболов" -#: ../../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 -#: ../../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 -msgid "Permission denied." -msgstr "Разрешението е отказано." +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Търсене" -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "За контакти е бил блокиран" +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Предложения за приятели" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Контакт са отблокирани" +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Сходни интереси" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Лицето е било игнорирано" +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Случайна Профил" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "За контакти е бил unignored" +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Покани приятели" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Контакт бяха архивирани" +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "Мрежи" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "За контакти е бил разархивира" +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "Всички мрежи" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Наистина ли искате да изтриете този контакт?" +#: include/contact_widgets.php:141 include/features.php:110 +msgid "Saved Folders" +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 -msgid "Yes" -msgstr "Yes" +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "Всичко" -#: ../../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 -msgid "Cancel" -msgstr "Отмени" +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "Категории" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Контакт е била отстранена." - -#: ../../mod/contacts.php:390 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Вие сте общи приятели с %s" - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are sharing with %s" -msgstr "Вие споделяте с %s" - -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s се споделя с вас" - -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Частни съобщения не са на разположение за този контакт." - -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Никога!" - -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Update е била успешна)" - -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Актуализация не е била успешна)" - -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Предложете приятели" - -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Тип мрежа: %s" - -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Преглед на всички контакти" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "покажи още" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Разблокиране" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Блокиране" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Превключване Блокирани статус" +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Мъжки" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Извади от пренебрегнатите" +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Женски" -#: ../../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 "Пренебрегване" +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "В момента Мъж" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Превключване игнорирани статус" +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "В момента Жени" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Разархивирате" +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Предимно Мъж" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Архив" +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Предимно от жени," -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Превключване статус Архив" +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Транссексуалните" -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Ремонт" +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Разширени настройки за контакт" +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Транссексуален" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Communications загубиха с този контакт!" +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Хермафродит" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Свържете се редактор" +#: include/profile_selectors.php:6 +msgid "Neuter" +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 "Изпращане" +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Неспецифичен" -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Профил Видимост" +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Друг" -#: ../../mod/contacts.php:477 +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Мъжките" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Женските" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Хомосексуалист" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Лесбийка" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Без предпочитание" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Бисексуални" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Трезвен" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Девица" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Девиантно" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Фетиш" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Голямо количество" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Неженен" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Самотен" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "На разположение" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Невъзможно." + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Има смаже" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Заслепен" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Запознанства" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Неверен" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Секс наркоман" + +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Приятели" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Приятели / ползи" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Случаен" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Обвързан" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Оженена" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Въображаемо женен" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Партньори" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Съжителстващи" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Обичайно право" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Щастлив" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Не търси" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Сексуално развратен човек" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Предаден" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Разделени" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Нестабилен" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Разведен" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Въображаемо се развеждат" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Овдовял" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Несигурен" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Сложно е" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Не ме е грижа" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Попитай ме" + +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Моля, изберете профила, който бихте искали да покажете на %s при гледане на здраво вашия профил." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Не може да намери DNS информация за сървъра на базата данни \" %s \"" -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Информация за контакти / Забележки" +#: include/auth.php:45 +msgid "Logged out." +msgstr "Изход" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Редактиране на контакт с бележка" - -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Посетете %s Профилът на [ %s ]" - -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Блокиране / Деблокиране на контакт" - -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Игнорирай се свържете с" - -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Настройки за ремонт на URL" - -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Вижте разговори" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Изтриване на контакта" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Последна актуализация:" - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Актуализиране на държавни длъжности" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Актуализирай сега" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Които понастоящем са блокирани" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "В момента игнорирани" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "В момента архивират" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Скриване на този контакт от другите" - -#: ../../mod/contacts.php:508 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Отговори / обича да си публични длъжности май все още да се вижда" - -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../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 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Предложения" - -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Предполагат потенциал приятели" - -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Всички Контакти" - -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Покажи на всички контакти" - -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Отблокирани" - -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Покажи само Разблокирани контакти" - -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Блокиран" - -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Покажи само Блокираните контакти" - -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Игнорирани" - -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Покажи само игнорирани контакти" - -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Архивиран:" - -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Покажи само архивирани контакти" - -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Скрит" - -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Само показва скрити контакти" - -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Взаимното приятелство" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "е фенка" - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "Вие сте фен на" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Редактиране на контакт" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Контакти " - -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Търсене на вашите контакти" - -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Намиране: " - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Търсене" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Актуализиране" - -#: ../../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 "Изтриване" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Няма профил" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Управление на идентичността и / или страници" - -#: ../../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 "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Изберете идентичност, за да управлява: " - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Мнение успешно." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Разрешението е отказано" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Невалиден идентификатор на профила." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Редактор профил Видимост" - -#: ../../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 "Височина на профила" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Щракнете върху контакт, за да добавите или премахнете." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Вижда се от" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Всички контакти с охраняем достъп до профил)" - -#: ../../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 "Елемент не е намерен." - -#: ../../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 "Публичен достъп отказан." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Достъпът до този профил е ограничен." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr ", Т. е била отстранена." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Добре дошли да Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Нова държава Чеклист" - -#: ../../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 "Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../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 "" - -#: ../../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 "Настройки" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: ../../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 "На настройки - да промени първоначалната си парола. Също така направи бележка на вашата самоличност адрес. Това изглежда точно като имейл адрес - и ще бъде полезно при вземането на приятели за свободното социална мрежа." - -#: ../../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 "Прегледайте други настройки, по-специално на настройките за поверителност. Непубликуван списък директория е нещо като скрит телефонен номер. Като цяло, може би трябва да публикува вашата обява - освен ако не всички от вашите приятели и потенциални приятели, знаят точно как да те намеря." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Качване на снимка Профилът" - -#: ../../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 "Качване на снимката на профила, ако не сте го направили вече. Проучванията показват, че хората с истински снимки на себе си, са десет пъти по-вероятно да станат приятели, отколкото хората, които не." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Редактиране на профила" - -#: ../../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 "Редактиране на подразбиране профил да ви хареса. Преглед на настройките за скриване на вашия списък с приятели и скриване на профила от неизвестни посетители." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Ключови думи на профила" - -#: ../../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 "Задайте някои обществени ключови думи за вашия профил по подразбиране, които описват вашите интереси. Ние може да сме в състояние да намери други хора с подобни интереси и предлага приятелства." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Свързване" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -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 "Разрешаване на съединител на Facebook, ако в момента имате акаунт във 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 " Ако , това е вашият собствен сървър, инсталиране на Адон Facebook може да улесни прехода към безплатна социална мрежа." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Внасяне на е-пощи" - -#: ../../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 "Въведете своя имейл достъп до информация на страницата Настройки на Connector, ако желаете да внасят и да взаимодейства с приятели или списъци с адреси от електронната си поща Входящи" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "" - -#: ../../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 "Контакти страница е вашата врата към управлението на приятелства и свързване с приятели в други мрежи. Обикновено можете да въведете адрес или адрес на сайта в Добавяне на нов контакт диалоговия." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: ../../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 "Страницата на справочника ви позволява да намерите други хора в тази мрежа или други сайтове Федерални. Потърсете Свържете или Следвайте в профила си страница. Предоставяне на вашия собствен адрес за самоличност, ако това бъде поискано." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Откриване на нови хора" - -#: ../../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 "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Групи" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: ../../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 "След като сте направили някои приятели, да ги организирате в групи от частния разговор от страничната лента на страницата с контакти и след това можете да взаимодействате с всяка група частно във вашата мрежа." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Защо публикациите ми не са публични?" - -#: ../../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 "" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID протокол грешка. Не ID върна." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Кутия не е намерена и, OpenID регистрация не е разрешено на този сайт." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 msgid "Login failed." msgstr "Влез не успя." -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Качени изображения, но изображението изрязване не успя." - -#: ../../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 "Снимка на профила" - -#: ../../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 "Намаляване на размер [ %s ] не успя." - -#: ../../mod/profile_photo.php:118 +#: include/auth.php:132 include/user.php:75 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията." -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Не може да се обработи" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "Съобщението за грешка е:" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Изображението надвишава ограничението за размера на %d" +#: 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 "Изтрита група с това име се възражда. Съществуващ елемент от разрешения май се прилагат към тази група и всички бъдещи членове. Ако това не е това, което сте възнамерявали, моля да се създаде друга група с различно име." -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Не може да се обработи." +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Неприкосновеността на личния живот на група по подразбиране за нови контакти" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "прикрепи файл" +#: include/group.php:242 +msgid "Everybody" +msgstr "Всички" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Избор на профил:" +#: include/group.php:265 +msgid "edit" +msgstr "редактиране" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Качете в Мрежата " +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Групи" -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "или" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "пропуснете тази стъпка" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "изберете снимка от вашите фото албуми" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Изрязване на изображението" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Моля, настроите образа на изрязване за оптимално гледане." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Съставено редактиране" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Качени изображения успешно." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Image Upload неуспешно." - -#: ../../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 "снимка" - -#: ../../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 "статус" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: include/group.php:288 +msgid "Edit groups" msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Отстранява маркировката" +#: include/group.php:290 +msgid "Edit group" +msgstr "Редактиране на групата" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Извадете Tag т." +#: include/group.php:291 +msgid "Create a new group" +msgstr "Създайте нова група" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Изберете етикет, за да премахнете: " - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Премахване" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 -msgid "Save to Folder:" -msgstr "Запиши в папка:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "избор" - -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 -msgid "Save" -msgstr "Запази" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Свържете се добавя" - -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Не може да се намери оригиналната публикация." - -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Empty мнение изхвърли." - -#: ../../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 "Стена снимки" - -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Грешка в системата. Мнение не е запазен." - -#: ../../mod/item.php:964 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica." - -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Можете да ги посетите онлайн на адрес %s" - -#: ../../mod/item.php:967 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения." - -#: ../../mod/item.php:971 -#, php-format -msgid "%s posted an update." -msgstr "%s е публикувал актуализация." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Група, създадена." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Не може да се създаде група." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Групата не е намерен." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Име на група се промени." - -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Създаване на група от контакти / приятели." - -#: ../../mod/group.php:94 ../../mod/group.php:180 +#: include/group.php:292 mod/group.php:94 mod/group.php:178 msgid "Group Name: " msgstr "Име на група: " -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Група отстранени." +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Контакти, не във всяка група" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Не може да премахнете група." +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "добави" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Група Editor" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Неизвестен | Без категория" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Членове" +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Блок веднага" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, спамър, самостоятелно маркетолог" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Известно е, че мен, но липса на становище" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "ОК, вероятно безвреден" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Репутация, има ми доверие" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Често" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Всеки час" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Два пъти дневно" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Ежедневно:" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Седмично" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Месечено" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Е-поща" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Диаспора" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: 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 "" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Приложения" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Няма инсталираните приложения." - -#: ../../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 "Профил не е намерен." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Контактът не е намерен." - -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Това понякога може да се случи, ако контакт е поискано от двете лица и вече е одобрен." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Отговор от отдалечен сайт не е бил разбран." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Неочакван отговор от отдалечения сайт: " - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Потвърждение приключи успешно." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Отдалеченият сайт докладвани: " - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Временен неуспех. Моля изчакайте и опитайте отново." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Въведение не успя или е анулиран." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Не може да зададете снимка на контакт." - -#: ../../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 вече е приятел с %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Нито един потребител не запис за ' %s" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Основният ни сайт криптиране е очевидно побъркани." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Празен сайт URL е предоставена или URL не може да бъде разшифрован от нас." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Контакт с запис не е намерен за вас на нашия сайт." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Site публичния ключ не е наличен в контакт рекорд за %s URL ." - -#: ../../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 "ID, предоставена от вашата система, е дубликат на нашата система. Той трябва да работи, ако се опитате отново." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Не може да се установи контакт с вас пълномощията на нашата система." - -#: ../../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 "[Име, удържани]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "Се присъедини към %2$s %1$s %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Замолената профила не е достъпна." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Съвети за нови членове" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Няма избрани видеоклипове" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Достъп до тази точка е ограничена." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Преглед на видеоклип" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Вижте албуми" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Скорошни видеоклипове" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Качване на нови видеоклипове" - -#: ../../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 сложи етикет с %2$s - %3$s %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Предложението за приятелство е изпратено." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Предлагане на приятели" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Предлагане на приятел за %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Не е валиден акаунт." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr ", Издадено искане за възстановяване на паролата. Проверете Вашата електронна поща." - -#: ../../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." +#: include/contact_selectors.php:89 +msgid "Twitter" 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" +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" msgstr "" -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Исканото за нулиране на паролата на %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Искането не може да бъде проверена. (Може да се преди това са го внесе.) За нулиране на паролата не успя." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Смяна на паролата" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Вашата парола е променена, както беше поискано." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Вашата нова парола е" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Запазване или копиране на новата си парола и след това" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "Кликнете тук за Вход" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Вашата парола може да бъде променена от Настройки , След успешен вход." - -#: ../../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" +#: include/contact_selectors.php:91 +msgid "GNU Social" 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" +#: include/contact_selectors.php:92 +msgid "App.net" msgstr "" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" msgstr "" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Забравена парола?" +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Коментар на e-mail" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Въведете вашия имейл адрес и представя си за нулиране на паролата. След това проверявате електронната си поща за по-нататъшни инструкции." +#: include/acl_selectors.php:332 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Псевдоним или имейл адрес: " +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Скриване на детайли от профила си от неизвестни зрители?" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Нулиране" +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Видими за всички" -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "Покажи:" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "не показват" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: имейл адреси" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Пример: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "права" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Затвори" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "снимка" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "статус" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "събитието." + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s харесва %2$s %3$s" -#: ../../mod/like.php:168 ../../include/conversation.php:140 +#: include/like.php:184 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s не като %2$s - %3$s" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} иска да бъде твой приятел" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} ви изпрати съобщение" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} исканата регистрация" - -#: ../../mod/ping.php:256 +#: include/like.php:186 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} коментира %s е след" +msgid "%1$s is attending %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:261 +#: include/like.php:188 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} хареса %s е след" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:266 +#: include/like.php:190 #, php-format -msgid "{0} disliked %s's post" -msgstr "{0} не харесвал %s на мнение" +msgid "%1$s may attend %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:271 +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[Без тема]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Стена снимки" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Натиснете тук за обновяване." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "{0} is now friends with %s" -msgstr "{0} вече е приятел с %s" +msgid "User '%s' already exists on this server!" +msgstr "" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} написали" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Грешка при създаване на потребителя" -#: ../../mod/ping.php:281 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Грешка при създаване профила на потребителя" + +#: include/uimport.php:222 #, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} Маркирани %s мнение с #%s" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} споменах в един пост" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "" -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Няма контакти." +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Разни" -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Вижте Контакти" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Дата на раждане:" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Невалидна заявка идентификатор." +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Възраст: " -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Отхвърляне" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Система" +#: include/datetime.php:341 +msgid "never" +msgstr "никога" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Мрежа" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "по-малко, отколкото преди секунда" -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Лично" +#: include/datetime.php:350 +msgid "year" +msgstr "година" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 +#: include/datetime.php:350 +msgid "years" +msgstr "година" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "месец." + +#: include/datetime.php:351 +msgid "months" +msgstr "месеца" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "седмица" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "седмица" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "Ден:" + +#: include/datetime.php:353 +msgid "days" +msgstr "дни." + +#: include/datetime.php:354 +msgid "hour" +msgstr "Час:" + +#: include/datetime.php:354 +msgid "hours" +msgstr "часа" + +#: include/datetime.php:355 +msgid "minute" +msgstr "Минута" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "протокол" + +#: include/datetime.php:356 +msgid "second" +msgstr "секунди. " + +#: include/datetime.php:356 +msgid "seconds" +msgstr "секунди. " + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s преди" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Честит рожден ден, %s!" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica Уведомление" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Благодаря Ви." + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s администратор" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "noreply" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica: Извести] Нова поща, получена в %s" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s в %2$s ви изпрати ново лично съобщение ." + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "Ви изпрати %2$s %1$s %2$s ." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "лично съобщение" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s коментира [URL = %2$s %3$s [/ URL]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s коментира [URL = %2$s ] %3$s %4$s [/ URL]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s коментира [URL = %2$s %3$s [/ URL]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica: Изпращайте] коментар към разговор # %1$d от %2$s" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s коментира артикул / разговор, който са били." + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Моля, посетете %s да видите и / или да отговорите на разговор." + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica: Извести] %s публикуван вашия профил стена" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s публикуван вашия профил стена при %2$s" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica: Извести] %s сложи етикет с вас" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s те маркира при %2$s" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [URL = %2$s ] сложи етикет [/ URL]." + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica: Извести] %s сложи етикет с вашия пост" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s маркира твоя пост в %2$s" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s маркира [URL = %2$s ] Публикацията ви [/ URL]" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica: Извести] Въведение получи" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Получили сте въведения от %1$s в %2$s" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Получили сте [URL = %1$s ] въведение [/ URL] от %2$s ." + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Можете да посетите техния профил в %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Моля, посетете %s да одобри или да отхвърли въвеждането." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica: Извести] приятел предложение получи" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Получили сте приятел предложение от %1$s в %2$s" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s ." + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Наименование:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Снимка:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Моля, посетете %s да одобри или отхвърли предложението." + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "L F г, Y \\ @ G: I A" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Започва:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Играчи:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Място:" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Неделя" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Понеделник" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Вторник" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Сряда" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Четвъртък" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Петък" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Събота" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Май" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "януари" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "февруари" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "март" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "април" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "юни" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "юли" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "август" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "септември" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "октомври" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "ноември" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "декември" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "л, F J" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Редактиране на Събитието" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "връзка източник" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Нищо ново тук" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Изчистване на уведомленията" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "изход" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Край на тази сесия" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Състояние:" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Вашите мнения и разговори" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Височина на профила" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Вашият профил страница" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Снимки" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Вашите снимки" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Видеоклипове" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Събития" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Събитията си" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Личните бележки" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Вход" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Вход" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 msgid "Home" msgstr "Начало" -#: ../../mod/notifications.php:98 ../../include/nav.php:154 +#: include/nav.php:105 +msgid "Home Page" +msgstr "Начална страница" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Регистратор" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Създаване на сметка" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Помощ" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Помощ и документация" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Адон приложения, помощни програми, игри" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Търсене" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Търсене в сайта съдържание" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Контакти " + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Общност" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Разговори на този сайт" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Събития и календарни" + +#: include/nav.php:152 +msgid "Directory" +msgstr "директория" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Хората директория" + +#: include/nav.php:154 +msgid "Information" +msgstr "" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Мрежа" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Разговори от вашите приятели" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:166 include/NotificationsManager.php:181 msgid "Introductions" msgstr "Представяне" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Показване на пренебрегнатите заявки" +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Молби за приятелство" -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Скриване на пренебрегнатите заявки" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Вид на уведомлението: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Приятел за предложения" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "предложено от %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Публикувай нова дейност приятел" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "ако е приложимо" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Одобряване" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Искания, да се знае за вас: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "да" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "не" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "За Одобряване като: " - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Приятел" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Споделящ" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Почитател" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Приятел / заявка за свързване" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Нов последовател" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Няма въвеждане." - -#: ../../mod/notifications.php:220 ../../include/nav.php:155 +#: include/nav.php:169 mod/notifications.php:96 msgid "Notifications" msgstr "Уведомления " -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "%s харесва %s е след" +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Вижте всички нотификации" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s не харесвал %s е след" +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Марк, както се вижда" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s вече е приятел с %s" +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Марк виждали уведомления всички системни" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "%s създаден нов пост" +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Съобщения" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Частна поща" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Вх. поща" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Изходящи" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Ново съобщение" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Управление" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Управление на други страници" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Участник, за управление на страница" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Настройки" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Настройки на профила" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Профили " + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Управление / редактиране на приятели и контакти" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "admin" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Настройка и конфигуриране на сайта" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Навигация" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Карта на сайта" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Свържете снимки" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Добре дошли " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Моля, да качите снимка профил." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Здравейте отново! " + +#: include/security.php:373 +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 "Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Система" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Лично" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 #, php-format msgid "%s commented on %s's post" msgstr "%s коментира %s е след" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Не повече мрежови уведомление." - -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Мрежа Известия" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Не повече системни известия." - -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Системни известия" - -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Няма повече уведомления." - -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Лични Известия" - -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Не повече домашни уведомление." - -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Начало Известия" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "" - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "" - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "" - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "" - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "" - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Нищо ново тук" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Изчистване на уведомленията" - -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Ново съобщение" - -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Не е избран получател." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Не може да се намери информация за контакт." - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Писмото не може да бъде изпратена." - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Съобщение за събиране на неуспех." - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Изпратено съобщение." - -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Съобщения" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Съобщение заличават." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Разговор отстранени." - -#: ../../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 "Моля, въведете URL адреса за връзка:" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Изпрати Лично Съобщение" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "До:" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Относно:" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Ваше съобщение" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Качване на снимка" - -#: ../../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 "Вмъкване на връзка в Мрежата" - -#: ../../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 "Моля, изчакайте" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Няма съобщения." - -#: ../../mod/message.php:378 +#: include/NotificationsManager.php:243 #, php-format -msgid "Unknown sender - %s" -msgstr "Непознат подател %s" +msgid "%s created a new post" +msgstr "%s създаден нов пост" -#: ../../mod/message.php:381 +#: include/NotificationsManager.php:256 #, php-format -msgid "You and %s" -msgstr "Вие и %s" +msgid "%s liked %s's post" +msgstr "%s харесва %s е след" -#: ../../mod/message.php:384 +#: include/NotificationsManager.php:267 #, php-format -msgid "%s and You" -msgstr "%s" +msgid "%s disliked %s's post" +msgstr "%s не харесвал %s е след" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Изтриване на разговор" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, D MY - Г: А" - -#: ../../mod/message.php:411 +#: include/NotificationsManager.php:278 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Съобщението не е посочена." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Изтриване на съобщение" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Няма сигурни комуникации. Можете май да бъде в състояние да отговори от страницата на профила на подателя." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Изпратете Отговор" - -#: ../../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 "[Вградени съдържание - презареждане на страницата, за да видите]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Контактни настройки прилага." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Свържете се актуализира провали." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Ремонт Контактни настройки" - -#: ../../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 "Моля, използвайте Назад на вашия браузър бутон сега, ако не сте сигурни какво да правят на тази страница." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Назад, за да се свържете с редактор" - -#: ../../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 -msgid "Name" -msgstr "Име" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Сметка Псевдоним" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "Име / псевдоним на @ Tagname - Заменя" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "Сметка URL" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL приятел заявка" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Приятел Потвърди URL" - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "URL адрес на Уведомление Endpoint" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Анкета / URL Feed" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Нова снимка от този адрес" - -#: ../../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/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Вход" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Отказан достъп." - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Хората Търсене" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Няма съответствия" - -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Снимки" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Файлове" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Контакти, които не са членове на една група" - -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Тема Настройки актуализира." - -#: ../../mod/admin.php:104 ../../mod/admin.php:619 -msgid "Site" -msgstr "Сайт" - -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 -msgid "Users" -msgstr "Потребители" - -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Приставки" - -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 -msgid "Themes" -msgstr "Теми" - -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Обновления на БД" - -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 -msgid "Logs" -msgstr "Дневници" - -#: ../../mod/admin.php:124 -msgid "probe address" -msgstr "" - -#: ../../mod/admin.php:125 -msgid "check webfinger" -msgstr "" - -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "admin" - -#: ../../mod/admin.php:131 -msgid "Plugin Features" -msgstr "Настройки на приставките" - -#: ../../mod/admin.php:133 -msgid "diagnostics" -msgstr "" - -#: ../../mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Потребителски регистрации, чакащи за потвърждение" - -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Нормално профил" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Импровизирана трибуна профил" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Общността / Celebrity" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Автоматично приятел акаунт" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Частен форум" - -#: ../../mod/admin.php:217 -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 -msgid "Administration" -msgstr "Администриране " - -#: ../../mod/admin.php:223 -msgid "Summary" -msgstr "Резюме" - -#: ../../mod/admin.php:225 -msgid "Registered users" -msgstr "Регистрираните потребители" - -#: ../../mod/admin.php:227 -msgid "Pending registrations" -msgstr "Предстоящи регистрации" - -#: ../../mod/admin.php:228 -msgid "Version" -msgstr "Версия " - -#: ../../mod/admin.php:232 -msgid "Active plugins" -msgstr "Включени приставки" - -#: ../../mod/admin.php:255 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: ../../mod/admin.php:516 -msgid "Site settings updated." -msgstr "Настройките на сайта са обновени." - -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:562 -msgid "No community page" -msgstr "" - -#: ../../mod/admin.php:563 -msgid "Public postings from users of this site" -msgstr "" - -#: ../../mod/admin.php:564 -msgid "Global community page" -msgstr "" - -#: ../../mod/admin.php:570 -msgid "At post arrival" -msgstr "" - -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Често" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Всеки час" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Два пъти дневно" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Ежедневно:" - -#: ../../mod/admin.php:579 -msgid "Multi user instance" -msgstr "" - -#: ../../mod/admin.php:602 -msgid "Closed" -msgstr "Затворен" - -#: ../../mod/admin.php:603 -msgid "Requires approval" -msgstr "Изисква одобрение" - -#: ../../mod/admin.php:604 -msgid "Open" -msgstr "Отворена." - -#: ../../mod/admin.php:608 -msgid "No SSL policy, links will track page SSL state" -msgstr "Не SSL политика, връзки ще следи страница SSL състояние" - -#: ../../mod/admin.php:609 -msgid "Force all links to use SSL" -msgstr "Принуди всички връзки да се използва SSL" - -#: ../../mod/admin.php:610 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Самоподписан сертификат, използвайте SSL за местни връзки единствено (обезкуражени)" - -#: ../../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 "" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Регистрация" - -#: ../../mod/admin.php:622 -msgid "File upload" -msgstr "Прикачване на файлове" - -#: ../../mod/admin.php:623 -msgid "Policies" -msgstr "Политики" - -#: ../../mod/admin.php:624 -msgid "Advanced" -msgstr "Напреднал" - -#: ../../mod/admin.php:625 -msgid "Performance" -msgstr "Производителност" - -#: ../../mod/admin.php:626 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:629 -msgid "Site name" -msgstr "Име на сайта" - -#: ../../mod/admin.php:630 -msgid "Host name" -msgstr "" - -#: ../../mod/admin.php:631 -msgid "Sender Email" -msgstr "" - -#: ../../mod/admin.php:632 -msgid "Banner/Logo" -msgstr "Банер / лого" - -#: ../../mod/admin.php:633 -msgid "Shortcut icon" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "Touch icon" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "Additional Info" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: ../../mod/admin.php:636 -msgid "System language" -msgstr "Системен език" - -#: ../../mod/admin.php:637 -msgid "System theme" -msgstr "Системна тема" - -#: ../../mod/admin.php:637 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Тема по подразбиране система - може да бъде по-яздени потребителски профили - променяте настройки тема " - -#: ../../mod/admin.php:638 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:638 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:639 -msgid "SSL link policy" -msgstr "SSL връзка политика" - -#: ../../mod/admin.php:639 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Определя дали генерирани връзки трябва да бъдат принудени да се използва SSL" - -#: ../../mod/admin.php:640 -msgid "Force SSL" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Old style 'Share'" -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:642 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: ../../mod/admin.php:642 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." +msgid "%s is attending %s's event" msgstr "" -#: ../../mod/admin.php:643 -msgid "Single user instance" -msgstr "" - -#: ../../mod/admin.php:643 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: ../../mod/admin.php:644 -msgid "Maximum image size" -msgstr "Максимален размер на изображението" - -#: ../../mod/admin.php:644 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Максимален размер в байтове на качените изображения. По подразбиране е 0, което означава, няма граници." - -#: ../../mod/admin.php:645 -msgid "Maximum image length" -msgstr "" - -#: ../../mod/admin.php:645 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: ../../mod/admin.php:646 -msgid "JPEG image quality" -msgstr "" - -#: ../../mod/admin.php:646 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:648 -msgid "Register policy" -msgstr "Регистрирайте политика" - -#: ../../mod/admin.php:649 -msgid "Maximum Daily Registrations" -msgstr "" - -#: ../../mod/admin.php:649 -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 -msgid "Register text" -msgstr "Регистрирайте се текст" - -#: ../../mod/admin.php:650 -msgid "Will be displayed prominently on the registration page." -msgstr "Ще бъдат показани на видно място на страницата за регистрация." - -#: ../../mod/admin.php:651 -msgid "Accounts abandoned after x days" -msgstr "Сметките изоставени след дни х" - -#: ../../mod/admin.php:651 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето." - -#: ../../mod/admin.php:652 -msgid "Allowed friend domains" -msgstr "Позволи на домейни приятел" - -#: ../../mod/admin.php:652 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" - -#: ../../mod/admin.php:653 -msgid "Allowed email domains" -msgstr "Позволи на домейни имейл" - -#: ../../mod/admin.php:653 -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 "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" - -#: ../../mod/admin.php:654 -msgid "Block public" -msgstr "Блокиране на обществения" - -#: ../../mod/admin.php:654 -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 -msgid "Force publish" -msgstr "Принудително публикува" - -#: ../../mod/admin.php:655 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта." - -#: ../../mod/admin.php:656 -msgid "Global directory update URL" -msgstr "Global директория актуализация URL" - -#: ../../mod/admin.php:656 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL за актуализиране на глобален справочник. Ако това не е настроен, глобален справочник е напълно недостъпни за заявлението." - -#: ../../mod/admin.php:657 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:657 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:658 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:658 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:659 -msgid "Don't include post content in email notifications" -msgstr "" - -#: ../../mod/admin.php:659 -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 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: ../../mod/admin.php:660 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: ../../mod/admin.php:661 -msgid "Don't embed private images in posts" -msgstr "" - -#: ../../mod/admin.php:661 -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 -msgid "Allow Users to set remote_self" -msgstr "" - -#: ../../mod/admin.php:662 -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 -msgid "Block multiple registrations" -msgstr "Блокиране на множество регистрации" - -#: ../../mod/admin.php:663 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Забраните на потребителите да се регистрират допълнителни сметки, за използване като страниците." - -#: ../../mod/admin.php:664 -msgid "OpenID support" -msgstr "Поддръжка на OpenID" - -#: ../../mod/admin.php:664 -msgid "OpenID support for registration and logins." -msgstr "Поддръжка на OpenID за регистрация и влизане." - -#: ../../mod/admin.php:665 -msgid "Fullname check" -msgstr "Fullname проверка" - -#: ../../mod/admin.php:665 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Силите на потребителите да се регистрират в пространството между Име и фамилия в пълно име, като мярка за антиспам" - -#: ../../mod/admin.php:666 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 регулярни изрази" - -#: ../../mod/admin.php:666 -msgid "Use PHP UTF8 regular expressions" -msgstr "Използвате PHP UTF8 регулярни изрази" - -#: ../../mod/admin.php:667 -msgid "Community Page Style" -msgstr "" - -#: ../../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 "" - -#: ../../mod/admin.php:668 -msgid "Posts per user on community page" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: ../../mod/admin.php:669 -msgid "Enable OStatus support" -msgstr "Активирайте OStatus подкрепа" - -#: ../../mod/admin.php:669 -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 -msgid "OStatus conversation completion interval" -msgstr "" - -#: ../../mod/admin.php:670 -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 -msgid "Enable Diaspora support" -msgstr "Активирайте диаспора подкрепа" - -#: ../../mod/admin.php:671 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Осигури вградена диаспора в мрежата съвместимост." - -#: ../../mod/admin.php:672 -msgid "Only allow Friendica contacts" -msgstr "Позволяват само Friendica контакти" - -#: ../../mod/admin.php:672 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Всички контакти трябва да използвате Friendica протоколи. Всички останали вградени комуникационни протоколи с увреждания." - -#: ../../mod/admin.php:673 -msgid "Verify SSL" -msgstr "Провери SSL" - -#: ../../mod/admin.php:673 -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 "Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти." - -#: ../../mod/admin.php:674 -msgid "Proxy user" -msgstr "Proxy потребител" - -#: ../../mod/admin.php:675 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:676 -msgid "Network timeout" -msgstr "Мрежа изчакване" - -#: ../../mod/admin.php:676 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)." - -#: ../../mod/admin.php:677 -msgid "Delivery interval" -msgstr "Доставка интервал" - -#: ../../mod/admin.php:677 -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 "Забавяне процесите на доставка на заден план от това много секунди, за да се намали натоварването на системата. Препоръчай: 4-5 за споделени хостове, 2-3 за виртуални частни сървъри. 0-1 за големи наети сървъри." - -#: ../../mod/admin.php:678 -msgid "Poll interval" -msgstr "Анкета интервал" - -#: ../../mod/admin.php:678 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Забавяне избирателните фонови процеси от това много секунди, за да се намали натоварването на системата. Ако 0, използвайте интервал доставка." - -#: ../../mod/admin.php:679 -msgid "Maximum Load Average" -msgstr "Максимално натоварване" - -#: ../../mod/admin.php:679 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Максимално натоварване на системата преди раждането и анкета процеси са отложени - по подразбиране 50." - -#: ../../mod/admin.php:681 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:681 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress Language" -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress Tags" -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: ../../mod/admin.php:684 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:685 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:685 -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 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: ../../mod/admin.php:686 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: ../../mod/admin.php:687 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:688 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:689 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "Disable picture proxy" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: ../../mod/admin.php:691 -msgid "Enable old style pager" -msgstr "" - -#: ../../mod/admin.php:691 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: ../../mod/admin.php:692 -msgid "Only search in tags" -msgstr "" - -#: ../../mod/admin.php:692 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: ../../mod/admin.php:694 -msgid "New base url" -msgstr "" - -#: ../../mod/admin.php:711 -msgid "Update has been marked successful" -msgstr "Update е маркиран успешно" - -#: ../../mod/admin.php:719 +#: include/NotificationsManager.php:289 #, php-format -msgid "Database structure update %s was successfully applied." +msgid "%s is not attending %s's event" msgstr "" -#: ../../mod/admin.php:722 +#: include/NotificationsManager.php:300 #, php-format -msgid "Executing of database structure update %s failed with error: %s" +msgid "%s may attend %s's event" msgstr "" -#: ../../mod/admin.php:734 +#: include/NotificationsManager.php:315 #, php-format -msgid "Executing %s failed with error: %s" -msgstr "" +msgid "%s is now friends with %s" +msgstr "%s вече е приятел с %s" -#: ../../mod/admin.php:737 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Актуализация %s бе успешно приложена." +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Приятел за предложения" -#: ../../mod/admin.php:741 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Актуализация %s не се връща статус. Известно дали тя успя." +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Приятел / заявка за свързване" -#: ../../mod/admin.php:743 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Нов последовател" -#: ../../mod/admin.php:762 -msgid "No failed updates." -msgstr "Няма провалени новини." - -#: ../../mod/admin.php:763 -msgid "Check database structure" -msgstr "" - -#: ../../mod/admin.php:768 -msgid "Failed Updates" -msgstr "Неуспешно Updates" - -#: ../../mod/admin.php:769 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Това не включва актуализации, преди 1139, които не връщат статута." - -#: ../../mod/admin.php:770 -msgid "Mark success (if update was manually applied)" -msgstr "Марк успех (ако актуализация е ръчно прилага)" - -#: ../../mod/admin.php:771 -msgid "Attempt to execute this update step automatically" -msgstr "Опита да изпълни тази стъпка се обновяват автоматично" - -#: ../../mod/admin.php:803 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "" -"\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." -msgstr "" - -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Регистрационни данни за %s" - -#: ../../mod/admin.php:850 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:857 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:896 -#, php-format -msgid "User '%s' deleted" -msgstr "Потребителят \" %s \"Изтрити" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' unblocked" -msgstr "Потребителят \" %s \"отблокирани" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' blocked" -msgstr "Потребителят \" %s \"блокиран" - -#: ../../mod/admin.php:999 -msgid "Add User" -msgstr "" - -#: ../../mod/admin.php:1000 -msgid "select all" -msgstr "Избор на всичко" - -#: ../../mod/admin.php:1001 -msgid "User registrations waiting for confirm" -msgstr "Потребителски регистрации, чакат за да потвърдите" - -#: ../../mod/admin.php:1002 -msgid "User waiting for permanent deletion" -msgstr "" - -#: ../../mod/admin.php:1003 -msgid "Request date" -msgstr "Искане дата" - -#: ../../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 "Е-поща" - -#: ../../mod/admin.php:1004 -msgid "No registrations." -msgstr "Няма регистрации." - -#: ../../mod/admin.php:1006 -msgid "Deny" -msgstr "Отказ" - -#: ../../mod/admin.php:1010 -msgid "Site admin" -msgstr "Администратор на сайта" - -#: ../../mod/admin.php:1011 -msgid "Account expired" -msgstr "" - -#: ../../mod/admin.php:1014 -msgid "New User" -msgstr "" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Register date" -msgstr "Дата на регистрация" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last login" -msgstr "Последно влизане" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last item" -msgstr "Последния елемент" - -#: ../../mod/admin.php:1015 -msgid "Deleted since" -msgstr "" - -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "профил" - -#: ../../mod/admin.php:1018 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?" - -#: ../../mod/admin.php:1019 -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 "Потребител {0} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?" - -#: ../../mod/admin.php:1029 -msgid "Name of the new user." -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname" -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname of the new user." -msgstr "" - -#: ../../mod/admin.php:1031 -msgid "Email address of the new user." -msgstr "" - -#: ../../mod/admin.php:1064 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-in %s увреждания." - -#: ../../mod/admin.php:1068 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-in %s поддръжка." - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 -msgid "Disable" -msgstr "забрани" - -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 -msgid "Enable" -msgstr "Да се активира ли?" - -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 -msgid "Toggle" -msgstr "切換" - -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 -msgid "Author: " -msgstr "Автор: " - -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 -msgid "Maintainer: " -msgstr "Отговорник: " - -#: ../../mod/admin.php:1254 -msgid "No themes found." -msgstr "Няма намерени теми." - -#: ../../mod/admin.php:1316 -msgid "Screenshot" -msgstr "Screenshot" - -#: ../../mod/admin.php:1362 -msgid "[Experimental]" -msgstr "(Експериментален)" - -#: ../../mod/admin.php:1363 -msgid "[Unsupported]" -msgstr "Неподдържан]" - -#: ../../mod/admin.php:1390 -msgid "Log settings updated." -msgstr "Вход Обновяването на настройките." - -#: ../../mod/admin.php:1446 -msgid "Clear" -msgstr "Безцветен " - -#: ../../mod/admin.php:1452 -msgid "Enable Debugging" -msgstr "" - -#: ../../mod/admin.php:1453 -msgid "Log file" -msgstr "Регистрационен файл" - -#: ../../mod/admin.php:1453 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория." - -#: ../../mod/admin.php:1454 -msgid "Log level" -msgstr "Вход ниво" - -#: ../../mod/admin.php:1504 -msgid "Close" -msgstr "Затвори" - -#: ../../mod/admin.php:1510 -msgid "FTP Host" -msgstr "Добавил през FTP домакин" - -#: ../../mod/admin.php:1511 -msgid "FTP Path" -msgstr "Добавил през FTP Path" - -#: ../../mod/admin.php:1512 -msgid "FTP User" -msgstr "FTP потребител" - -#: ../../mod/admin.php:1513 -msgid "FTP Password" -msgstr "FTP парола" - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Резултати от търсенето за:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Премахване мандат" - -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Запазени търсения" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "добави" - -#: ../../mod/network.php:356 -msgid "Commented Order" -msgstr "Коментирани поръчка" - -#: ../../mod/network.php:359 -msgid "Sort by Comment Date" -msgstr "Сортиране по Коментар Дата" - -#: ../../mod/network.php:362 -msgid "Posted Order" -msgstr "Пуснато на поръчка" - -#: ../../mod/network.php:365 -msgid "Sort by Post Date" -msgstr "Сортирай по пощата дата" - -#: ../../mod/network.php:374 -msgid "Posts that mention or involve you" -msgstr "Мнения, които споменават или включват" - -#: ../../mod/network.php:380 -msgid "New" -msgstr "Нов профил." - -#: ../../mod/network.php:383 -msgid "Activity Stream - by date" -msgstr "Активност Stream - по дата" - -#: ../../mod/network.php:389 -msgid "Shared Links" -msgstr "Общо връзки" - -#: ../../mod/network.php:392 -msgid "Interesting Links" -msgstr "Интересни Връзки" - -#: ../../mod/network.php:398 -msgid "Starred" -msgstr "Със звезда" - -#: ../../mod/network.php:401 -msgid "Favourite Posts" -msgstr "Любими Мнения" - -#: ../../mod/network.php:463 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/network.php:466 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Лични съобщения до тази група, са изложени на риск от публичното оповестяване." - -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Няма такава група" - -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Групата е празна" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Група: " - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Контакт " - -#: ../../mod/network.php:556 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Лични съобщения до това лице, са изложени на риск от публичното оповестяване." - -#: ../../mod/network.php:561 -msgid "Invalid contact." -msgstr "Невалиден свържете." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Приятели на %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Нямате приятели в листата." - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "л, F J" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Редактиране на Събитието" - -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "връзка източник" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Събития" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Създаване на нов събитие" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Предишна" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Следваща" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "час: минути" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Подробности за събитието" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Събитие Започва:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Задължително" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Завършете дата / час не е известен или не е приложимо" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Събитие играчи:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Настрои зрителя часовата зона" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Описание:" - -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Място:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Заглавие:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Споделете това събитие" - -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "избор" - -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Преглед профила на %s в %s" - -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 -#, php-format -msgid "%s from %s" -msgstr "%s от %s" - -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Поглед в контекста" - -#: ../../mod/content.php:603 ../../object/Item.php:387 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../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] "" - -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "покажи още" - -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Лично съобщение" - -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Харесва ми това (смяна)" - -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "харесвам" - -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Не ми харесва това (смяна)" - -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "не харесвам" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Споделете това" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "споделяне" - -#: ../../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 "Това сте вие" - -#: ../../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 "Коментар" - -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Получер" - -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Курсив" - -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Подчертан" - -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Цитат" - -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Код" - -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Изображение" - -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Връзка" - -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Видеоклип" - -#: ../../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 "Преглед" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Редактиране" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "Добавяне на звезда" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "Премахване на звездата" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "превключване звезда статус" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "звезда" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "добавяне на етикет" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "запишете в папка" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "за" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "От стена до стена" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "чрез стена до стена:" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Извадете Моят профил" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Моля, въведете паролата си за проверка:" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Не може да се свърже с базата данни." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Не може да се създаде таблица." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Вашият Friendica сайт база данни е инсталиран." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Може да се наложи да импортирате файла \"database.sql\" ръчно чрез настървение или MySQL." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Моля, вижте файла \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Проверка на системата" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Проверете отново" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Свързване на база данни" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Име на сървър за база данни" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Името на базата данни Парола" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Database Влизам Парола" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Име на база данни" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Сайт администратор на имейл адрес" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Моля, изберете часовата зона по подразбиране за вашия уеб сайт" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Настройки на сайта" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Не може да се намери командния ред версия на PHP в PATH уеб сървър." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Ако не разполагате с командния ред версия на PHP е инсталиран на сървър, вие няма да можете да тече избирателната фон чрез Cron. Вижте \"Активиране на планирани задачи\" " - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "PHP изпълним път" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Команден ред PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "В командния ред версия на PHP на вашата система не трябва \"register_argc_argv\" дадоха възможност." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Това е необходимо за доставка на съобщение, за да работят." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Грешка: \"openssl_pkey_new\" функция на тази система не е в състояние да генерира криптиращи ключове" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ако работите под Windows, моля, вижте \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Генериране на криптиращи ключове" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP модул" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD графика PHP модул" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP модул" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP модул" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP модул" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite модул" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Грешка: libCURL PHP модул, но не е инсталирана." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Грешка: OpenSSL PHP модул са необходими, но не е инсталирана." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Грешка: mysqli PHP модул, но не е инсталирана." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Грешка: mb_string PHP модул, но не е инсталирана." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Уеб инсталатора трябва да бъде в състояние да създаде файл с име \". Htconfig.php\" в най-горната папка на вашия уеб сървър и не е в състояние да го направят." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "В края на тази процедура, ние ще ви дадем един текст, за да се запишете в файл с име. Htconfig.php в топ Friendica папка." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Можете като алтернатива да пропуснете тази процедура и да извърши ръчно инсталиране. Моля, вижте файла \"INSTALL.txt\", за инструкции." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ",. Htconfig.php е записваем" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL пренапише. Htaccess не работи. Проверете вашата конфигурация сървър." - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr ", Url пренаписванията работи" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Конфигурационния файл на базата данни \". Htconfig.php\" не може да бъде написано. Моля, използвайте приложения текст, за да се създаде конфигурационен файл в основната си уеб сървър." - -#: ../../mod/install.php:523 -msgid "

                                              What next

                                              " -msgstr "

                                              Каква е следващата стъпка " - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "ВАЖНО: Вие ще трябва да [ръчно] настройка на планирана задача за poller." - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Не може да проверите вашето местоположение." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Не получателя." - -#: ../../mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели." - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Помощ" - -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Помощ" - -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Не е намерено" - -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Страницата не е намерена." - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Добре дошли %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 "Файл надхвърля ограничението за размера на %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Файл за качване не успя." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Профил мач" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Няма ключови думи, които да съвпадат. Моля, да добавяте ключови думи към вашия профил по подразбиране." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "се интересува от:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Свързване! " - -#: ../../mod/share.php:44 -msgid "link" -msgstr "" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Няма налични" - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Общност" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Няма резултати." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "всички" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Допълнителни възможности" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Свързани приложения" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Експортиране на личните данни" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Премахване сметка" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Липсват някои важни данни!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Имейл настройки актуализира." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "" - -#: ../../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 "Паролите не съвпадат. Парола непроменен." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Празните пароли не са разрешени. Парола непроменен." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Неправилна парола" - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Парола промени." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Парола актуализация се провали. Моля, опитайте отново." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr " Моля, използвайте по-кратко име." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr " Името е твърде кратко." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Неправилна парола" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr " Не валиден имейл." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr " Не може да е този имейл." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Частен форум няма разрешения за неприкосновеността на личния живот. Използване подразбиране поверителност група." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Частен форум няма разрешения за неприкосновеността на личния живот и никоя група по подразбиране неприкосновеността на личния живот." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Обновяването на настройките." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Добави приложение" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Ключ на консуматора:" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Тайна стойност на консуматора:" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Пренасочвания:" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "Икона URL" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Вие не можете да редактирате тази кандидатура." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Свързани Apps" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Ключ на клиента започва с" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Без име" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Премахване на разрешение" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Няма плъгин настройки, конфигурирани" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Plug-in Настройки" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Изкл." - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "Вкл." - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Допълнителни възможности" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Вградена поддръжка за връзка от %s %s" - -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Диаспора" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "разрешен" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "забранен" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "Достъп до електронна поща е забранен на този сайт." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Email / Mailbox Setup" - -#: ../../mod/settings.php:786 -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:787 -msgid "Last successful email check:" -msgstr "Последна успешна проверка на електронната поща:" - -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "Име на IMAP сървъра:" - -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "IMAP порта:" - -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Сигурност" - -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Няма " - -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Email потребителско име:" - -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Email парола:" - -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Адрес за отговор:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Изпратете публични длъжности за всички имейл контакти:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Действия след вноса:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Марк, както се вижда" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Премества избраното в папка" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Премества избраното в папка" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Настройки на дисплея" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Палитрата на дисплея:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Актуализиране на браузъра на всеки ХХ секунди" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Минимум 10 секунди, няма определен максимален" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Максимум от 100 точки" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Да не се показват емотикони" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Нормално страницата с профила" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Тази сметка е нормален личен профил" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Импровизирана трибуна Page" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Автоматично одобрява всички / приятел искания само за четене фенове" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Community Forum / Celebrity" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Автоматично одобрява всички / приятел исканията фенове за четене и запис" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Автоматично приятел Page" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Автоматично одобрява всички / молби за приятелство, като приятели" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Частен форум [експериментална]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Само частен форум - Одобрени членове" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Публикуване на вашия профил по подразбиране във вашата локална директория на сайта?" - -#: ../../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 "Не" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Публикуване на вашия профил по подразбиране в глобалната социална директория?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Скриване на вашия контакт / списък приятел от зрителите на вашия профил по подразбиране?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Скриване на детайли от профила си от неизвестни зрители?" - -#: ../../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 "Оставете приятели, които да публикувате в страницата с вашия профил?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Оставете приятели, за да маркирам собствените си мнения?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Позволете ни да Ви предложи като потенциален приятел за нови членове?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Разрешение непознати хора, за да ви Изпратете лично поща?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Профил не се публикува ." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Адрес на вашата самоличност е" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Автоматично изтича мнения след толкова много дни:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Разширени настройки за изтичане на срока" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Разширено Изтичане" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Срок на мнения:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Срок на лични бележки:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Срок със звезда на мнения:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Срок на снимки:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Само изтича мнения от други:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Настройки на профила" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Парола Настройки" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "нова парола" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Потвърждаване..." - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Оставете паролите полета празни, освен ако промяна" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Текуща парола:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Парола" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Основни настройки" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Собствено и фамилно име" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Електронна поща:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Вашият Часовата зона:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Мнение местоположението по подразбиране:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Използвайте Browser Местоположение:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Сигурност и и лични настройки" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Максимален брой молби за приятелство / ден:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(Да се ​​предотврати спама злоупотреба)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Разрешения по подразбиране и" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(Щракнете за отваряне / затваряне)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Показване на групи" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Показване на контакти" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Максимални лични съобщения на ден от непознати хора:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Настройки за уведомяване" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "По подразбиране се публикуват съобщение за състояние, когато:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "приемане на искането за приятел" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "присъединяване форум / общността" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "един интересен Смяна на профил" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Изпращане на известие по имейл, когато:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Вие получавате въведение" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Вашите въвеждания са потвърдени" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Някой пише в профила ви стена" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Някой пише последващ коментар" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Ще получите лично съобщение" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Ще получите предложение приятел" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Са маркирани в един пост" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../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 "Това въведение е вече е приета." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Профил местоположение не е валиден или не съдържа информация на профила." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Внимание: профила място има няма установен име на собственика." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Внимание: профила местоположение не е снимката на профила." - -#: ../../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] "" -msgstr[1] "" - -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Въведение завърши." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Невъзстановима протокол грешка." - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Профил недостъпни." - -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s е получил твърде много заявки за свързване днес." - -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Мерките за защита срещу спам да бъдат изтъкнати." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Приятели се препоръчва да се моля опитайте отново в рамките на 24 часа." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Невалиден локатор" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Невалиден имейл адрес." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Този профил не е конфигуриран за електронна поща. Заявката не бе успешна." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Не може да се разреши името си на предвиденото място." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Вие вече се въведе тук." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Явно вече сте приятели с %s ." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Невалиден URL адрес на профила." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Отхвърлен профила URL." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Вашият въвеждането е било изпратено." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Моля, влезте, за да потвърди въвеждането." - -#: ../../mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Неправилно идентичност, който в момента е логнат. Моля, влезте с потребителско име и парола на този профил ." - -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Скриване на този контакт" - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Добре дошли у дома %s ." - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Моля, потвърдете, въвеждане / заявката за свързване към %s ." - -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Потвърждаване" - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Моля, въведете \"Идентичност Адрес\" от един от следните поддържани съобщителни мрежи:" - -#: ../../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 "Ако все още не сте член на безплатна социална мрежа, href=\"http://dir.friendica.com/siteinfo\"> ." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Приятел / заявка за връзка" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Примери: jojo@demo.friendica.com~~HEAD=NNS, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Моля отговорете на следните:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Има ли %s знаете?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Добавяне на лична бележка:" - -#: ../../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 / Федерални социална мрежа" - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - Моля, не използвайте тази форма. Вместо това въведете %s в търсенето диаспора бар." - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Адрес на вашата самоличност:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Изпращане на заявката" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции." - -#: ../../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 "Вашата регистрация не могат да бъдат обработени." - -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Вашата регистрация е в очакване на одобрение от собственика на сайта." - -#: ../../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 "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре." - -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Може да се (по желание) да попълните този формуляр, чрез OpenID чрез предоставяне на OpenID си и кликнете върху \"Регистрация\"." - -#: ../../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 "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Вашият OpenID (не е задължително): " - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Включете вашия профил в член директория?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Членството на този сайт е само с покани." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Вашата покана ID: " - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Пълното си име (напр. Джо Смит): " - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Вашият 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 "Изберете прякор профил. Това трябва да започне с текст характер. Вашият профил адреса на този сайт ще бъде \" прякор @ $ на SITENAME \"." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Изберете прякор: " - -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Регистратор" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Внасяне" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Търсене" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Глобален справочник" - -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Търсене в този сайт" - -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Site Directory" - -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Възраст: " - -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Пол: " - -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Пол:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Състояние:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Начална страница:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "това ?" - -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Няма записи (някои вписвания, могат да бъдат скрити)." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Няма потенциални делегати на страницата намира." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Участник, за управление на страница" - -#: ../../mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Съществуващите Мениджъри" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Съществуващите Делегатите Страница" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Потенциални Делегатите" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Добави" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "няма регистрирани" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Общи приятели" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Няма контакти по-чести." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: ../../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 "" - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Изнасяне на всичко" - -#: ../../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 "" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Настроение" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Наистина ли искате да изтриете това предложение?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Предложения за приятели" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Игнорирай / Скрий" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Изтрит профил." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Височина на профила" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Нов профил е създаден." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Профил недостъпна да се клонират." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Име на профил се изисква." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Семейно положение" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Романтичен партньор" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Харесвания" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Нехаресвания" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Работа / заетост" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Вероизповедание:" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Политически възгледи" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Пол" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Сексуални предпочитания" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Начална страница" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Интереси" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Адрес" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Местоположение " - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Профил актуализиран." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " и " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "публичен профил" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s променя %2$s %3$s 3 $ S " - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Посещение %1$s на %2$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s има актуализиран %2$s , промяна %3$s ." - -#: ../../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 "Скриване на вашия контакт / списък приятел от зрителите на този профил?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Редактиране на детайли от профила" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Промяна снимката на профила" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Виж този профил" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Създаване на нов профил, използвайки тези настройки" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Клонираме тази профила" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Изтриване на този профил" - -#: ../../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 "Име на профила" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Пълното си име:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Наименование/Описание" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Пол:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Рожден ден ( %s ):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Адрес:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Махала / Град:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Postal / Zip Code:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Държава:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Регион / Щат:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Семейно положение:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Кой: (ако е приложимо)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Примери: cathy123, Кати Уилямс, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "От [дата]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Сексуални предпочитания:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Електронна страница:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Hometown:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Политически възгледи:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Религиозни възгледи:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Публичните Ключови думи:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Частни Ключови думи:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Харесвания:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Нехаресвания:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Пример: софтуер за риболов фотография" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Използва се за предполагайки потенциален приятели, може да се види от други)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Използва се за търсене на профилите, никога не показва и на други)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Разкажете ни за себе си ..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Хобита / интереси" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Информация за контакти и социални мрежи" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Музикални интереси" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Книги, литература" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Телевизия" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Филм / танц / Култура / забавления" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Любов / романтика" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Работа / заетост" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Училище / образование" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
                                              It may " -"be visible to anybody using the internet." -msgstr "Това е вашата публично профил.
                                              Май да бъде видим за всеки, който с помощта на интернет." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Редактиране / Управление на профили" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Промяна на снимката на профил" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Създай нов профил" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Профил на изображението" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "видими за всички" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Редактиране на видимост" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Елемент не е намерена" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Редактиране на мнение" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "качване на снимка" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Прикачване на файл" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "Прикачване на файл" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "Уеб-линк" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Поставете линка на видео" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "видео връзка" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Поставете аудио връзка" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "аудио връзка" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Задайте местоположението си" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "Задаване на местоположението" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Изчистване на браузъра място" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "ясно място" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Настройките за достъп" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: имейл адреси" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Обществена длъжност" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Задайте заглавие" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Категории (разделен със запетаи списък)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Пример: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Това е Friendica, версия" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "работи в уеб сайта," - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit
                                              Friendica.com to learn " -"more about the Friendica project." -msgstr "Моля, посетете Friendica.com , за да научите повече за проекта на Friendica." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Доклади за грешки и проблеми: моля посетете" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Предложения, похвали, дарения и т.н. - моля пишете \"Инфо\" в Friendica - Dot Com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Инсталираните приставки / Addons / Apps:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Няма инсталирани плъгини / Addons / приложения" - -#: ../../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 "Назад към приложението ти и поставите този Securty код:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Моля, влезте, за да продължите." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Дистанционно неприкосновеността на личния живот информация не е достъпен." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Вижда се от:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Личните бележки" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "L F г, Y \\ @ G: I A" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Време за преобразуване" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC време: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Текуща часова зона: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Превърнат localtime: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Моля изберете вашия часовата зона:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Получател" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s не е валиден имейл адрес." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Моля, присъединете се към нас на Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Съобщение доставка не успя." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Имате няма повече покани" - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica." - -#: ../../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 сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Изпращане на покани" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Въведете имейл адреси, по един на ред:" - -#: ../../mod/invite.php: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 "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Вие ще трябва да предоставят този код за покана: $ invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "За повече информация за проекта Friendica и защо ние смятаме, че е важно, моля посетете http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Фотоалбуми" - -#: ../../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 "Свържете снимки" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Качване на нови снимки" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Свържете се с информация недостъпна" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Албумът не е намерен." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Изтриване на албума" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Изтриване на снимка" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Изображението надвишава ограничението за размера на " - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Image файл е празен." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Няма избрани снимки" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Качване на снимки" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Нов албум име: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "или съществуващо име на албума: " - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Да не се показва след статут за това качване" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "права" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Частна снимка" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Публична снимка" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Редактиране на албум" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Преглед на снимка" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Снимката не е" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Преглед на снимка" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Редактиране на снимка" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Използва се като снимката на профила" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Изглед в пълен размер" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Маркери: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "Премахване на всякаква маркировка]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Rotate CW (вдясно)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Завъртане ККО (вляво)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Ново име на албум" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Надпис" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Добавите етикет" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Частна снимка" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Публична снимка" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "дял,%" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Последни снимки" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Сметка одобрен." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Регистрация отменено за %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Моля, влезте." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: ../../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 "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Които не са на разположение." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Елемент не е намерен." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Изтриване на тази бележка?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "показват по-малко" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Актуализация %s не успя. Виж логовете за грешки." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Създаване на нов профил:" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "изход" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Псевдоним или имейл адрес: " - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Парола " - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Или да влезнете с OpenID: " - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Забравена парола?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Условия за ползване на сайта" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "условия за ползване" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Политика за поверителност на сайта" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "политика за поверителност" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "" - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Редактиране на потребителския профил" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Съобщение" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Профили " - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Управление / редактиране на профили" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "грама Л Е г" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "F г" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "Днес" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Напомняния за рождени дни" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Рождени дни този Седмица:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Няма описание]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Напомняния" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Събития тази седмица:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Състояние:" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Съобщения за състоянието и пощи" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Детайли от профила" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Видеоклипове" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Събития и календарни" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Можете да видите това" - -#: ../../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 "Категории:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Записано в:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "" - -#: ../../include/dbstructure.php:26 +#: include/dbstructure.php:26 #, php-format msgid "" "\n" @@ -5697,1382 +1669,1380 @@ msgid "" "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: ../../include/dbstructure.php:31 +#: include/dbstructure.php:31 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "" -#: ../../include/dbstructure.php:162 +#: include/dbstructure.php:183 msgid "Errors encountered creating database tables." msgstr "Грешки, възникнали създаване на таблиците в базата данни." -#: ../../include/dbstructure.php:220 +#: include/dbstructure.php:260 msgid "Errors encountered performing database changes." msgstr "" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Изход" +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(Без тема)" -#: ../../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 "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията." +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Споделяне на уведомление от диаспората мрежа" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Съобщението за грешка е:" +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Приложения" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Добавяне на нов контакт" +#: include/network.php:595 +msgid "view full size" +msgstr "видите в пълен размер" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Въведете местоположение на адрес или уеб" +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Преглед на профил" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Пример: bob@example.com, http://example.com/barbara" +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Показване на състоянието" -#: ../../include/contact_widgets.php:24 +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Вижте снимки" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Мрежови Мнения" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Изпратете PM" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "" + +#: include/api.php:1018 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Изображение / снимка" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$ 1 пише:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Шифрирано съдържание" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s вече е приятел с %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s сложи етикет с %2$s - %3$s %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "длъжност / позиция" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s маркираната %2$s - %3$s като предпочитано" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Харесвания" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Нехаресвания" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Намерете хора," +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Въведете името или интерес" +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Свържете се / последваща" +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "избор" -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Примери: Робърт Morgenstein, Риболов" +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Изтриване" -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Сходни интереси" +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Преглед профила на %s в %s" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Случайна Профил" +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Категории:" -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Покани приятели" +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Записано в:" -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Мрежи" +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s от %s" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Всички мрежи" +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Поглед в контекста" -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Записани папки" +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Моля, изчакайте" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Всичко" +#: include/conversation.php:870 +msgid "remove" +msgstr "Премахване" -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Категории" +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Изтриване на избраните елементи" -#: ../../include/features.php:23 +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s харесва това." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s не харесва това." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "и" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", И %d други хора" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Видим всички " + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Моля, въведете URL адреса за връзка:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Моля въведете видео връзка / URL:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Моля въведете аудио връзка / URL:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Tag термин:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Запиши в папка:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Къде сте в момента?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "дял,%" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Качване на снимка" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "качване на снимка" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Прикачване на файл" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "Прикачване на файл" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Вмъкване на връзка в Мрежата" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "Уеб-линк" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Поставете линка на видео" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "видео връзка" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Поставете аудио връзка" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "аудио връзка" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Задайте местоположението си" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "Задаване на местоположението" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Изчистване на браузъра място" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "ясно място" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Задайте заглавие" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Категории (разделен със запетаи списък)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Настройките за достъп" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "права" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Обществена длъжност" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Преглед" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Отмени" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Съобщение" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 msgid "General Features" msgstr "" -#: ../../include/features.php:25 +#: include/features.php:72 msgid "Multiple Profiles" msgstr "" -#: ../../include/features.php:25 +#: include/features.php:72 msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/features.php:30 +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 msgid "Post Composition Features" msgstr "" -#: ../../include/features.php:31 +#: include/features.php:80 msgid "Richtext Editor" msgstr "" -#: ../../include/features.php:31 +#: include/features.php:80 msgid "Enable richtext editor" msgstr "" -#: ../../include/features.php:32 +#: include/features.php:81 msgid "Post Preview" msgstr "" -#: ../../include/features.php:32 +#: include/features.php:81 msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:82 msgid "Auto-mention Forums" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:82 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"Add/remove mention when a forum page is selected/deselected in ACL window." msgstr "" -#: ../../include/features.php:38 +#: include/features.php:87 msgid "Network Sidebar Widgets" msgstr "" -#: ../../include/features.php:39 +#: include/features.php:88 msgid "Search by Date" msgstr "Търсене по дата" -#: ../../include/features.php:39 +#: include/features.php:88 msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/features.php:40 +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 msgid "Group Filter" msgstr "" -#: ../../include/features.php:40 +#: include/features.php:90 msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: ../../include/features.php:41 +#: include/features.php:91 msgid "Network Filter" msgstr "Мрежов филтър" -#: ../../include/features.php:41 +#: include/features.php:91 msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: ../../include/features.php:42 +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Запазени търсения" + +#: include/features.php:92 msgid "Save search terms for re-use" msgstr "" -#: ../../include/features.php:47 +#: include/features.php:97 msgid "Network Tabs" msgstr "" -#: ../../include/features.php:48 +#: include/features.php:98 msgid "Network Personal Tab" msgstr "" -#: ../../include/features.php:48 +#: include/features.php:98 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/features.php:49 +#: include/features.php:99 msgid "Network New Tab" msgstr "" -#: ../../include/features.php:49 +#: include/features.php:99 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: ../../include/features.php:50 +#: include/features.php:100 msgid "Network Shared Links Tab" msgstr "" -#: ../../include/features.php:50 +#: include/features.php:100 msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: ../../include/features.php:55 +#: include/features.php:105 msgid "Post/Comment Tools" msgstr "" -#: ../../include/features.php:56 +#: include/features.php:106 msgid "Multiple Deletion" msgstr "" -#: ../../include/features.php:56 +#: include/features.php:106 msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../include/features.php:57 +#: include/features.php:107 msgid "Edit Sent Posts" msgstr "" -#: ../../include/features.php:57 +#: include/features.php:107 msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../include/features.php:58 +#: include/features.php:108 msgid "Tagging" msgstr "" -#: ../../include/features.php:58 +#: include/features.php:108 msgid "Ability to tag existing posts" msgstr "" -#: ../../include/features.php:59 +#: include/features.php:109 msgid "Post Categories" msgstr "" -#: ../../include/features.php:59 +#: include/features.php:109 msgid "Add categories to your posts" msgstr "" -#: ../../include/features.php:60 +#: include/features.php:110 msgid "Ability to file posts under folders" msgstr "" -#: ../../include/features.php:61 +#: include/features.php:111 msgid "Dislike Posts" msgstr "" -#: ../../include/features.php:61 +#: include/features.php:111 msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/features.php:62 +#: include/features.php:112 msgid "Star Posts" msgstr "" -#: ../../include/features.php:62 +#: include/features.php:112 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:113 msgid "Mute Post Notifications" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:113 msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../include/follow.php:32 +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Отхвърлен профила URL." + +#: include/follow.php:86 msgid "Connect URL missing." msgstr "Свързване URL липсва." -#: ../../include/follow.php:59 +#: include/follow.php:113 msgid "" "This site is not configured to allow communications with other networks." msgstr "Този сайт не е конфигуриран да позволява комуникация с други мрежи." -#: ../../include/follow.php:60 ../../include/follow.php:80 +#: include/follow.php:114 include/follow.php:134 msgid "No compatible communication protocols or feeds were discovered." msgstr "Няма съвместими комуникационни протоколи или фуражите не са били открити." -#: ../../include/follow.php:78 +#: include/follow.php:132 msgid "The profile address specified does not provide adequate information." msgstr "Профилът на посочения адрес не предоставя достатъчна информация." -#: ../../include/follow.php:82 +#: include/follow.php:136 msgid "An author or name was not found." msgstr "Един автор или име не е намерен." -#: ../../include/follow.php:84 +#: include/follow.php:138 msgid "No browser URL could be matched to this address." msgstr "Не браузър URL може да съвпадне с този адрес." -#: ../../include/follow.php:86 +#: include/follow.php:140 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл." -#: ../../include/follow.php:87 +#: include/follow.php:141 msgid "Use mailto: in front of address to force email check." msgstr "Използвайте mailto: пред адрес, за да принуди проверка на имейл." -#: ../../include/follow.php:93 +#: include/follow.php:147 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Профилът адрес принадлежи към мрежа, която е била забранена в този сайт." -#: ../../include/follow.php:103 +#: include/follow.php:157 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас." -#: ../../include/follow.php:205 +#: include/follow.php:258 msgid "Unable to retrieve contact information." msgstr "Не мога да получа информация за контакт." -#: ../../include/follow.php:258 +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Замолената профила не е достъпна." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Редактиране на потребителския профил" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Управление / редактиране на профили" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Промяна на снимката на профил" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Създай нов профил" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Профил на изображението" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "видими за всички" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Редактиране на видимост" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Пол:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Състояние:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Начална страница:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "това ?" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "грама Л Е г" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "F г" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "Днес" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Напомняния за рождени дни" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Рождени дни този Седмица:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Няма описание]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Напомняния" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Събития тази седмица:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Собствено и фамилно име" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "J F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "J F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Възраст:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "за %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Сексуални предпочитания:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Hometown:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Маркери:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Политически възгледи:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Вероизповедание:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Хобита / Интереси:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Харесвания:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Нехаресвания:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Информация за контакти и социални мрежи:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Музикални интереси:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Книги, литература:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Телевизия:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Филм / танц / Култура / развлечения:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Любов / Romance:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Работа / заетост:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Училище / образование:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Напреднал" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Съобщения за състоянието и пощи" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Детайли от профила" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Фотоалбуми" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Личните бележки" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Можете да видите това" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Име, удържани]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Елемент не е намерен." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Yes" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Разрешението е отказано." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Архиви" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Вградени съдържание" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Вграждане на инвалиди" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 msgid "following" msgstr "следните условия:" -#: ../../include/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 "Изтрита група с това име се възражда. Съществуващ елемент от разрешения май се прилагат към тази група и всички бъдещи членове. Ако това не е това, което сте възнамерявали, моля да се създаде друга група с различно име." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Неприкосновеността на личния живот на група по подразбиране за нови контакти" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Всички" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "редактиране" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Редактиране на групата" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Създайте нова група" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Контакти, не във всяка група" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Разни" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -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 -msgid "never" -msgstr "никога" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "по-малко, отколкото преди секунда" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "година" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "месеца" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "седмица" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "седмица" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "дни." - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "Час:" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "часа" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "Минута" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "протокол" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "секунди. " - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "секунди. " - -#: ../../include/datetime.php:305 +#: include/ostatus.php:1829 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s преди" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" +msgid "%s stopped following %s." msgstr "" -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Честит рожден ден, %s!" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Видими за всички" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "Покажи:" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "не показват" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[Без тема]" - -#: ../../include/Contact.php:115 +#: include/ostatus.php:1830 msgid "stopped following" msgstr "спря след" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Показване на състоянието" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Преглед на профил" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Вижте снимки" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Мрежови Мнения" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Редактиране на контакт" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Изпратете PM" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Добре дошли " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Моля, да качите снимка профил." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Здравейте отново! " - -#: ../../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 "Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "събитието." - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "длъжност / позиция" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s маркираната %2$s - %3$s като предпочитано" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "Премахване" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Изтриване на избраните елементи" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s харесва това." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не харесва това." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "и" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", И %d други хора" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s като този." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s не ви харесва това." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Видим всички " - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Моля въведете видео връзка / URL:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Моля въведете аудио връзка / 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 "Къде сте в момента?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Коментар на e-mail" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "права" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "видите в пълен размер" - -#: ../../include/text.php:297 +#: include/text.php:304 msgid "newer" msgstr "" -#: ../../include/text.php:299 +#: include/text.php:306 msgid "older" msgstr "" -#: ../../include/text.php:304 +#: include/text.php:311 msgid "prev" msgstr "Пред." -#: ../../include/text.php:306 +#: include/text.php:313 msgid "first" msgstr "Първа" -#: ../../include/text.php:338 +#: include/text.php:345 msgid "last" msgstr "Дата на последния одит. " -#: ../../include/text.php:341 +#: include/text.php:348 msgid "next" msgstr "следващ" -#: ../../include/text.php:855 +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 msgid "No contacts" msgstr "Няма контакти" -#: ../../include/text.php:864 +#: include/text.php:912 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:1005 +#: include/text.php:925 +msgid "View Contacts" +msgstr "Вижте Контакти" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Запази" + +#: include/text.php:1076 msgid "poke" msgstr "" -#: ../../include/text.php:1006 +#: include/text.php:1076 +msgid "poked" +msgstr "" + +#: include/text.php:1077 msgid "ping" msgstr "" -#: ../../include/text.php:1006 +#: include/text.php:1077 msgid "pinged" msgstr "" -#: ../../include/text.php:1007 +#: include/text.php:1078 msgid "prod" msgstr "" -#: ../../include/text.php:1007 +#: include/text.php:1078 msgid "prodded" msgstr "" -#: ../../include/text.php:1008 +#: include/text.php:1079 msgid "slap" msgstr "" -#: ../../include/text.php:1008 +#: include/text.php:1079 msgid "slapped" msgstr "" -#: ../../include/text.php:1009 +#: include/text.php:1080 msgid "finger" msgstr "" -#: ../../include/text.php:1009 +#: include/text.php:1080 msgid "fingered" msgstr "" -#: ../../include/text.php:1010 +#: include/text.php:1081 msgid "rebuff" msgstr "" -#: ../../include/text.php:1010 +#: include/text.php:1081 msgid "rebuffed" msgstr "" -#: ../../include/text.php:1024 +#: include/text.php:1095 msgid "happy" msgstr "" -#: ../../include/text.php:1025 +#: include/text.php:1096 msgid "sad" msgstr "" -#: ../../include/text.php:1026 +#: include/text.php:1097 msgid "mellow" msgstr "" -#: ../../include/text.php:1027 +#: include/text.php:1098 msgid "tired" msgstr "" -#: ../../include/text.php:1028 +#: include/text.php:1099 msgid "perky" msgstr "" -#: ../../include/text.php:1029 +#: include/text.php:1100 msgid "angry" msgstr "" -#: ../../include/text.php:1030 +#: include/text.php:1101 msgid "stupified" msgstr "" -#: ../../include/text.php:1031 +#: include/text.php:1102 msgid "puzzled" msgstr "" -#: ../../include/text.php:1032 +#: include/text.php:1103 msgid "interested" msgstr "" -#: ../../include/text.php:1033 +#: include/text.php:1104 msgid "bitter" msgstr "" -#: ../../include/text.php:1034 +#: include/text.php:1105 msgid "cheerful" msgstr "" -#: ../../include/text.php:1035 +#: include/text.php:1106 msgid "alive" msgstr "" -#: ../../include/text.php:1036 +#: include/text.php:1107 msgid "annoyed" msgstr "" -#: ../../include/text.php:1037 +#: include/text.php:1108 msgid "anxious" msgstr "" -#: ../../include/text.php:1038 +#: include/text.php:1109 msgid "cranky" msgstr "" -#: ../../include/text.php:1039 +#: include/text.php:1110 msgid "disturbed" msgstr "" -#: ../../include/text.php:1040 +#: include/text.php:1111 msgid "frustrated" msgstr "" -#: ../../include/text.php:1041 +#: include/text.php:1112 msgid "motivated" msgstr "" -#: ../../include/text.php:1042 +#: include/text.php:1113 msgid "relaxed" msgstr "" -#: ../../include/text.php:1043 +#: include/text.php:1114 msgid "surprised" msgstr "" -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Понеделник" +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Преглед на видеоклип" -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Вторник" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Сряда" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Четвъртък" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Петък" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Събота" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Неделя" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "януари" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "февруари" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "март" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "април" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Май" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "юни" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "юли" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "август" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "септември" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "октомври" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "ноември" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "декември" - -#: ../../include/text.php:1437 +#: include/text.php:1356 msgid "bytes" msgstr "байта" -#: ../../include/text.php:1461 ../../include/text.php:1473 +#: include/text.php:1388 include/text.php:1400 msgid "Click to open/close" msgstr "Кликнете за отваряне / затваряне" -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "預設值" +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Избор на заместник език" +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" -#: ../../include/text.php:1970 +#: include/text.php:1806 msgid "activity" msgstr "дейност" -#: ../../include/text.php:1973 +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:1809 msgid "post" msgstr "след" -#: ../../include/text.php:2141 +#: include/text.php:1977 msgid "Item filed" msgstr "Т. подава" -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Изображение / снимка" +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Паролите не съвпадат. Парола непроменен." -#: ../../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 пише:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Шифрирано съдържание" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(Без тема)" - -#: ../../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 "Не може да намери DNS информация за сървъра на базата данни \" %s \"" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Неизвестен | Без категория" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Блок веднага" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, спамър, самостоятелно маркетолог" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Известно е, че мен, но липса на становище" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "ОК, вероятно безвреден" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Репутация, има ми доверие" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Седмично" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Месечено" - -#: ../../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 "" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr " на Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Започва:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Играчи:" - -#: ../../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 "Дата на раждане:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Възраст:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "за %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Маркери:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Вероизповедание:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Хобита / Интереси:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Информация за контакти и социални мрежи:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Музикални интереси:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Книги, литература:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Телевизия:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Филм / танц / Култура / развлечения:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Любов / Romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Работа / заетост:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Училище / образование:" - -#: ../../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 "Край на тази сесия" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Вашите мнения и разговори" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Вашият профил страница" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Вашите снимки" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Събитията си" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Личните бележки" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Вход" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Начална страница" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Създаване на сметка" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Помощ и документация" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Адон приложения, помощни програми, игри" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Търсене в сайта съдържание" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Разговори на този сайт" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "директория" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Хората директория" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Разговори от вашите приятели" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Молби за приятелство" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Вижте всички нотификации" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Марк виждали уведомления всички системни" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Частна поща" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Вх. поща" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Изходящи" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Управление" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Управление на други страници" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Настройки на профила" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Управление / редактиране на приятели и контакти" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Настройка и конфигуриране на сайта" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Навигация" - -#: ../../include/nav.php:188 -msgid "Site map" -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 "" - -#: ../../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 "" - -#: ../../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 +#: include/user.php:48 msgid "An invitation is required." msgstr "Се изисква покана." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "Покана не може да бъде проверена." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "Невалиден URL OpenID" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "Моля, въведете необходимата информация." -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "Моля, използвайте по-кратко име." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "Името е твърде кратко." -#: ../../include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "Това не изглежда да е пълен (първи Последно) име." -#: ../../include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "Вашият имейл домейн не е сред тези, разрешени на този сайт." -#: ../../include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "Не е валиден имейл адрес." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "Не може да се използва този имейл." -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Вашият \"прякор\" може да съдържа \"Аз\", \"0-9\", \"-\"и\"_\", и също така трябва да започва с буква." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "Псевдоним вече е регистрирано. Моля, изберете друга." -#: ../../include/user.php:148 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Псевдоним някога е бил регистриран тук и не могат да се използват повторно. Моля, изберете друга." -#: ../../include/user.php:164 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "Сериозна грешка: генериране на ключове за защита не успя." -#: ../../include/user.php:222 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "Възникна грешка по време на регистрацията. Моля, опитайте отново." -#: ../../include/user.php:257 +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "預設值" + +#: include/user.php:266 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 "Приятели" +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Снимка на профила" -#: ../../include/user.php:377 +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 #, php-format msgid "" "\n" @@ -7081,7 +3051,7 @@ msgid "" "\t" msgstr "" -#: ../../include/user.php:381 +#: include/user.php:438 #, php-format msgid "" "\n" @@ -7111,762 +3081,5821 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Споделяне на уведомление от диаспората мрежа" +#: include/user.php:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Регистрационни данни за %s" -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Приложения" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Мнение успешно." -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Отказан достъп." + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Добре дошли %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Не повече системни известия." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Системни известия" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Премахване мандат" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Публичен достъп отказан." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." msgstr "" -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Архиви" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Мъжки" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Женски" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "В момента Мъж" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "В момента Жени" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Предимно Мъж" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Предимно от жени," - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Транссексуалните" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Транссексуален" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Хермафродит" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Среден род" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Неспецифичен" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Друг" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Нерешителен" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Мъжките" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Женските" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Хомосексуалист" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Лесбийка" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Без предпочитание" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Бисексуални" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Трезвен" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Девица" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Девиантно" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Фетиш" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Голямо количество" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Неженен" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Самотен" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "На разположение" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Невъзможно." - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Има смаже" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Заслепен" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Запознанства" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Неверен" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Секс наркоман" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Приятели / ползи" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Случаен" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Обвързан" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Оженена" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Въображаемо женен" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Партньори" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Съжителстващи" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Обичайно право" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Щастлив" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Не търси" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Сексуално развратен човек" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Предаден" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Разделени" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Нестабилен" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Разведен" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Въображаемо се развеждат" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Овдовял" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Несигурен" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Сложно е" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Не ме е грижа" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Попитай ме" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Уведомление" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Благодаря Ви." - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%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: Извести] Нова поща, получена в %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s в %2$s ви изпрати ново лично съобщение ." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "Ви изпрати %2$s %1$s %2$s ." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "лично съобщение" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s коментира [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 коментира [URL = %2$s ] %3$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 коментира [URL = %2$s %3$s [/ URL]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica: Изпращайте] коментар към разговор # %1$d от %2$s" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s коментира артикул / разговор, който са били." - -#: ../../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 "Моля, посетете %s да видите и / или да отговорите на разговор." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica: Извести] %s публикуван вашия профил стена" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s публикуван вашия профил стена при %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" +#: mod/search.php:124 +msgid "Too Many Requests" msgstr "" -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica: Извести] %s сложи етикет с вас" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s те маркира при %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [URL = %2$s ] сложи етикет [/ URL]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: ../../include/enotify.php:189 +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Няма резултати." + +#: mod/search.php:230 #, php-format -msgid "%1$s shared a new post at %2$s" +msgid "Items tagged with: %s" msgstr "" -#: ../../include/enotify.php:190 +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 #, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." +msgid "Results for: %s" msgstr "" -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Това е Friendica, версия" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "работи в уеб сайта," + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Моля, посетете Friendica.com , за да научите повече за проекта на Friendica." + +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Доклади за грешки и проблеми: моля посетете" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" msgstr "" -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Предложения, похвали, дарения и т.н. - моля пишете \"Инфо\" в Friendica - Dot Com" -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "Инсталираните приставки / Addons / Apps:" -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica: Извести] %s сложи етикет с вашия пост" +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Няма инсталирани плъгини / Addons / приложения" -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s маркира твоя пост в %2$s" +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Не е валиден акаунт." -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s маркира [URL = %2$s ] Публикацията ви [/ URL]" +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr ", Издадено искане за възстановяване на паролата. Проверете Вашата електронна поща." -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica: Извести] Въведение получи" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Получили сте въведения от %1$s в %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Получили сте [URL = %1$s ] въведение [/ URL] от %2$s ." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Можете да посетите техния профил в %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Моля, посетете %s да одобри или да отхвърли въвеждането." - -#: ../../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: Извести] приятел предложение получи" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Получили сте приятел предложение от %1$s в %2$s" - -#: ../../include/enotify.php:272 +#: mod/lostpass.php:42 #, php-format msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s ." - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Наименование:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Снимка:" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Моля, посетете %s да одобри или отхвърли предложението." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" +"\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 "" -#: ../../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 +#: mod/lostpass.php:53 #, 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." +"\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 "" -#: ../../include/enotify.php:309 +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Исканото за нулиране на паролата на %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Искането не може да бъде проверена. (Може да се преди това са го внесе.) За нулиране на паролата не успя." + +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Смяна на паролата" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Вашата парола е променена, както беше поискано." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Вашата нова парола е" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Запазване или копиране на новата си парола и след това" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "Кликнете тук за Вход" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Вашата парола може да бъде променена от Настройки , След успешен вход." + +#: mod/lostpass.php:125 #, php-format msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " +"\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 "" -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 +#: mod/lostpass.php:131 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +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 "" -#: ../../include/enotify.php:324 +#: mod/lostpass.php:147 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgid "Your password has been changed at %s" msgstr "" -#: ../../include/enotify.php:327 +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Забравена парола?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Въведете вашия имейл адрес и представя си за нулиране на паролата. След това проверявате електронната си поща за по-нататъшни инструкции." + +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Псевдоним или имейл адрес: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Нулиране" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Няма профил" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Помощ" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Не е намерено" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Страницата не е намерена." + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Дистанционно неприкосновеността на личния живот информация не е достъпен." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Вижда се от:" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID протокол грешка. Не ID върна." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Кутия не е намерена и, OpenID регистрация не е разрешено на този сайт." + +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре." + +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Внасяне" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgid "Visit %s's profile [%s]" +msgstr "Посетете %s Профилът на [ %s ]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Редактиране на контакт" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Контакти, които не са членове на една група" + +#: mod/uexport.php:29 +msgid "Export account" msgstr "" -#: ../../include/enotify.php:330 +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "Изнасяне на всичко" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Експортиране на личните данни" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:49 #, php-format -msgid "Please visit %s to approve or reject the request." +msgid "%s : Not a valid email address." +msgstr "%s не е валиден имейл адрес." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Моля, присъединете се към нас на Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Вградени съдържание" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Вграждане на инвалиди" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: mod/invite.php:89 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "" +msgid "%s : Message delivery failed." +msgstr "%s : Съобщение доставка не успя." -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Грешка при създаване на потребителя" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Грешка при създаване профила на потребителя" - -#: ../../include/uimport.php:220 +#: mod/invite.php:93 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" +msgid "%d message sent." +msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Имате няма повече покани" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica." + +#: 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 сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Изпращане на покани" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Въведете имейл адреси, по един на ред:" + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Ваше съобщение" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Вие ще трябва да предоставят този код за покана: $ invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "За повече информация за проекта Friendica и защо ние смятаме, че е важно, моля посетете http://friendica.com" + +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Изпращане" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Файлове" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Разрешението е отказано" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Невалиден идентификатор на профила." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Редактор профил Видимост" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Щракнете върху контакт, за да добавите или премахнете." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Вижда се от" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Всички контакти с охраняем достъп до профил)" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Отстранява маркировката" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Извадете Tag т." + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Изберете етикет, за да премахнете: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Премахване" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" msgstr "" -#: ../../index.php:428 -msgid "toggle mobile" +#: mod/repair_ostatus.php:30 +msgid "Error" msgstr "" -#: ../../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 +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Няма потенциални делегати на страницата намира." + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Съществуващите Мениджъри" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Съществуващите Делегатите Страница" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Потенциални Делегатите" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Добави" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "няма регистрирани" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "избор" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Които не са на разположение." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Елемент не е намерен." + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Приложения" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Няма инсталираните приложения." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Добре дошли да Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Нова държава Чеклист" + +#: 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 "Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: 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 "На настройки - да промени първоначалната си парола. Също така направи бележка на вашата самоличност адрес. Това изглежда точно като имейл адрес - и ще бъде полезно при вземането на приятели за свободното социална мрежа." + +#: 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 "Прегледайте други настройки, по-специално на настройките за поверителност. Непубликуван списък директория е нещо като скрит телефонен номер. Като цяло, може би трябва да публикува вашата обява - освен ако не всички от вашите приятели и потенциални приятели, знаят точно как да те намеря." + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Качване на снимка Профилът" + +#: 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 "Качване на снимката на профила, ако не сте го направили вече. Проучванията показват, че хората с истински снимки на себе си, са десет пъти по-вероятно да станат приятели, отколкото хората, които не." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Редактиране на профила" + +#: 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 "Редактиране на подразбиране профил да ви хареса. Преглед на настройките за скриване на вашия списък с приятели и скриване на профила от неизвестни посетители." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Ключови думи на профила" + +#: 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 "Задайте някои обществени ключови думи за вашия профил по подразбиране, които описват вашите интереси. Ние може да сме в състояние да намери други хора с подобни интереси и предлага приятелства." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Свързване" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Внасяне на е-пощи" + +#: mod/newmember.php:51 +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 "Въведете своя имейл достъп до информация на страницата Настройки на Connector, ако желаете да внасят и да взаимодейства с приятели или списъци с адреси от електронната си поща Входящи" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:53 +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 "Контакти страница е вашата врата към управлението на приятелства и свързване с приятели в други мрежи. Обикновено можете да въведете адрес или адрес на сайта в Добавяне на нов контакт диалоговия." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:55 +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 "Страницата на справочника ви позволява да намерите други хора в тази мрежа или други сайтове Федерални. Потърсете Свържете или Следвайте в профила си страница. Предоставяне на вашия собствен адрес за самоличност, ако това бъде поискано." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Откриване на нови хора" + +#: mod/newmember.php:57 +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 "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:65 +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 "След като сте направили някои приятели, да ги организирате в групи от частния разговор от страничната лента на страницата с контакти и след това можете да взаимодействате с всяка група частно във вашата мрежа." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "Защо публикациите ми не са публични?" + +#: mod/newmember.php:68 +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 "" + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Извадете Моят профил" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Моля, въведете паролата си за проверка:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Елемент не е намерена" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Редактиране на мнение" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Време за преобразуване" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC време: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Текуща часова зона: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Превърнат localtime: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Моля изберете вашия часовата зона:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Група, създадена." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Не може да се създаде група." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Групата не е намерен." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Име на група се промени." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Създаване на група от контакти / приятели." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Група отстранени." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Не може да премахнете група." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Група Editor" + +#: mod/group.php:190 +msgid "Members" +msgstr "Членове" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Всички Контакти" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Групата е празна" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя." + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Не е избран получател." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Не може да проверите вашето местоположение." + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Писмото не може да бъде изпратена." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Съобщение за събиране на неуспех." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Изпратено съобщение." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Не получателя." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Изпрати Лично Съобщение" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели." + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "До:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Относно:" + +#: mod/share.php:38 +msgid "link" +msgstr "" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Разрешава връзка с прилагането" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Назад към приложението ти и поставите този Securty код:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Моля, влезте, за да продължите." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Не" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "" + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "" + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "" + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "" + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "" + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "" + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Не може да се намери информация за контакт." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Съобщение заличават." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Разговор отстранени." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Няма съобщения." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Съобщението не е посочена." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Изтриване на съобщение" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Изтриване на разговор" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Няма сигурни комуникации. Можете май да бъде в състояние да отговори от страницата на профила на подателя." + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Изпратете Отговор" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Непознат подател %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Вие и %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, D MY - Г: А" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Управление на идентичността и / или страници" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Изберете идентичност, за да управлява: " + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Контактни настройки прилага." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Свържете се актуализира провали." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Контактът не е намерен." + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr " ВНИМАНИЕ: Това е силно напреднали и ако въведете невярна информация вашите комуникации с този контакт може да спре да работи." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Моля, използвайте Назад на вашия браузър бутон сега, ако не сте сигурни какво да правят на тази страница." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Назад, за да се свържете с редактор" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Име" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Сметка Псевдоним" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "Име / псевдоним на @ Tagname - Заменя" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "Сметка URL" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL приятел заявка" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "Приятел Потвърди URL" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "URL адрес на Уведомление Endpoint" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Анкета / URL Feed" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Нова снимка от този адрес" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Няма такава група" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Записът е редактиран" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Лично съобщение" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Харесва ми това (смяна)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "харесвам" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Не ми харесва това (смяна)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "не харесвам" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Споделете това" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "споделяне" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Това сте вие" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Коментар" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Получер" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Курсив" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Подчертан" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Цитат" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Код" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Изображение" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Връзка" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Видеоклип" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Редактиране" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "Добавяне на звезда" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "Премахване на звездата" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "превключване звезда статус" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "звезда" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "добавяне на етикет" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "запишете в папка" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "за" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "От стена до стена" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "чрез стена до стена:" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Предложението за приятелство е изпратено." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Предлагане на приятели" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Предлагане на приятел за %s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Настроение" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Получател" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Качени изображения, но изображението изрязване не успя." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Намаляване на размер [ %s ] не успя." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Не може да се обработи" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Не може да се обработи." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "прикрепи файл" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Избор на профил:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Качете в Мрежата " + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "или" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "пропуснете тази стъпка" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "изберете снимка от вашите фото албуми" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Изрязване на изображението" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Моля, настроите образа на изрязване за оптимално гледане." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Съставено редактиране" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Качени изображения успешно." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Image Upload неуспешно." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Сметка одобрен." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Регистрация отменено за %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Моля, влезте." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Невалидна заявка идентификатор." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Отхвърляне" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Пренебрегване" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Мрежа Известия" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Лични Известия" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Начало Известия" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Показване на пренебрегнатите заявки" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Скриване на пренебрегнатите заявки" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Вид на уведомлението: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "предложено от %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Скриване на този контакт от другите" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Публикувай нова дейност приятел" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "ако е приложимо" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Одобряване" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Искания, да се знае за вас: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "да" + +#: mod/notifications.php:196 +msgid "no" +msgstr "не" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Приятел" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Споделящ" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Почитател" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Няма въвеждане." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Профил не е намерен." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Изтрит профил." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Височина на профила" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Нов профил е създаден." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Профил недостъпна да се клонират." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Име на профил се изисква." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Семейно положение" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Романтичен партньор" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Работа / заетост" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Вероизповедание:" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Политически възгледи" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Пол" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Сексуални предпочитания" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Начална страница" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Интереси" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Адрес" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Местоположение " + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Профил актуализиран." + +#: mod/profiles.php:564 +msgid " and " +msgstr " и " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "публичен профил" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s променя %2$s %3$s 3 $ S " + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Посещение %1$s на %2$s" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s има актуализиран %2$s , промяна %3$s ." + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Скриване на вашия контакт / списък приятел от зрителите на този профил?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Редактиране на детайли от профила" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Промяна снимката на профила" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Виж този профил" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Създаване на нов профил, използвайки тези настройки" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Клонираме тази профила" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Изтриване на този профил" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Пол:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Семейно положение:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Пример: софтуер за риболов фотография" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Име на профила" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Задължително" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "Това е вашата публично профил.
                                              Май да бъде видим за всеки, който с помощта на интернет." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Пълното си име:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Наименование/Описание" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Адрес:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Махала / Град:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Регион / Щат:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Postal / Zip Code:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Държава:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Кой: (ако е приложимо)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Примери: cathy123, Кати Уилямс, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "От [дата]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Разкажете ни за себе си ..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Електронна страница:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Религиозни възгледи:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Публичните Ключови думи:" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Използва се за предполагайки потенциален приятели, може да се види от други)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Частни Ключови думи:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Използва се за търсене на профилите, никога не показва и на други)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Музикални интереси" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Книги, литература" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Телевизия" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Филм / танц / Култура / забавления" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Хобита / интереси" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Любов / романтика" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Работа / заетост" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Училище / образование" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Информация за контакти и социални мрежи" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Редактиране / Управление на профили" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Нямате приятели в листата." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Достъпът до този профил е ограничен." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Предишна" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Следваща" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Няма контакти по-чести." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Общи приятели" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Няма налични" + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Глобален справочник" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Търсене в този сайт" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Site Directory" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Няма записи (някои вписвания, могат да бъдат скрити)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Няма съответствия" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr ", Т. е била отстранена." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Създаване на нов събитие" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Подробности за събитието" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Събитие Започва:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Завършете дата / час не е известен или не е приложимо" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Събитие играчи:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Настрои зрителя часовата зона" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Описание:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Заглавие:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Споделете това събитие" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Няма ключови думи, които да съвпадат. Моля, да добавяте ключови думи към вашия профил по подразбиране." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "се интересува от:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Профил мач" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Съвети за нови членове" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Наистина ли искате да изтриете това предложение?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Игнорирай / Скрий" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Вградени съдържание - презареждане на страницата, за да видите]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Последни снимки" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Качване на нови снимки" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "всички" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Свържете се с информация недостъпна" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Албумът не е намерен." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Изтриване на албума" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Изтриване на снимка" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Image файл е празен." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Няма избрани снимки" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Достъп до тази точка е ограничена." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Качване на снимки" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Нов албум име: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "или съществуващо име на албума: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Да не се показва след статут за това качване" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Показване на групи" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Показване на контакти" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Частна снимка" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Публична снимка" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Редактиране на албум" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Преглед на снимка" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Снимката не е" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Преглед на снимка" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Редактиране на снимка" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Използва се като снимката на профила" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Изглед в пълен размер" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Маркери: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "Премахване на всякаква маркировка]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Ново име на албум" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Надпис" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Добавите етикет" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Rotate CW (вдясно)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Завъртане ККО (вляво)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Частна снимка" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Публична снимка" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Вижте албуми" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции." + +#: mod/register.php:98 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
                                              login: %s
                                              " +"password: %s

                                              You can change your password after login." +msgstr "" + +#: mod/register.php:105 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Вашата регистрация не могат да бъдат обработени." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Вашата регистрация е в очакване на одобрение от собственика на сайта." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Може да се (по желание) да попълните този формуляр, чрез OpenID чрез предоставяне на OpenID си и кликнете върху \"Регистрация\"." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "Вашият OpenID (не е задължително): " + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Включете вашия профил в член директория?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Членството на този сайт е само с покани." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Вашата покана ID: " + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Регистрация" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Вашият email адрес: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "нова парола" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Потвърждаване..." + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Изберете прякор профил. Това трябва да започне с текст характер. Вашият профил адреса на този сайт ще бъде \" прякор @ $ на SITENAME \"." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Изберете прякор: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "профил" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Допълнителни възможности" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Приставки" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Свързани приложения" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Премахване сметка" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Липсват някои важни данни!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Актуализиране" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Имейл настройки актуализира." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Празните пароли не са разрешени. Парола непроменен." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Неправилна парола" + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Парола промени." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Парола актуализация се провали. Моля, опитайте отново." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Моля, използвайте по-кратко име." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Името е твърде кратко." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Неправилна парола" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Не валиден имейл." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr " Не може да е този имейл." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Частен форум няма разрешения за неприкосновеността на личния живот. Използване подразбиране поверителност група." + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Частен форум няма разрешения за неприкосновеността на личния живот и никоя група по подразбиране неприкосновеността на личния живот." + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Обновяването на настройките." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Добави приложение" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Ключ на консуматора:" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Тайна стойност на консуматора:" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Пренасочвания:" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "Икона URL" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Вие не можете да редактирате тази кандидатура." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Свързани Apps" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Ключ на клиента започва с" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Без име" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Премахване на разрешение" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Няма плъгин настройки, конфигурирани" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Plug-in Настройки" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Изкл." + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Вкл." + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Допълнителни възможности" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Вградена поддръжка за връзка от %s %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "разрешен" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "забранен" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "Достъп до електронна поща е забранен на този сайт." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Email / Mailbox Setup" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Последна успешна проверка на електронната поща:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Име на IMAP сървъра:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "IMAP порта:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Сигурност" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Няма " + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Email потребителско име:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Email парола:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Адрес за отговор:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Изпратете публични длъжности за всички имейл контакти:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Действия след вноса:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Премества избраното в папка" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Премества избраното в папка" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Настройки на дисплея" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Палитрата на дисплея:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Актуализиране на браузъра на всеки ХХ секунди" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Максимум от 100 точки" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "Да не се показват емотикони" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Тема Настройки" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Задайте ниво за преоразмеряване на изображения в публикации и коментари (ширина и височина)" +#: mod/settings.php:1099 +msgid "Account Types" +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 "Задайте размер на шрифта за мнения и коментари" +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Задайте ширина тема" +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Цветова схема" +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Задайте линия-височина за мнения и коментари" +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Задайте цветова схема" +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" -#: ../../view/theme/quattro/config.php:67 +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Нормално страницата с профила" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Тази сметка е нормален личен профил" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Импровизирана трибуна Page" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Автоматично одобрява всички / приятел искания само за четене фенове" + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Автоматично приятел Page" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Автоматично одобрява всички / молби за приятелство, като приятели" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Частен форум [експериментална]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Само частен форум - Одобрени членове" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Публикуване на вашия профил по подразбиране във вашата локална директория на сайта?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Публикуване на вашия профил по подразбиране в глобалната социална директория?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Скриване на вашия контакт / списък приятел от зрителите на вашия профил по подразбиране?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Оставете приятели, които да публикувате в страницата с вашия профил?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Оставете приятели, за да маркирам собствените си мнения?" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Позволете ни да Ви предложи като потенциален приятел за нови членове?" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Разрешение непознати хора, за да ви Изпратете лично поща?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Профил не се публикува ." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Автоматично изтича мнения след толкова много дни:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Разширени настройки за изтичане на срока" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Разширено Изтичане" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Срок на мнения:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Срок на лични бележки:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Срок със звезда на мнения:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Срок на снимки:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Само изтича мнения от други:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Настройки на профила" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Парола Настройки" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Оставете паролите полета празни, освен ако промяна" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Текуща парола:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Парола" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Основни настройки" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Електронна поща:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Вашият Часовата зона:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Мнение местоположението по подразбиране:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Използвайте Browser Местоположение:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Сигурност и и лични настройки" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Максимален брой молби за приятелство / ден:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(Да се ​​предотврати спама злоупотреба)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Разрешения по подразбиране и" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(Щракнете за отваряне / затваряне)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Максимални лични съобщения на ден от непознати хора:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Настройки за уведомяване" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "По подразбиране се публикуват съобщение за състояние, когато:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "приемане на искането за приятел" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "присъединяване форум / общността" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "един интересен Смяна на профил" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Изпращане на известие по имейл, когато:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Вие получавате въведение" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Вашите въвеждания са потвърдени" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Някой пише в профила ви стена" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Някой пише последващ коментар" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Ще получите лично съобщение" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Ще получите предложение приятел" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Са маркирани в един пост" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Разширено сметка / Настройки на вид страница" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Промяна на поведението на тази сметка за специални ситуации" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Няма избрани видеоклипове" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Скорошни видеоклипове" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Качване на нови видеоклипове" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Файл за качване не успя." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Тема Настройки актуализира." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Сайт" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Потребители" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Теми" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Обновления на БД" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Дневници" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Настройки на приставките" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Потребителски регистрации, чакащи за потвърждение" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Администриране " + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See
                                              here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Нормално профил" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Импровизирана трибуна профил" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Общността / Celebrity" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Автоматично приятел акаунт" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Частен форум" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Съобщение опашки" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Резюме" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Регистрираните потребители" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Предстоящи регистрации" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Версия " + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Включени приставки" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Настройките на сайта са обновени." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Никога!" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:907 +msgid "One year" +msgstr "" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Затворен" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Изисква одобрение" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Отворена." + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "Не SSL политика, връзки ще следи страница SSL състояние" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Принуди всички връзки да се използва SSL" + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Самоподписан сертификат, използвайте SSL за местни връзки единствено (обезкуражени)" + +#: mod/admin.php:957 +msgid "File upload" +msgstr "Прикачване на файлове" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Политики" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Производителност" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Име на сайта" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Банер / лого" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Системен език" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Системна тема" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Тема по подразбиране система - може да бъде по-яздени потребителски профили - променяте настройки тема " + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "SSL връзка политика" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Определя дали генерирани връзки трябва да бъдат принудени да се използва SSL" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Максимален размер на изображението" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Максимален размер в байтове на качените изображения. По подразбиране е 0, което означава, няма граници." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Регистрирайте политика" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:986 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Регистрирайте се текст" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Ще бъдат показани на видно място на страницата за регистрация." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Сметките изоставени след дни х" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Позволи на домейни приятел" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Позволи на домейни имейл" + +#: mod/admin.php:990 +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 "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Блокиране на обществения" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата." + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Принудително публикува" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта." + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:996 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Блокиране на множество регистрации" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Забраните на потребителите да се регистрират допълнителни сметки, за използване като страниците." + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Поддръжка на OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "Поддръжка на OpenID за регистрация и влизане." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Fullname проверка" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Силите на потребителите да се регистрират в пространството между Име и фамилия в пълно име, като мярка за антиспам" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 регулярни изрази" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Използвате PHP UTF8 регулярни изрази" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Активирайте OStatus подкрепа" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Активирайте диаспора подкрепа" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Осигури вградена диаспора в мрежата съвместимост." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Позволяват само Friendica контакти" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Всички контакти трябва да използвате Friendica протоколи. Всички останали вградени комуникационни протоколи с увреждания." + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Провери SSL" + +#: mod/admin.php:1014 +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 "Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти." + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Proxy потребител" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Мрежа изчакване" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)." + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "Доставка интервал" + +#: mod/admin.php:1018 +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 "Забавяне процесите на доставка на заден план от това много секунди, за да се намали натоварването на системата. Препоръчай: 4-5 за споделени хостове, 2-3 за виртуални частни сървъри. 0-1 за големи наети сървъри." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Анкета интервал" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Забавяне избирателните фонови процеси от това много секунди, за да се намали натоварването на системата. Ако 0, използвайте интервал доставка." + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Максимално натоварване" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Максимално натоварване на системата преди раждането и анкета процеси са отложени - по подразбиране 50." + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Update е маркиран успешно" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Актуализация %s бе успешно приложена." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Актуализация %s не се връща статус. Известно дали тя успя." + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Няма провалени новини." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Неуспешно Updates" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Това не включва актуализации, преди 1139, които не връщат статута." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Марк успех (ако актуализация е ръчно прилага)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Опита да изпълни тази стъпка се обновяват автоматично" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Потребителят \" %s \"Изтрити" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Потребителят \" %s \"отблокирани" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Потребителят \" %s \"блокиран" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Дата на регистрация" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Последно влизане" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Последния елемент" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "Избор на всичко" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Потребителски регистрации, чакат за да потвърдите" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Искане дата" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Няма регистрации." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Отказ" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Блокиране" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Разблокиране" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Администратор на сайта" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?" + +#: mod/admin.php:1428 +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 "Потребител {0} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-in %s увреждания." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-in %s поддръжка." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "забрани" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Да се активира ли?" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "切換" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Автор: " + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Отговорник: " + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Няма намерени теми." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Screenshot" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "(Експериментален)" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "Неподдържан]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Вход Обновяването на настройките." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Безцветен " + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Регистрационен файл" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Вход ниво" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Не може да бъде достъп до запис за контакт." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Не може да намери избрания профил." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Свържете се актуализират." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Неуспех да се актуализира рекорд за контакт." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "За контакти е бил блокиран" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Контакт са отблокирани" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Лицето е било игнорирано" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "За контакти е бил unignored" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Контакт бяха архивирани" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "За контакти е бил разархивира" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Наистина ли искате да изтриете този контакт?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Контакт е била отстранена." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Вие сте общи приятели с %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Вие споделяте с %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s се споделя с вас" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Частни съобщения не са на разположение за този контакт." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Update е била успешна)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Актуализация не е била успешна)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Предложете приятели" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Тип мрежа: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Communications загубиха с този контакт!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Профил Видимост" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Моля, изберете профила, който бихте искали да покажете на %s при гледане на здраво вашия профил." + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Информация за контакти / Забележки" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Редактиране на контакт с бележка" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Блокиране / Деблокиране на контакт" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Игнорирай се свържете с" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Настройки за ремонт на URL" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Вижте разговори" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Последна актуализация:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Актуализиране на държавни длъжности" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Актуализирай сега" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Извади от пренебрегнатите" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Които понастоящем са блокирани" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "В момента игнорирани" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "В момента архивират" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Отговори / обича да си публични длъжности май все още да се вижда" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Предложения" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Предполагат потенциал приятели" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Покажи на всички контакти" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Отблокирани" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Покажи само Разблокирани контакти" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Блокиран" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Покажи само Блокираните контакти" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Игнорирани" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Покажи само игнорирани контакти" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Архивиран:" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Покажи само архивирани контакти" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Скрит" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Само показва скрити контакти" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Търсене на вашите контакти" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Архив" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Разархивирате" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Преглед на всички контакти" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Разширени настройки за контакт" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Взаимното приятелство" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "е фенка" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "Вие сте фен на" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Превключване Блокирани статус" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Превключване игнорирани статус" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Превключване статус Архив" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Изтриване на контакта" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Това понякога може да се случи, ако контакт е поискано от двете лица и вече е одобрен." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Отговор от отдалечен сайт не е бил разбран." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Неочакван отговор от отдалечения сайт: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Потвърждение приключи успешно." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Отдалеченият сайт докладвани: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Временен неуспех. Моля изчакайте и опитайте отново." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Въведение не успя или е анулиран." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Не може да зададете снимка на контакт." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Нито един потребител не запис за ' %s" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Основният ни сайт криптиране е очевидно побъркани." + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Празен сайт URL е предоставена или URL не може да бъде разшифрован от нас." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "Контакт с запис не е намерен за вас на нашия сайт." + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Site публичния ключ не е наличен в контакт рекорд за %s URL ." + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID, предоставена от вашата система, е дубликат на нашата система. Той трябва да работи, ако се опитате отново." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "Не може да се установи контакт с вас пълномощията на нашата система." + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "Не може да актуализирате вашите данни за контакт на профил в нашата система" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "Се присъедини към %2$s %1$s %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Това въведение е вече е приета." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Профил местоположение не е валиден или не съдържа информация на профила." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Внимание: профила място има няма установен име на собственика." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Внимание: профила местоположение не е снимката на профила." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Въведение завърши." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Невъзстановима протокол грешка." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Профил недостъпни." + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s е получил твърде много заявки за свързване днес." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Мерките за защита срещу спам да бъдат изтъкнати." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Приятели се препоръчва да се моля опитайте отново в рамките на 24 часа." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Невалиден локатор" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Невалиден имейл адрес." + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "Този профил не е конфигуриран за електронна поща. Заявката не бе успешна." + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Вие вече се въведе тук." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Явно вече сте приятели с %s ." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Невалиден URL адрес на профила." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Вашият въвеждането е било изпратено." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Моля, влезте, за да потвърди въвеждането." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Неправилно идентичност, който в момента е логнат. Моля, влезте с потребителско име и парола на този профил ." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Потвърждаване" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Скриване на този контакт" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Добре дошли у дома %s ." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Моля, потвърдете, въвеждане / заявката за свързване към %s ." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Моля, въведете \"Идентичност Адрес\" от един от следните поддържани съобщителни мрежи:" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:859 +msgid "Friend/Connection Request" +msgstr "Приятел / заявка за връзка" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Примери: jojo@demo.friendica.com~~HEAD=NNS, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Моля отговорете на следните:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "Има ли %s знаете?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Добавяне на лична бележка:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Федерални социална мрежа" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - Моля, не използвайте тази форма. Вместо това въведете %s в търсенето диаспора бар." + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Адрес на вашата самоличност:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Изпращане на заявката" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Свържете се добавя" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Не може да се свърже с базата данни." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Не може да се създаде таблица." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "Вашият Friendica сайт база данни е инсталиран." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Може да се наложи да импортирате файла \"database.sql\" ръчно чрез настървение или MySQL." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Моля, вижте файла \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Проверка на системата" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Проверете отново" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Свързване на база данни" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Име на сървър за база данни" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Името на базата данни Парола" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Database Влизам Парола" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Име на база данни" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Сайт администратор на имейл адрес" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Моля, изберете часовата зона по подразбиране за вашия уеб сайт" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Настройки на сайта" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Не може да се намери командния ред версия на PHP в PATH уеб сървър." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "PHP изпълним път" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "Команден ред PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "В командния ред версия на PHP на вашата система не трябва \"register_argc_argv\" дадоха възможност." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Това е необходимо за доставка на съобщение, за да работят." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Грешка: \"openssl_pkey_new\" функция на тази система не е в състояние да генерира криптиращи ключове" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ако работите под Windows, моля, вижте \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Генериране на криптиращи ключове" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "libCurl PHP модул" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "GD графика PHP модул" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP модул" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "mysqli PHP модул" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "mb_string PHP модул" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite модул" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Грешка: libCURL PHP модул, но не е инсталирана." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Грешка: OpenSSL PHP модул са необходими, но не е инсталирана." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Грешка: mysqli PHP модул, но не е инсталирана." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Грешка: mb_string PHP модул, но не е инсталирана." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Уеб инсталатора трябва да бъде в състояние да създаде файл с име \". Htconfig.php\" в най-горната папка на вашия уеб сървър и не е в състояние да го направят." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "В края на тази процедура, ние ще ви дадем един текст, за да се запишете в файл с име. Htconfig.php в топ Friendica папка." + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Можете като алтернатива да пропуснете тази процедура и да извърши ръчно инсталиране. Моля, вижте файла \"INSTALL.txt\", за инструкции." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ",. Htconfig.php е записваем" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL пренапише. Htaccess не работи. Проверете вашата конфигурация сървър." + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr ", Url пренаписванията работи" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Конфигурационния файл на базата данни \". Htconfig.php\" не може да бъде написано. Моля, използвайте приложения текст, за да се създаде конфигурационен файл в основната си уеб сървър." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Каква е следващата стъпка " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "ВАЖНО: Вие ще трябва да [ръчно] настройка на планирана задача за poller." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Не може да се намери оригиналната публикация." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Empty мнение изхвърли." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Грешка в системата. Мнение не е запазен." + +#: mod/item.php:992 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Можете да ги посетите онлайн на адрес %s" + +#: mod/item.php:995 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s е публикувал актуализация." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Лични съобщения до това лице, са изложени на риск от публичното оповестяване." + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Невалиден свържете." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Коментирани поръчка" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Сортиране по Коментар Дата" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Пуснато на поръчка" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Сортирай по пощата дата" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Мнения, които споменават или включват" + +#: mod/network.php:856 +msgid "New" +msgstr "Нов профил." + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Активност Stream - по дата" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Общо връзки" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Интересни Връзки" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Със звезда" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Любими Мнения" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} иска да бъде твой приятел" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} ви изпрати съобщение" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} исканата регистрация" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Няма контакти." + +#: object/Item.php:370 +msgid "via" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "Подравняване" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Left" msgstr "Ляво" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Center" msgstr "Център" -#: ../../view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Цветова схема" + +#: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "" -#: ../../view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:70 msgid "Textareas font size" msgstr "" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Настройте резолюция за средната колона" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Задайте цветова схема" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Да Настройте zoomfactor за слоя на Земята" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Set дължина (X) за слоеве на Земята" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Настройте ширината (Y) за слоеве на Земята" - -#: ../../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" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Земните пластове" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "Общността Профили" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Помощ или @ NewHere,?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Свържете Услуги" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Намери приятели" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 msgid "Last users" msgstr "Последни потребители" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Последни снимки" +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Намери приятели" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Последно харесва" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Вашите контакти" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Вашите лични снимки" - -#: ../../view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Локалната директория" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Да Настройте zoomfactor за земните пластове" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Покажи / скрий кутии в дясната колона:" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Свържете Услуги" -#: ../../view/theme/vier/config.php:56 +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "" -#: ../../view/theme/duepuntozero/config.php:45 +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Общността Pages" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Помощ или @ NewHere,?" + +#: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:46 msgid "purplezero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:47 msgid "easterbunny" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:48 msgid "darkzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:49 msgid "comix" msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:50 msgid "slackr" msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Изтриване на тази бележка?" + +#: boot.php:973 +msgid "show fewer" +msgstr "показват по-малко" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Актуализация %s не успя. Виж логовете за грешки." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Създаване на нов профил:" + +#: boot.php:1796 +msgid "Password: " +msgstr "Парола " + +#: boot.php:1797 +msgid "Remember me" +msgstr "" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Или да влезнете с OpenID: " + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Забравена парола?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Условия за ползване на сайта" + +#: boot.php:1810 +msgid "terms of service" +msgstr "условия за ползване" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Политика за поверителност на сайта" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "политика за поверителност" + +#: index.php:451 +msgid "toggle mobile" +msgstr "" diff --git a/view/lang/bg/strings.php b/view/lang/bg/strings.php index a9c2d556b..beafd2c69 100644 --- a/view/lang/bg/strings.php +++ b/view/lang/bg/strings.php @@ -5,1298 +5,10 @@ function string_plural_select_bg($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Не може да бъде достъп до запис за контакт."; -$a->strings["Could not locate selected profile."] = "Не може да намери избрания профил."; -$a->strings["Contact updated."] = "Свържете се актуализират."; -$a->strings["Failed to update contact record."] = "Неуспех да се актуализира рекорд за контакт."; -$a->strings["Permission denied."] = "Разрешението е отказано."; -$a->strings["Contact has been blocked"] = "За контакти е бил блокиран"; -$a->strings["Contact has been unblocked"] = "Контакт са отблокирани"; -$a->strings["Contact has been ignored"] = "Лицето е било игнорирано"; -$a->strings["Contact has been unignored"] = "За контакти е бил unignored"; -$a->strings["Contact has been archived"] = "Контакт бяха архивирани"; -$a->strings["Contact has been unarchived"] = "За контакти е бил разархивира"; -$a->strings["Do you really want to delete this contact?"] = "Наистина ли искате да изтриете този контакт?"; -$a->strings["Yes"] = "Yes"; -$a->strings["Cancel"] = "Отмени"; -$a->strings["Contact has been removed."] = "Контакт е била отстранена."; -$a->strings["You are mutual friends with %s"] = "Вие сте общи приятели с %s"; -$a->strings["You are sharing with %s"] = "Вие споделяте с %s"; -$a->strings["%s is sharing with you"] = "%s се споделя с вас"; -$a->strings["Private communications are not available for this contact."] = "Частни съобщения не са на разположение за този контакт."; -$a->strings["Never"] = "Никога!"; -$a->strings["(Update was successful)"] = "(Update е била успешна)"; -$a->strings["(Update was not successful)"] = "(Актуализация не е била успешна)"; -$a->strings["Suggest friends"] = "Предложете приятели"; -$a->strings["Network type: %s"] = "Тип мрежа: %s"; -$a->strings["%d contact in common"] = array( - 0 => "", - 1 => "", -); -$a->strings["View all contacts"] = "Преглед на всички контакти"; -$a->strings["Unblock"] = "Разблокиране"; -$a->strings["Block"] = "Блокиране"; -$a->strings["Toggle Blocked status"] = "Превключване Блокирани статус"; -$a->strings["Unignore"] = "Извади от пренебрегнатите"; -$a->strings["Ignore"] = "Пренебрегване"; -$a->strings["Toggle Ignored status"] = "Превключване игнорирани статус"; -$a->strings["Unarchive"] = "Разархивирате"; -$a->strings["Archive"] = "Архив"; -$a->strings["Toggle Archive status"] = "Превключване статус Архив"; -$a->strings["Repair"] = "Ремонт"; -$a->strings["Advanced Contact Settings"] = "Разширени настройки за контакт"; -$a->strings["Communications lost with this contact!"] = "Communications загубиха с този контакт!"; -$a->strings["Contact Editor"] = "Свържете се редактор"; -$a->strings["Submit"] = "Изпращане"; -$a->strings["Profile Visibility"] = "Профил Видимост"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Моля, изберете профила, който бихте искали да покажете на %s при гледане на здраво вашия профил."; -$a->strings["Contact Information / Notes"] = "Информация за контакти / Забележки"; -$a->strings["Edit contact notes"] = "Редактиране на контакт с бележка"; -$a->strings["Visit %s's profile [%s]"] = "Посетете %s Профилът на [ %s ]"; -$a->strings["Block/Unblock contact"] = "Блокиране / Деблокиране на контакт"; -$a->strings["Ignore contact"] = "Игнорирай се свържете с"; -$a->strings["Repair URL settings"] = "Настройки за ремонт на URL"; -$a->strings["View conversations"] = "Вижте разговори"; -$a->strings["Delete contact"] = "Изтриване на контакта"; -$a->strings["Last update:"] = "Последна актуализация:"; -$a->strings["Update public posts"] = "Актуализиране на държавни длъжности"; -$a->strings["Update now"] = "Актуализирай сега"; -$a->strings["Currently blocked"] = "Които понастоящем са блокирани"; -$a->strings["Currently ignored"] = "В момента игнорирани"; -$a->strings["Currently archived"] = "В момента архивират"; -$a->strings["Hide this contact from others"] = "Скриване на този контакт от другите"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Отговори / обича да си публични длъжности май все още да се вижда"; -$a->strings["Notification for new posts"] = ""; -$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"] = "Предложения"; -$a->strings["Suggest potential friends"] = "Предполагат потенциал приятели"; -$a->strings["All Contacts"] = "Всички Контакти"; -$a->strings["Show all contacts"] = "Покажи на всички контакти"; -$a->strings["Unblocked"] = "Отблокирани"; -$a->strings["Only show unblocked contacts"] = "Покажи само Разблокирани контакти"; -$a->strings["Blocked"] = "Блокиран"; -$a->strings["Only show blocked contacts"] = "Покажи само Блокираните контакти"; -$a->strings["Ignored"] = "Игнорирани"; -$a->strings["Only show ignored contacts"] = "Покажи само игнорирани контакти"; -$a->strings["Archived"] = "Архивиран:"; -$a->strings["Only show archived contacts"] = "Покажи само архивирани контакти"; -$a->strings["Hidden"] = "Скрит"; -$a->strings["Only show hidden contacts"] = "Само показва скрити контакти"; -$a->strings["Mutual Friendship"] = "Взаимното приятелство"; -$a->strings["is a fan of yours"] = "е фенка"; -$a->strings["you are a fan of"] = "Вие сте фен на"; -$a->strings["Edit contact"] = "Редактиране на контакт"; -$a->strings["Contacts"] = "Контакти "; -$a->strings["Search your contacts"] = "Търсене на вашите контакти"; -$a->strings["Finding: "] = "Намиране: "; -$a->strings["Find"] = "Търсене"; -$a->strings["Update"] = "Актуализиране"; -$a->strings["Delete"] = "Изтриване"; -$a->strings["No profile"] = "Няма профил"; -$a->strings["Manage Identities and/or Pages"] = "Управление на идентичността и / или страници"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения"; -$a->strings["Select an identity to manage: "] = "Изберете идентичност, за да управлява: "; -$a->strings["Post successful."] = "Мнение успешно."; -$a->strings["Permission denied"] = "Разрешението е отказано"; -$a->strings["Invalid profile identifier."] = "Невалиден идентификатор на профила."; -$a->strings["Profile Visibility Editor"] = "Редактор профил Видимост"; -$a->strings["Profile"] = "Височина на профила"; -$a->strings["Click on a contact to add or remove."] = "Щракнете върху контакт, за да добавите или премахнете."; -$a->strings["Visible To"] = "Вижда се от"; -$a->strings["All Contacts (with secure profile access)"] = "Всички контакти с охраняем достъп до профил)"; -$a->strings["Item not found."] = "Елемент не е намерен."; -$a->strings["Public access denied."] = "Публичен достъп отказан."; -$a->strings["Access to this profile has been restricted."] = "Достъпът до този профил е ограничен."; -$a->strings["Item has been removed."] = ", Т. е била отстранена."; -$a->strings["Welcome to Friendica"] = "Добре дошли да Friendica"; -$a->strings["New Member Checklist"] = "Нова държава Чеклист"; -$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."] = "Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне."; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$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."] = ""; -$a->strings["Settings"] = "Настройки"; -$a->strings["Go to Your Settings"] = ""; -$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."] = "На настройки - да промени първоначалната си парола. Също така направи бележка на вашата самоличност адрес. Това изглежда точно като имейл адрес - и ще бъде полезно при вземането на приятели за свободното социална мрежа."; -$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."] = "Прегледайте други настройки, по-специално на настройките за поверителност. Непубликуван списък директория е нещо като скрит телефонен номер. Като цяло, може би трябва да публикува вашата обява - освен ако не всички от вашите приятели и потенциални приятели, знаят точно как да те намеря."; -$a->strings["Upload Profile Photo"] = "Качване на снимка Профилът"; -$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."] = "Качване на снимката на профила, ако не сте го направили вече. Проучванията показват, че хората с истински снимки на себе си, са десет пъти по-вероятно да станат приятели, отколкото хората, които не."; -$a->strings["Edit Your Profile"] = "Редактиране на профила"; -$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."] = "Редактиране на подразбиране профил да ви хареса. Преглед на настройките за скриване на вашия списък с приятели и скриване на профила от неизвестни посетители."; -$a->strings["Profile Keywords"] = "Ключови думи на профила"; -$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."] = "Задайте някои обществени ключови думи за вашия профил по подразбиране, които описват вашите интереси. Ние може да сме в състояние да намери други хора с подобни интереси и предлага приятелства."; -$a->strings["Connecting"] = "Свързване"; -$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."] = "Разрешаване на съединител на Facebook, ако в момента имате акаунт във Facebook и ние ще (по желание) импортирате всичките си приятели и разговори."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = " Ако , това е вашият собствен сървър, инсталиране на Адон Facebook може да улесни прехода към безплатна социална мрежа."; -$a->strings["Importing Emails"] = "Внасяне на е-пощи"; -$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"] = "Въведете своя имейл достъп до информация на страницата Настройки на Connector, ако желаете да внасят и да взаимодейства с приятели или списъци с адреси от електронната си поща Входящи"; -$a->strings["Go to Your Contacts Page"] = ""; -$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."] = "Контакти страница е вашата врата към управлението на приятелства и свързване с приятели в други мрежи. Обикновено можете да въведете адрес или адрес на сайта в Добавяне на нов контакт диалоговия."; -$a->strings["Go to Your Site's Directory"] = ""; -$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."] = "Страницата на справочника ви позволява да намерите други хора в тази мрежа или други сайтове Федерални. Потърсете Свържете или Следвайте в профила си страница. Предоставяне на вашия собствен адрес за самоличност, ако това бъде поискано."; -$a->strings["Finding New People"] = "Откриване на нови хора"; -$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."] = "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа."; -$a->strings["Groups"] = "Групи"; -$a->strings["Group Your 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."] = "След като сте направили някои приятели, да ги организирате в групи от частния разговор от страничната лента на страницата с контакти и след това можете да взаимодействате с всяка група частно във вашата мрежа."; -$a->strings["Why Aren't My Posts Public?"] = "Защо публикациите ми не са публични?"; -$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."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси."; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID протокол грешка. Не ID върна."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Кутия не е намерена и, OpenID регистрация не е разрешено на този сайт."; -$a->strings["Login failed."] = "Влез не успя."; -$a->strings["Image uploaded but image cropping failed."] = "Качени изображения, но изображението изрязване не успя."; -$a->strings["Profile Photos"] = "Снимка на профила"; -$a->strings["Image size reduction [%s] failed."] = "Намаляване на размер [ %s ] не успя."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага."; -$a->strings["Unable to process image"] = "Не може да се обработи"; -$a->strings["Image exceeds size limit of %d"] = "Изображението надвишава ограничението за размера на %d"; -$a->strings["Unable to process image."] = "Не може да се обработи."; -$a->strings["Upload File:"] = "прикрепи файл"; -$a->strings["Select a profile:"] = "Избор на профил:"; -$a->strings["Upload"] = "Качете в Мрежата "; -$a->strings["or"] = "или"; -$a->strings["skip this step"] = "пропуснете тази стъпка"; -$a->strings["select a photo from your photo albums"] = "изберете снимка от вашите фото албуми"; -$a->strings["Crop Image"] = "Изрязване на изображението"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Моля, настроите образа на изрязване за оптимално гледане."; -$a->strings["Done Editing"] = "Съставено редактиране"; -$a->strings["Image uploaded successfully."] = "Качени изображения успешно."; -$a->strings["Image upload failed."] = "Image Upload неуспешно."; -$a->strings["photo"] = "снимка"; -$a->strings["status"] = "статус"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Tag removed"] = "Отстранява маркировката"; -$a->strings["Remove Item Tag"] = "Извадете Tag т."; -$a->strings["Select a tag to remove: "] = "Изберете етикет, за да премахнете: "; -$a->strings["Remove"] = "Премахване"; -$a->strings["Save to Folder:"] = "Запиши в папка:"; -$a->strings["- select -"] = "избор"; -$a->strings["Save"] = "Запази"; -$a->strings["Contact added"] = "Свържете се добавя"; -$a->strings["Unable to locate original post."] = "Не може да се намери оригиналната публикация."; -$a->strings["Empty post discarded."] = "Empty мнение изхвърли."; -$a->strings["Wall Photos"] = "Стена снимки"; -$a->strings["System error. Post not saved."] = "Грешка в системата. Мнение не е запазен."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica."; -$a->strings["You may visit them online at %s"] = "Можете да ги посетите онлайн на адрес %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения."; -$a->strings["%s posted an update."] = "%s е публикувал актуализация."; -$a->strings["Group created."] = "Група, създадена."; -$a->strings["Could not create group."] = "Не може да се създаде група."; -$a->strings["Group not found."] = "Групата не е намерен."; -$a->strings["Group name changed."] = "Име на група се промени."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Създаване на група от контакти / приятели."; -$a->strings["Group Name: "] = "Име на група: "; -$a->strings["Group removed."] = "Група отстранени."; -$a->strings["Unable to remove group."] = "Не може да премахнете група."; -$a->strings["Group Editor"] = "Група Editor"; -$a->strings["Members"] = "Членове"; -$a->strings["You must be logged in to use addons. "] = ""; -$a->strings["Applications"] = "Приложения"; -$a->strings["No installed applications."] = "Няма инсталираните приложения."; -$a->strings["Profile not found."] = "Профил не е намерен."; -$a->strings["Contact not found."] = "Контактът не е намерен."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Това понякога може да се случи, ако контакт е поискано от двете лица и вече е одобрен."; -$a->strings["Response from remote site was not understood."] = "Отговор от отдалечен сайт не е бил разбран."; -$a->strings["Unexpected response from remote site: "] = "Неочакван отговор от отдалечения сайт: "; -$a->strings["Confirmation completed successfully."] = "Потвърждение приключи успешно."; -$a->strings["Remote site reported: "] = "Отдалеченият сайт докладвани: "; -$a->strings["Temporary failure. Please wait and try again."] = "Временен неуспех. Моля изчакайте и опитайте отново."; -$a->strings["Introduction failed or was revoked."] = "Въведение не успя или е анулиран."; -$a->strings["Unable to set contact photo."] = "Не може да зададете снимка на контакт."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s вече е приятел с %2\$s"; -$a->strings["No user record found for '%s' "] = "Нито един потребител не запис за ' %s"; -$a->strings["Our site encryption key is apparently messed up."] = "Основният ни сайт криптиране е очевидно побъркани."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Празен сайт URL е предоставена или URL не може да бъде разшифрован от нас."; -$a->strings["Contact record was not found for you on our site."] = "Контакт с запис не е намерен за вас на нашия сайт."; -$a->strings["Site public key not available in contact record for URL %s."] = "Site публичния ключ не е наличен в контакт рекорд за %s URL ."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предоставена от вашата система, е дубликат на нашата система. Той трябва да работи, ако се опитате отново."; -$a->strings["Unable to set your contact credentials on our system."] = "Не може да се установи контакт с вас пълномощията на нашата система."; -$a->strings["Unable to update your contact profile details on our system"] = "Не може да актуализирате вашите данни за контакт на профил в нашата система"; -$a->strings["[Name Withheld]"] = "[Име, удържани]"; -$a->strings["%1\$s has joined %2\$s"] = "Се присъедини към %2\$s %1\$s %2\$s"; -$a->strings["Requested profile is not available."] = "Замолената профила не е достъпна."; -$a->strings["Tips for New Members"] = "Съвети за нови членове"; -$a->strings["No videos selected"] = "Няма избрани видеоклипове"; -$a->strings["Access to this item is restricted."] = "Достъп до тази точка е ограничена."; -$a->strings["View Video"] = "Преглед на видеоклип"; -$a->strings["View Album"] = "Вижте албуми"; -$a->strings["Recent Videos"] = "Скорошни видеоклипове"; -$a->strings["Upload New Videos"] = "Качване на нови видеоклипове"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s сложи етикет с %2\$s - %3\$s %4\$s"; -$a->strings["Friend suggestion sent."] = "Предложението за приятелство е изпратено."; -$a->strings["Suggest Friends"] = "Предлагане на приятели"; -$a->strings["Suggest a friend for %s"] = "Предлагане на приятел за %s"; -$a->strings["No valid account found."] = "Не е валиден акаунт."; -$a->strings["Password reset request issued. Check your 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."] = ""; -$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"] = "Исканото за нулиране на паролата на %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Искането не може да бъде проверена. (Може да се преди това са го внесе.) За нулиране на паролата не успя."; -$a->strings["Password Reset"] = "Смяна на паролата"; -$a->strings["Your password has been reset as requested."] = "Вашата парола е променена, както беше поискано."; -$a->strings["Your new password is"] = "Вашата нова парола е"; -$a->strings["Save or copy your new password - and then"] = "Запазване или копиране на новата си парола и след това"; -$a->strings["click here to login"] = "Кликнете тук за Вход"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Вашата парола може да бъде променена от Настройки , След успешен вход."; -$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"] = ""; -$a->strings["Forgot your Password?"] = "Забравена парола?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Въведете вашия имейл адрес и представя си за нулиране на паролата. След това проверявате електронната си поща за по-нататъшни инструкции."; -$a->strings["Nickname or Email: "] = "Псевдоним или имейл адрес: "; -$a->strings["Reset"] = "Нулиране"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s харесва %2\$s %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не като %2\$s - %3\$s"; -$a->strings["{0} wants to be your friend"] = "{0} иска да бъде твой приятел"; -$a->strings["{0} sent you a message"] = "{0} ви изпрати съобщение"; -$a->strings["{0} requested registration"] = "{0} исканата регистрация"; -$a->strings["{0} commented %s's post"] = "{0} коментира %s е след"; -$a->strings["{0} liked %s's post"] = "{0} хареса %s е след"; -$a->strings["{0} disliked %s's post"] = "{0} не харесвал %s на мнение"; -$a->strings["{0} is now friends with %s"] = "{0} вече е приятел с %s"; -$a->strings["{0} posted"] = "{0} написали"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} Маркирани %s мнение с #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} споменах в един пост"; -$a->strings["No contacts."] = "Няма контакти."; -$a->strings["View Contacts"] = "Вижте Контакти"; -$a->strings["Invalid request identifier."] = "Невалидна заявка идентификатор."; -$a->strings["Discard"] = "Отхвърляне"; -$a->strings["System"] = "Система"; -$a->strings["Network"] = "Мрежа"; -$a->strings["Personal"] = "Лично"; -$a->strings["Home"] = "Начало"; -$a->strings["Introductions"] = "Представяне"; -$a->strings["Show Ignored Requests"] = "Показване на пренебрегнатите заявки"; -$a->strings["Hide Ignored Requests"] = "Скриване на пренебрегнатите заявки"; -$a->strings["Notification type: "] = "Вид на уведомлението: "; -$a->strings["Friend Suggestion"] = "Приятел за предложения"; -$a->strings["suggested by %s"] = "предложено от %s"; -$a->strings["Post a new friend activity"] = "Публикувай нова дейност приятел"; -$a->strings["if applicable"] = "ако е приложимо"; -$a->strings["Approve"] = "Одобряване"; -$a->strings["Claims to be known to you: "] = "Искания, да се знае за вас: "; -$a->strings["yes"] = "да"; -$a->strings["no"] = "не"; -$a->strings["Approve as: "] = "За Одобряване като: "; -$a->strings["Friend"] = "Приятел"; -$a->strings["Sharer"] = "Споделящ"; -$a->strings["Fan/Admirer"] = "Почитател"; -$a->strings["Friend/Connect Request"] = "Приятел / заявка за свързване"; -$a->strings["New Follower"] = "Нов последовател"; -$a->strings["No introductions."] = "Няма въвеждане."; -$a->strings["Notifications"] = "Уведомления "; -$a->strings["%s liked %s's post"] = "%s харесва %s е след"; -$a->strings["%s disliked %s's post"] = "%s не харесвал %s е след"; -$a->strings["%s is now friends with %s"] = "%s вече е приятел с %s"; -$a->strings["%s created a new post"] = "%s създаден нов пост"; -$a->strings["%s commented on %s's post"] = "%s коментира %s е след"; -$a->strings["No more network notifications."] = "Не повече мрежови уведомление."; -$a->strings["Network Notifications"] = "Мрежа Известия"; -$a->strings["No more system notifications."] = "Не повече системни известия."; -$a->strings["System Notifications"] = "Системни известия"; -$a->strings["No more personal notifications."] = "Няма повече уведомления."; -$a->strings["Personal Notifications"] = "Лични Известия"; -$a->strings["No more home notifications."] = "Не повече домашни уведомление."; -$a->strings["Home Notifications"] = "Начало Известия"; -$a->strings["Source (bbcode) text:"] = ""; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; -$a->strings["Source input: "] = ""; -$a->strings["bb2html (raw HTML): "] = ""; -$a->strings["bb2html: "] = ""; -$a->strings["bb2html2bb: "] = ""; -$a->strings["bb2md: "] = ""; -$a->strings["bb2md2html: "] = ""; -$a->strings["bb2dia2bb: "] = ""; -$a->strings["bb2md2html2bb: "] = ""; -$a->strings["Source input (Diaspora format): "] = ""; -$a->strings["diaspora2bb: "] = ""; -$a->strings["Nothing new here"] = "Нищо ново тук"; -$a->strings["Clear notifications"] = "Изчистване на уведомленията"; -$a->strings["New Message"] = "Ново съобщение"; -$a->strings["No recipient selected."] = "Не е избран получател."; -$a->strings["Unable to locate contact information."] = "Не може да се намери информация за контакт."; -$a->strings["Message could not be sent."] = "Писмото не може да бъде изпратена."; -$a->strings["Message collection failure."] = "Съобщение за събиране на неуспех."; -$a->strings["Message sent."] = "Изпратено съобщение."; -$a->strings["Messages"] = "Съобщения"; -$a->strings["Do you really want to delete this message?"] = ""; -$a->strings["Message deleted."] = "Съобщение заличават."; -$a->strings["Conversation removed."] = "Разговор отстранени."; -$a->strings["Please enter a link URL:"] = "Моля, въведете URL адреса за връзка:"; -$a->strings["Send Private Message"] = "Изпрати Лично Съобщение"; -$a->strings["To:"] = "До:"; -$a->strings["Subject:"] = "Относно:"; -$a->strings["Your message:"] = "Ваше съобщение"; -$a->strings["Upload photo"] = "Качване на снимка"; -$a->strings["Insert web link"] = "Вмъкване на връзка в Мрежата"; -$a->strings["Please wait"] = "Моля, изчакайте"; -$a->strings["No messages."] = "Няма съобщения."; -$a->strings["Unknown sender - %s"] = "Непознат подател %s"; -$a->strings["You and %s"] = "Вие и %s"; -$a->strings["%s and You"] = "%s"; -$a->strings["Delete conversation"] = "Изтриване на разговор"; -$a->strings["D, d M Y - g:i A"] = "D, D MY - Г: А"; -$a->strings["%d message"] = array( - 0 => "", - 1 => "", -); -$a->strings["Message not available."] = "Съобщението не е посочена."; -$a->strings["Delete message"] = "Изтриване на съобщение"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Няма сигурни комуникации. Можете май да бъде в състояние да отговори от страницата на профила на подателя."; -$a->strings["Send Reply"] = "Изпратете Отговор"; -$a->strings["[Embedded content - reload page to view]"] = "[Вградени съдържание - презареждане на страницата, за да видите]"; -$a->strings["Contact settings applied."] = "Контактни настройки прилага."; -$a->strings["Contact update failed."] = "Свържете се актуализира провали."; -$a->strings["Repair Contact Settings"] = "Ремонт Контактни настройки"; -$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."] = "Моля, използвайте Назад на вашия браузър бутон сега, ако не сте сигурни какво да правят на тази страница."; -$a->strings["Return to contact editor"] = "Назад, за да се свържете с редактор"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Name"] = "Име"; -$a->strings["Account Nickname"] = "Сметка Псевдоним"; -$a->strings["@Tagname - overrides Name/Nickname"] = "Име / псевдоним на @ Tagname - Заменя"; -$a->strings["Account URL"] = "Сметка URL"; -$a->strings["Friend Request URL"] = "URL приятел заявка"; -$a->strings["Friend Confirm URL"] = "Приятел Потвърди URL"; -$a->strings["Notification Endpoint URL"] = "URL адрес на Уведомление Endpoint"; -$a->strings["Poll/Feed URL"] = "Анкета / URL Feed"; -$a->strings["New photo from this 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"] = "Вход"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Отказан достъп."; -$a->strings["People Search"] = "Хората Търсене"; -$a->strings["No matches"] = "Няма съответствия"; -$a->strings["Photos"] = "Снимки"; -$a->strings["Files"] = "Файлове"; -$a->strings["Contacts who are not members of a group"] = "Контакти, които не са членове на една група"; -$a->strings["Theme settings updated."] = "Тема Настройки актуализира."; -$a->strings["Site"] = "Сайт"; -$a->strings["Users"] = "Потребители"; -$a->strings["Plugins"] = "Приставки"; -$a->strings["Themes"] = "Теми"; -$a->strings["DB updates"] = "Обновления на БД"; -$a->strings["Logs"] = "Дневници"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "admin"; -$a->strings["Plugin Features"] = "Настройки на приставките"; -$a->strings["diagnostics"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Потребителски регистрации, чакащи за потвърждение"; -$a->strings["Normal Account"] = "Нормално профил"; -$a->strings["Soapbox Account"] = "Импровизирана трибуна профил"; -$a->strings["Community/Celebrity Account"] = "Общността / Celebrity"; -$a->strings["Automatic Friend Account"] = "Автоматично приятел акаунт"; -$a->strings["Blog Account"] = ""; -$a->strings["Private Forum"] = "Частен форум"; -$a->strings["Message queues"] = "Съобщение опашки"; -$a->strings["Administration"] = "Администриране "; -$a->strings["Summary"] = "Резюме"; -$a->strings["Registered users"] = "Регистрираните потребители"; -$a->strings["Pending registrations"] = "Предстоящи регистрации"; -$a->strings["Version"] = "Версия "; -$a->strings["Active plugins"] = "Включени приставки"; -$a->strings["Can not parse base url. Must have at least ://"] = ""; -$a->strings["Site settings updated."] = "Настройките на сайта са обновени."; -$a->strings["No special theme for mobile devices"] = ""; -$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"] = "Често"; -$a->strings["Hourly"] = "Всеки час"; -$a->strings["Twice daily"] = "Два пъти дневно"; -$a->strings["Daily"] = "Ежедневно:"; -$a->strings["Multi user instance"] = ""; -$a->strings["Closed"] = "Затворен"; -$a->strings["Requires approval"] = "Изисква одобрение"; -$a->strings["Open"] = "Отворена."; -$a->strings["No SSL policy, links will track page SSL state"] = "Не SSL политика, връзки ще следи страница SSL състояние"; -$a->strings["Force all links to use SSL"] = "Принуди всички връзки да се използва SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Самоподписан сертификат, използвайте SSL за местни връзки единствено (обезкуражени)"; -$a->strings["Save Settings"] = ""; -$a->strings["Registration"] = "Регистрация"; -$a->strings["File upload"] = "Прикачване на файлове"; -$a->strings["Policies"] = "Политики"; -$a->strings["Advanced"] = "Напреднал"; -$a->strings["Performance"] = "Производителност"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; -$a->strings["Site name"] = "Име на сайта"; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; -$a->strings["Banner/Logo"] = "Банер / лого"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; -$a->strings["System language"] = "Системен език"; -$a->strings["System theme"] = "Системна тема"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Тема по подразбиране система - може да бъде по-яздени потребителски профили - променяте настройки тема "; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["SSL link policy"] = "SSL връзка политика"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Определя дали генерирани връзки трябва да бъдат принудени да се използва 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["Old style 'Share'"] = ""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; -$a->strings["Hide help entry from navigation menu"] = ""; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; -$a->strings["Single user instance"] = ""; -$a->strings["Make this instance multi-user or single-user for the named user"] = ""; -$a->strings["Maximum image size"] = "Максимален размер на изображението"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимален размер в байтове на качените изображения. По подразбиране е 0, което означава, няма граници."; -$a->strings["Maximum image length"] = ""; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; -$a->strings["JPEG image quality"] = ""; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; -$a->strings["Register policy"] = "Регистрирайте политика"; -$a->strings["Maximum Daily Registrations"] = ""; -$a->strings["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."] = ""; -$a->strings["Register text"] = "Регистрирайте се текст"; -$a->strings["Will be displayed prominently on the registration page."] = "Ще бъдат показани на видно място на страницата за регистрация."; -$a->strings["Accounts abandoned after x days"] = "Сметките изоставени след дни х"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето."; -$a->strings["Allowed friend domains"] = "Позволи на домейни приятел"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни"; -$a->strings["Allowed email domains"] = "Позволи на домейни имейл"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни"; -$a->strings["Block public"] = "Блокиране на обществения"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата."; -$a->strings["Force publish"] = "Принудително публикува"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта."; -$a->strings["Global directory update URL"] = "Global директория актуализация URL"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL за актуализиране на глобален справочник. Ако това не е настроен, глобален справочник е напълно недостъпни за заявлението."; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$a->strings["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."] = ""; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["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."] = ""; -$a->strings["Allow Users to set remote_self"] = ""; -$a->strings["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."] = ""; -$a->strings["Block multiple registrations"] = "Блокиране на множество регистрации"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Забраните на потребителите да се регистрират допълнителни сметки, за използване като страниците."; -$a->strings["OpenID support"] = "Поддръжка на OpenID"; -$a->strings["OpenID support for registration and logins."] = "Поддръжка на OpenID за регистрация и влизане."; -$a->strings["Fullname check"] = "Fullname проверка"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Силите на потребителите да се регистрират в пространството между Име и фамилия в пълно име, като мярка за антиспам"; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярни изрази"; -$a->strings["Use PHP UTF8 regular expressions"] = "Използвате PHP 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["Enable OStatus support"] = "Активирайте 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."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Enable Diaspora support"] = "Активирайте диаспора подкрепа"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Осигури вградена диаспора в мрежата съвместимост."; -$a->strings["Only allow Friendica contacts"] = "Позволяват само Friendica контакти"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Всички контакти трябва да използвате Friendica протоколи. Всички останали вградени комуникационни протоколи с увреждания."; -$a->strings["Verify SSL"] = "Провери SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти."; -$a->strings["Proxy user"] = "Proxy потребител"; -$a->strings["Proxy URL"] = "Proxy URL"; -$a->strings["Network timeout"] = "Мрежа изчакване"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)."; -$a->strings["Delivery interval"] = "Доставка интервал"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Забавяне процесите на доставка на заден план от това много секунди, за да се намали натоварването на системата. Препоръчай: 4-5 за споделени хостове, 2-3 за виртуални частни сървъри. 0-1 за големи наети сървъри."; -$a->strings["Poll interval"] = "Анкета интервал"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Забавяне избирателните фонови процеси от това много секунди, за да се намали натоварването на системата. Ако 0, използвайте интервал доставка."; -$a->strings["Maximum Load Average"] = "Максимално натоварване"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимално натоварване на системата преди раждането и анкета процеси са отложени - по подразбиране 50."; -$a->strings["Use MySQL full text engine"] = ""; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; -$a->strings["Suppress Language"] = ""; -$a->strings["Suppress language information in meta information about a posting."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["Cache duration in seconds"] = ""; -$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."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Path for lock file"] = ""; -$a->strings["Temp path"] = ""; -$a->strings["Base path to installation"] = ""; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$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["New base url"] = ""; -$a->strings["Update has been marked successful"] = "Update е маркиран успешно"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = "Актуализация %s бе успешно приложена."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Актуализация %s не се връща статус. Известно дали тя успя."; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "Няма провалени новини."; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = "Неуспешно Updates"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Това не включва актуализации, преди 1139, които не връщат статута."; -$a->strings["Mark success (if update was manually applied)"] = "Марк успех (ако актуализация е ръчно прилага)"; -$a->strings["Attempt to execute this update step automatically"] = "Опита да изпълни тази стъпка се обновяват автоматично"; -$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"] = "Регистрационни данни за %s"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -$a->strings["%s user deleted"] = array( - 0 => "", - 1 => "", -); -$a->strings["User '%s' deleted"] = "Потребителят \" %s \"Изтрити"; -$a->strings["User '%s' unblocked"] = "Потребителят \" %s \"отблокирани"; -$a->strings["User '%s' blocked"] = "Потребителят \" %s \"блокиран"; -$a->strings["Add User"] = ""; -$a->strings["select all"] = "Избор на всичко"; -$a->strings["User registrations waiting for confirm"] = "Потребителски регистрации, чакат за да потвърдите"; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = "Искане дата"; -$a->strings["Email"] = "Е-поща"; -$a->strings["No registrations."] = "Няма регистрации."; -$a->strings["Deny"] = "Отказ"; -$a->strings["Site admin"] = "Администратор на сайта"; -$a->strings["Account expired"] = ""; -$a->strings["New User"] = ""; -$a->strings["Register date"] = "Дата на регистрация"; -$a->strings["Last login"] = "Последно влизане"; -$a->strings["Last item"] = "Последния елемент"; -$a->strings["Deleted since"] = ""; -$a->strings["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?"] = "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?"; -$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?"] = "Потребител {0} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?"; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; -$a->strings["Plugin %s disabled."] = "Plug-in %s увреждания."; -$a->strings["Plugin %s enabled."] = "Plug-in %s поддръжка."; -$a->strings["Disable"] = "забрани"; -$a->strings["Enable"] = "Да се активира ли?"; -$a->strings["Toggle"] = "切換"; -$a->strings["Author: "] = "Автор: "; -$a->strings["Maintainer: "] = "Отговорник: "; -$a->strings["No themes found."] = "Няма намерени теми."; -$a->strings["Screenshot"] = "Screenshot"; -$a->strings["[Experimental]"] = "(Експериментален)"; -$a->strings["[Unsupported]"] = "Неподдържан]"; -$a->strings["Log settings updated."] = "Вход Обновяването на настройките."; -$a->strings["Clear"] = "Безцветен "; -$a->strings["Enable Debugging"] = ""; -$a->strings["Log file"] = "Регистрационен файл"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория."; -$a->strings["Log level"] = "Вход ниво"; -$a->strings["Close"] = "Затвори"; -$a->strings["FTP Host"] = "Добавил през FTP домакин"; -$a->strings["FTP Path"] = "Добавил през FTP Path"; -$a->strings["FTP User"] = "FTP потребител"; -$a->strings["FTP Password"] = "FTP парола"; -$a->strings["Search Results For:"] = "Резултати от търсенето за:"; -$a->strings["Remove term"] = "Премахване мандат"; -$a->strings["Saved Searches"] = "Запазени търсения"; -$a->strings["add"] = "добави"; -$a->strings["Commented Order"] = "Коментирани поръчка"; -$a->strings["Sort by Comment Date"] = "Сортиране по Коментар Дата"; -$a->strings["Posted Order"] = "Пуснато на поръчка"; -$a->strings["Sort by Post Date"] = "Сортирай по пощата дата"; -$a->strings["Posts that mention or involve you"] = "Мнения, които споменават или включват"; -$a->strings["New"] = "Нов профил."; -$a->strings["Activity Stream - by date"] = "Активност Stream - по дата"; -$a->strings["Shared Links"] = "Общо връзки"; -$a->strings["Interesting Links"] = "Интересни Връзки"; -$a->strings["Starred"] = "Със звезда"; -$a->strings["Favourite Posts"] = "Любими Мнения"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "", - 1 => "", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Лични съобщения до тази група, са изложени на риск от публичното оповестяване."; -$a->strings["No such group"] = "Няма такава група"; -$a->strings["Group is empty"] = "Групата е празна"; -$a->strings["Group: "] = "Група: "; -$a->strings["Contact: "] = "Контакт "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Лични съобщения до това лице, са изложени на риск от публичното оповестяване."; -$a->strings["Invalid contact."] = "Невалиден свържете."; -$a->strings["Friends of %s"] = "Приятели на %s"; -$a->strings["No friends to display."] = "Нямате приятели в листата."; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = "л, F J"; -$a->strings["Edit event"] = "Редактиране на Събитието"; -$a->strings["link to source"] = "връзка източник"; -$a->strings["Events"] = "Събития"; -$a->strings["Create New Event"] = "Създаване на нов събитие"; -$a->strings["Previous"] = "Предишна"; -$a->strings["Next"] = "Следваща"; -$a->strings["hour:minute"] = "час: минути"; -$a->strings["Event details"] = "Подробности за събитието"; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Събитие Започва:"; -$a->strings["Required"] = "Задължително"; -$a->strings["Finish date/time is not known or not relevant"] = "Завършете дата / час не е известен или не е приложимо"; -$a->strings["Event Finishes:"] = "Събитие играчи:"; -$a->strings["Adjust for viewer timezone"] = "Настрои зрителя часовата зона"; -$a->strings["Description:"] = "Описание:"; -$a->strings["Location:"] = "Място:"; -$a->strings["Title:"] = "Заглавие:"; -$a->strings["Share this event"] = "Споделете това събитие"; -$a->strings["Select"] = "избор"; -$a->strings["View %s's profile @ %s"] = "Преглед профила на %s в %s"; -$a->strings["%s from %s"] = "%s от %s"; -$a->strings["View in context"] = "Поглед в контекста"; -$a->strings["%d comment"] = array( - 0 => "", - 1 => "", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "", -); -$a->strings["show more"] = "покажи още"; -$a->strings["Private Message"] = "Лично съобщение"; -$a->strings["I like this (toggle)"] = "Харесва ми това (смяна)"; -$a->strings["like"] = "харесвам"; -$a->strings["I don't like this (toggle)"] = "Не ми харесва това (смяна)"; -$a->strings["dislike"] = "не харесвам"; -$a->strings["Share this"] = "Споделете това"; -$a->strings["share"] = "споделяне"; -$a->strings["This is you"] = "Това сте вие"; -$a->strings["Comment"] = "Коментар"; -$a->strings["Bold"] = "Получер"; -$a->strings["Italic"] = "Курсив"; -$a->strings["Underline"] = "Подчертан"; -$a->strings["Quote"] = "Цитат"; -$a->strings["Code"] = "Код"; -$a->strings["Image"] = "Изображение"; -$a->strings["Link"] = "Връзка"; -$a->strings["Video"] = "Видеоклип"; -$a->strings["Preview"] = "Преглед"; -$a->strings["Edit"] = "Редактиране"; -$a->strings["add star"] = "Добавяне на звезда"; -$a->strings["remove star"] = "Премахване на звездата"; -$a->strings["toggle star status"] = "превключване звезда статус"; -$a->strings["starred"] = "звезда"; -$a->strings["add tag"] = "добавяне на етикет"; -$a->strings["save to folder"] = "запишете в папка"; -$a->strings["to"] = "за"; -$a->strings["Wall-to-Wall"] = "От стена до стена"; -$a->strings["via Wall-To-Wall:"] = "чрез стена до стена:"; -$a->strings["Remove My Account"] = "Извадете Моят профил"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим."; -$a->strings["Please enter your password for verification:"] = "Моля, въведете паролата си за проверка:"; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = "Не може да се свърже с базата данни."; -$a->strings["Could not create table."] = "Не може да се създаде таблица."; -$a->strings["Your Friendica site database has been installed."] = "Вашият Friendica сайт база данни е инсталиран."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Може да се наложи да импортирате файла \"database.sql\" ръчно чрез настървение или MySQL."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Моля, вижте файла \"INSTALL.txt\"."; -$a->strings["System check"] = "Проверка на системата"; -$a->strings["Check again"] = "Проверете отново"; -$a->strings["Database connection"] = "Свързване на база данни"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите."; -$a->strings["Database Server Name"] = "Име на сървър за база данни"; -$a->strings["Database Login Name"] = "Името на базата данни Парола"; -$a->strings["Database Login Password"] = "Database Влизам Парола"; -$a->strings["Database Name"] = "Име на база данни"; -$a->strings["Site administrator email address"] = "Сайт администратор на имейл адрес"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор."; -$a->strings["Please select a default timezone for your website"] = "Моля, изберете часовата зона по подразбиране за вашия уеб сайт"; -$a->strings["Site settings"] = "Настройки на сайта"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не може да се намери командния ред версия на PHP в PATH уеб сървър."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Ако не разполагате с командния ред версия на PHP е инсталиран на сървър, вие няма да можете да тече избирателната фон чрез Cron. Вижте \"Активиране на планирани задачи\" "; -$a->strings["PHP executable path"] = "PHP изпълним път"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията."; -$a->strings["Command line PHP"] = "Команден ред PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "В командния ред версия на PHP на вашата система не трябва \"register_argc_argv\" дадоха възможност."; -$a->strings["This is required for message delivery to work."] = "Това е необходимо за доставка на съобщение, за да работят."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Грешка: \"openssl_pkey_new\" функция на тази система не е в състояние да генерира криптиращи ключове"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ако работите под Windows, моля, вижте \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Генериране на криптиращи ключове"; -$a->strings["libCurl PHP module"] = "libCurl PHP модул"; -$a->strings["GD graphics PHP module"] = "GD графика PHP модул"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модул"; -$a->strings["mysqli PHP module"] = "mysqli PHP модул"; -$a->strings["mb_string PHP module"] = "mb_string PHP модул"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite модул"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Грешка: libCURL PHP модул, но не е инсталирана."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана."; -$a->strings["Error: openssl PHP module required but not installed."] = "Грешка: OpenSSL PHP модул са необходими, но не е инсталирана."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Грешка: mysqli PHP модул, но не е инсталирана."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Грешка: mb_string PHP модул, но не е инсталирана."; -$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."] = "Уеб инсталатора трябва да бъде в състояние да създаде файл с име \". Htconfig.php\" в най-горната папка на вашия уеб сървър и не е в състояние да го направят."; -$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."] = "Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете."; -$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."] = "В края на тази процедура, ние ще ви дадем един текст, за да се запишете в файл с име. Htconfig.php в топ Friendica папка."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Можете като алтернатива да пропуснете тази процедура и да извърши ръчно инсталиране. Моля, вижте файла \"INSTALL.txt\", за инструкции."; -$a->strings[".htconfig.php is writable"] = ",. Htconfig.php е записваем"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/smarty3 is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL пренапише. Htaccess не работи. Проверете вашата конфигурация сървър."; -$a->strings["Url rewrite is working"] = ", Url пренаписванията работи"; -$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."] = "Конфигурационния файл на базата данни \". Htconfig.php\" не може да бъде написано. Моля, използвайте приложения текст, за да се създаде конфигурационен файл в основната си уеб сървър."; -$a->strings["

                                              What next

                                              "] = "

                                              Каква е следващата стъпка "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вие ще трябва да [ръчно] настройка на планирана задача за poller."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя."; -$a->strings["Unable to check your home location."] = "Не може да проверите вашето местоположение."; -$a->strings["No recipient."] = "Не получателя."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели."; -$a->strings["Help:"] = "Помощ"; -$a->strings["Help"] = "Помощ"; -$a->strings["Not Found"] = "Не е намерено"; -$a->strings["Page not found."] = "Страницата не е намерена."; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Welcome to %s"] = "Добре дошли %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"] = "Файл надхвърля ограничението за размера на %d"; -$a->strings["File upload failed."] = "Файл за качване не успя."; -$a->strings["Profile Match"] = "Профил мач"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Няма ключови думи, които да съвпадат. Моля, да добавяте ключови думи към вашия профил по подразбиране."; -$a->strings["is interested in:"] = "се интересува от:"; -$a->strings["Connect"] = "Свързване! "; -$a->strings["link"] = ""; -$a->strings["Not available."] = "Няма налични"; -$a->strings["Community"] = "Общност"; -$a->strings["No results."] = "Няма резултати."; -$a->strings["everybody"] = "всички"; -$a->strings["Additional features"] = "Допълнителни възможности"; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Delegations"] = ""; -$a->strings["Connected apps"] = "Свързани приложения"; -$a->strings["Export personal data"] = "Експортиране на личните данни"; -$a->strings["Remove account"] = "Премахване сметка"; -$a->strings["Missing some important data!"] = "Липсват някои важни данни!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки."; -$a->strings["Email settings updated."] = "Имейл настройки актуализира."; -$a->strings["Features updated"] = ""; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Паролите не съвпадат. Парола непроменен."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Празните пароли не са разрешени. Парола непроменен."; -$a->strings["Wrong password."] = "Неправилна парола"; -$a->strings["Password changed."] = "Парола промени."; -$a->strings["Password update failed. Please try again."] = "Парола актуализация се провали. Моля, опитайте отново."; -$a->strings[" Please use a shorter name."] = " Моля, използвайте по-кратко име."; -$a->strings[" Name too short."] = " Името е твърде кратко."; -$a->strings["Wrong Password"] = "Неправилна парола"; -$a->strings[" Not valid email."] = " Не валиден имейл."; -$a->strings[" Cannot change to that email."] = " Не може да е този имейл."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частен форум няма разрешения за неприкосновеността на личния живот. Използване подразбиране поверителност група."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частен форум няма разрешения за неприкосновеността на личния живот и никоя група по подразбиране неприкосновеността на личния живот."; -$a->strings["Settings updated."] = "Обновяването на настройките."; -$a->strings["Add application"] = "Добави приложение"; -$a->strings["Consumer Key"] = "Ключ на консуматора:"; -$a->strings["Consumer Secret"] = "Тайна стойност на консуматора:"; -$a->strings["Redirect"] = "Пренасочвания:"; -$a->strings["Icon url"] = "Икона URL"; -$a->strings["You can't edit this application."] = "Вие не можете да редактирате тази кандидатура."; -$a->strings["Connected Apps"] = "Свързани Apps"; -$a->strings["Client key starts with"] = "Ключ на клиента започва с"; -$a->strings["No name"] = "Без име"; -$a->strings["Remove authorization"] = "Премахване на разрешение"; -$a->strings["No Plugin settings configured"] = "Няма плъгин настройки, конфигурирани"; -$a->strings["Plugin Settings"] = "Plug-in Настройки"; -$a->strings["Off"] = "Изкл."; -$a->strings["On"] = "Вкл."; -$a->strings["Additional Features"] = "Допълнителни възможности"; -$a->strings["Built-in support for %s connectivity is %s"] = "Вградена поддръжка за връзка от %s %s"; -$a->strings["Diaspora"] = "Диаспора"; -$a->strings["enabled"] = "разрешен"; -$a->strings["disabled"] = "забранен"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Достъп до електронна поща е забранен на този сайт."; -$a->strings["Email/Mailbox Setup"] = "Email / Mailbox Setup"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия."; -$a->strings["Last successful email check:"] = "Последна успешна проверка на електронната поща:"; -$a->strings["IMAP server name:"] = "Име на IMAP сървъра:"; -$a->strings["IMAP port:"] = "IMAP порта:"; -$a->strings["Security:"] = "Сигурност"; -$a->strings["None"] = "Няма "; -$a->strings["Email login name:"] = "Email потребителско име:"; -$a->strings["Email password:"] = "Email парола:"; -$a->strings["Reply-to address:"] = "Адрес за отговор:"; -$a->strings["Send public posts to all email contacts:"] = "Изпратете публични длъжности за всички имейл контакти:"; -$a->strings["Action after import:"] = "Действия след вноса:"; -$a->strings["Mark as seen"] = "Марк, както се вижда"; -$a->strings["Move to folder"] = "Премества избраното в папка"; -$a->strings["Move to folder:"] = "Премества избраното в папка"; -$a->strings["Display Settings"] = "Настройки на дисплея"; -$a->strings["Display Theme:"] = "Палитрата на дисплея:"; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = "Актуализиране на браузъра на всеки ХХ секунди"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунди, няма определен максимален"; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = "Максимум от 100 точки"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = "Да не се показват емотикони"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = "Нормално страницата с профила"; -$a->strings["This account is a normal personal profile"] = "Тази сметка е нормален личен профил"; -$a->strings["Soapbox Page"] = "Импровизирана трибуна Page"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматично одобрява всички / приятел искания само за четене фенове"; -$a->strings["Community Forum/Celebrity Account"] = "Community Forum / Celebrity"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматично одобрява всички / приятел исканията фенове за четене и запис"; -$a->strings["Automatic Friend Page"] = "Автоматично приятел Page"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматично одобрява всички / молби за приятелство, като приятели"; -$a->strings["Private Forum [Experimental]"] = "Частен форум [експериментална]"; -$a->strings["Private forum - approved members only"] = "Само частен форум - Одобрени членове"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(По избор) позволяват това OpenID, за да влезете в тази сметка."; -$a->strings["Publish your default profile in your local site directory?"] = "Публикуване на вашия профил по подразбиране във вашата локална директория на сайта?"; -$a->strings["No"] = "Не"; -$a->strings["Publish your default profile in the global social directory?"] = "Публикуване на вашия профил по подразбиране в глобалната социална директория?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скриване на вашия контакт / списък приятел от зрителите на вашия профил по подразбиране?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Скриване на детайли от профила си от неизвестни зрители?"; -$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?"] = "Оставете приятели, които да публикувате в страницата с вашия профил?"; -$a->strings["Allow friends to tag your posts?"] = "Оставете приятели, за да маркирам собствените си мнения?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позволете ни да Ви предложи като потенциален приятел за нови членове?"; -$a->strings["Permit unknown people to send you private mail?"] = "Разрешение непознати хора, за да ви Изпратете лично поща?"; -$a->strings["Profile is not published."] = "Профил не се публикува ."; -$a->strings["Your Identity Address is"] = "Адрес на вашата самоличност е"; -$a->strings["Automatically expire posts after this many days:"] = "Автоматично изтича мнения след толкова много дни:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити"; -$a->strings["Advanced expiration settings"] = "Разширени настройки за изтичане на срока"; -$a->strings["Advanced Expiration"] = "Разширено Изтичане"; -$a->strings["Expire posts:"] = "Срок на мнения:"; -$a->strings["Expire personal notes:"] = "Срок на лични бележки:"; -$a->strings["Expire starred posts:"] = "Срок със звезда на мнения:"; -$a->strings["Expire photos:"] = "Срок на снимки:"; -$a->strings["Only expire posts by others:"] = "Само изтича мнения от други:"; -$a->strings["Account Settings"] = "Настройки на профила"; -$a->strings["Password Settings"] = "Парола Настройки"; -$a->strings["New Password:"] = "нова парола"; -$a->strings["Confirm:"] = "Потвърждаване..."; -$a->strings["Leave password fields blank unless changing"] = "Оставете паролите полета празни, освен ако промяна"; -$a->strings["Current Password:"] = "Текуща парола:"; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = "Парола"; -$a->strings["Basic Settings"] = "Основни настройки"; -$a->strings["Full Name:"] = "Собствено и фамилно име"; -$a->strings["Email Address:"] = "Електронна поща:"; -$a->strings["Your Timezone:"] = "Вашият Часовата зона:"; -$a->strings["Default Post Location:"] = "Мнение местоположението по подразбиране:"; -$a->strings["Use Browser Location:"] = "Използвайте Browser Местоположение:"; -$a->strings["Security and Privacy Settings"] = "Сигурност и и лични настройки"; -$a->strings["Maximum Friend Requests/Day:"] = "Максимален брой молби за приятелство / ден:"; -$a->strings["(to prevent spam abuse)"] = "(Да се ​​предотврати спама злоупотреба)"; -$a->strings["Default Post Permissions"] = "Разрешения по подразбиране и"; -$a->strings["(click to open/close)"] = "(Щракнете за отваряне / затваряне)"; -$a->strings["Show to Groups"] = "Показване на групи"; -$a->strings["Show to Contacts"] = "Показване на контакти"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = "Максимални лични съобщения на ден от непознати хора:"; -$a->strings["Notification Settings"] = "Настройки за уведомяване"; -$a->strings["By default post a status message when:"] = "По подразбиране се публикуват съобщение за състояние, когато:"; -$a->strings["accepting a friend request"] = "приемане на искането за приятел"; -$a->strings["joining a forum/community"] = "присъединяване форум / общността"; -$a->strings["making an interesting profile change"] = "един интересен Смяна на профил"; -$a->strings["Send a notification email when:"] = "Изпращане на известие по имейл, когато:"; -$a->strings["You receive an introduction"] = "Вие получавате въведение"; -$a->strings["Your introductions are confirmed"] = "Вашите въвеждания са потвърдени"; -$a->strings["Someone writes on your profile wall"] = "Някой пише в профила ви стена"; -$a->strings["Someone writes a followup comment"] = "Някой пише последващ коментар"; -$a->strings["You receive a private message"] = "Ще получите лично съобщение"; -$a->strings["You receive a friend suggestion"] = "Ще получите предложение приятел"; -$a->strings["You are tagged in a post"] = "Са маркирани в един пост"; -$a->strings["You are poked/prodded/etc. in a 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"] = "Разширено сметка / Настройки на вид страница"; -$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."] = "Това въведение е вече е приета."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Профил местоположение не е валиден или не съдържа информация на профила."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: профила място има няма установен име на собственика."; -$a->strings["Warning: profile location has no profile photo."] = "Внимание: профила местоположение не е снимката на профила."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "", - 1 => "", -); -$a->strings["Introduction complete."] = "Въведение завърши."; -$a->strings["Unrecoverable protocol error."] = "Невъзстановима протокол грешка."; -$a->strings["Profile unavailable."] = "Профил недостъпни."; -$a->strings["%s has received too many connection requests today."] = "%s е получил твърде много заявки за свързване днес."; -$a->strings["Spam protection measures have been invoked."] = "Мерките за защита срещу спам да бъдат изтъкнати."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Приятели се препоръчва да се моля опитайте отново в рамките на 24 часа."; -$a->strings["Invalid locator"] = "Невалиден локатор"; -$a->strings["Invalid email address."] = "Невалиден имейл адрес."; -$a->strings["This account has not been configured for email. Request failed."] = "Този профил не е конфигуриран за електронна поща. Заявката не бе успешна."; -$a->strings["Unable to resolve your name at the provided location."] = "Не може да се разреши името си на предвиденото място."; -$a->strings["You have already introduced yourself here."] = "Вие вече се въведе тук."; -$a->strings["Apparently you are already friends with %s."] = "Явно вече сте приятели с %s ."; -$a->strings["Invalid profile URL."] = "Невалиден URL адрес на профила."; -$a->strings["Disallowed profile URL."] = "Отхвърлен профила URL."; -$a->strings["Your introduction has been sent."] = "Вашият въвеждането е било изпратено."; -$a->strings["Please login to confirm introduction."] = "Моля, влезте, за да потвърди въвеждането."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Неправилно идентичност, който в момента е логнат. Моля, влезте с потребителско име и парола на този профил ."; -$a->strings["Hide this contact"] = "Скриване на този контакт"; -$a->strings["Welcome home %s."] = "Добре дошли у дома %s ."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Моля, потвърдете, въвеждане / заявката за свързване към %s ."; -$a->strings["Confirm"] = "Потвърждаване"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Моля, въведете \"Идентичност Адрес\" от един от следните поддържани съобщителни мрежи:"; -$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."] = "Ако все още не сте член на безплатна социална мрежа, href=\"http://dir.friendica.com/siteinfo\"> ."; -$a->strings["Friend/Connection Request"] = "Приятел / заявка за връзка"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примери: jojo@demo.friendica.com~~HEAD=NNS, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Моля отговорете на следните:"; -$a->strings["Does %s know you?"] = "Има ли %s знаете?"; -$a->strings["Add a personal note:"] = "Добавяне на лична бележка:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Федерални социална мрежа"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - Моля, не използвайте тази форма. Вместо това въведете %s в търсенето диаспора бар."; -$a->strings["Your Identity Address:"] = "Адрес на вашата самоличност:"; -$a->strings["Submit Request"] = "Изпращане на заявката"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции."; -$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."] = "Вашата регистрация не могат да бъдат обработени."; -$a->strings["Your registration is pending approval by the site owner."] = "Вашата регистрация е в очакване на одобрение от собственика на сайта."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Може да се (по желание) да попълните този формуляр, чрез OpenID чрез предоставяне на OpenID си и кликнете върху \"Регистрация\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите."; -$a->strings["Your OpenID (optional): "] = "Вашият OpenID (не е задължително): "; -$a->strings["Include your profile in member directory?"] = "Включете вашия профил в член директория?"; -$a->strings["Membership on this site is by invitation only."] = "Членството на този сайт е само с покани."; -$a->strings["Your invitation ID: "] = "Вашата покана ID: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Пълното си име (напр. Джо Смит): "; -$a->strings["Your Email Address: "] = "Вашият 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'."] = "Изберете прякор профил. Това трябва да започне с текст характер. Вашият профил адреса на този сайт ще бъде \" прякор @ $ на SITENAME \"."; -$a->strings["Choose a nickname: "] = "Изберете прякор: "; -$a->strings["Register"] = "Регистратор"; -$a->strings["Import"] = "Внасяне"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["System down for maintenance"] = ""; -$a->strings["Search"] = "Търсене"; -$a->strings["Global Directory"] = "Глобален справочник"; -$a->strings["Find on this site"] = "Търсене в този сайт"; -$a->strings["Site Directory"] = "Site Directory"; -$a->strings["Age: "] = "Възраст: "; -$a->strings["Gender: "] = "Пол: "; -$a->strings["Gender:"] = "Пол:"; -$a->strings["Status:"] = "Състояние:"; -$a->strings["Homepage:"] = "Начална страница:"; -$a->strings["About:"] = "това ?"; -$a->strings["No entries (some entries may be hidden)."] = "Няма записи (някои вписвания, могат да бъдат скрити)."; -$a->strings["No potential page delegates located."] = "Няма потенциални делегати на страницата намира."; -$a->strings["Delegate Page Management"] = "Участник, за управление на страница"; -$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."] = "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно."; -$a->strings["Existing Page Managers"] = "Съществуващите Мениджъри"; -$a->strings["Existing Page Delegates"] = "Съществуващите Делегатите Страница"; -$a->strings["Potential Delegates"] = "Потенциални Делегатите"; -$a->strings["Add"] = "Добави"; -$a->strings["No entries."] = "няма регистрирани"; -$a->strings["Common Friends"] = "Общи приятели"; -$a->strings["No contacts in common."] = "Няма контакти по-чести."; -$a->strings["Export 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."] = ""; -$a->strings["Export all"] = "Изнасяне на всичко"; -$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)"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = "Настроение"; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Do you really want to delete this suggestion?"] = "Наистина ли искате да изтриете това предложение?"; -$a->strings["Friend Suggestions"] = "Предложения за приятели"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа."; -$a->strings["Ignore/Hide"] = "Игнорирай / Скрий"; -$a->strings["Profile deleted."] = "Изтрит профил."; -$a->strings["Profile-"] = "Височина на профила"; -$a->strings["New profile created."] = "Нов профил е създаден."; -$a->strings["Profile unavailable to clone."] = "Профил недостъпна да се клонират."; -$a->strings["Profile Name is required."] = "Име на профил се изисква."; -$a->strings["Marital Status"] = "Семейно положение"; -$a->strings["Romantic Partner"] = "Романтичен партньор"; -$a->strings["Likes"] = "Харесвания"; -$a->strings["Dislikes"] = "Нехаресвания"; -$a->strings["Work/Employment"] = "Работа / заетост"; -$a->strings["Religion"] = "Вероизповедание:"; -$a->strings["Political Views"] = "Политически възгледи"; -$a->strings["Gender"] = "Пол"; -$a->strings["Sexual Preference"] = "Сексуални предпочитания"; -$a->strings["Homepage"] = "Начална страница"; -$a->strings["Interests"] = "Интереси"; -$a->strings["Address"] = "Адрес"; -$a->strings["Location"] = "Местоположение "; -$a->strings["Profile updated."] = "Профил актуализиран."; -$a->strings[" and "] = " и "; -$a->strings["public profile"] = "публичен профил"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s променя %2\$s %3\$s 3 $ S "; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Посещение %1\$s на %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s има актуализиран %2\$s , промяна %3\$s ."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скриване на вашия контакт / списък приятел от зрителите на този профил?"; -$a->strings["Edit Profile Details"] = "Редактиране на детайли от профила"; -$a->strings["Change Profile Photo"] = "Промяна снимката на профила"; -$a->strings["View this profile"] = "Виж този профил"; -$a->strings["Create a new profile using these settings"] = "Създаване на нов профил, използвайки тези настройки"; -$a->strings["Clone this profile"] = "Клонираме тази профила"; -$a->strings["Delete this profile"] = "Изтриване на този профил"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Име на профила"; -$a->strings["Your Full Name:"] = "Пълното си име:"; -$a->strings["Title/Description:"] = "Наименование/Описание"; -$a->strings["Your Gender:"] = "Пол:"; -$a->strings["Birthday (%s):"] = "Рожден ден ( %s ):"; -$a->strings["Street Address:"] = "Адрес:"; -$a->strings["Locality/City:"] = "Махала / Град:"; -$a->strings["Postal/Zip Code:"] = "Postal / Zip Code:"; -$a->strings["Country:"] = "Държава:"; -$a->strings["Region/State:"] = "Регион / Щат:"; -$a->strings[" Marital Status:"] = " Семейно положение:"; -$a->strings["Who: (if applicable)"] = "Кой: (ако е приложимо)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примери: cathy123, Кати Уилямс, cathy@example.com"; -$a->strings["Since [date]:"] = "От [дата]:"; -$a->strings["Sexual Preference:"] = "Сексуални предпочитания:"; -$a->strings["Homepage URL:"] = "Електронна страница:"; -$a->strings["Hometown:"] = "Hometown:"; -$a->strings["Political Views:"] = "Политически възгледи:"; -$a->strings["Religious Views:"] = "Религиозни възгледи:"; -$a->strings["Public Keywords:"] = "Публичните Ключови думи:"; -$a->strings["Private Keywords:"] = "Частни Ключови думи:"; -$a->strings["Likes:"] = "Харесвания:"; -$a->strings["Dislikes:"] = "Нехаресвания:"; -$a->strings["Example: fishing photography software"] = "Пример: софтуер за риболов фотография"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Използва се за предполагайки потенциален приятели, може да се види от други)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Използва се за търсене на профилите, никога не показва и на други)"; -$a->strings["Tell us about yourself..."] = "Разкажете ни за себе си ..."; -$a->strings["Hobbies/Interests"] = "Хобита / интереси"; -$a->strings["Contact information and Social Networks"] = "Информация за контакти и социални мрежи"; -$a->strings["Musical interests"] = "Музикални интереси"; -$a->strings["Books, literature"] = "Книги, литература"; -$a->strings["Television"] = "Телевизия"; -$a->strings["Film/dance/culture/entertainment"] = "Филм / танц / Култура / забавления"; -$a->strings["Love/romance"] = "Любов / романтика"; -$a->strings["Work/employment"] = "Работа / заетост"; -$a->strings["School/education"] = "Училище / образование"; -$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Това е вашата публично профил.
                                              Май да бъде видим за всеки, който с помощта на интернет."; -$a->strings["Edit/Manage Profiles"] = "Редактиране / Управление на профили"; -$a->strings["Change profile photo"] = "Промяна на снимката на профил"; -$a->strings["Create New Profile"] = "Създай нов профил"; -$a->strings["Profile Image"] = "Профил на изображението"; -$a->strings["visible to everybody"] = "видими за всички"; -$a->strings["Edit visibility"] = "Редактиране на видимост"; -$a->strings["Item not found"] = "Елемент не е намерена"; -$a->strings["Edit post"] = "Редактиране на мнение"; -$a->strings["upload photo"] = "качване на снимка"; -$a->strings["Attach file"] = "Прикачване на файл"; -$a->strings["attach file"] = "Прикачване на файл"; -$a->strings["web link"] = "Уеб-линк"; -$a->strings["Insert video link"] = "Поставете линка на видео"; -$a->strings["video link"] = "видео връзка"; -$a->strings["Insert audio link"] = "Поставете аудио връзка"; -$a->strings["audio link"] = "аудио връзка"; -$a->strings["Set your location"] = "Задайте местоположението си"; -$a->strings["set location"] = "Задаване на местоположението"; -$a->strings["Clear browser location"] = "Изчистване на браузъра място"; -$a->strings["clear location"] = "ясно място"; -$a->strings["Permission settings"] = "Настройките за достъп"; -$a->strings["CC: email addresses"] = "CC: имейл адреси"; -$a->strings["Public post"] = "Обществена длъжност"; -$a->strings["Set title"] = "Задайте заглавие"; -$a->strings["Categories (comma-separated list)"] = "Категории (разделен със запетаи списък)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Това е Friendica, версия"; -$a->strings["running at web location"] = "работи в уеб сайта,"; -$a->strings["Please visit
                                              Friendica.com to learn more about the Friendica project."] = "Моля, посетете Friendica.com , за да научите повече за проекта на Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Доклади за грешки и проблеми: моля посетете"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвали, дарения и т.н. - моля пишете \"Инфо\" в Friendica - Dot Com"; -$a->strings["Installed plugins/addons/apps:"] = "Инсталираните приставки / Addons / Apps:"; -$a->strings["No installed plugins/addons/apps"] = "Няма инсталирани плъгини / Addons / приложения"; -$a->strings["Authorize application connection"] = "Разрешава връзка с прилагането"; -$a->strings["Return to your app and insert this Securty Code:"] = "Назад към приложението ти и поставите този Securty код:"; -$a->strings["Please login to continue."] = "Моля, влезте, за да продължите."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?"; -$a->strings["Remote privacy information not available."] = "Дистанционно неприкосновеността на личния живот информация не е достъпен."; -$a->strings["Visible to:"] = "Вижда се от:"; -$a->strings["Personal Notes"] = "Личните бележки"; -$a->strings["l F d, Y \\@ g:i A"] = "L F г, Y \\ @ G: I A"; -$a->strings["Time Conversion"] = "Време за преобразуване"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; -$a->strings["UTC time: %s"] = "UTC време: %s"; -$a->strings["Current timezone: %s"] = "Текуща часова зона: %s"; -$a->strings["Converted localtime: %s"] = "Превърнат localtime: %s"; -$a->strings["Please select your timezone:"] = "Моля изберете вашия часовата зона:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = "Получател"; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = "%s не е валиден имейл адрес."; -$a->strings["Please join us on Friendica"] = "Моля, присъединете се към нас на Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = "%s : Съобщение доставка не успя."; -$a->strings["%d message sent."] = array( - 0 => "", - 1 => "", -); -$a->strings["You have no more invitations available"] = "Имате няма повече покани"; -$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."] = "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica."; -$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 сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове."; -$a->strings["Send invitations"] = "Изпращане на покани"; -$a->strings["Enter email addresses, one per line:"] = "Въведете имейл адреси, по един на ред:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вие ще трябва да предоставят този код за покана: $ invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "За повече информация за проекта Friendica и защо ние смятаме, че е важно, моля посетете http://friendica.com"; -$a->strings["Photo Albums"] = "Фотоалбуми"; -$a->strings["Contact Photos"] = "Свържете снимки"; -$a->strings["Upload New Photos"] = "Качване на нови снимки"; -$a->strings["Contact information unavailable"] = "Свържете се с информация недостъпна"; -$a->strings["Album not found."] = "Албумът не е намерен."; -$a->strings["Delete Album"] = "Изтриване на албума"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; -$a->strings["Delete Photo"] = "Изтриване на снимка"; -$a->strings["Do you really want to delete this photo?"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; -$a->strings["Image exceeds size limit of "] = "Изображението надвишава ограничението за размера на "; -$a->strings["Image file is empty."] = "Image файл е празен."; -$a->strings["No photos selected"] = "Няма избрани снимки"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["Upload Photos"] = "Качване на снимки"; -$a->strings["New album name: "] = "Нов албум име: "; -$a->strings["or existing album name: "] = "или съществуващо име на албума: "; -$a->strings["Do not show a status post for this upload"] = "Да не се показва след статут за това качване"; -$a->strings["Permissions"] = "права"; -$a->strings["Private Photo"] = "Частна снимка"; -$a->strings["Public Photo"] = "Публична снимка"; -$a->strings["Edit Album"] = "Редактиране на албум"; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; -$a->strings["View Photo"] = "Преглед на снимка"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено."; -$a->strings["Photo not available"] = "Снимката не е"; -$a->strings["View photo"] = "Преглед на снимка"; -$a->strings["Edit photo"] = "Редактиране на снимка"; -$a->strings["Use as profile photo"] = "Използва се като снимката на профила"; -$a->strings["View Full Size"] = "Изглед в пълен размер"; -$a->strings["Tags: "] = "Маркери: "; -$a->strings["[Remove any tag]"] = "Премахване на всякаква маркировка]"; -$a->strings["Rotate CW (right)"] = "Rotate CW (вдясно)"; -$a->strings["Rotate CCW (left)"] = "Завъртане ККО (вляво)"; -$a->strings["New album name"] = "Ново име на албум"; -$a->strings["Caption"] = "Надпис"; -$a->strings["Add a Tag"] = "Добавите етикет"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг"; -$a->strings["Private photo"] = "Частна снимка"; -$a->strings["Public photo"] = "Публична снимка"; -$a->strings["Share"] = "дял,%"; -$a->strings["Recent Photos"] = "Последни снимки"; -$a->strings["Account approved."] = "Сметка одобрен."; -$a->strings["Registration revoked for %s"] = "Регистрация отменено за %s"; -$a->strings["Please login."] = "Моля, влезте."; -$a->strings["Move account"] = ""; -$a->strings["You can import an account from another Friendica server."] = ""; -$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."] = ""; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Item not available."] = "Които не са на разположение."; -$a->strings["Item was not found."] = "Елемент не е намерен."; -$a->strings["Delete this item?"] = "Изтриване на тази бележка?"; -$a->strings["show fewer"] = "показват по-малко"; -$a->strings["Update %s failed. See error logs."] = "Актуализация %s не успя. Виж логовете за грешки."; -$a->strings["Create a New Account"] = "Създаване на нов профил:"; -$a->strings["Logout"] = "изход"; -$a->strings["Nickname or Email address: "] = "Псевдоним или имейл адрес: "; -$a->strings["Password: "] = "Парола "; -$a->strings["Remember me"] = ""; -$a->strings["Or login using OpenID: "] = "Или да влезнете с OpenID: "; -$a->strings["Forgot your password?"] = "Забравена парола?"; -$a->strings["Website Terms of Service"] = "Условия за ползване на сайта"; -$a->strings["terms of service"] = "условия за ползване"; -$a->strings["Website Privacy Policy"] = "Политика за поверителност на сайта"; -$a->strings["privacy policy"] = "политика за поверителност"; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Редактиране на потребителския профил"; -$a->strings["Message"] = "Съобщение"; -$a->strings["Profiles"] = "Профили "; -$a->strings["Manage/edit profiles"] = "Управление / редактиране на профили"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "грама Л Е г"; -$a->strings["F d"] = "F г"; -$a->strings["[today]"] = "Днес"; -$a->strings["Birthday Reminders"] = "Напомняния за рождени дни"; -$a->strings["Birthdays this week:"] = "Рождени дни този Седмица:"; -$a->strings["[No description]"] = "[Няма описание]"; -$a->strings["Event Reminders"] = "Напомняния"; -$a->strings["Events this week:"] = "Събития тази седмица:"; -$a->strings["Status"] = "Състояние:"; -$a->strings["Status Messages and Posts"] = "Съобщения за състоянието и пощи"; -$a->strings["Profile Details"] = "Детайли от профила"; -$a->strings["Videos"] = "Видеоклипове"; -$a->strings["Events and Calendar"] = "Събития и календарни"; -$a->strings["Only You Can See This"] = "Можете да видите това"; -$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:"] = "Категории:"; -$a->strings["Filed under:"] = "Записано в:"; -$a->strings["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."] = "Грешки, възникнали създаване на таблиците в базата данни."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Изход"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията."; -$a->strings["The error message was:"] = "Съобщението за грешка е:"; $a->strings["Add New Contact"] = "Добавяне на нов контакт"; $a->strings["Enter address or web location"] = "Въведете местоположение на адрес или уеб"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Свързване! "; $a->strings["%d invitation available"] = array( 0 => "", 1 => "", @@ -1305,6 +17,8 @@ $a->strings["Find People"] = "Намерете хора,"; $a->strings["Enter name or interest"] = "Въведете името или интерес"; $a->strings["Connect/Follow"] = "Свържете се / последваща"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Примери: Робърт Morgenstein, Риболов"; +$a->strings["Find"] = "Търсене"; +$a->strings["Friend Suggestions"] = "Предложения за приятели"; $a->strings["Similar Interests"] = "Сходни интереси"; $a->strings["Random Profile"] = "Случайна Профил"; $a->strings["Invite Friends"] = "Покани приятели"; @@ -1313,321 +27,13 @@ $a->strings["All Networks"] = "Всички мрежи"; $a->strings["Saved Folders"] = "Записани папки"; $a->strings["Everything"] = "Всичко"; $a->strings["Categories"] = "Категории"; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$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"] = ""; -$a->strings["Search by Date"] = "Търсене по дата"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = "Мрежов филтър"; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$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."] = "Свързване URL липсва."; -$a->strings["This site is not configured to allow communications with other networks."] = "Този сайт не е конфигуриран да позволява комуникация с други мрежи."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Няма съвместими комуникационни протоколи или фуражите не са били открити."; -$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."] = "Не браузър URL може да съвпадне с този адрес."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл."; -$a->strings["Use mailto: in front of address to force email check."] = "Използвайте mailto: пред адрес, за да принуди проверка на имейл."; -$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."] = "Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас."; -$a->strings["Unable to retrieve contact information."] = "Не мога да получа информация за контакт."; -$a->strings["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."] = "Изтрита група с това име се възражда. Съществуващ елемент от разрешения май се прилагат към тази група и всички бъдещи членове. Ако това не е това, което сте възнамерявали, моля да се създаде друга група с различно име."; -$a->strings["Default privacy group for new contacts"] = "Неприкосновеността на личния живот на група по подразбиране за нови контакти"; -$a->strings["Everybody"] = "Всички"; -$a->strings["edit"] = "редактиране"; -$a->strings["Edit group"] = "Редактиране на групата"; -$a->strings["Create a new group"] = "Създайте нова група"; -$a->strings["Contacts not in any group"] = "Контакти, не във всяка група"; -$a->strings["Miscellaneous"] = "Разни"; -$a->strings["year"] = "година"; -$a->strings["month"] = "месец."; -$a->strings["day"] = "Ден:"; -$a->strings["never"] = "никога"; -$a->strings["less than a second ago"] = "по-малко, отколкото преди секунда"; -$a->strings["years"] = "година"; -$a->strings["months"] = "месеца"; -$a->strings["week"] = "седмица"; -$a->strings["weeks"] = "седмица"; -$a->strings["days"] = "дни."; -$a->strings["hour"] = "Час:"; -$a->strings["hours"] = "часа"; -$a->strings["minute"] = "Минута"; -$a->strings["minutes"] = "протокол"; -$a->strings["second"] = "секунди. "; -$a->strings["seconds"] = "секунди. "; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s преди"; -$a->strings["%s's birthday"] = ""; -$a->strings["Happy Birthday %s"] = "Честит рожден ден, %s!"; -$a->strings["Visible to everybody"] = "Видими за всички"; -$a->strings["show"] = "Покажи:"; -$a->strings["don't show"] = "не показват"; -$a->strings["[no subject]"] = "[Без тема]"; -$a->strings["stopped following"] = "спря след"; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = "Показване на състоянието"; -$a->strings["View Profile"] = "Преглед на профил"; -$a->strings["View Photos"] = "Вижте снимки"; -$a->strings["Network Posts"] = "Мрежови Мнения"; -$a->strings["Edit Contact"] = "Редактиране на контакт"; -$a->strings["Drop Contact"] = ""; -$a->strings["Send PM"] = "Изпратете PM"; -$a->strings["Welcome "] = "Добре дошли "; -$a->strings["Please upload a profile photo."] = "Моля, да качите снимка профил."; -$a->strings["Welcome back "] = "Здравейте отново! "; -$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."] = "Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи."; -$a->strings["event"] = "събитието."; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["poked"] = ""; -$a->strings["post/item"] = "длъжност / позиция"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s маркираната %2\$s - %3\$s като предпочитано"; -$a->strings["remove"] = "Премахване"; -$a->strings["Delete Selected Items"] = "Изтриване на избраните елементи"; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = "%s харесва това."; -$a->strings["%s doesn't like this."] = "%s не харесва това."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["and"] = "и"; -$a->strings[", and %d other people"] = ", И %d други хора"; -$a->strings["%s like this."] = "%s като този."; -$a->strings["%s don't like this."] = "%s не ви харесва това."; -$a->strings["Visible to everybody"] = "Видим всички "; -$a->strings["Please enter a video link/URL:"] = "Моля въведете видео връзка / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Моля въведете аудио връзка / URL:"; -$a->strings["Tag term:"] = "Tag термин:"; -$a->strings["Where are you right now?"] = "Къде сте в момента?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["Post to Email"] = "Коментар на e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["permissions"] = "права"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = ""; -$a->strings["view full size"] = "видите в пълен размер"; -$a->strings["newer"] = ""; -$a->strings["older"] = ""; -$a->strings["prev"] = "Пред."; -$a->strings["first"] = "Първа"; -$a->strings["last"] = "Дата на последния одит. "; -$a->strings["next"] = "следващ"; -$a->strings["No contacts"] = "Няма контакти"; -$a->strings["%d Contact"] = array( +$a->strings["%d contact in common"] = array( 0 => "", 1 => "", ); -$a->strings["poke"] = ""; -$a->strings["ping"] = ""; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = ""; -$a->strings["slapped"] = ""; -$a->strings["finger"] = ""; -$a->strings["fingered"] = ""; -$a->strings["rebuff"] = ""; -$a->strings["rebuffed"] = ""; -$a->strings["happy"] = ""; -$a->strings["sad"] = ""; -$a->strings["mellow"] = ""; -$a->strings["tired"] = ""; -$a->strings["perky"] = ""; -$a->strings["angry"] = ""; -$a->strings["stupified"] = ""; -$a->strings["puzzled"] = ""; -$a->strings["interested"] = ""; -$a->strings["bitter"] = ""; -$a->strings["cheerful"] = ""; -$a->strings["alive"] = ""; -$a->strings["annoyed"] = ""; -$a->strings["anxious"] = ""; -$a->strings["cranky"] = ""; -$a->strings["disturbed"] = ""; -$a->strings["frustrated"] = ""; -$a->strings["motivated"] = ""; -$a->strings["relaxed"] = ""; -$a->strings["surprised"] = ""; -$a->strings["Monday"] = "Понеделник"; -$a->strings["Tuesday"] = "Вторник"; -$a->strings["Wednesday"] = "Сряда"; -$a->strings["Thursday"] = "Четвъртък"; -$a->strings["Friday"] = "Петък"; -$a->strings["Saturday"] = "Събота"; -$a->strings["Sunday"] = "Неделя"; -$a->strings["January"] = "януари"; -$a->strings["February"] = "февруари"; -$a->strings["March"] = "март"; -$a->strings["April"] = "април"; -$a->strings["May"] = "Май"; -$a->strings["June"] = "юни"; -$a->strings["July"] = "юли"; -$a->strings["August"] = "август"; -$a->strings["September"] = "септември"; -$a->strings["October"] = "октомври"; -$a->strings["November"] = "ноември"; -$a->strings["December"] = "декември"; -$a->strings["bytes"] = "байта"; -$a->strings["Click to open/close"] = "Кликнете за отваряне / затваряне"; -$a->strings["default"] = "預設值"; -$a->strings["Select an alternate language"] = "Избор на заместник език"; -$a->strings["activity"] = "дейност"; -$a->strings["post"] = "след"; -$a->strings["Item filed"] = "Т. подава"; -$a->strings["Image/photo"] = "Изображение / снимка"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$ 1 пише:"; -$a->strings["Encrypted content"] = "Шифрирано съдържание"; -$a->strings["(no subject)"] = "(Без тема)"; -$a->strings["noreply"] = "noreply"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Не може да намери DNS информация за сървъра на базата данни \" %s \""; -$a->strings["Unknown | Not categorised"] = "Неизвестен | Без категория"; -$a->strings["Block immediately"] = "Блок веднага"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, спамър, самостоятелно маркетолог"; -$a->strings["Known to me, but no opinion"] = "Известно е, че мен, но липса на становище"; -$a->strings["OK, probably harmless"] = "ОК, вероятно безвреден"; -$a->strings["Reputable, has my trust"] = "Репутация, има ми доверие"; -$a->strings["Weekly"] = "Седмично"; -$a->strings["Monthly"] = "Месечено"; -$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"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; -$a->strings["App.net"] = ""; -$a->strings[" on Last.fm"] = " на Last.fm"; -$a->strings["Starts:"] = "Започва:"; -$a->strings["Finishes:"] = "Играчи:"; -$a->strings["j F, Y"] = "J F, Y"; -$a->strings["j F"] = "J F"; -$a->strings["Birthday:"] = "Дата на раждане:"; -$a->strings["Age:"] = "Възраст:"; -$a->strings["for %1\$d %2\$s"] = "за %1\$d %2\$s"; -$a->strings["Tags:"] = "Маркери:"; -$a->strings["Religion:"] = "Вероизповедание:"; -$a->strings["Hobbies/Interests:"] = "Хобита / Интереси:"; -$a->strings["Contact information and Social Networks:"] = "Информация за контакти и социални мрежи:"; -$a->strings["Musical interests:"] = "Музикални интереси:"; -$a->strings["Books, literature:"] = "Книги, литература:"; -$a->strings["Television:"] = "Телевизия:"; -$a->strings["Film/dance/culture/entertainment:"] = "Филм / танц / Култура / развлечения:"; -$a->strings["Love/Romance:"] = "Любов / Romance:"; -$a->strings["Work/employment:"] = "Работа / заетост:"; -$a->strings["School/education:"] = "Училище / образование:"; -$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"] = "Край на тази сесия"; -$a->strings["Your posts and conversations"] = "Вашите мнения и разговори"; -$a->strings["Your profile page"] = "Вашият профил страница"; -$a->strings["Your photos"] = "Вашите снимки"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Събитията си"; -$a->strings["Personal notes"] = "Личните бележки"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Вход"; -$a->strings["Home Page"] = "Начална страница"; -$a->strings["Create an account"] = "Създаване на сметка"; -$a->strings["Help and documentation"] = "Помощ и документация"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Адон приложения, помощни програми, игри"; -$a->strings["Search site content"] = "Търсене в сайта съдържание"; -$a->strings["Conversations on this site"] = "Разговори на този сайт"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "директория"; -$a->strings["People directory"] = "Хората директория"; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Разговори от вашите приятели"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = "Молби за приятелство"; -$a->strings["See all notifications"] = "Вижте всички нотификации"; -$a->strings["Mark all system notifications seen"] = "Марк виждали уведомления всички системни"; -$a->strings["Private mail"] = "Частна поща"; -$a->strings["Inbox"] = "Вх. поща"; -$a->strings["Outbox"] = "Изходящи"; -$a->strings["Manage"] = "Управление"; -$a->strings["Manage other pages"] = "Управление на други страници"; -$a->strings["Account settings"] = "Настройки на профила"; -$a->strings["Manage/Edit Profiles"] = ""; -$a->strings["Manage/edit friends and contacts"] = "Управление / редактиране на приятели и контакти"; -$a->strings["Site setup and configuration"] = "Настройка и конфигуриране на сайта"; -$a->strings["Navigation"] = "Навигация"; -$a->strings["Site map"] = "Карта на сайта"; -$a->strings["User not found."] = ""; -$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."] = ""; -$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."] = "Се изисква покана."; -$a->strings["Invitation could not be verified."] = "Покана не може да бъде проверена."; -$a->strings["Invalid OpenID url"] = "Невалиден URL OpenID"; -$a->strings["Please enter the required information."] = "Моля, въведете необходимата информация."; -$a->strings["Please use a shorter name."] = "Моля, използвайте по-кратко име."; -$a->strings["Name too short."] = "Името е твърде кратко."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Това не изглежда да е пълен (първи Последно) име."; -$a->strings["Your email domain is not among those allowed on this site."] = "Вашият имейл домейн не е сред тези, разрешени на този сайт."; -$a->strings["Not a valid email address."] = "Не е валиден имейл адрес."; -$a->strings["Cannot use that email."] = "Не може да се използва този имейл."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Вашият \"прякор\" може да съдържа \"Аз\", \"0-9\", \"-\"и\"_\", и също така трябва да започва с буква."; -$a->strings["Nickname is already registered. Please choose another."] = "Псевдоним вече е регистрирано. Моля, изберете друга."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Псевдоним някога е бил регистриран тук и не могат да се използват повторно. Моля, изберете друга."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Сериозна грешка: генериране на ключове за защита не успя."; -$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"] = "Приятели"; -$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:"] = "Приложения"; -$a->strings["Do you really want to delete this item?"] = ""; -$a->strings["Archives"] = "Архиви"; +$a->strings["show more"] = "покажи още"; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; $a->strings["Male"] = "Мъжки"; $a->strings["Female"] = "Женски"; $a->strings["Currently Male"] = "В момента Мъж"; @@ -1641,7 +47,10 @@ $a->strings["Hermaphrodite"] = "Хермафродит"; $a->strings["Neuter"] = "Среден род"; $a->strings["Non-specific"] = "Неспецифичен"; $a->strings["Other"] = "Друг"; -$a->strings["Undecided"] = "Нерешителен"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); $a->strings["Males"] = "Мъжките"; $a->strings["Females"] = "Женските"; $a->strings["Gay"] = "Хомосексуалист"; @@ -1664,6 +73,7 @@ $a->strings["Infatuated"] = "Заслепен"; $a->strings["Dating"] = "Запознанства"; $a->strings["Unfaithful"] = "Неверен"; $a->strings["Sex Addict"] = "Секс наркоман"; +$a->strings["Friends"] = "Приятели"; $a->strings["Friends/Benefits"] = "Приятели / ползи"; $a->strings["Casual"] = "Случаен"; $a->strings["Engaged"] = "Обвързан"; @@ -1685,9 +95,113 @@ $a->strings["Uncertain"] = "Несигурен"; $a->strings["It's complicated"] = "Сложно е"; $a->strings["Don't care"] = "Не ме е грижа"; $a->strings["Ask me"] = "Попитай ме"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Не може да намери DNS информация за сървъра на базата данни \" %s \""; +$a->strings["Logged out."] = "Изход"; +$a->strings["Login failed."] = "Влез не успя."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията."; +$a->strings["The error message was:"] = "Съобщението за грешка е:"; +$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."] = "Изтрита група с това име се възражда. Съществуващ елемент от разрешения май се прилагат към тази група и всички бъдещи членове. Ако това не е това, което сте възнамерявали, моля да се създаде друга група с различно име."; +$a->strings["Default privacy group for new contacts"] = "Неприкосновеността на личния живот на група по подразбиране за нови контакти"; +$a->strings["Everybody"] = "Всички"; +$a->strings["edit"] = "редактиране"; +$a->strings["Groups"] = "Групи"; +$a->strings["Edit groups"] = ""; +$a->strings["Edit group"] = "Редактиране на групата"; +$a->strings["Create a new group"] = "Създайте нова група"; +$a->strings["Group Name: "] = "Име на група: "; +$a->strings["Contacts not in any group"] = "Контакти, не във всяка група"; +$a->strings["add"] = "добави"; +$a->strings["Unknown | Not categorised"] = "Неизвестен | Без категория"; +$a->strings["Block immediately"] = "Блок веднага"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, спамър, самостоятелно маркетолог"; +$a->strings["Known to me, but no opinion"] = "Известно е, че мен, но липса на становище"; +$a->strings["OK, probably harmless"] = "ОК, вероятно безвреден"; +$a->strings["Reputable, has my trust"] = "Репутация, има ми доверие"; +$a->strings["Frequently"] = "Често"; +$a->strings["Hourly"] = "Всеки час"; +$a->strings["Twice daily"] = "Два пъти дневно"; +$a->strings["Daily"] = "Ежедневно:"; +$a->strings["Weekly"] = "Седмично"; +$a->strings["Monthly"] = "Месечено"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Email"] = "Е-поща"; +$a->strings["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"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$a->strings["Post to Email"] = "Коментар на e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Скриване на детайли от профила си от неизвестни зрители?"; +$a->strings["Visible to everybody"] = "Видими за всички"; +$a->strings["show"] = "Покажи:"; +$a->strings["don't show"] = "не показват"; +$a->strings["CC: email addresses"] = "CC: имейл адреси"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "права"; +$a->strings["Close"] = "Затвори"; +$a->strings["photo"] = "снимка"; +$a->strings["status"] = "статус"; +$a->strings["event"] = "събитието."; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s харесва %2\$s %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не като %2\$s - %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[Без тема]"; +$a->strings["Wall Photos"] = "Стена снимки"; +$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["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!"] = ""; +$a->strings["User creation error"] = "Грешка при създаване на потребителя"; +$a->strings["User profile creation error"] = "Грешка при създаване профила на потребителя"; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Miscellaneous"] = "Разни"; +$a->strings["Birthday:"] = "Дата на раждане:"; +$a->strings["Age: "] = "Възраст: "; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "никога"; +$a->strings["less than a second ago"] = "по-малко, отколкото преди секунда"; +$a->strings["year"] = "година"; +$a->strings["years"] = "година"; +$a->strings["month"] = "месец."; +$a->strings["months"] = "месеца"; +$a->strings["week"] = "седмица"; +$a->strings["weeks"] = "седмица"; +$a->strings["day"] = "Ден:"; +$a->strings["days"] = "дни."; +$a->strings["hour"] = "Час:"; +$a->strings["hours"] = "часа"; +$a->strings["minute"] = "Минута"; +$a->strings["minutes"] = "протокол"; +$a->strings["second"] = "секунди. "; +$a->strings["seconds"] = "секунди. "; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s преди"; +$a->strings["%s's birthday"] = ""; +$a->strings["Happy Birthday %s"] = "Честит рожден ден, %s!"; $a->strings["Friendica Notification"] = "Friendica Уведомление"; $a->strings["Thank You,"] = "Благодаря Ви."; $a->strings["%s Administrator"] = "%s администратор"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$a->strings["noreply"] = "noreply"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Извести] Нова поща, получена в %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s в %2\$s ви изпрати ново лично съобщение ."; @@ -1731,63 +245,1791 @@ $a->strings["Name:"] = "Наименование:"; $a->strings["Photo:"] = "Снимка:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Моля, посетете %s да одобри или отхвърли предложението."; $a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["'%1\$s' has accepted 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["You are now mutual friends and may exchange status updates, photos, and email without 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["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; $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"] = "Вградени съдържание"; -$a->strings["Embedding disabled"] = "Вграждане на инвалиди"; -$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!"] = ""; -$a->strings["User creation error"] = "Грешка при създаване на потребителя"; -$a->strings["User profile creation error"] = "Грешка при създаване профила на потребителя"; -$a->strings["%d contact not imported"] = array( +$a->strings["l F d, Y \\@ g:i A"] = "L F г, Y \\ @ G: I A"; +$a->strings["Starts:"] = "Започва:"; +$a->strings["Finishes:"] = "Играчи:"; +$a->strings["Location:"] = "Място:"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Неделя"; +$a->strings["Monday"] = "Понеделник"; +$a->strings["Tuesday"] = "Вторник"; +$a->strings["Wednesday"] = "Сряда"; +$a->strings["Thursday"] = "Четвъртък"; +$a->strings["Friday"] = "Петък"; +$a->strings["Saturday"] = "Събота"; +$a->strings["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Май"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "януари"; +$a->strings["February"] = "февруари"; +$a->strings["March"] = "март"; +$a->strings["April"] = "април"; +$a->strings["June"] = "юни"; +$a->strings["July"] = "юли"; +$a->strings["August"] = "август"; +$a->strings["September"] = "септември"; +$a->strings["October"] = "октомври"; +$a->strings["November"] = "ноември"; +$a->strings["December"] = "декември"; +$a->strings["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "л, F J"; +$a->strings["Edit event"] = "Редактиране на Събитието"; +$a->strings["link to source"] = "връзка източник"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Нищо ново тук"; +$a->strings["Clear notifications"] = "Изчистване на уведомленията"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "изход"; +$a->strings["End this session"] = "Край на тази сесия"; +$a->strings["Status"] = "Състояние:"; +$a->strings["Your posts and conversations"] = "Вашите мнения и разговори"; +$a->strings["Profile"] = "Височина на профила"; +$a->strings["Your profile page"] = "Вашият профил страница"; +$a->strings["Photos"] = "Снимки"; +$a->strings["Your photos"] = "Вашите снимки"; +$a->strings["Videos"] = "Видеоклипове"; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = "Събития"; +$a->strings["Your events"] = "Събитията си"; +$a->strings["Personal notes"] = "Личните бележки"; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Вход"; +$a->strings["Sign in"] = "Вход"; +$a->strings["Home"] = "Начало"; +$a->strings["Home Page"] = "Начална страница"; +$a->strings["Register"] = "Регистратор"; +$a->strings["Create an account"] = "Създаване на сметка"; +$a->strings["Help"] = "Помощ"; +$a->strings["Help and documentation"] = "Помощ и документация"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Адон приложения, помощни програми, игри"; +$a->strings["Search"] = "Търсене"; +$a->strings["Search site content"] = "Търсене в сайта съдържание"; +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Контакти "; +$a->strings["Community"] = "Общност"; +$a->strings["Conversations on this site"] = "Разговори на този сайт"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = "Събития и календарни"; +$a->strings["Directory"] = "директория"; +$a->strings["People directory"] = "Хората директория"; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Мрежа"; +$a->strings["Conversations from your friends"] = "Разговори от вашите приятели"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Представяне"; +$a->strings["Friend Requests"] = "Молби за приятелство"; +$a->strings["Notifications"] = "Уведомления "; +$a->strings["See all notifications"] = "Вижте всички нотификации"; +$a->strings["Mark as seen"] = "Марк, както се вижда"; +$a->strings["Mark all system notifications seen"] = "Марк виждали уведомления всички системни"; +$a->strings["Messages"] = "Съобщения"; +$a->strings["Private mail"] = "Частна поща"; +$a->strings["Inbox"] = "Вх. поща"; +$a->strings["Outbox"] = "Изходящи"; +$a->strings["New Message"] = "Ново съобщение"; +$a->strings["Manage"] = "Управление"; +$a->strings["Manage other pages"] = "Управление на други страници"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = "Участник, за управление на страница"; +$a->strings["Settings"] = "Настройки"; +$a->strings["Account settings"] = "Настройки на профила"; +$a->strings["Profiles"] = "Профили "; +$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/edit friends and contacts"] = "Управление / редактиране на приятели и контакти"; +$a->strings["Admin"] = "admin"; +$a->strings["Site setup and configuration"] = "Настройка и конфигуриране на сайта"; +$a->strings["Navigation"] = "Навигация"; +$a->strings["Site map"] = "Карта на сайта"; +$a->strings["Contact Photos"] = "Свържете снимки"; +$a->strings["Welcome "] = "Добре дошли "; +$a->strings["Please upload a profile photo."] = "Моля, да качите снимка профил."; +$a->strings["Welcome back "] = "Здравейте отново! "; +$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."] = "Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи."; +$a->strings["System"] = "Система"; +$a->strings["Personal"] = "Лично"; +$a->strings["%s commented on %s's post"] = "%s коментира %s е след"; +$a->strings["%s created a new post"] = "%s създаден нов пост"; +$a->strings["%s liked %s's post"] = "%s харесва %s е след"; +$a->strings["%s disliked %s's post"] = "%s не харесвал %s е след"; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s вече е приятел с %s"; +$a->strings["Friend Suggestion"] = "Приятел за предложения"; +$a->strings["Friend/Connect Request"] = "Приятел / заявка за свързване"; +$a->strings["New Follower"] = "Нов последовател"; +$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."] = "Грешки, възникнали създаване на таблиците в базата данни."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(Без тема)"; +$a->strings["Sharing notification from Diaspora network"] = "Споделяне на уведомление от диаспората мрежа"; +$a->strings["Attachments:"] = "Приложения"; +$a->strings["view full size"] = "видите в пълен размер"; +$a->strings["View Profile"] = "Преглед на профил"; +$a->strings["View Status"] = "Показване на състоянието"; +$a->strings["View Photos"] = "Вижте снимки"; +$a->strings["Network Posts"] = "Мрежови Мнения"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = ""; +$a->strings["Send PM"] = "Изпратете PM"; +$a->strings["Poke"] = ""; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = ""; +$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["Image/photo"] = "Изображение / снимка"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$ 1 пише:"; +$a->strings["Encrypted content"] = "Шифрирано съдържание"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s вече е приятел с %2\$s"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s сложи етикет с %2\$s - %3\$s %4\$s"; +$a->strings["post/item"] = "длъжност / позиция"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s маркираната %2\$s - %3\$s като предпочитано"; +$a->strings["Likes"] = "Харесвания"; +$a->strings["Dislikes"] = "Нехаресвания"; +$a->strings["Attending"] = array( 0 => "", 1 => "", ); -$a->strings["Done. You can now login with your username and password"] = ""; -$a->strings["toggle mobile"] = ""; +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Select"] = "избор"; +$a->strings["Delete"] = "Изтриване"; +$a->strings["View %s's profile @ %s"] = "Преглед профила на %s в %s"; +$a->strings["Categories:"] = "Категории:"; +$a->strings["Filed under:"] = "Записано в:"; +$a->strings["%s from %s"] = "%s от %s"; +$a->strings["View in context"] = "Поглед в контекста"; +$a->strings["Please wait"] = "Моля, изчакайте"; +$a->strings["remove"] = "Премахване"; +$a->strings["Delete Selected Items"] = "Изтриване на избраните елементи"; +$a->strings["Follow Thread"] = ""; +$a->strings["%s likes this."] = "%s харесва това."; +$a->strings["%s doesn't like this."] = "%s не харесва това."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "и"; +$a->strings[", and %d other people"] = ", И %d други хора"; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Видим всички "; +$a->strings["Please enter a link URL:"] = "Моля, въведете URL адреса за връзка:"; +$a->strings["Please enter a video link/URL:"] = "Моля въведете видео връзка / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Моля въведете аудио връзка / URL:"; +$a->strings["Tag term:"] = "Tag термин:"; +$a->strings["Save to Folder:"] = "Запиши в папка:"; +$a->strings["Where are you right now?"] = "Къде сте в момента?"; +$a->strings["Delete item(s)?"] = ""; +$a->strings["Share"] = "дял,%"; +$a->strings["Upload photo"] = "Качване на снимка"; +$a->strings["upload photo"] = "качване на снимка"; +$a->strings["Attach file"] = "Прикачване на файл"; +$a->strings["attach file"] = "Прикачване на файл"; +$a->strings["Insert web link"] = "Вмъкване на връзка в Мрежата"; +$a->strings["web link"] = "Уеб-линк"; +$a->strings["Insert video link"] = "Поставете линка на видео"; +$a->strings["video link"] = "видео връзка"; +$a->strings["Insert audio link"] = "Поставете аудио връзка"; +$a->strings["audio link"] = "аудио връзка"; +$a->strings["Set your location"] = "Задайте местоположението си"; +$a->strings["set location"] = "Задаване на местоположението"; +$a->strings["Clear browser location"] = "Изчистване на браузъра място"; +$a->strings["clear location"] = "ясно място"; +$a->strings["Set title"] = "Задайте заглавие"; +$a->strings["Categories (comma-separated list)"] = "Категории (разделен със запетаи списък)"; +$a->strings["Permission settings"] = "Настройките за достъп"; +$a->strings["permissions"] = "права"; +$a->strings["Public post"] = "Обществена длъжност"; +$a->strings["Preview"] = "Преглед"; +$a->strings["Cancel"] = "Отмени"; +$a->strings["Post to Groups"] = ""; +$a->strings["Post to Contacts"] = ""; +$a->strings["Private post"] = ""; +$a->strings["Message"] = "Съобщение"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = "Търсене по дата"; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = "Мрежов филтър"; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Запазени търсения"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Отхвърлен профила URL."; +$a->strings["Connect URL missing."] = "Свързване URL липсва."; +$a->strings["This site is not configured to allow communications with other networks."] = "Този сайт не е конфигуриран да позволява комуникация с други мрежи."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Няма съвместими комуникационни протоколи или фуражите не са били открити."; +$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."] = "Не браузър URL може да съвпадне с този адрес."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл."; +$a->strings["Use mailto: in front of address to force email check."] = "Използвайте mailto: пред адрес, за да принуди проверка на имейл."; +$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."] = "Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас."; +$a->strings["Unable to retrieve contact information."] = "Не мога да получа информация за контакт."; +$a->strings["Requested account is not available."] = ""; +$a->strings["Requested profile is not available."] = "Замолената профила не е достъпна."; +$a->strings["Edit profile"] = "Редактиране на потребителския профил"; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = "Управление / редактиране на профили"; +$a->strings["Change profile photo"] = "Промяна на снимката на профил"; +$a->strings["Create New Profile"] = "Създай нов профил"; +$a->strings["Profile Image"] = "Профил на изображението"; +$a->strings["visible to everybody"] = "видими за всички"; +$a->strings["Edit visibility"] = "Редактиране на видимост"; +$a->strings["Gender:"] = "Пол:"; +$a->strings["Status:"] = "Състояние:"; +$a->strings["Homepage:"] = "Начална страница:"; +$a->strings["About:"] = "това ?"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "грама Л Е г"; +$a->strings["F d"] = "F г"; +$a->strings["[today]"] = "Днес"; +$a->strings["Birthday Reminders"] = "Напомняния за рождени дни"; +$a->strings["Birthdays this week:"] = "Рождени дни този Седмица:"; +$a->strings["[No description]"] = "[Няма описание]"; +$a->strings["Event Reminders"] = "Напомняния"; +$a->strings["Events this week:"] = "Събития тази седмица:"; +$a->strings["Full Name:"] = "Собствено и фамилно име"; +$a->strings["j F, Y"] = "J F, Y"; +$a->strings["j F"] = "J F"; +$a->strings["Age:"] = "Възраст:"; +$a->strings["for %1\$d %2\$s"] = "за %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Сексуални предпочитания:"; +$a->strings["Hometown:"] = "Hometown:"; +$a->strings["Tags:"] = "Маркери:"; +$a->strings["Political Views:"] = "Политически възгледи:"; +$a->strings["Religion:"] = "Вероизповедание:"; +$a->strings["Hobbies/Interests:"] = "Хобита / Интереси:"; +$a->strings["Likes:"] = "Харесвания:"; +$a->strings["Dislikes:"] = "Нехаресвания:"; +$a->strings["Contact information and Social Networks:"] = "Информация за контакти и социални мрежи:"; +$a->strings["Musical interests:"] = "Музикални интереси:"; +$a->strings["Books, literature:"] = "Книги, литература:"; +$a->strings["Television:"] = "Телевизия:"; +$a->strings["Film/dance/culture/entertainment:"] = "Филм / танц / Култура / развлечения:"; +$a->strings["Love/Romance:"] = "Любов / Romance:"; +$a->strings["Work/employment:"] = "Работа / заетост:"; +$a->strings["School/education:"] = "Училище / образование:"; +$a->strings["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Напреднал"; +$a->strings["Status Messages and Posts"] = "Съобщения за състоянието и пощи"; +$a->strings["Profile Details"] = "Детайли от профила"; +$a->strings["Photo Albums"] = "Фотоалбуми"; +$a->strings["Personal Notes"] = "Личните бележки"; +$a->strings["Only You Can See This"] = "Можете да видите това"; +$a->strings["[Name Withheld]"] = "[Име, удържани]"; +$a->strings["Item not found."] = "Елемент не е намерен."; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Yes"] = "Yes"; +$a->strings["Permission denied."] = "Разрешението е отказано."; +$a->strings["Archives"] = "Архиви"; +$a->strings["Embedded content"] = "Вградени съдържание"; +$a->strings["Embedding disabled"] = "Вграждане на инвалиди"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "следните условия:"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "спря след"; +$a->strings["newer"] = ""; +$a->strings["older"] = ""; +$a->strings["prev"] = "Пред."; +$a->strings["first"] = "Първа"; +$a->strings["last"] = "Дата на последния одит. "; +$a->strings["next"] = "следващ"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Няма контакти"; +$a->strings["%d Contact"] = array( + 0 => "", + 1 => "", +); +$a->strings["View Contacts"] = "Вижте Контакти"; +$a->strings["Save"] = "Запази"; +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; +$a->strings["View Video"] = "Преглед на видеоклип"; +$a->strings["bytes"] = "байта"; +$a->strings["Click to open/close"] = "Кликнете за отваряне / затваряне"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "дейност"; +$a->strings["comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["post"] = "след"; +$a->strings["Item filed"] = "Т. подава"; +$a->strings["Passwords do not match. Password unchanged."] = "Паролите не съвпадат. Парола непроменен."; +$a->strings["An invitation is required."] = "Се изисква покана."; +$a->strings["Invitation could not be verified."] = "Покана не може да бъде проверена."; +$a->strings["Invalid OpenID url"] = "Невалиден URL OpenID"; +$a->strings["Please enter the required information."] = "Моля, въведете необходимата информация."; +$a->strings["Please use a shorter name."] = "Моля, използвайте по-кратко име."; +$a->strings["Name too short."] = "Името е твърде кратко."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Това не изглежда да е пълен (първи Последно) име."; +$a->strings["Your email domain is not among those allowed on this site."] = "Вашият имейл домейн не е сред тези, разрешени на този сайт."; +$a->strings["Not a valid email address."] = "Не е валиден имейл адрес."; +$a->strings["Cannot use that email."] = "Не може да се използва този имейл."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Псевдоним вече е регистрирано. Моля, изберете друга."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Псевдоним някога е бил регистриран тук и не могат да се използват повторно. Моля, изберете друга."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Сериозна грешка: генериране на ключове за защита не успя."; +$a->strings["An error occurred during registration. Please try again."] = "Възникна грешка по време на регистрацията. Моля, опитайте отново."; +$a->strings["default"] = "預設值"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Възникна грешка при създаването на своя профил по подразбиране. Моля, опитайте отново."; +$a->strings["Profile Photos"] = "Снимка на профила"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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"] = "Регистрационни данни за %s"; +$a->strings["Post successful."] = "Мнение успешно."; +$a->strings["Access denied."] = "Отказан достъп."; +$a->strings["Welcome to %s"] = "Добре дошли %s"; +$a->strings["No more system notifications."] = "Не повече системни известия."; +$a->strings["System Notifications"] = "Системни известия"; +$a->strings["Remove term"] = "Премахване мандат"; +$a->strings["Public access denied."] = "Публичен достъп отказан."; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Няма резултати."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$a->strings["This is Friendica, version"] = "Това е Friendica, версия"; +$a->strings["running at web location"] = "работи в уеб сайта,"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Моля, посетете Friendica.com , за да научите повече за проекта на Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Доклади за грешки и проблеми: моля посетете"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвали, дарения и т.н. - моля пишете \"Инфо\" в Friendica - Dot Com"; +$a->strings["Installed plugins/addons/apps:"] = "Инсталираните приставки / Addons / Apps:"; +$a->strings["No installed plugins/addons/apps"] = "Няма инсталирани плъгини / Addons / приложения"; +$a->strings["No valid account found."] = "Не е валиден акаунт."; +$a->strings["Password reset request issued. Check your 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."] = ""; +$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"] = "Исканото за нулиране на паролата на %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Искането не може да бъде проверена. (Може да се преди това са го внесе.) За нулиране на паролата не успя."; +$a->strings["Password Reset"] = "Смяна на паролата"; +$a->strings["Your password has been reset as requested."] = "Вашата парола е променена, както беше поискано."; +$a->strings["Your new password is"] = "Вашата нова парола е"; +$a->strings["Save or copy your new password - and then"] = "Запазване или копиране на новата си парола и след това"; +$a->strings["click here to login"] = "Кликнете тук за Вход"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Вашата парола може да бъде променена от Настройки , След успешен вход."; +$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"] = ""; +$a->strings["Forgot your Password?"] = "Забравена парола?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Въведете вашия имейл адрес и представя си за нулиране на паролата. След това проверявате електронната си поща за по-нататъшни инструкции."; +$a->strings["Nickname or Email: "] = "Псевдоним или имейл адрес: "; +$a->strings["Reset"] = "Нулиране"; +$a->strings["No profile"] = "Няма профил"; +$a->strings["Help:"] = "Помощ"; +$a->strings["Not Found"] = "Не е намерено"; +$a->strings["Page not found."] = "Страницата не е намерена."; +$a->strings["Remote privacy information not available."] = "Дистанционно неприкосновеността на личния живот информация не е достъпен."; +$a->strings["Visible to:"] = "Вижда се от:"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID протокол грешка. Не ID върна."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Кутия не е намерена и, OpenID регистрация не е разрешено на този сайт."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре."; +$a->strings["Import"] = "Внасяне"; +$a->strings["Move account"] = ""; +$a->strings["You can import an account from another Friendica server."] = ""; +$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."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Visit %s's profile [%s]"] = "Посетете %s Профилът на [ %s ]"; +$a->strings["Edit contact"] = "Редактиране на контакт"; +$a->strings["Contacts who are not members of a group"] = "Контакти, които не са членове на една група"; +$a->strings["Export 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."] = ""; +$a->strings["Export all"] = "Изнасяне на всичко"; +$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)"] = ""; +$a->strings["Export personal data"] = "Експортиране на личните данни"; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s не е валиден имейл адрес."; +$a->strings["Please join us on Friendica"] = "Моля, присъединете се към нас на Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Съобщение доставка не успя."; +$a->strings["%d message sent."] = array( + 0 => "", + 1 => "", +); +$a->strings["You have no more invitations available"] = "Имате няма повече покани"; +$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."] = "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica."; +$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 сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове."; +$a->strings["Send invitations"] = "Изпращане на покани"; +$a->strings["Enter email addresses, one per line:"] = "Въведете имейл адреси, по един на ред:"; +$a->strings["Your message:"] = "Ваше съобщение"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вие ще трябва да предоставят този код за покана: $ invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "За повече информация за проекта Friendica и защо ние смятаме, че е важно, моля посетете http://friendica.com"; +$a->strings["Submit"] = "Изпращане"; +$a->strings["Files"] = "Файлове"; +$a->strings["Permission denied"] = "Разрешението е отказано"; +$a->strings["Invalid profile identifier."] = "Невалиден идентификатор на профила."; +$a->strings["Profile Visibility Editor"] = "Редактор профил Видимост"; +$a->strings["Click on a contact to add or remove."] = "Щракнете върху контакт, за да добавите или премахнете."; +$a->strings["Visible To"] = "Вижда се от"; +$a->strings["All Contacts (with secure profile access)"] = "Всички контакти с охраняем достъп до профил)"; +$a->strings["Tag removed"] = "Отстранява маркировката"; +$a->strings["Remove Item Tag"] = "Извадете Tag т."; +$a->strings["Select a tag to remove: "] = "Изберете етикет, за да премахнете: "; +$a->strings["Remove"] = "Премахване"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = "Няма потенциални делегати на страницата намира."; +$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."] = "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно."; +$a->strings["Existing Page Managers"] = "Съществуващите Мениджъри"; +$a->strings["Existing Page Delegates"] = "Съществуващите Делегатите Страница"; +$a->strings["Potential Delegates"] = "Потенциални Делегатите"; +$a->strings["Add"] = "Добави"; +$a->strings["No entries."] = "няма регистрирани"; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "избор"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = "Които не са на разположение."; +$a->strings["Item was not found."] = "Елемент не е намерен."; +$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["Applications"] = "Приложения"; +$a->strings["No installed applications."] = "Няма инсталираните приложения."; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = "Добре дошли да Friendica"; +$a->strings["New Member Checklist"] = "Нова държава Чеклист"; +$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."] = "Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне."; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$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."] = ""; +$a->strings["Go to Your Settings"] = ""; +$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."] = "На настройки - да промени първоначалната си парола. Също така направи бележка на вашата самоличност адрес. Това изглежда точно като имейл адрес - и ще бъде полезно при вземането на приятели за свободното социална мрежа."; +$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."] = "Прегледайте други настройки, по-специално на настройките за поверителност. Непубликуван списък директория е нещо като скрит телефонен номер. Като цяло, може би трябва да публикува вашата обява - освен ако не всички от вашите приятели и потенциални приятели, знаят точно как да те намеря."; +$a->strings["Upload Profile Photo"] = "Качване на снимка Профилът"; +$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."] = "Качване на снимката на профила, ако не сте го направили вече. Проучванията показват, че хората с истински снимки на себе си, са десет пъти по-вероятно да станат приятели, отколкото хората, които не."; +$a->strings["Edit Your Profile"] = "Редактиране на профила"; +$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."] = "Редактиране на подразбиране профил да ви хареса. Преглед на настройките за скриване на вашия списък с приятели и скриване на профила от неизвестни посетители."; +$a->strings["Profile Keywords"] = "Ключови думи на профила"; +$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."] = "Задайте някои обществени ключови думи за вашия профил по подразбиране, които описват вашите интереси. Ние може да сме в състояние да намери други хора с подобни интереси и предлага приятелства."; +$a->strings["Connecting"] = "Свързване"; +$a->strings["Importing Emails"] = "Внасяне на е-пощи"; +$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"] = "Въведете своя имейл достъп до информация на страницата Настройки на Connector, ако желаете да внасят и да взаимодейства с приятели или списъци с адреси от електронната си поща Входящи"; +$a->strings["Go to Your Contacts Page"] = ""; +$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."] = "Контакти страница е вашата врата към управлението на приятелства и свързване с приятели в други мрежи. Обикновено можете да въведете адрес или адрес на сайта в Добавяне на нов контакт диалоговия."; +$a->strings["Go to Your Site's Directory"] = ""; +$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."] = "Страницата на справочника ви позволява да намерите други хора в тази мрежа или други сайтове Федерални. Потърсете Свържете или Следвайте в профила си страница. Предоставяне на вашия собствен адрес за самоличност, ако това бъде поискано."; +$a->strings["Finding New People"] = "Откриване на нови хора"; +$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."] = "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа."; +$a->strings["Group Your 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."] = "След като сте направили някои приятели, да ги организирате в групи от частния разговор от страничната лента на страницата с контакти и след това можете да взаимодействате с всяка група частно във вашата мрежа."; +$a->strings["Why Aren't My Posts Public?"] = "Защо публикациите ми не са публични?"; +$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."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси."; +$a->strings["Remove My Account"] = "Извадете Моят профил"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим."; +$a->strings["Please enter your password for verification:"] = "Моля, въведете паролата си за проверка:"; +$a->strings["Item not found"] = "Елемент не е намерена"; +$a->strings["Edit post"] = "Редактиране на мнение"; +$a->strings["Time Conversion"] = "Време за преобразуване"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = "UTC време: %s"; +$a->strings["Current timezone: %s"] = "Текуща часова зона: %s"; +$a->strings["Converted localtime: %s"] = "Превърнат localtime: %s"; +$a->strings["Please select your timezone:"] = "Моля изберете вашия часовата зона:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Група, създадена."; +$a->strings["Could not create group."] = "Не може да се създаде група."; +$a->strings["Group not found."] = "Групата не е намерен."; +$a->strings["Group name changed."] = "Име на група се промени."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Създаване на група от контакти / приятели."; +$a->strings["Group removed."] = "Група отстранени."; +$a->strings["Unable to remove group."] = "Не може да премахнете група."; +$a->strings["Group Editor"] = "Група Editor"; +$a->strings["Members"] = "Членове"; +$a->strings["All Contacts"] = "Всички Контакти"; +$a->strings["Group is empty"] = "Групата е празна"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Брой на ежедневните съобщения за стена за %s е превишен. Съобщение не успя."; +$a->strings["No recipient selected."] = "Не е избран получател."; +$a->strings["Unable to check your home location."] = "Не може да проверите вашето местоположение."; +$a->strings["Message could not be sent."] = "Писмото не може да бъде изпратена."; +$a->strings["Message collection failure."] = "Съобщение за събиране на неуспех."; +$a->strings["Message sent."] = "Изпратено съобщение."; +$a->strings["No recipient."] = "Не получателя."; +$a->strings["Send Private Message"] = "Изпрати Лично Съобщение"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Ако желаете за %s да отговори, моля, проверете дали настройките за поверителност на сайта си позволяват частни съобщения от непознати податели."; +$a->strings["To:"] = "До:"; +$a->strings["Subject:"] = "Относно:"; +$a->strings["link"] = ""; +$a->strings["Authorize application connection"] = "Разрешава връзка с прилагането"; +$a->strings["Return to your app and insert this Securty Code:"] = "Назад към приложението ти и поставите този Securty код:"; +$a->strings["Please login to continue."] = "Моля, влезте, за да продължите."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?"; +$a->strings["No"] = "Не"; +$a->strings["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html (raw HTML): "] = ""; +$a->strings["bb2html: "] = ""; +$a->strings["bb2html2bb: "] = ""; +$a->strings["bb2md: "] = ""; +$a->strings["bb2md2html: "] = ""; +$a->strings["bb2dia2bb: "] = ""; +$a->strings["bb2md2html2bb: "] = ""; +$a->strings["Source input (Diaspora format): "] = ""; +$a->strings["diaspora2bb: "] = ""; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Unable to locate contact information."] = "Не може да се намери информация за контакт."; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = "Съобщение заличават."; +$a->strings["Conversation removed."] = "Разговор отстранени."; +$a->strings["No messages."] = "Няма съобщения."; +$a->strings["Message not available."] = "Съобщението не е посочена."; +$a->strings["Delete message"] = "Изтриване на съобщение"; +$a->strings["Delete conversation"] = "Изтриване на разговор"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Няма сигурни комуникации. Можете май да бъде в състояние да отговори от страницата на профила на подателя."; +$a->strings["Send Reply"] = "Изпратете Отговор"; +$a->strings["Unknown sender - %s"] = "Непознат подател %s"; +$a->strings["You and %s"] = "Вие и %s"; +$a->strings["%s and You"] = "%s"; +$a->strings["D, d M Y - g:i A"] = "D, D MY - Г: А"; +$a->strings["%d message"] = array( + 0 => "", + 1 => "", +); +$a->strings["Manage Identities and/or Pages"] = "Управление на идентичността и / или страници"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения"; +$a->strings["Select an identity to manage: "] = "Изберете идентичност, за да управлява: "; +$a->strings["Contact settings applied."] = "Контактни настройки прилага."; +$a->strings["Contact update failed."] = "Свържете се актуализира провали."; +$a->strings["Contact not found."] = "Контактът не е намерен."; +$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."] = "Моля, използвайте Назад на вашия браузър бутон сега, ако не сте сигурни какво да правят на тази страница."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = "Назад, за да се свържете с редактор"; +$a->strings["Refetch contact data"] = ""; +$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["Name"] = "Име"; +$a->strings["Account Nickname"] = "Сметка Псевдоним"; +$a->strings["@Tagname - overrides Name/Nickname"] = "Име / псевдоним на @ Tagname - Заменя"; +$a->strings["Account URL"] = "Сметка URL"; +$a->strings["Friend Request URL"] = "URL приятел заявка"; +$a->strings["Friend Confirm URL"] = "Приятел Потвърди URL"; +$a->strings["Notification Endpoint URL"] = "URL адрес на Уведомление Endpoint"; +$a->strings["Poll/Feed URL"] = "Анкета / URL Feed"; +$a->strings["New photo from this URL"] = "Нова снимка от този адрес"; +$a->strings["No such group"] = "Няма такава група"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = "Записът е редактиран"; +$a->strings["%d comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["Private Message"] = "Лично съобщение"; +$a->strings["I like this (toggle)"] = "Харесва ми това (смяна)"; +$a->strings["like"] = "харесвам"; +$a->strings["I don't like this (toggle)"] = "Не ми харесва това (смяна)"; +$a->strings["dislike"] = "не харесвам"; +$a->strings["Share this"] = "Споделете това"; +$a->strings["share"] = "споделяне"; +$a->strings["This is you"] = "Това сте вие"; +$a->strings["Comment"] = "Коментар"; +$a->strings["Bold"] = "Получер"; +$a->strings["Italic"] = "Курсив"; +$a->strings["Underline"] = "Подчертан"; +$a->strings["Quote"] = "Цитат"; +$a->strings["Code"] = "Код"; +$a->strings["Image"] = "Изображение"; +$a->strings["Link"] = "Връзка"; +$a->strings["Video"] = "Видеоклип"; +$a->strings["Edit"] = "Редактиране"; +$a->strings["add star"] = "Добавяне на звезда"; +$a->strings["remove star"] = "Премахване на звездата"; +$a->strings["toggle star status"] = "превключване звезда статус"; +$a->strings["starred"] = "звезда"; +$a->strings["add tag"] = "добавяне на етикет"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "запишете в папка"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "за"; +$a->strings["Wall-to-Wall"] = "От стена до стена"; +$a->strings["via Wall-To-Wall:"] = "чрез стена до стена:"; +$a->strings["Friend suggestion sent."] = "Предложението за приятелство е изпратено."; +$a->strings["Suggest Friends"] = "Предлагане на приятели"; +$a->strings["Suggest a friend for %s"] = "Предлагане на приятел за %s"; +$a->strings["Mood"] = "Настроение"; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = "Получател"; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Image uploaded but image cropping failed."] = "Качени изображения, но изображението изрязване не успя."; +$a->strings["Image size reduction [%s] failed."] = "Намаляване на размер [ %s ] не успя."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага."; +$a->strings["Unable to process image"] = "Не може да се обработи"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Не може да се обработи."; +$a->strings["Upload File:"] = "прикрепи файл"; +$a->strings["Select a profile:"] = "Избор на профил:"; +$a->strings["Upload"] = "Качете в Мрежата "; +$a->strings["or"] = "или"; +$a->strings["skip this step"] = "пропуснете тази стъпка"; +$a->strings["select a photo from your photo albums"] = "изберете снимка от вашите фото албуми"; +$a->strings["Crop Image"] = "Изрязване на изображението"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Моля, настроите образа на изрязване за оптимално гледане."; +$a->strings["Done Editing"] = "Съставено редактиране"; +$a->strings["Image uploaded successfully."] = "Качени изображения успешно."; +$a->strings["Image upload failed."] = "Image Upload неуспешно."; +$a->strings["Account approved."] = "Сметка одобрен."; +$a->strings["Registration revoked for %s"] = "Регистрация отменено за %s"; +$a->strings["Please login."] = "Моля, влезте."; +$a->strings["Invalid request identifier."] = "Невалидна заявка идентификатор."; +$a->strings["Discard"] = "Отхвърляне"; +$a->strings["Ignore"] = "Пренебрегване"; +$a->strings["Network Notifications"] = "Мрежа Известия"; +$a->strings["Personal Notifications"] = "Лични Известия"; +$a->strings["Home Notifications"] = "Начало Известия"; +$a->strings["Show Ignored Requests"] = "Показване на пренебрегнатите заявки"; +$a->strings["Hide Ignored Requests"] = "Скриване на пренебрегнатите заявки"; +$a->strings["Notification type: "] = "Вид на уведомлението: "; +$a->strings["suggested by %s"] = "предложено от %s"; +$a->strings["Hide this contact from others"] = "Скриване на този контакт от другите"; +$a->strings["Post a new friend activity"] = "Публикувай нова дейност приятел"; +$a->strings["if applicable"] = "ако е приложимо"; +$a->strings["Approve"] = "Одобряване"; +$a->strings["Claims to be known to you: "] = "Искания, да се знае за вас: "; +$a->strings["yes"] = "да"; +$a->strings["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: "] = ""; +$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"] = "Приятел"; +$a->strings["Sharer"] = "Споделящ"; +$a->strings["Fan/Admirer"] = "Почитател"; +$a->strings["Profile URL"] = ""; +$a->strings["No introductions."] = "Няма въвеждане."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Профил не е намерен."; +$a->strings["Profile deleted."] = "Изтрит профил."; +$a->strings["Profile-"] = "Височина на профила"; +$a->strings["New profile created."] = "Нов профил е създаден."; +$a->strings["Profile unavailable to clone."] = "Профил недостъпна да се клонират."; +$a->strings["Profile Name is required."] = "Име на профил се изисква."; +$a->strings["Marital Status"] = "Семейно положение"; +$a->strings["Romantic Partner"] = "Романтичен партньор"; +$a->strings["Work/Employment"] = "Работа / заетост"; +$a->strings["Religion"] = "Вероизповедание:"; +$a->strings["Political Views"] = "Политически възгледи"; +$a->strings["Gender"] = "Пол"; +$a->strings["Sexual Preference"] = "Сексуални предпочитания"; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = "Начална страница"; +$a->strings["Interests"] = "Интереси"; +$a->strings["Address"] = "Адрес"; +$a->strings["Location"] = "Местоположение "; +$a->strings["Profile updated."] = "Профил актуализиран."; +$a->strings[" and "] = " и "; +$a->strings["public profile"] = "публичен профил"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s променя %2\$s %3\$s 3 $ S "; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Посещение %1\$s на %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s има актуализиран %2\$s , промяна %3\$s ."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скриване на вашия контакт / списък приятел от зрителите на този профил?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Редактиране на детайли от профила"; +$a->strings["Change Profile Photo"] = "Промяна снимката на профила"; +$a->strings["View this profile"] = "Виж този профил"; +$a->strings["Create a new profile using these settings"] = "Създаване на нов профил, използвайки тези настройки"; +$a->strings["Clone this profile"] = "Клонираме тази профила"; +$a->strings["Delete this profile"] = "Изтриване на този профил"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Пол:"; +$a->strings[" Marital Status:"] = " Семейно положение:"; +$a->strings["Example: fishing photography software"] = "Пример: софтуер за риболов фотография"; +$a->strings["Profile Name:"] = "Име на профила"; +$a->strings["Required"] = "Задължително"; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Това е вашата публично профил.
                                              Май да бъде видим за всеки, който с помощта на интернет."; +$a->strings["Your Full Name:"] = "Пълното си име:"; +$a->strings["Title/Description:"] = "Наименование/Описание"; +$a->strings["Street Address:"] = "Адрес:"; +$a->strings["Locality/City:"] = "Махала / Град:"; +$a->strings["Region/State:"] = "Регион / Щат:"; +$a->strings["Postal/Zip Code:"] = "Postal / Zip Code:"; +$a->strings["Country:"] = "Държава:"; +$a->strings["Who: (if applicable)"] = "Кой: (ако е приложимо)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примери: cathy123, Кати Уилямс, cathy@example.com"; +$a->strings["Since [date]:"] = "От [дата]:"; +$a->strings["Tell us about yourself..."] = "Разкажете ни за себе си ..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Електронна страница:"; +$a->strings["Religious Views:"] = "Религиозни възгледи:"; +$a->strings["Public Keywords:"] = "Публичните Ключови думи:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Използва се за предполагайки потенциален приятели, може да се види от други)"; +$a->strings["Private Keywords:"] = "Частни Ключови думи:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Използва се за търсене на профилите, никога не показва и на други)"; +$a->strings["Musical interests"] = "Музикални интереси"; +$a->strings["Books, literature"] = "Книги, литература"; +$a->strings["Television"] = "Телевизия"; +$a->strings["Film/dance/culture/entertainment"] = "Филм / танц / Култура / забавления"; +$a->strings["Hobbies/Interests"] = "Хобита / интереси"; +$a->strings["Love/romance"] = "Любов / романтика"; +$a->strings["Work/employment"] = "Работа / заетост"; +$a->strings["School/education"] = "Училище / образование"; +$a->strings["Contact information and Social Networks"] = "Информация за контакти и социални мрежи"; +$a->strings["Edit/Manage Profiles"] = "Редактиране / Управление на профили"; +$a->strings["No friends to display."] = "Нямате приятели в листата."; +$a->strings["Access to this profile has been restricted."] = "Достъпът до този профил е ограничен."; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Предишна"; +$a->strings["Next"] = "Следваща"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Няма контакти по-чести."; +$a->strings["Common Friends"] = "Общи приятели"; +$a->strings["Not available."] = "Няма налични"; +$a->strings["Global Directory"] = "Глобален справочник"; +$a->strings["Find on this site"] = "Търсене в този сайт"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Site Directory"; +$a->strings["No entries (some entries may be hidden)."] = "Няма записи (някои вписвания, могат да бъдат скрити)."; +$a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; +$a->strings["No matches"] = "Няма съответствия"; +$a->strings["Item has been removed."] = ", Т. е била отстранена."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["Create New Event"] = "Създаване на нов събитие"; +$a->strings["Event details"] = "Подробности за събитието"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Събитие Започва:"; +$a->strings["Finish date/time is not known or not relevant"] = "Завършете дата / час не е известен или не е приложимо"; +$a->strings["Event Finishes:"] = "Събитие играчи:"; +$a->strings["Adjust for viewer timezone"] = "Настрои зрителя часовата зона"; +$a->strings["Description:"] = "Описание:"; +$a->strings["Title:"] = "Заглавие:"; +$a->strings["Share this event"] = "Споделете това събитие"; +$a->strings["System down for maintenance"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Няма ключови думи, които да съвпадат. Моля, да добавяте ключови думи към вашия профил по подразбиране."; +$a->strings["is interested in:"] = "се интересува от:"; +$a->strings["Profile Match"] = "Профил мач"; +$a->strings["Tips for New Members"] = "Съвети за нови членове"; +$a->strings["Do you really want to delete this suggestion?"] = "Наистина ли искате да изтриете това предложение?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа."; +$a->strings["Ignore/Hide"] = "Игнорирай / Скрий"; +$a->strings["[Embedded content - reload page to view]"] = "[Вградени съдържание - презареждане на страницата, за да видите]"; +$a->strings["Recent Photos"] = "Последни снимки"; +$a->strings["Upload New Photos"] = "Качване на нови снимки"; +$a->strings["everybody"] = "всички"; +$a->strings["Contact information unavailable"] = "Свържете се с информация недостъпна"; +$a->strings["Album not found."] = "Албумът не е намерен."; +$a->strings["Delete Album"] = "Изтриване на албума"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Delete Photo"] = "Изтриване на снимка"; +$a->strings["Do you really want to delete this photo?"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = ""; +$a->strings["Image file is empty."] = "Image файл е празен."; +$a->strings["No photos selected"] = "Няма избрани снимки"; +$a->strings["Access to this item is restricted."] = "Достъп до тази точка е ограничена."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Качване на снимки"; +$a->strings["New album name: "] = "Нов албум име: "; +$a->strings["or existing album name: "] = "или съществуващо име на албума: "; +$a->strings["Do not show a status post for this upload"] = "Да не се показва след статут за това качване"; +$a->strings["Show to Groups"] = "Показване на групи"; +$a->strings["Show to Contacts"] = "Показване на контакти"; +$a->strings["Private Photo"] = "Частна снимка"; +$a->strings["Public Photo"] = "Публична снимка"; +$a->strings["Edit Album"] = "Редактиране на албум"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = "Преглед на снимка"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено."; +$a->strings["Photo not available"] = "Снимката не е"; +$a->strings["View photo"] = "Преглед на снимка"; +$a->strings["Edit photo"] = "Редактиране на снимка"; +$a->strings["Use as profile photo"] = "Използва се като снимката на профила"; +$a->strings["View Full Size"] = "Изглед в пълен размер"; +$a->strings["Tags: "] = "Маркери: "; +$a->strings["[Remove any tag]"] = "Премахване на всякаква маркировка]"; +$a->strings["New album name"] = "Ново име на албум"; +$a->strings["Caption"] = "Надпис"; +$a->strings["Add a Tag"] = "Добавите етикет"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Rotate CW (вдясно)"; +$a->strings["Rotate CCW (left)"] = "Завъртане ККО (вляво)"; +$a->strings["Private photo"] = "Частна снимка"; +$a->strings["Public photo"] = "Публична снимка"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Вижте албуми"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Вашата регистрация не могат да бъдат обработени."; +$a->strings["Your registration is pending approval by the site owner."] = "Вашата регистрация е в очакване на одобрение от собственика на сайта."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Може да се (по желание) да попълните този формуляр, чрез OpenID чрез предоставяне на OpenID си и кликнете върху \"Регистрация\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите."; +$a->strings["Your OpenID (optional): "] = "Вашият OpenID (не е задължително): "; +$a->strings["Include your profile in member directory?"] = "Включете вашия профил в член директория?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Членството на този сайт е само с покани."; +$a->strings["Your invitation ID: "] = "Вашата покана ID: "; +$a->strings["Registration"] = "Регистрация"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Вашият email адрес: "; +$a->strings["New Password:"] = "нова парола"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Потвърждаване..."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Изберете прякор профил. Това трябва да започне с текст характер. Вашият профил адреса на този сайт ще бъде \" прякор @ $ на SITENAME \"."; +$a->strings["Choose a nickname: "] = "Изберете прякор: "; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Account"] = "профил"; +$a->strings["Additional features"] = "Допълнителни възможности"; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Plugins"] = "Приставки"; +$a->strings["Connected apps"] = "Свързани приложения"; +$a->strings["Remove account"] = "Премахване сметка"; +$a->strings["Missing some important data!"] = "Липсват някои важни данни!"; +$a->strings["Update"] = "Актуализиране"; +$a->strings["Failed to connect with email account using the settings provided."] = "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки."; +$a->strings["Email settings updated."] = "Имейл настройки актуализира."; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Празните пароли не са разрешени. Парола непроменен."; +$a->strings["Wrong password."] = "Неправилна парола"; +$a->strings["Password changed."] = "Парола промени."; +$a->strings["Password update failed. Please try again."] = "Парола актуализация се провали. Моля, опитайте отново."; +$a->strings[" Please use a shorter name."] = " Моля, използвайте по-кратко име."; +$a->strings[" Name too short."] = " Името е твърде кратко."; +$a->strings["Wrong Password"] = "Неправилна парола"; +$a->strings[" Not valid email."] = " Не валиден имейл."; +$a->strings[" Cannot change to that email."] = " Не може да е този имейл."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частен форум няма разрешения за неприкосновеността на личния живот. Използване подразбиране поверителност група."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частен форум няма разрешения за неприкосновеността на личния живот и никоя група по подразбиране неприкосновеността на личния живот."; +$a->strings["Settings updated."] = "Обновяването на настройките."; +$a->strings["Add application"] = "Добави приложение"; +$a->strings["Save Settings"] = ""; +$a->strings["Consumer Key"] = "Ключ на консуматора:"; +$a->strings["Consumer Secret"] = "Тайна стойност на консуматора:"; +$a->strings["Redirect"] = "Пренасочвания:"; +$a->strings["Icon url"] = "Икона URL"; +$a->strings["You can't edit this application."] = "Вие не можете да редактирате тази кандидатура."; +$a->strings["Connected Apps"] = "Свързани Apps"; +$a->strings["Client key starts with"] = "Ключ на клиента започва с"; +$a->strings["No name"] = "Без име"; +$a->strings["Remove authorization"] = "Премахване на разрешение"; +$a->strings["No Plugin settings configured"] = "Няма плъгин настройки, конфигурирани"; +$a->strings["Plugin Settings"] = "Plug-in Настройки"; +$a->strings["Off"] = "Изкл."; +$a->strings["On"] = "Вкл."; +$a->strings["Additional Features"] = "Допълнителни възможности"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Вградена поддръжка за връзка от %s %s"; +$a->strings["enabled"] = "разрешен"; +$a->strings["disabled"] = "забранен"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "Достъп до електронна поща е забранен на този сайт."; +$a->strings["Email/Mailbox Setup"] = "Email / Mailbox Setup"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия."; +$a->strings["Last successful email check:"] = "Последна успешна проверка на електронната поща:"; +$a->strings["IMAP server name:"] = "Име на IMAP сървъра:"; +$a->strings["IMAP port:"] = "IMAP порта:"; +$a->strings["Security:"] = "Сигурност"; +$a->strings["None"] = "Няма "; +$a->strings["Email login name:"] = "Email потребителско име:"; +$a->strings["Email password:"] = "Email парола:"; +$a->strings["Reply-to address:"] = "Адрес за отговор:"; +$a->strings["Send public posts to all email contacts:"] = "Изпратете публични длъжности за всички имейл контакти:"; +$a->strings["Action after import:"] = "Действия след вноса:"; +$a->strings["Move to folder"] = "Премества избраното в папка"; +$a->strings["Move to folder:"] = "Премества избраното в папка"; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = "Настройки на дисплея"; +$a->strings["Display Theme:"] = "Палитрата на дисплея:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Актуализиране на браузъра на всеки ХХ секунди"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Максимум от 100 точки"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Да не се показват емотикони"; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; $a->strings["Theme settings"] = "Тема Настройки"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Задайте ниво за преоразмеряване на изображения в публикации и коментари (ширина и височина)"; -$a->strings["Set font-size for posts and comments"] = "Задайте размер на шрифта за мнения и коментари"; -$a->strings["Set theme width"] = "Задайте ширина тема"; -$a->strings["Color scheme"] = "Цветова схема"; -$a->strings["Set line-height for posts and comments"] = "Задайте линия-височина за мнения и коментари"; -$a->strings["Set colour scheme"] = "Задайте цветова схема"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = "Нормално страницата с профила"; +$a->strings["This account is a normal personal profile"] = "Тази сметка е нормален личен профил"; +$a->strings["Soapbox Page"] = "Импровизирана трибуна Page"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматично одобрява всички / приятел искания само за четене фенове"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = "Автоматично приятел Page"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматично одобрява всички / молби за приятелство, като приятели"; +$a->strings["Private Forum [Experimental]"] = "Частен форум [експериментална]"; +$a->strings["Private forum - approved members only"] = "Само частен форум - Одобрени членове"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(По избор) позволяват това OpenID, за да влезете в тази сметка."; +$a->strings["Publish your default profile in your local site directory?"] = "Публикуване на вашия профил по подразбиране във вашата локална директория на сайта?"; +$a->strings["Publish your default profile in the global social directory?"] = "Публикуване на вашия профил по подразбиране в глобалната социална директория?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скриване на вашия контакт / списък приятел от зрителите на вашия профил по подразбиране?"; +$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?"] = "Оставете приятели, които да публикувате в страницата с вашия профил?"; +$a->strings["Allow friends to tag your posts?"] = "Оставете приятели, за да маркирам собствените си мнения?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позволете ни да Ви предложи като потенциален приятел за нови членове?"; +$a->strings["Permit unknown people to send you private mail?"] = "Разрешение непознати хора, за да ви Изпратете лично поща?"; +$a->strings["Profile is not published."] = "Профил не се публикува ."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Автоматично изтича мнения след толкова много дни:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити"; +$a->strings["Advanced expiration settings"] = "Разширени настройки за изтичане на срока"; +$a->strings["Advanced Expiration"] = "Разширено Изтичане"; +$a->strings["Expire posts:"] = "Срок на мнения:"; +$a->strings["Expire personal notes:"] = "Срок на лични бележки:"; +$a->strings["Expire starred posts:"] = "Срок със звезда на мнения:"; +$a->strings["Expire photos:"] = "Срок на снимки:"; +$a->strings["Only expire posts by others:"] = "Само изтича мнения от други:"; +$a->strings["Account Settings"] = "Настройки на профила"; +$a->strings["Password Settings"] = "Парола Настройки"; +$a->strings["Leave password fields blank unless changing"] = "Оставете паролите полета празни, освен ако промяна"; +$a->strings["Current Password:"] = "Текуща парола:"; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = "Парола"; +$a->strings["Basic Settings"] = "Основни настройки"; +$a->strings["Email Address:"] = "Електронна поща:"; +$a->strings["Your Timezone:"] = "Вашият Часовата зона:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Мнение местоположението по подразбиране:"; +$a->strings["Use Browser Location:"] = "Използвайте Browser Местоположение:"; +$a->strings["Security and Privacy Settings"] = "Сигурност и и лични настройки"; +$a->strings["Maximum Friend Requests/Day:"] = "Максимален брой молби за приятелство / ден:"; +$a->strings["(to prevent spam abuse)"] = "(Да се ​​предотврати спама злоупотреба)"; +$a->strings["Default Post Permissions"] = "Разрешения по подразбиране и"; +$a->strings["(click to open/close)"] = "(Щракнете за отваряне / затваряне)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = "Максимални лични съобщения на ден от непознати хора:"; +$a->strings["Notification Settings"] = "Настройки за уведомяване"; +$a->strings["By default post a status message when:"] = "По подразбиране се публикуват съобщение за състояние, когато:"; +$a->strings["accepting a friend request"] = "приемане на искането за приятел"; +$a->strings["joining a forum/community"] = "присъединяване форум / общността"; +$a->strings["making an interesting profile change"] = "един интересен Смяна на профил"; +$a->strings["Send a notification email when:"] = "Изпращане на известие по имейл, когато:"; +$a->strings["You receive an introduction"] = "Вие получавате въведение"; +$a->strings["Your introductions are confirmed"] = "Вашите въвеждания са потвърдени"; +$a->strings["Someone writes on your profile wall"] = "Някой пише в профила ви стена"; +$a->strings["Someone writes a followup comment"] = "Някой пише последващ коментар"; +$a->strings["You receive a private message"] = "Ще получите лично съобщение"; +$a->strings["You receive a friend suggestion"] = "Ще получите предложение приятел"; +$a->strings["You are tagged in a post"] = "Са маркирани в един пост"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = "Няма избрани видеоклипове"; +$a->strings["Recent Videos"] = "Скорошни видеоклипове"; +$a->strings["Upload New Videos"] = "Качване на нови видеоклипове"; +$a->strings["Invalid request."] = ""; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Файл за качване не успя."; +$a->strings["Theme settings updated."] = "Тема Настройки актуализира."; +$a->strings["Site"] = "Сайт"; +$a->strings["Users"] = "Потребители"; +$a->strings["Themes"] = "Теми"; +$a->strings["DB updates"] = "Обновления на БД"; +$a->strings["Inspect Queue"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = "Дневници"; +$a->strings["View Logs"] = ""; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = "Настройки на приставките"; +$a->strings["diagnostics"] = ""; +$a->strings["User registrations waiting for confirmation"] = "Потребителски регистрации, чакащи за потвърждение"; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Administration"] = "Администриране "; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See
                                              here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Нормално профил"; +$a->strings["Soapbox Account"] = "Импровизирана трибуна профил"; +$a->strings["Community/Celebrity Account"] = "Общността / Celebrity"; +$a->strings["Automatic Friend Account"] = "Автоматично приятел акаунт"; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = "Частен форум"; +$a->strings["Message queues"] = "Съобщение опашки"; +$a->strings["Summary"] = "Резюме"; +$a->strings["Registered users"] = "Регистрираните потребители"; +$a->strings["Pending registrations"] = "Предстоящи регистрации"; +$a->strings["Version"] = "Версия "; +$a->strings["Active plugins"] = "Включени приставки"; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["Site settings updated."] = "Настройките на сайта са обновени."; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["Never"] = "Никога!"; +$a->strings["At post arrival"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = ""; +$a->strings["Three months"] = ""; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = ""; +$a->strings["Multi user instance"] = ""; +$a->strings["Closed"] = "Затворен"; +$a->strings["Requires approval"] = "Изисква одобрение"; +$a->strings["Open"] = "Отворена."; +$a->strings["No SSL policy, links will track page SSL state"] = "Не SSL политика, връзки ще следи страница SSL състояние"; +$a->strings["Force all links to use SSL"] = "Принуди всички връзки да се използва SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Самоподписан сертификат, използвайте SSL за местни връзки единствено (обезкуражени)"; +$a->strings["File upload"] = "Прикачване на файлове"; +$a->strings["Policies"] = "Политики"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "Производителност"; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "Име на сайта"; +$a->strings["Host name"] = ""; +$a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = "Банер / лого"; +$a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = "Системен език"; +$a->strings["System theme"] = "Системна тема"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Тема по подразбиране система - може да бъде по-яздени потребителски профили - променяте настройки тема "; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = "SSL връзка политика"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Определя дали генерирани връзки трябва да бъдат принудени да се използва 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["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = ""; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; +$a->strings["Single user instance"] = ""; +$a->strings["Make this instance multi-user or single-user for the named user"] = ""; +$a->strings["Maximum image size"] = "Максимален размер на изображението"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимален размер в байтове на качените изображения. По подразбиране е 0, което означава, няма граници."; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = "Регистрирайте политика"; +$a->strings["Maximum Daily Registrations"] = ""; +$a->strings["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."] = ""; +$a->strings["Register text"] = "Регистрирайте се текст"; +$a->strings["Will be displayed prominently on the registration page."] = "Ще бъдат показани на видно място на страницата за регистрация."; +$a->strings["Accounts abandoned after x days"] = "Сметките изоставени след дни х"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето."; +$a->strings["Allowed friend domains"] = "Позволи на домейни приятел"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни"; +$a->strings["Allowed email domains"] = "Позволи на домейни имейл"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни"; +$a->strings["Block public"] = "Блокиране на обществения"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата."; +$a->strings["Force publish"] = "Принудително публикува"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта."; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["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."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["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."] = ""; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["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."] = ""; +$a->strings["Block multiple registrations"] = "Блокиране на множество регистрации"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Забраните на потребителите да се регистрират допълнителни сметки, за използване като страниците."; +$a->strings["OpenID support"] = "Поддръжка на OpenID"; +$a->strings["OpenID support for registration and logins."] = "Поддръжка на OpenID за регистрация и влизане."; +$a->strings["Fullname check"] = "Fullname проверка"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Силите на потребителите да се регистрират в пространството между Име и фамилия в пълно име, като мярка за антиспам"; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярни изрази"; +$a->strings["Use PHP UTF8 regular expressions"] = "Използвате PHP 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["Enable OStatus support"] = "Активирайте 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."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = "Активирайте диаспора подкрепа"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Осигури вградена диаспора в мрежата съвместимост."; +$a->strings["Only allow Friendica contacts"] = "Позволяват само Friendica контакти"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Всички контакти трябва да използвате Friendica протоколи. Всички останали вградени комуникационни протоколи с увреждания."; +$a->strings["Verify SSL"] = "Провери SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти."; +$a->strings["Proxy user"] = "Proxy потребител"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Мрежа изчакване"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)."; +$a->strings["Delivery interval"] = "Доставка интервал"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Забавяне процесите на доставка на заден план от това много секунди, за да се намали натоварването на системата. Препоръчай: 4-5 за споделени хостове, 2-3 за виртуални частни сървъри. 0-1 за големи наети сървъри."; +$a->strings["Poll interval"] = "Анкета интервал"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Забавяне избирателните фонови процеси от това много секунди, за да се намали натоварването на системата. Ако 0, използвайте интервал доставка."; +$a->strings["Maximum Load Average"] = "Максимално натоварване"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимално натоварване на системата преди раждането и анкета процеси са отложени - по подразбиране 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Use MySQL full text engine"] = ""; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; +$a->strings["Suppress Language"] = ""; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = ""; +$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."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Path for lock file"] = ""; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; +$a->strings["Temp path"] = ""; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$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["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = "Update е маркиран успешно"; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = "Актуализация %s бе успешно приложена."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Актуализация %s не се връща статус. Известно дали тя успя."; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "Няма провалени новини."; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = "Неуспешно Updates"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Това не включва актуализации, преди 1139, които не връщат статута."; +$a->strings["Mark success (if update was manually applied)"] = "Марк успех (ако актуализация е ръчно прилага)"; +$a->strings["Attempt to execute this update step automatically"] = "Опита да изпълни тази стъпка се обновяват автоматично"; +$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["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "", + 1 => "", +); +$a->strings["User '%s' deleted"] = "Потребителят \" %s \"Изтрити"; +$a->strings["User '%s' unblocked"] = "Потребителят \" %s \"отблокирани"; +$a->strings["User '%s' blocked"] = "Потребителят \" %s \"блокиран"; +$a->strings["Register date"] = "Дата на регистрация"; +$a->strings["Last login"] = "Последно влизане"; +$a->strings["Last item"] = "Последния елемент"; +$a->strings["Add User"] = ""; +$a->strings["select all"] = "Избор на всичко"; +$a->strings["User registrations waiting for confirm"] = "Потребителски регистрации, чакат за да потвърдите"; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = "Искане дата"; +$a->strings["No registrations."] = "Няма регистрации."; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = "Отказ"; +$a->strings["Block"] = "Блокиране"; +$a->strings["Unblock"] = "Разблокиране"; +$a->strings["Site admin"] = "Администратор на сайта"; +$a->strings["Account expired"] = ""; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?"; +$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?"] = "Потребител {0} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?"; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = "Plug-in %s увреждания."; +$a->strings["Plugin %s enabled."] = "Plug-in %s поддръжка."; +$a->strings["Disable"] = "забрани"; +$a->strings["Enable"] = "Да се активира ли?"; +$a->strings["Toggle"] = "切換"; +$a->strings["Author: "] = "Автор: "; +$a->strings["Maintainer: "] = "Отговорник: "; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = "Няма намерени теми."; +$a->strings["Screenshot"] = "Screenshot"; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = "(Експериментален)"; +$a->strings["[Unsupported]"] = "Неподдържан]"; +$a->strings["Log settings updated."] = "Вход Обновяването на настройките."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = "Безцветен "; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = "Регистрационен файл"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория."; +$a->strings["Log level"] = "Вход ниво"; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", +); +$a->strings["Could not access contact record."] = "Не може да бъде достъп до запис за контакт."; +$a->strings["Could not locate selected profile."] = "Не може да намери избрания профил."; +$a->strings["Contact updated."] = "Свържете се актуализират."; +$a->strings["Failed to update contact record."] = "Неуспех да се актуализира рекорд за контакт."; +$a->strings["Contact has been blocked"] = "За контакти е бил блокиран"; +$a->strings["Contact has been unblocked"] = "Контакт са отблокирани"; +$a->strings["Contact has been ignored"] = "Лицето е било игнорирано"; +$a->strings["Contact has been unignored"] = "За контакти е бил unignored"; +$a->strings["Contact has been archived"] = "Контакт бяха архивирани"; +$a->strings["Contact has been unarchived"] = "За контакти е бил разархивира"; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Наистина ли искате да изтриете този контакт?"; +$a->strings["Contact has been removed."] = "Контакт е била отстранена."; +$a->strings["You are mutual friends with %s"] = "Вие сте общи приятели с %s"; +$a->strings["You are sharing with %s"] = "Вие споделяте с %s"; +$a->strings["%s is sharing with you"] = "%s се споделя с вас"; +$a->strings["Private communications are not available for this contact."] = "Частни съобщения не са на разположение за този контакт."; +$a->strings["(Update was successful)"] = "(Update е била успешна)"; +$a->strings["(Update was not successful)"] = "(Актуализация не е била успешна)"; +$a->strings["Suggest friends"] = "Предложете приятели"; +$a->strings["Network type: %s"] = "Тип мрежа: %s"; +$a->strings["Communications lost with this contact!"] = "Communications загубиха с този контакт!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Профил Видимост"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Моля, изберете профила, който бихте искали да покажете на %s при гледане на здраво вашия профил."; +$a->strings["Contact Information / Notes"] = "Информация за контакти / Забележки"; +$a->strings["Edit contact notes"] = "Редактиране на контакт с бележка"; +$a->strings["Block/Unblock contact"] = "Блокиране / Деблокиране на контакт"; +$a->strings["Ignore contact"] = "Игнорирай се свържете с"; +$a->strings["Repair URL settings"] = "Настройки за ремонт на URL"; +$a->strings["View conversations"] = "Вижте разговори"; +$a->strings["Last update:"] = "Последна актуализация:"; +$a->strings["Update public posts"] = "Актуализиране на държавни длъжности"; +$a->strings["Update now"] = "Актуализирай сега"; +$a->strings["Unignore"] = "Извади от пренебрегнатите"; +$a->strings["Currently blocked"] = "Които понастоящем са блокирани"; +$a->strings["Currently ignored"] = "В момента игнорирани"; +$a->strings["Currently archived"] = "В момента архивират"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Отговори / обича да си публични длъжности май все още да се вижда"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Предложения"; +$a->strings["Suggest potential friends"] = "Предполагат потенциал приятели"; +$a->strings["Show all contacts"] = "Покажи на всички контакти"; +$a->strings["Unblocked"] = "Отблокирани"; +$a->strings["Only show unblocked contacts"] = "Покажи само Разблокирани контакти"; +$a->strings["Blocked"] = "Блокиран"; +$a->strings["Only show blocked contacts"] = "Покажи само Блокираните контакти"; +$a->strings["Ignored"] = "Игнорирани"; +$a->strings["Only show ignored contacts"] = "Покажи само игнорирани контакти"; +$a->strings["Archived"] = "Архивиран:"; +$a->strings["Only show archived contacts"] = "Покажи само архивирани контакти"; +$a->strings["Hidden"] = "Скрит"; +$a->strings["Only show hidden contacts"] = "Само показва скрити контакти"; +$a->strings["Search your contacts"] = "Търсене на вашите контакти"; +$a->strings["Archive"] = "Архив"; +$a->strings["Unarchive"] = "Разархивирате"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Преглед на всички контакти"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Разширени настройки за контакт"; +$a->strings["Mutual Friendship"] = "Взаимното приятелство"; +$a->strings["is a fan of yours"] = "е фенка"; +$a->strings["you are a fan of"] = "Вие сте фен на"; +$a->strings["Toggle Blocked status"] = "Превключване Блокирани статус"; +$a->strings["Toggle Ignored status"] = "Превключване игнорирани статус"; +$a->strings["Toggle Archive status"] = "Превключване статус Архив"; +$a->strings["Delete contact"] = "Изтриване на контакта"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Това понякога може да се случи, ако контакт е поискано от двете лица и вече е одобрен."; +$a->strings["Response from remote site was not understood."] = "Отговор от отдалечен сайт не е бил разбран."; +$a->strings["Unexpected response from remote site: "] = "Неочакван отговор от отдалечения сайт: "; +$a->strings["Confirmation completed successfully."] = "Потвърждение приключи успешно."; +$a->strings["Remote site reported: "] = "Отдалеченият сайт докладвани: "; +$a->strings["Temporary failure. Please wait and try again."] = "Временен неуспех. Моля изчакайте и опитайте отново."; +$a->strings["Introduction failed or was revoked."] = "Въведение не успя или е анулиран."; +$a->strings["Unable to set contact photo."] = "Не може да зададете снимка на контакт."; +$a->strings["No user record found for '%s' "] = "Нито един потребител не запис за ' %s"; +$a->strings["Our site encryption key is apparently messed up."] = "Основният ни сайт криптиране е очевидно побъркани."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Празен сайт URL е предоставена или URL не може да бъде разшифрован от нас."; +$a->strings["Contact record was not found for you on our site."] = "Контакт с запис не е намерен за вас на нашия сайт."; +$a->strings["Site public key not available in contact record for URL %s."] = "Site публичния ключ не е наличен в контакт рекорд за %s URL ."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предоставена от вашата система, е дубликат на нашата система. Той трябва да работи, ако се опитате отново."; +$a->strings["Unable to set your contact credentials on our system."] = "Не може да се установи контакт с вас пълномощията на нашата система."; +$a->strings["Unable to update your contact profile details on our system"] = "Не може да актуализирате вашите данни за контакт на профил в нашата система"; +$a->strings["%1\$s has joined %2\$s"] = "Се присъедини към %2\$s %1\$s %2\$s"; +$a->strings["This introduction has already been accepted."] = "Това въведение е вече е приета."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Профил местоположение не е валиден или не съдържа информация на профила."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: профила място има няма установен име на собственика."; +$a->strings["Warning: profile location has no profile photo."] = "Внимание: профила местоположение не е снимката на профила."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "", + 1 => "", +); +$a->strings["Introduction complete."] = "Въведение завърши."; +$a->strings["Unrecoverable protocol error."] = "Невъзстановима протокол грешка."; +$a->strings["Profile unavailable."] = "Профил недостъпни."; +$a->strings["%s has received too many connection requests today."] = "%s е получил твърде много заявки за свързване днес."; +$a->strings["Spam protection measures have been invoked."] = "Мерките за защита срещу спам да бъдат изтъкнати."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Приятели се препоръчва да се моля опитайте отново в рамките на 24 часа."; +$a->strings["Invalid locator"] = "Невалиден локатор"; +$a->strings["Invalid email address."] = "Невалиден имейл адрес."; +$a->strings["This account has not been configured for email. Request failed."] = "Този профил не е конфигуриран за електронна поща. Заявката не бе успешна."; +$a->strings["You have already introduced yourself here."] = "Вие вече се въведе тук."; +$a->strings["Apparently you are already friends with %s."] = "Явно вече сте приятели с %s ."; +$a->strings["Invalid profile URL."] = "Невалиден URL адрес на профила."; +$a->strings["Your introduction has been sent."] = "Вашият въвеждането е било изпратено."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Моля, влезте, за да потвърди въвеждането."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Неправилно идентичност, който в момента е логнат. Моля, влезте с потребителско име и парола на този профил ."; +$a->strings["Confirm"] = "Потвърждаване"; +$a->strings["Hide this contact"] = "Скриване на този контакт"; +$a->strings["Welcome home %s."] = "Добре дошли у дома %s ."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Моля, потвърдете, въвеждане / заявката за свързване към %s ."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Моля, въведете \"Идентичност Адрес\" от един от следните поддържани съобщителни мрежи:"; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Приятел / заявка за връзка"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примери: jojo@demo.friendica.com~~HEAD=NNS, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Моля отговорете на следните:"; +$a->strings["Does %s know you?"] = "Има ли %s знаете?"; +$a->strings["Add a personal note:"] = "Добавяне на лична бележка:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Федерални социална мрежа"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - Моля, не използвайте тази форма. Вместо това въведете %s в търсенето диаспора бар."; +$a->strings["Your Identity Address:"] = "Адрес на вашата самоличност:"; +$a->strings["Submit Request"] = "Изпращане на заявката"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Свържете се добавя"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Не може да се свърже с базата данни."; +$a->strings["Could not create table."] = "Не може да се създаде таблица."; +$a->strings["Your Friendica site database has been installed."] = "Вашият Friendica сайт база данни е инсталиран."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Може да се наложи да импортирате файла \"database.sql\" ръчно чрез настървение или MySQL."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Моля, вижте файла \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Проверка на системата"; +$a->strings["Check again"] = "Проверете отново"; +$a->strings["Database connection"] = "Свързване на база данни"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите."; +$a->strings["Database Server Name"] = "Име на сървър за база данни"; +$a->strings["Database Login Name"] = "Името на базата данни Парола"; +$a->strings["Database Login Password"] = "Database Влизам Парола"; +$a->strings["Database Name"] = "Име на база данни"; +$a->strings["Site administrator email address"] = "Сайт администратор на имейл адрес"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор."; +$a->strings["Please select a default timezone for your website"] = "Моля, изберете часовата зона по подразбиране за вашия уеб сайт"; +$a->strings["Site settings"] = "Настройки на сайта"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не може да се намери командния ред версия на PHP в PATH уеб сървър."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "PHP изпълним път"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията."; +$a->strings["Command line PHP"] = "Команден ред PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "В командния ред версия на PHP на вашата система не трябва \"register_argc_argv\" дадоха възможност."; +$a->strings["This is required for message delivery to work."] = "Това е необходимо за доставка на съобщение, за да работят."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Грешка: \"openssl_pkey_new\" функция на тази система не е в състояние да генерира криптиращи ключове"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ако работите под Windows, моля, вижте \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Генериране на криптиращи ключове"; +$a->strings["libCurl PHP module"] = "libCurl PHP модул"; +$a->strings["GD graphics PHP module"] = "GD графика PHP модул"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модул"; +$a->strings["mysqli PHP module"] = "mysqli PHP модул"; +$a->strings["mb_string PHP module"] = "mb_string PHP модул"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite модул"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Грешка: libCURL PHP модул, но не е инсталирана."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана."; +$a->strings["Error: openssl PHP module required but not installed."] = "Грешка: OpenSSL PHP модул са необходими, но не е инсталирана."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Грешка: mysqli PHP модул, но не е инсталирана."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Грешка: mb_string PHP модул, но не е инсталирана."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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."] = "Уеб инсталатора трябва да бъде в състояние да създаде файл с име \". Htconfig.php\" в най-горната папка на вашия уеб сървър и не е в състояние да го направят."; +$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."] = "Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете."; +$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."] = "В края на тази процедура, ние ще ви дадем един текст, за да се запишете в файл с име. Htconfig.php в топ Friendica папка."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Можете като алтернатива да пропуснете тази процедура и да извърши ръчно инсталиране. Моля, вижте файла \"INSTALL.txt\", за инструкции."; +$a->strings[".htconfig.php is writable"] = ",. Htconfig.php е записваем"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL пренапише. Htaccess не работи. Проверете вашата конфигурация сървър."; +$a->strings["Url rewrite is working"] = ", Url пренаписванията работи"; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Конфигурационния файл на базата данни \". Htconfig.php\" не може да бъде написано. Моля, използвайте приложения текст, за да се създаде конфигурационен файл в основната си уеб сървър."; +$a->strings["

                                              What next

                                              "] = "

                                              Каква е следващата стъпка "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вие ще трябва да [ръчно] настройка на планирана задача за poller."; +$a->strings["Unable to locate original post."] = "Не може да се намери оригиналната публикация."; +$a->strings["Empty post discarded."] = "Empty мнение изхвърли."; +$a->strings["System error. Post not saved."] = "Грешка в системата. Мнение не е запазен."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica."; +$a->strings["You may visit them online at %s"] = "Можете да ги посетите онлайн на адрес %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения."; +$a->strings["%s posted an update."] = "%s е публикувал актуализация."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", +); +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Лични съобщения до това лице, са изложени на риск от публичното оповестяване."; +$a->strings["Invalid contact."] = "Невалиден свържете."; +$a->strings["Commented Order"] = "Коментирани поръчка"; +$a->strings["Sort by Comment Date"] = "Сортиране по Коментар Дата"; +$a->strings["Posted Order"] = "Пуснато на поръчка"; +$a->strings["Sort by Post Date"] = "Сортирай по пощата дата"; +$a->strings["Posts that mention or involve you"] = "Мнения, които споменават или включват"; +$a->strings["New"] = "Нов профил."; +$a->strings["Activity Stream - by date"] = "Активност Stream - по дата"; +$a->strings["Shared Links"] = "Общо връзки"; +$a->strings["Interesting Links"] = "Интересни Връзки"; +$a->strings["Starred"] = "Със звезда"; +$a->strings["Favourite Posts"] = "Любими Мнения"; +$a->strings["{0} wants to be your friend"] = "{0} иска да бъде твой приятел"; +$a->strings["{0} sent you a message"] = "{0} ви изпрати съобщение"; +$a->strings["{0} requested registration"] = "{0} исканата регистрация"; +$a->strings["No contacts."] = "Няма контакти."; +$a->strings["via"] = ""; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; $a->strings["Alignment"] = "Подравняване"; $a->strings["Left"] = "Ляво"; $a->strings["Center"] = "Център"; +$a->strings["Color scheme"] = "Цветова схема"; $a->strings["Posts font size"] = ""; $a->strings["Textareas font size"] = ""; -$a->strings["Set resolution for middle column"] = "Настройте резолюция за средната колона"; -$a->strings["Set color scheme"] = "Задайте цветова схема"; -$a->strings["Set zoomfactor for Earth Layer"] = "Да Настройте zoomfactor за слоя на Земята"; -$a->strings["Set longitude (X) for Earth Layers"] = "Set дължина (X) за слоеве на Земята"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Настройте ширината (Y) за слоеве на Земята"; -$a->strings["Community Pages"] = "Общността Pages"; -$a->strings["Earth Layers"] = "Земните пластове"; $a->strings["Community Profiles"] = "Общността Профили"; -$a->strings["Help or @NewHere ?"] = "Помощ или @ NewHere,?"; -$a->strings["Connect Services"] = "Свържете Услуги"; -$a->strings["Find Friends"] = "Намери приятели"; $a->strings["Last users"] = "Последни потребители"; -$a->strings["Last photos"] = "Последни снимки"; -$a->strings["Last likes"] = "Последно харесва"; -$a->strings["Your contacts"] = "Вашите контакти"; -$a->strings["Your personal photos"] = "Вашите лични снимки"; +$a->strings["Find Friends"] = "Намери приятели"; $a->strings["Local Directory"] = "Локалната директория"; -$a->strings["Set zoomfactor for Earth Layers"] = "Да Настройте zoomfactor за земните пластове"; -$a->strings["Show/hide boxes at right-hand column:"] = "Покажи / скрий кутии в дясната колона:"; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = "Свържете Услуги"; +$a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = ""; +$a->strings["Community Pages"] = "Общността Pages"; +$a->strings["Help or @NewHere ?"] = "Помощ или @ NewHere,?"; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; @@ -1795,3 +2037,16 @@ $a->strings["darkzero"] = ""; $a->strings["comix"] = ""; $a->strings["slackr"] = ""; $a->strings["Variations"] = ""; +$a->strings["Delete this item?"] = "Изтриване на тази бележка?"; +$a->strings["show fewer"] = "показват по-малко"; +$a->strings["Update %s failed. See error logs."] = "Актуализация %s не успя. Виж логовете за грешки."; +$a->strings["Create a New Account"] = "Създаване на нов профил:"; +$a->strings["Password: "] = "Парола "; +$a->strings["Remember me"] = ""; +$a->strings["Or login using OpenID: "] = "Или да влезнете с OpenID: "; +$a->strings["Forgot your password?"] = "Забравена парола?"; +$a->strings["Website Terms of Service"] = "Условия за ползване на сайта"; +$a->strings["terms of service"] = "условия за ползване"; +$a->strings["Website Privacy Policy"] = "Политика за поверителност на сайта"; +$a->strings["privacy policy"] = "политика за поверителност"; +$a->strings["toggle mobile"] = ""; diff --git a/view/lang/ca/messages.po b/view/lang/ca/messages.po index 078f49508..83c65b1d7 100644 --- a/view/lang/ca/messages.po +++ b/view/lang/ca/messages.po @@ -3,5691 +3,1663 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Rafael , 2012 -# Rafael , 2012-2013 +# Rafael Garau, 2012 +# Rafael Garau, 2012-2013 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" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" "Last-Translator: fabrixxm \n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/friendica/language/ca/)\n" +"Language-Team: Catalan (http://www.transifex.com/Friendica/friendica/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Afegir Nou Contacte" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Introdueixi adreça o ubicació 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:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Connexió" + +#: include/contact_widgets.php:24 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitació disponible" +msgstr[1] "%d invitacions disponibles" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "No puc accedir al registre del contacte." +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trobar Gent" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "No puc localitzar el perfil seleccionat." +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Introdueixi nom o aficions" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Contacte actualitzat." +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "Connectar/Seguir" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Error en actualitzar registre de contacte." +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Robert Morgenstein, Pescar" -#: ../../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 -#: ../../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 -msgid "Permission denied." -msgstr "Permís denegat." +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Cercar" -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Elcontacte ha estat bloquejat" +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Amics Suggerits" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "El contacte ha estat desbloquejat" +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Aficions Similars" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "El contacte ha estat ignorat" +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Perfi Aleatori" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "El contacte ha estat recordat" +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Invita Amics" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "El contacte ha estat arxivat" +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "Xarxes" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "El contacte ha estat desarxivat" +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "totes les Xarxes" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Realment vols esborrar aquest contacte?" +#: include/contact_widgets.php:141 include/features.php:110 +msgid "Saved Folders" +msgstr "Carpetes Guardades" -#: ../../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 -msgid "Yes" -msgstr "Si" +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "Tot" -#: ../../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 -msgid "Cancel" -msgstr "Cancel·lar" +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "Categories" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "El contacte ha estat tret" - -#: ../../mod/contacts.php:390 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Ara te una amistat mutua amb %s" - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are sharing with %s" -msgstr "Estas compartint amb %s" - -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s esta compartint amb tú" - -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Comunicacions privades no disponibles per aquest contacte." - -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Mai" - -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(L'actualització fou exitosa)" - -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(L'actualització fracassà)" - -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Suggerir amics" - -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Xarxa tipus: %s" - -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contacte en comú" msgstr[1] "%d contactes en comú" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Veure tots els contactes" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "Mostrar més" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Desbloquejar" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Bloquejar" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Canvi de estatus blocat" +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Home" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Treure d'Ignorats" +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Dona" -#: ../../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 "Ignorar" +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actualment Home" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Canvi de estatus ignorat" +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actualment Dona" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Desarxivat" +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Habitualment Home" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Arxivat" +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Habitualment Dona" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Canvi de estatus del arxiu" +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgènere" -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Reparar" +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Bisexual" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Ajustos Avançats per als Contactes" +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexual" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "La comunicació amb aquest contacte s'ha perdut!" +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Editor de Contactes" +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutre" -#: ../../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 "Enviar" +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "No específicat" -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Perfil de Visibilitat" +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Altres" -#: ../../mod/contacts.php:477 +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Home" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Dona" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbiana" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Sense Preferències" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexual" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent/a" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Verge" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Desviat/da" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetixiste" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Orgies" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asexual" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Solter/a" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitari" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponible" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "No Disponible" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Compromés" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Enamorat" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "De cites" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infidel" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Adicte al sexe" + +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Amics/Amigues" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amics íntims" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Oportunista" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Promès" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Casat" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Matrimoni imaginari" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Socis" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Cohabitant" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Segons costums" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Feliç" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "No cerco" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Parella Liberal" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Traït/da" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separat/da" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Inestable" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorciat/da" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorci imaginari" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vidu/a" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incert" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Es complicat" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "No t'interessa" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Pregunta'm" + +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No put trobar informació de DNS del servidor de base de dades '%s'" -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Informació/Notes del contacte" +#: include/auth.php:45 +msgid "Logged out." +msgstr "Has sortit" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Editar notes de contactes" - -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar perfil de %s [%s]" - -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Bloquejar/Alliberar contacte" - -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignore contacte" - -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Restablir configuració de URL" - -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Veient conversacions" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Esborrar contacte" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Última actualització:" - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Actualitzar enviament públic" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Actualitza ara" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Bloquejat actualment" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Ignorat actualment" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Actualment arxivat" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Amaga aquest contacte dels altres" - -#: ../../mod/contacts.php:508 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Répliques/agraiments per als teus missatges públics poden romandre visibles" - -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../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 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Suggeriments" - -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Suggerir amics potencials" - -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Tots els Contactes" - -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Mostrar tots els contactes" - -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Desblocat" - -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Mostrar únicament els contactes no blocats" - -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Blocat" - -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Mostrar únicament els contactes blocats" - -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignorat" - -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Mostrar únicament els contactes ignorats" - -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Arxivat" - -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Mostrar únicament els contactes arxivats" - -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Amagat" - -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Mostrar únicament els contactes amagats" - -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Amistat Mutua" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "Es un fan teu" - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "ets fan de" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editar contacte" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contactes" - -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Cercant el seus contactes" - -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Cercant:" - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Cercar" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Actualitzar" - -#: ../../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 "Esborrar" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Sense perfil" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Administrar Identitats i/o Pàgines" - -#: ../../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 "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleccionar identitat a administrar:" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publicat amb éxit." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Permís denegat" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no vàlid." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor de Visibilitat del Perfil" - -#: ../../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 "Perfil" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Clicar sobre el contacte per afegir o esborrar." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible Per" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tots els Contactes (amb accés segur al perfil)" - -#: ../../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 "Article no trobat." - -#: ../../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 públic denegat." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accés a aquest perfil ha estat restringit." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "El element ha estat esborrat." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvingut a Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Llista de Verificació dels Nous Membres" - -#: ../../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 "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Començem" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Paseja per 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 "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." - -#: ../../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 "Ajustos" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Anar als Teus Ajustos" - -#: ../../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 "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." - -#: ../../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 "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Pujar Foto del Perfil" - -#: ../../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 "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editar el Teu Perfil" - -#: ../../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 "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Paraules clau del Perfil" - -#: ../../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 "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Connectant" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -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 "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses." - -#: ../../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 aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Important Emails" - -#: ../../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 "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Anar a la Teva Pàgina de Contactes" - -#: ../../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 "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Anar al Teu Directori" - -#: ../../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 pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trobar Gent Nova" - -#: ../../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 "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Grups" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Agrupar els Teus Contactes" - -#: ../../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 "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Per que no es public el meu enviament?" - -#: ../../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 respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Demanant Ajuda" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Anar a la secció d'Ajuda" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Error al protocol OpenID. No ha retornat ID." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 msgid "Login failed." msgstr "Error d'accés." -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Imatge pujada però no es va poder retallar." - -#: ../../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 "Fotos del Perfil" - -#: ../../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 "La reducció de la imatge [%s] va fracassar." - -#: ../../mod/profile_photo.php:118 +#: include/auth.php:132 include/user.php:75 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "No es pot processar la imatge" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "El missatge d'error fou: " -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La imatge sobrepassa el límit de mida de %d" - -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Incapaç de processar la imatge." - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Pujar arxiu:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Tria un perfil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Pujar" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "saltar aquest pas" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "tria una foto dels teus àlbums" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "retallar imatge" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Edició Feta" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Carregada de la imatge amb èxit." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Actualització de la imatge fracassada." - -#: ../../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 "estatus" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s esta seguint %2$s de %3$s" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etiqueta eliminada" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Esborrar etiqueta del element" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecciona etiqueta a esborrar:" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Esborrar" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 -msgid "Save to Folder:" -msgstr "Guardar a la Carpeta:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleccionar -" - -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 -msgid "Save" -msgstr "Guardar" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contacte afegit" - -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "No es pot localitzar post original." - -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Buidat després de rebutjar." - -#: ../../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 "Fotos del Mur" - -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Error del sistema. Publicació no guardada." - -#: ../../mod/item.php:964 -#, php-format +#: include/group.php:25 msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." +"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 grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent." -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "El pot visitar en línia a %s" +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Privacitat per defecte per a nous contactes" -#: ../../mod/item.php:967 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." +#: include/group.php:242 +msgid "Everybody" +msgstr "Tothom" -#: ../../mod/item.php:971 -#, php-format -msgid "%s posted an update." -msgstr "%s ha publicat una actualització." +#: include/group.php:265 +msgid "edit" +msgstr "editar" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grup creat." +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Grups" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "No puc crear grup." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Grup no trobat" - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Nom de Grup canviat." - -#: ../../mod/group.php:87 -msgid "Save Group" +#: include/group.php:288 +msgid "Edit groups" msgstr "" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crear un grup de contactes/amics." +#: include/group.php:290 +msgid "Edit group" +msgstr "Editar grup" -#: ../../mod/group.php:94 ../../mod/group.php:180 +#: include/group.php:291 +msgid "Create a new group" +msgstr "Crear un nou grup" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 msgid "Group Name: " msgstr "Nom del Grup:" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Grup esborrat." +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Contactes en cap grup" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Incapaç de esborrar Grup." +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "afegir" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor de Grup:" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Desconegut/No categoritzat" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membres" +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquejar immediatament" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "T'has d'identificar per emprar els complements" +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Sospitós, Spam, auto-publicitat" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplicacions" +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Conegut per mi, però sense opinió" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Aplicacions no instal·lades." +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Bé, probablement inofensiu" -#: ../../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 "Perfil no trobat." +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Bona reputació, té la meva confiança" -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Contacte no trobat" +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Freqüentment" -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades." +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Cada hora" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "La resposta des del lloc remot no s'entenia." +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Dues vegades al dia" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Resposta inesperada de lloc remot:" +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Diari" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "La confirmació s'ha completat correctament." +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Setmanal" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "El lloc remot informa:" +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensual" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Fallada temporal. Si us plau, espereu i torneu a intentar." +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentació va fallar o va ser revocada." +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "No es pot canviar la foto de contacte." +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../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 és ara amic amb %2$s" +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Correu" -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "No es troben registres d'usuari per a '%s'" +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra clau de xifrat del lloc pel que sembla en mal estat." +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres." +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "No s'han trobat registres del contacte al nostre lloc." +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "la clau pública del lloc no disponible en les dades del contacte per URL %s." +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../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 "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou." +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "No es pot canviar les seves credencials de contacte en el nostre sistema." +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema" - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Nom Amagat]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s s'ha unit a %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "El perfil sol·licitat no està disponible." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Consells per a nous membres" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "No s'han seleccionat vídeos " - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element està restringit." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Veure Video" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Veure Àlbum" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Videos Recents" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Carrega Nous Videos" - -#: ../../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 etiquetats %2$s %3$s amb %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Enviat suggeriment d'amic." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerir Amics" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerir un amic per a %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "compte no vàlid trobat." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." - -#: ../../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." +#: include/contact_selectors.php:88 +msgid "pump.io" 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" +#: include/contact_selectors.php:89 +msgid "Twitter" msgstr "" -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Contrasenya restablerta enviada a %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Restabliment de Contrasenya" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La teva contrasenya fou restablerta com vas demanar." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La teva nova contrasenya es" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Guarda o copia la nova contrasenya - i llavors" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "clica aquí per identificarte" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." - -#: ../../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" +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" 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" +#: include/contact_selectors.php:91 +msgid "GNU Social" msgstr "" -#: ../../mod/lostpass.php:147 +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Correu per enviar" + +#: include/acl_selectors.php:332 #, php-format -msgid "Your password has been changed at %s" -msgstr "La teva contrasenya ha estat canviada a %s" +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Has Oblidat la Contrasenya?" +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Amagar els detalls del seu perfil a espectadors desconeguts?" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Visible per tothom" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Àlies o Correu:" +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "mostra" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Restablir" +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "no mostris" -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: Adreça de correu" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Permisos" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Tancar" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "estatus" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "esdeveniment" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "a %1$s agrada %2$s de %3$s" -#: ../../mod/like.php:168 ../../include/conversation.php:140 +#: include/like.php:184 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "a %1$s no agrada %2$s de %3$s" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} vol ser el teu amic" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} t'ha enviat un missatge de" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} solicituts de registre" - -#: ../../mod/ping.php:256 +#: include/like.php:186 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} va comentar l'enviament de %s" +msgid "%1$s is attending %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:261 +#: include/like.php:188 #, php-format -msgid "{0} liked %s's post" -msgstr "A {0} l'ha agradat l'enviament de %s" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:266 +#: include/like.php:190 #, php-format -msgid "{0} disliked %s's post" -msgstr "A {0} no l'ha agradat l'enviament de %s" +msgid "%1$s may attend %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:271 +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[Sense assumpte]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Fotos del Mur" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Clica aquí per actualitzar." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Aquesta acció excedeix els límits del teu plan de subscripció." + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "Aquesta acció no està disponible en el teu plan de subscripció." + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Error decodificant l'arxiu del compte" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Error! No puc comprobar l'Àlies" + +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ara és amic de %s" +msgid "User '%s' already exists on this server!" +msgstr "El usuari %s' ja existeix en aquest servidor!" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} publicat" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Error en la creació de l'usuari" -#: ../../mod/ping.php:281 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Error en la creació del perfil d'usuari" + +#: include/uimport.php:222 #, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} va etiquetar la publicació de %s com #%s" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contacte no importat" +msgstr[1] "%d contactes no importats" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} et menciona en un missatge" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Sense Contactes" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Miscel·lania" -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Veure Contactes" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Aniversari:" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació no vàlida." +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Edat:" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Descartar" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Sistema" +#: include/datetime.php:341 +msgid "never" +msgstr "mai" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Xarxa" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "Fa menys d'un segon" -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Personal" +#: include/datetime.php:350 +msgid "year" +msgstr "any" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 +#: include/datetime.php:350 +msgid "years" +msgstr "anys" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "mes" + +#: include/datetime.php:351 +msgid "months" +msgstr "mesos" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "setmana" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "setmanes" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "dia" + +#: include/datetime.php:353 +msgid "days" +msgstr "dies" + +#: include/datetime.php:354 +msgid "hour" +msgstr "hora" + +#: include/datetime.php:354 +msgid "hours" +msgstr "hores" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minut" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minuts" + +#: include/datetime.php:356 +msgid "second" +msgstr "segon" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "segons" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr " fa %1$d %2$s" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "%s aniversari" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliç Aniversari %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Notificacions de Friendica" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Gràcies," + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "no contestar" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica: Notifica] nou correu rebut a %s" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s t'ha enviat %2$s." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "un missatge privat" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s ha comentat en [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s ha comentat en [url=%2$s]%3$s de %4$s[/url]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s ha comentat en [url=%2$s] el teu %3$s[/url]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha comentat un element/conversació que estas seguint." + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notifica] %s enviat al teu mur del perfil" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s t'ha etiquetat" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s t'ha etiquetat a %2$s" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s] t'ha etiquetat[/url]." + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notificació] %1$s t'atia" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s t'atia en %2$s" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]t'atia[/url]." + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha etiquetat el teu missatge" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha etiquetat un missatge teu a %2$s" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s etiquetà [url=%2$s] el teu enviament[/url]" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Presentacio rebuda" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Has rebut una presentació des de '%1$s' en %2$s" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Pot visitar el seu perfil en %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Suggerencia d'amistat rebuda" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Nom:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Inici:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Acaba:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Ubicació:" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Diumenge" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Dilluns" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Dimarts" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Dimecres" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Dijous" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Divendres" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Dissabte" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Maig" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Gener" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Febrer" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Març" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Abril" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Juny" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Juliol" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Agost" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Setembre" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Octubre" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Novembre" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Desembre" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Editar esdeveniment" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "Enllaç al origen" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Res nou aquí" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Neteja notificacions" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Sortir" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Termina sessió" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Estatus" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Els teus anuncis i converses" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Perfil" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "La seva pàgina de perfil" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Fotos" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Les seves fotos" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Vídeos" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Esdeveniments" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Els seus esdeveniments" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Notes personals" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Identifica't" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Accedeix" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 msgid "Home" msgstr "Inici" -#: ../../mod/notifications.php:98 ../../include/nav.php:154 +#: include/nav.php:105 +msgid "Home Page" +msgstr "Pàgina d'Inici" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registrar" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crear un compte" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Ajuda" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Ajuda i documentació" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Aplicacions" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Afegits: aplicacions, utilitats, jocs" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Cercar" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Busca contingut en el lloc" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Contactes" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Comunitat" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Converses en aquest lloc" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Esdeveniments i Calendari" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Directori" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Directori de gent" + +#: include/nav.php:154 +msgid "Information" +msgstr "" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Xarxa" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Converses dels teus amics" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Reiniciar Xarxa" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "carrega la pàgina de Xarxa sense filtres" + +#: include/nav.php:166 include/NotificationsManager.php:181 msgid "Introductions" msgstr "Presentacions" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Mostra les Sol·licituds Ignorades" +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Sol·licitud d'Amistat" -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Amaga les Sol·licituds Ignorades" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipus de Notificació:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amics Suggerits " - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerit per %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Publica una activitat d'amic nova" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "si es pot aplicar" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Aprovar" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Diu que et coneix:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "sí" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "no" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprovat com:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amic" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Partícip" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Admirador" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Sol·licitud d'Amistat/Connexió" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nou Seguidor" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Sense presentacions." - -#: ../../mod/notifications.php:220 ../../include/nav.php:155 +#: include/nav.php:169 mod/notifications.php:96 msgid "Notifications" msgstr "Notificacions" -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "A %s li agrada l'enviament de %s" +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Veure totes les notificacions" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "A %s no li agrada l'enviament de %s" +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Marcar com a vist" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s es ara amic de %s" +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Marcar totes les notificacions del sistema com a vistes" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "%s ha creat un enviament nou" +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Missatges" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Correu privat" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Safata de sortida" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nou Missatge" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Gestionar" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Gestiona altres pàgines" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegacions" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Gestió de les Pàgines Delegades" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Ajustos" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Configuració del compte" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Perfils" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Gestiona/Edita Perfils" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Gestiona/edita amics i contactes" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Admin" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Ajustos i configuració del lloc" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navegació" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mapa del lloc" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Fotos de Contacte" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Benvingut" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Per favor, carrega una foto per al perfil" + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Benvingut de nou " + +#: include/security.php:373 +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 "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistema" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Personal" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 #, php-format msgid "%s commented on %s's post" msgstr "%s va comentar en l'enviament de %s" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "No més notificacions de xarxa." - -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Notificacions de la Xarxa" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "No més notificacions del sistema." - -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Notificacions del Sistema" - -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "No més notificacions personals." - -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Notificacions Personals" - -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "No més notificacions d'inici." - -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Notificacions d'Inici" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Text Codi (bbcode): " - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Font (Diaspora) Convertir text a BBcode" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada de Codi:" - -#: ../../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 "Font d'entrada (format de Diaspora)" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Res nou aquí" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Neteja notificacions" - -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Nou Missatge" - -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "No s'ha seleccionat destinatari." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "No es pot trobar informació de contacte." - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "El Missatge no ha estat enviat." - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Ha fallat la recollida del missatge." - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Missatge enviat." - -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Missatges" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Realment vols esborrar aquest missatge?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Missatge eliminat." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversació esborrada." - -#: ../../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 "Sius plau, entri l'enllaç URL:" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Enviant Missatge Privat" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "Per a:" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Assumpte::" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Carregar foto" - -#: ../../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 "Inserir enllaç web" - -#: ../../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 "Si us plau esperi" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Sense missatges." - -#: ../../mod/message.php:378 +#: include/NotificationsManager.php:243 #, php-format -msgid "Unknown sender - %s" -msgstr "remitent desconegut - %s" +msgid "%s created a new post" +msgstr "%s ha creat un enviament nou" -#: ../../mod/message.php:381 +#: include/NotificationsManager.php:256 #, php-format -msgid "You and %s" -msgstr "Tu i %s" +msgid "%s liked %s's post" +msgstr "A %s li agrada l'enviament de %s" -#: ../../mod/message.php:384 +#: include/NotificationsManager.php:267 #, php-format -msgid "%s and You" -msgstr "%s i Tu" +msgid "%s disliked %s's post" +msgstr "A %s no li agrada l'enviament de %s" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Esborrar conversació" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 +#: include/NotificationsManager.php:278 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d missatge" -msgstr[1] "%d missatges" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Missatge no disponible." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Esborra missatge" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Enviar Resposta" - -#: ../../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 "[Contingut embegut - recarrega la pàgina per a veure-ho]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Ajustos de Contacte aplicats." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Fracassà l'actualització de Contacte" - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Reposar els ajustos de Contacte" - -#: ../../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 "ADVERTÈNCIA: Això és molt avançat i si s'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Tornar al editor de contactes" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" +msgid "%s is attending %s's event" 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 -msgid "Name" -msgstr "Nom" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Àlies del Compte" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - té prel·lació sobre Nom/Àlies" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "Adreça URL del Compte" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Adreça URL de sol·licitud d'Amistat" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Adreça URL de confirmació d'Amic" - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Adreça URL de Notificació" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Adreça de Enquesta/Alimentador" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nova foto d'aquesta 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/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Identifica't" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accés denegat." - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cercant Gent" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "No hi ha coincidències" - -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Fotos" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Arxius" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contactes que no pertanyen a cap grup" - -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Ajustos de Tema actualitzats" - -#: ../../mod/admin.php:104 ../../mod/admin.php:619 -msgid "Site" -msgstr "Lloc" - -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 -msgid "Users" -msgstr "Usuaris" - -#: ../../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 "Temes" - -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Actualitzacions de BD" - -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 -msgid "Logs" -msgstr "Registres" - -#: ../../mod/admin.php:124 -msgid "probe address" -msgstr "" - -#: ../../mod/admin.php:125 -msgid "check webfinger" -msgstr "" - -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Admin" - -#: ../../mod/admin.php:131 -msgid "Plugin Features" -msgstr "Característiques del Plugin" - -#: ../../mod/admin.php:133 -msgid "diagnostics" -msgstr "" - -#: ../../mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Registre d'usuari a l'espera de confirmació" - -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Compte Normal" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Compte Tribuna" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Compte de Comunitat/Celebritat" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Compte d'Amistat Automàtic" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Compte de Blog" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Fòrum Privat" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Cues de missatges" - -#: ../../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 -msgid "Administration" -msgstr "Administració" - -#: ../../mod/admin.php:223 -msgid "Summary" -msgstr "Sumari" - -#: ../../mod/admin.php:225 -msgid "Registered users" -msgstr "Usuaris registrats" - -#: ../../mod/admin.php:227 -msgid "Pending registrations" -msgstr "Registres d'usuari pendents" - -#: ../../mod/admin.php:228 -msgid "Version" -msgstr "Versió" - -#: ../../mod/admin.php:232 -msgid "Active plugins" -msgstr "Plugins actius" - -#: ../../mod/admin.php:255 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: ../../mod/admin.php:516 -msgid "Site settings updated." -msgstr "Ajustos del lloc actualitzats." - -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "No hi ha un tema específic per a mòbil" - -#: ../../mod/admin.php:562 -msgid "No community page" -msgstr "" - -#: ../../mod/admin.php:563 -msgid "Public postings from users of this site" -msgstr "" - -#: ../../mod/admin.php:564 -msgid "Global community page" -msgstr "" - -#: ../../mod/admin.php:570 -msgid "At post arrival" -msgstr "" - -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Freqüentment" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dues vegades al dia" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diari" - -#: ../../mod/admin.php:579 -msgid "Multi user instance" -msgstr "Instancia multiusuari" - -#: ../../mod/admin.php:602 -msgid "Closed" -msgstr "Tancat" - -#: ../../mod/admin.php:603 -msgid "Requires approval" -msgstr "Requereix aprovació" - -#: ../../mod/admin.php:604 -msgid "Open" -msgstr "Obert" - -#: ../../mod/admin.php:608 -msgid "No SSL policy, links will track page SSL state" -msgstr "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL" - -#: ../../mod/admin.php:609 -msgid "Force all links to use SSL" -msgstr "Forzar a tots els enllaços a utilitzar SSL" - -#: ../../mod/admin.php:610 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)" - -#: ../../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 "" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Procés de Registre" - -#: ../../mod/admin.php:622 -msgid "File upload" -msgstr "Fitxer carregat" - -#: ../../mod/admin.php:623 -msgid "Policies" -msgstr "Polítiques" - -#: ../../mod/admin.php:624 -msgid "Advanced" -msgstr "Avançat" - -#: ../../mod/admin.php:625 -msgid "Performance" -msgstr "Rendiment" - -#: ../../mod/admin.php:626 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:629 -msgid "Site name" -msgstr "Nom del lloc" - -#: ../../mod/admin.php:630 -msgid "Host name" -msgstr "" - -#: ../../mod/admin.php:631 -msgid "Sender Email" -msgstr "" - -#: ../../mod/admin.php:632 -msgid "Banner/Logo" -msgstr "Senyera/Logo" - -#: ../../mod/admin.php:633 -msgid "Shortcut icon" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "Touch icon" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "Additional Info" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: ../../mod/admin.php:636 -msgid "System language" -msgstr "Idioma del Sistema" - -#: ../../mod/admin.php:637 -msgid "System theme" -msgstr "Tema del sistema" - -#: ../../mod/admin.php:637 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema" - -#: ../../mod/admin.php:638 -msgid "Mobile system theme" -msgstr "Tema per a mòbil" - -#: ../../mod/admin.php:638 -msgid "Theme for mobile devices" -msgstr "Tema per a aparells mòbils" - -#: ../../mod/admin.php:639 -msgid "SSL link policy" -msgstr "Política SSL per als enllaços" - -#: ../../mod/admin.php:639 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina si els enllaços generats han de ser forçats a utilitzar SSL" - -#: ../../mod/admin.php:640 -msgid "Force SSL" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Old style 'Share'" -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:642 -msgid "Hide help entry from navigation menu" -msgstr "Amaga l'entrada d'ajuda del menu de navegació" - -#: ../../mod/admin.php:642 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Amaga l'entrada del menú de les pàgines d'ajuda. Pots encara accedir entrant /ajuda directament." - -#: ../../mod/admin.php:643 -msgid "Single user instance" -msgstr "Instancia per a un únic usuari" - -#: ../../mod/admin.php:643 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat" - -#: ../../mod/admin.php:644 -msgid "Maximum image size" -msgstr "Mida màxima de les imatges" - -#: ../../mod/admin.php:644 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits." - -#: ../../mod/admin.php:645 -msgid "Maximum image length" -msgstr "Maxima longitud d'imatge" - -#: ../../mod/admin.php:645 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits" - -#: ../../mod/admin.php:646 -msgid "JPEG image quality" -msgstr "Qualitat per a la imatge JPEG" - -#: ../../mod/admin.php:646 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat." - -#: ../../mod/admin.php:648 -msgid "Register policy" -msgstr "Política per a registrar" - -#: ../../mod/admin.php:649 -msgid "Maximum Daily Registrations" -msgstr "Registres Màxims Diaris" - -#: ../../mod/admin.php:649 -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 "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes." - -#: ../../mod/admin.php:650 -msgid "Register text" -msgstr "Text al registrar" - -#: ../../mod/admin.php:650 -msgid "Will be displayed prominently on the registration page." -msgstr "Serà mostrat de forma preminent a la pàgina durant el procés de registre." - -#: ../../mod/admin.php:651 -msgid "Accounts abandoned after x days" -msgstr "Comptes abandonats després de x dies" - -#: ../../mod/admin.php:651 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." - -#: ../../mod/admin.php:652 -msgid "Allowed friend domains" -msgstr "Dominis amics permesos" - -#: ../../mod/admin.php:652 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." - -#: ../../mod/admin.php:653 -msgid "Allowed email domains" -msgstr "Dominis de correu permesos" - -#: ../../mod/admin.php:653 -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 "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." - -#: ../../mod/admin.php:654 -msgid "Block public" -msgstr "Bloqueig públic" - -#: ../../mod/admin.php:654 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." - -#: ../../mod/admin.php:655 -msgid "Force publish" -msgstr "Forçar publicació" - -#: ../../mod/admin.php:655 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." - -#: ../../mod/admin.php:656 -msgid "Global directory update URL" -msgstr "Actualitzar URL del directori global" - -#: ../../mod/admin.php:656 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL per actualitzar el directori global. Si no es configura, el directori global serà completament inaccesible per a l'aplicació. " - -#: ../../mod/admin.php:657 -msgid "Allow threaded items" -msgstr "Permetre fils als articles" - -#: ../../mod/admin.php:657 -msgid "Allow infinite level threading for items on this site." -msgstr "Permet un nivell infinit de fils per a articles en aquest lloc." - -#: ../../mod/admin.php:658 -msgid "Private posts by default for new users" -msgstr "Els enviaments dels nous usuaris seran privats per defecte." - -#: ../../mod/admin.php:658 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Canviar els permisos d'enviament per defecte per a tots els nous membres a grup privat en lloc de públic." - -#: ../../mod/admin.php:659 -msgid "Don't include post content in email notifications" -msgstr "No incloure el assumpte a les notificacions per correu electrónic" - -#: ../../mod/admin.php:659 -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 "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. " - -#: ../../mod/admin.php:660 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions" - -#: ../../mod/admin.php:660 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres" - -#: ../../mod/admin.php:661 -msgid "Don't embed private images in posts" -msgstr "No incrustar imatges en missatges privats" - -#: ../../mod/admin.php:661 -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 "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps." - -#: ../../mod/admin.php:662 -msgid "Allow Users to set remote_self" -msgstr "" - -#: ../../mod/admin.php:662 -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 -msgid "Block multiple registrations" -msgstr "Bloquejar multiples registracions" - -#: ../../mod/admin.php:663 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines." - -#: ../../mod/admin.php:664 -msgid "OpenID support" -msgstr "Suport per a OpenID" - -#: ../../mod/admin.php:664 -msgid "OpenID support for registration and logins." -msgstr "Suport per a registre i validació a OpenID." - -#: ../../mod/admin.php:665 -msgid "Fullname check" -msgstr "Comprobació de nom complet" - -#: ../../mod/admin.php:665 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam" - -#: ../../mod/admin.php:666 -msgid "UTF-8 Regular expressions" -msgstr "expresions regulars UTF-8" - -#: ../../mod/admin.php:666 -msgid "Use PHP UTF8 regular expressions" -msgstr "Empri expresions regulars de PHP amb format UTF8" - -#: ../../mod/admin.php:667 -msgid "Community Page Style" -msgstr "" - -#: ../../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 "" - -#: ../../mod/admin.php:668 -msgid "Posts per user on community page" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: ../../mod/admin.php:669 -msgid "Enable OStatus support" -msgstr "Activa el suport per a OStatus" - -#: ../../mod/admin.php:669 -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 -msgid "OStatus conversation completion interval" -msgstr "Interval de conclusió de la conversació a OStatus" - -#: ../../mod/admin.php:670 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball." - -#: ../../mod/admin.php:671 -msgid "Enable Diaspora support" -msgstr "Habilitar suport per Diaspora" - -#: ../../mod/admin.php:671 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Proveeix compatibilitat integrada amb la xarxa Diaspora" - -#: ../../mod/admin.php:672 -msgid "Only allow Friendica contacts" -msgstr "Només permetre contactes de Friendica" - -#: ../../mod/admin.php:672 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tots els contactes " - -#: ../../mod/admin.php:673 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: ../../mod/admin.php:673 -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 "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." - -#: ../../mod/admin.php:674 -msgid "Proxy user" -msgstr "proxy d'usuari" - -#: ../../mod/admin.php:675 -msgid "Proxy URL" -msgstr "URL del proxy" - -#: ../../mod/admin.php:676 -msgid "Network timeout" -msgstr "Temps excedit a la xarxa" - -#: ../../mod/admin.php:676 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" - -#: ../../mod/admin.php:677 -msgid "Delivery interval" -msgstr "Interval d'entrega" - -#: ../../mod/admin.php:677 -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 "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats." - -#: ../../mod/admin.php:678 -msgid "Poll interval" -msgstr "Interval entre sondejos" - -#: ../../mod/admin.php:678 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. " - -#: ../../mod/admin.php:679 -msgid "Maximum Load Average" -msgstr "Càrrega Màxima Sostinguda" - -#: ../../mod/admin.php:679 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50." - -#: ../../mod/admin.php:681 -msgid "Use MySQL full text engine" -msgstr "Emprar el motor de text complet de MySQL" - -#: ../../mod/admin.php:681 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters." - -#: ../../mod/admin.php:682 -msgid "Suppress Language" -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress Tags" -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: ../../mod/admin.php:684 -msgid "Path to item cache" -msgstr "Camí cap a la caché de l'article" - -#: ../../mod/admin.php:685 -msgid "Cache duration in seconds" -msgstr "Duració de la caché en segons" - -#: ../../mod/admin.php:685 -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 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: ../../mod/admin.php:686 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: ../../mod/admin.php:687 -msgid "Path for lock file" -msgstr "Camí per a l'arxiu bloquejat" - -#: ../../mod/admin.php:688 -msgid "Temp path" -msgstr "Camí a carpeta temporal" - -#: ../../mod/admin.php:689 -msgid "Base path to installation" -msgstr "Trajectoria base per a instal·lar" - -#: ../../mod/admin.php:690 -msgid "Disable picture proxy" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: ../../mod/admin.php:691 -msgid "Enable old style pager" -msgstr "" - -#: ../../mod/admin.php:691 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: ../../mod/admin.php:692 -msgid "Only search in tags" -msgstr "" - -#: ../../mod/admin.php:692 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: ../../mod/admin.php:694 -msgid "New base url" -msgstr "" - -#: ../../mod/admin.php:711 -msgid "Update has been marked successful" -msgstr "L'actualització ha estat marcada amb èxit" - -#: ../../mod/admin.php:719 +#: include/NotificationsManager.php:289 #, php-format -msgid "Database structure update %s was successfully applied." +msgid "%s is not attending %s's event" msgstr "" -#: ../../mod/admin.php:722 +#: include/NotificationsManager.php:300 #, php-format -msgid "Executing of database structure update %s failed with error: %s" +msgid "%s may attend %s's event" msgstr "" -#: ../../mod/admin.php:734 +#: include/NotificationsManager.php:315 #, php-format -msgid "Executing %s failed with error: %s" -msgstr "" +msgid "%s is now friends with %s" +msgstr "%s es ara amic de %s" -#: ../../mod/admin.php:737 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'actualització de %s es va aplicar amb èxit." +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Amics Suggerits " -#: ../../mod/admin.php:741 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Sol·licitud d'Amistat/Connexió" -#: ../../mod/admin.php:743 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nou Seguidor" -#: ../../mod/admin.php:762 -msgid "No failed updates." -msgstr "No hi ha actualitzacions fallides." - -#: ../../mod/admin.php:763 -msgid "Check database structure" -msgstr "" - -#: ../../mod/admin.php:768 -msgid "Failed Updates" -msgstr "Actualitzacions Fallides" - -#: ../../mod/admin.php:769 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." - -#: ../../mod/admin.php:770 -msgid "Mark success (if update was manually applied)" -msgstr "Marcat am èxit (si l'actualització es va fer manualment)" - -#: ../../mod/admin.php:771 -msgid "Attempt to execute this update step automatically" -msgstr "Intentant executar aquest pas d'actualització automàticament" - -#: ../../mod/admin.php:803 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "" -"\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." -msgstr "" - -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Detalls del registre per a %s" - -#: ../../mod/admin.php:850 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuari bloquejar/desbloquejar" -msgstr[1] "%s usuaris bloquejar/desbloquejar" - -#: ../../mod/admin.php:857 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuari esborrat" -msgstr[1] "%s usuaris esborrats" - -#: ../../mod/admin.php:896 -#, php-format -msgid "User '%s' deleted" -msgstr "Usuari %s' esborrat" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' unblocked" -msgstr "Usuari %s' desbloquejat" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' blocked" -msgstr "L'usuari '%s' és bloquejat" - -#: ../../mod/admin.php:999 -msgid "Add User" -msgstr "" - -#: ../../mod/admin.php:1000 -msgid "select all" -msgstr "Seleccionar tot" - -#: ../../mod/admin.php:1001 -msgid "User registrations waiting for confirm" -msgstr "Registre d'usuari esperant confirmació" - -#: ../../mod/admin.php:1002 -msgid "User waiting for permanent deletion" -msgstr "" - -#: ../../mod/admin.php:1003 -msgid "Request date" -msgstr "Data de sol·licitud" - -#: ../../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 "Correu" - -#: ../../mod/admin.php:1004 -msgid "No registrations." -msgstr "Sense registres." - -#: ../../mod/admin.php:1006 -msgid "Deny" -msgstr "Denegar" - -#: ../../mod/admin.php:1010 -msgid "Site admin" -msgstr "Administrador del lloc" - -#: ../../mod/admin.php:1011 -msgid "Account expired" -msgstr "Compte expirat" - -#: ../../mod/admin.php:1014 -msgid "New User" -msgstr "" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Register date" -msgstr "Data de registre" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last login" -msgstr "Últim accés" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last item" -msgstr "Últim element" - -#: ../../mod/admin.php:1015 -msgid "Deleted since" -msgstr "" - -#: ../../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 " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" - -#: ../../mod/admin.php:1019 -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'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" - -#: ../../mod/admin.php:1029 -msgid "Name of the new user." -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname" -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname of the new user." -msgstr "" - -#: ../../mod/admin.php:1031 -msgid "Email address of the new user." -msgstr "" - -#: ../../mod/admin.php:1064 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deshabilitat." - -#: ../../mod/admin.php:1068 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s habilitat." - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 -msgid "Disable" -msgstr "Deshabilitar" - -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 -msgid "Enable" -msgstr "Habilitar" - -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 -msgid "Toggle" -msgstr "Canviar" - -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 -msgid "Author: " -msgstr "Autor:" - -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 -msgid "Maintainer: " -msgstr "Responsable:" - -#: ../../mod/admin.php:1254 -msgid "No themes found." -msgstr "No s'ha trobat temes." - -#: ../../mod/admin.php:1316 -msgid "Screenshot" -msgstr "Captura de pantalla" - -#: ../../mod/admin.php:1362 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1363 -msgid "[Unsupported]" -msgstr "[No soportat]" - -#: ../../mod/admin.php:1390 -msgid "Log settings updated." -msgstr "Configuració del registre actualitzada." - -#: ../../mod/admin.php:1446 -msgid "Clear" -msgstr "Netejar" - -#: ../../mod/admin.php:1452 -msgid "Enable Debugging" -msgstr "Habilitar Depuració" - -#: ../../mod/admin.php:1453 -msgid "Log file" -msgstr "Arxiu de registre" - -#: ../../mod/admin.php:1453 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior." - -#: ../../mod/admin.php:1454 -msgid "Log level" -msgstr "Nivell de transcripció" - -#: ../../mod/admin.php:1504 -msgid "Close" -msgstr "Tancar" - -#: ../../mod/admin.php:1510 -msgid "FTP Host" -msgstr "Amfitrió FTP" - -#: ../../mod/admin.php:1511 -msgid "FTP Path" -msgstr "Direcció FTP" - -#: ../../mod/admin.php:1512 -msgid "FTP User" -msgstr "Usuari FTP" - -#: ../../mod/admin.php:1513 -msgid "FTP Password" -msgstr "Contrasenya FTP" - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Resultats de la Cerca Per a:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Traieu termini" - -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "afegir" - -#: ../../mod/network.php:356 -msgid "Commented Order" -msgstr "Ordre dels Comentaris" - -#: ../../mod/network.php:359 -msgid "Sort by Comment Date" -msgstr "Ordenar per Data de Comentari" - -#: ../../mod/network.php:362 -msgid "Posted Order" -msgstr "Ordre dels Enviaments" - -#: ../../mod/network.php:365 -msgid "Sort by Post Date" -msgstr "Ordenar per Data d'Enviament" - -#: ../../mod/network.php:374 -msgid "Posts that mention or involve you" -msgstr "Missatge que et menciona o t'impliquen" - -#: ../../mod/network.php:380 -msgid "New" -msgstr "Nou" - -#: ../../mod/network.php:383 -msgid "Activity Stream - by date" -msgstr "Activitat del Flux - per data" - -#: ../../mod/network.php:389 -msgid "Shared Links" -msgstr "Enllaços Compartits" - -#: ../../mod/network.php:392 -msgid "Interesting Links" -msgstr "Enllaços Interesants" - -#: ../../mod/network.php:398 -msgid "Starred" -msgstr "Favorits" - -#: ../../mod/network.php:401 -msgid "Favourite Posts" -msgstr "Enviaments Favorits" - -#: ../../mod/network.php:463 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Advertència: Aquest grup conté el membre %s en una xarxa insegura." -msgstr[1] "Advertència: Aquest grup conté %s membres d'una xarxa insegura." - -#: ../../mod/network.php:466 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Els missatges privats a aquest grup es troben en risc de divulgació pública." - -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Cap grup com" - -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "El Grup es buit" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grup:" - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contacte:" - -#: ../../mod/network.php:556 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Els missatges privats a aquesta persona es troben en risc de divulgació pública." - -#: ../../mod/network.php:561 -msgid "Invalid contact." -msgstr "Contacte no vàlid." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amics de %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "No hi ha amics que mostrar" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Títol d'esdeveniment i hora d'inici requerits." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editar esdeveniment" - -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "Enllaç al origen" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Esdeveniments" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crear un nou esdeveniment" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Previ" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Següent" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hora:minut" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detalls del esdeveniment" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "El Format és %s %s. Data d'inici i títol requerits." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Inici d'Esdeveniment:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Requerit" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/hora de finalització no es coneixen o no són relevants" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "L'esdeveniment Finalitza:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Ajustar a la zona horaria de l'espectador" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descripció:" - -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Ubicació:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Títol:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Compartir aquest esdeveniment" - -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Selecionar" - -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Veure perfil de %s @ %s" - -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 -#, php-format -msgid "%s from %s" -msgstr "%s des de %s" - -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Veure en context" - -#: ../../mod/content.php:603 ../../object/Item.php:387 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentari" -msgstr[1] "%d comentaris" - -#: ../../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] "comentari" - -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "Mostrar més" - -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Missatge Privat" - -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "M'agrada això (canviar)" - -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "Agrada" - -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canviar)" - -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "Desagrada" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Compartir això" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "Compartir" - -#: ../../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 "Aquest ets tu" - -#: ../../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 "Comentari" - -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Negreta" - -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Itallica" - -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Subratllat" - -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Cometes" - -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Codi" - -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Imatge" - -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Enllaç" - -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" - -#: ../../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 "Vista prèvia" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Editar" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "Afegir a favorits" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "Esborrar favorit" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "Canviar estatus de favorit" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "favorit" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "afegir etiqueta" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "guardat a la carpeta" - -#: ../../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 "Mur-a-Mur" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "via Mur-a-Mur" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Eliminar el Meu Compte" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Si us plau, introduïu la contrasenya per a la verificació:" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Servidor de Comunicacions - Configuració" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "No puc connectar a la base de dades." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "No puc creat taula." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Comprovació del Sistema" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Comprovi de nou" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Conexió a la base de dades" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nom del Servidor de base de Dades" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nom d'Usuari de la base de Dades" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Contrasenya d'Usuari de la base de Dades" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nom de la base de Dades" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Adreça de correu del administrador del lloc" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Configuracions del lloc" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Si no tens una versió de línia de comandos instal·lada al teu servidor PHP, no podràs fer córrer els sondejos via cron. Mira 'Activating scheduled tasks'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Direcció del executable PHP" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Linia de comandos PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Trobada la versió PHP:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binari" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Això és necessari perquè funcioni el lliurament de missatges." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generar claus d'encripció" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "Mòdul libCurl de PHP" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "Mòdul GD de gràfics de PHP" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "Mòdul OpenSSl de PHP" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "Mòdul mysqli de PHP" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "Mòdul mb_string de PHP" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul " - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: El mòdul mysqli de PHP és necessari però no està instal·lat." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php és escribible" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar." - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica." - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta." - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 es escribible" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor." - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "URL rewrite està treballant" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web." - -#: ../../mod/install.php:523 -msgid "

                                              What next

                                              " -msgstr "

                                              Que es següent

                                              " - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Incapaç de comprovar la localització." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Sense destinatari." - -#: ../../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 vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts." - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Ajuda" - -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "No trobat" - -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Pàgina no trobada." - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s benvingut %2$s" - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %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 "L'arxiu excedeix la mida límit de %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "La càrrega de fitxers ha fallat." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Perfil Aconseguit" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "està interessat en:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Connexió" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "enllaç" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "No disponible." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunitat" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Sense resultats." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "tothom" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Característiques Adicionals" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "Delegacions" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "App connectada" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Exportar dades personals" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Esborrar compte" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Perdudes algunes dades importants!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Configuració del correu electrònic actualitzada." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Característiques actualitzades" - -#: ../../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 "Les contrasenyes no coincideixen. Contrasenya no canviada." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No es permeten contasenyes buides. Contrasenya no canviada" - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Contrasenya errònia" - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Contrasenya canviada." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr "Si us plau, faci servir un nom més curt." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr "Nom massa curt." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Contrasenya Errònia" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr "Correu no vàlid." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "No puc canviar a aquest correu." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Ajustos actualitzats." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Afegir aplicació" - -#: ../../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 "Redirigir" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "icona de url" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "No pots editar aquesta aplicació." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Aplicacions conectades" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Les claus de client comançen amb" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Sense nom" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "retirar l'autorització" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "No s'han configurat ajustos de Plugin" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Ajustos de Plugin" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Apagat" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "Engegat" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Característiques Adicionals" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "El suport integrat per a la connectivitat de %s é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 "habilitat" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "deshabilitat" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "L'accés al correu està deshabilitat en aquest lloc." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Preparació de Correu/Bústia" - -#: ../../mod/settings.php:786 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." - -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Última comprovació de correu amb èxit:" - -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "Nom del servidor IMAP:" - -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Seguretat:" - -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Cap" - -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Nom d'usuari del correu" - -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Contrasenya del correu:" - -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Adreça de resposta:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Enviar correu públic a tots els contactes del correu:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Acció després d'importar:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Marcar com a vist" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Moure a la carpeta" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Moure a la carpeta:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Ajustos de Pantalla" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Visualitzar el Tema:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Tema Mobile:" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Actualitzar navegador cada xx segons" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínim cada 10 segons, no hi ha màxim" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Número d'elements a mostrar per pàgina" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Màxim de 100 elements" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "No mostrar emoticons" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Pàgina Normal del Compte " - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Aques compte es un compte personal normal" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Pàgina de Soapbox" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura." - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Compte de Comunitat/Celebritat" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de lectura-escriptura" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Compte d'Amistat Automàtica" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Fòrum Privat [Experimental]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Fòrum privat - Només membres aprovats" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Publicar el teu perfil predeterminat en el directori del lloc local?" - -#: ../../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 "Publicar el teu perfil predeterminat al directori social global?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Amagar els detalls del seu perfil a espectadors desconeguts?" - -#: ../../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 "Permet als amics publicar en la seva pàgina de perfil?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Permet als amics d'etiquetar els teus missatges?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Permeteu-nos suggerir-li com un amic potencial dels nous membres?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetre a desconeguts enviar missatges al teu correu privat?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "El Perfil no està publicat." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "La seva Adreça d'Identitat és" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Configuració avançada d'expiració" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Expiració Avançada" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Expiració d'enviaments" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Expiració de notes personals" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Expiració de enviaments de favorits" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Expiració de fotos" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Només expiren els enviaments dels altres:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Ajustos de Compte" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Ajustos de Contrasenya" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nova Contrasenya:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Confirmar:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Deixi els camps de contrasenya buits per a no fer canvis" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Contrasenya Actual:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "La teva actual contrasenya a fi de confirmar els canvis" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Contrasenya:" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Ajustos Basics" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nom Complet:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Adreça de Correu:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "La teva zona Horària:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Localització per Defecte del Missatge:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Ubicar-se amb el Navegador:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Ajustos de Seguretat i Privacitat" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre Màxim de Sol·licituds per Dia" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(per a prevenir abusos de spam)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Permisos de Correu per Defecte" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(clicar per a obrir/tancar)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Mostrar en Grups" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Mostrar a Contactes" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Missatges Privats Per Defecte" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Missatges Públics Per Defecte" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Permisos Per Defecte per a Nous Missatges" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Màxim nombre de missatges, per dia, de desconeguts:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Ajustos de Notificació" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Enviar per defecte un missatge de estatus quan:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "Acceptar una sol·licitud d'amistat" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "Unint-se a un fòrum/comunitat" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "fent un canvi al perfil" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Envia un correu notificant quan:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Has rebut una presentació" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "La teva presentació està confirmada" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Algú ha escrit en el teu mur de perfil" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Algú ha escrit un comentari de seguiment" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Has rebut un missatge privat" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Has rebut una suggerencia d'un amic" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Estàs etiquetat en un enviament" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "Has estat Atiat/punxat/etc, en un enviament" - -#: ../../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 "Ajustos Avançats de Compte/ Pàgina" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Canviar el comportament d'aquest compte en situacions especials" - -#: ../../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 "Aquesta presentació ha estat acceptada." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "El perfil de situació no és vàlid o no contè informació de perfil" - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Atenció: El perfil de situació no te nom de propietari identificable." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Atenció: El perfil de situació no te foto de perfil" - -#: ../../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 el paràmetre requerit no es va trobar al lloc indicat" -msgstr[1] "%d els paràmetres requerits no es van trobar allloc indicat" - -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Completada la presentació." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Error de protocol irrecuperable." - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Perfil no disponible" - -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s avui ha rebut excesives peticions de connexió. " - -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Mesures de protecció contra spam han estat invocades." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "S'aconsellà els amics que probin pasades 24 hores." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Localitzador no vàlid" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Adreça de correu no vàlida." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Incapaç de resoldre el teu nom al lloc facilitat." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Has fer la teva presentació aquí." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Aparentment, ja tens amistat amb %s" - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Perfil URL no vàlid." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Perfil URL no permès." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La teva presentació ha estat enviada." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Si us plau, entri per confirmar la presentació." - -#: ../../mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil." - -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Amaga aquest contacte" - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Benvingut de nou %s" - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s." - -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:" - -#: ../../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 encara no ets membre de la web social lliure, segueix aquest enllaç per a trobar un lloc Friendica públic i uneix-te avui." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Sol·licitud d'Amistat" - -#: ../../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 "Si us plau, contesti les següents preguntes:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "%s et coneix?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Afegir una nota personal:" - -#: ../../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 "Web Social StatusNet/Federated " - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora." - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "La Teva Adreça Identificativa:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Sol·licitud Enviada" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." - -#: ../../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 "El seu registre no pot ser processat." - -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." - -#: ../../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 "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." - -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'." - -#: ../../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 vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "El seu OpenID (opcional):" - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Incloc el seu perfil al directori de membres?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Lloc accesible mitjançant invitació." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "El teu ID de invitació:" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "El seu nom complet (per exemple, Joan Ningú):" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "La Seva Adreça de Correu:" - -#: ../../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 "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@$sitename'." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Tria un àlies:" - -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Registrar" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importar" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema apagat per manteniment" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Cercar" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Directori Global" - -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Trobat en aquest lloc" - -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Directori Local" - -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Edat:" - -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Gènere:" - -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Gènere:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Estatus:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Pàgina web:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Acerca de:" - -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "No es troben pàgines potencialment delegades." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Gestió de les Pàgines Delegades" - -#: ../../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 "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Actuals Administradors de Pàgina" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Actuals Delegats de Pàgina" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegats Potencials" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Afegir" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Sense entrades" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amics Comuns" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Sense contactes en comú." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exportar 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 "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Exportar tot" - -#: ../../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 "Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s'exporten)" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s es normalment %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humor" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Ajusta el teu actual estat d'ànim i comenta-ho als amics" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Realment vols esborrar aquest suggeriment?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Amics Suggerits" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignorar/Amagar" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Perfil esborrat." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nou perfil creat." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "No es pot clonar el perfil." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Nom de perfil requerit." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Estatus Marital" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Soci Romàntic" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Agrada" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "No agrada" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Treball/Ocupació" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religió" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Idees Polítiques" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Gènere" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Preferència sexual" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Inici" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interesos" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adreça" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Ubicació" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Perfil actualitzat." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " i " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "perfil públic" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s s'ha canviat de %2$s a “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Visita %1$s de %2$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s te una actualització %2$s, canviant %3$s." - -#: ../../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 "Amaga la llista de contactes/amics en la vista d'aquest perfil?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Editor de Detalls del Perfil" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Canviar la Foto del Perfil" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Veure aquest perfil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Crear un nou perfil amb aquests ajustos" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Clonar aquest perfil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Esborrar aquest perfil" - -#: ../../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 "Nom de Perfil:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "El Teu Nom Complet." - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Títol/Descripció:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Gènere:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Aniversari (%s)" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Direcció:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Localitat/Ciutat:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Codi Postal:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "País" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Regió/Estat:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Estat Civil:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Qui? (si és aplicable)" - -#: ../../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 "Des de [data]" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Pàgina web URL:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Lloc de residència:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Idees Polítiques:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Creencies Religioses:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Paraules Clau Públiques" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Paraules Clau Privades:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Agrada:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "No Agrada" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Exemple: pesca fotografia programari" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Parla'ns de tú....." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Aficions/Interessos" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Informació de contacte i Xarxes Socials" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Gustos musicals" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Llibres, Literatura" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televisió" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Cinema/ball/cultura/entreteniments" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Amor/sentiments" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Treball/ocupació" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Ensenyament/estudis" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
                                              It may " -"be visible to anybody using the internet." -msgstr "Aquest és el teu perfil públic.
                                              El qual pot ser visible per qualsevol qui faci servir Internet." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Editar/Gestionar Perfils" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Canviar la foto del perfil" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Crear un Nou Perfil" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Imatge del Perfil" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "Visible per tothom" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Editar visibilitat" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Element no trobat" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Editar Enviament" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "carregar fotos" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Adjunta fitxer" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "adjuntar arxiu" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "enllaç de web" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Insertar enllaç de video" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "enllaç de video" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Insertar enllaç de audio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "enllaç de audio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Canvia la teva ubicació" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "establir la ubicació" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "neteja adreçes del navegador" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "netejar ubicació" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Configuració de permisos" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: Adreça de correu" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Enviament públic" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Canviar títol" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Categories (lista separada per comes)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Això és Friendica, versió" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "funcionant en la ubicació web" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Pels informes d'error i problemes: si us plau, visiteu" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "plugins/addons/apps instal·lats:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "plugins/addons/apps no instal·lats" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoritzi la connexió de aplicacions" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torni a la seva aplicació i inserti aquest Codi de Seguretat:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Per favor, accedeixi per a continuar." - -#: ../../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 "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informació de privacitat remota no disponible." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visible per a:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Notes Personals" - -#: ../../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 "Temps de Conversió" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes" - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "hora UTC: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zona horària actual: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Conversión de hora local: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Si us plau, seleccioneu la vostra zona horària:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Atia/Punxa" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Atiar, punxar o fer altres coses a algú" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Recipient" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el contenidor" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Fes aquest missatge privat" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit d'invitacions excedit." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una adreça de correu vàlida" - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Per favor, uneixi's a nosaltres en Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Ha fallat l'entrega del missatge." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat" -msgstr[1] "%d missatges enviats." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "No te més invitacions 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 "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." - -#: ../../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 acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." - -#: ../../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 "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Enviant Invitacions" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Entri adreçes de correu, una per línia:" - -#: ../../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 "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" - -#: ../../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 a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Àlbum de Fotos" - -#: ../../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 "Fotos de Contacte" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Actualitzar Noves Fotos" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Informació del Contacte no disponible" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Àlbum no trobat." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Eliminar Àlbum" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Eliminar Foto" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Realment vols esborrar aquesta foto?" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fou etiquetat a %2$s per %3$s" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "una foto" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "La imatge excedeix el límit de " - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "El fitxer de imatge és buit." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "No s'han seleccionat fotos" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Carregar Fotos" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nou nom d'àlbum:" - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "o nom d'àlbum existent:" - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Permisos" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Foto Privada" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Foto Pública" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Editar Àlbum" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Mostrar el més Nou Primer" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Mostrar el més Antic Primer" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Veure Foto" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permís denegat. L'accés a aquest element pot estar restringit." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Veure foto" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Emprar com a foto del perfil" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Veure'l a Mida Completa" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Etiquetes:" - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "Treure etiquetes" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Rotar CW (dreta)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Rotar CCW (esquerra)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nou nom d'àlbum" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Títol" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Afegir una etiqueta" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Foto Privada" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Foto pública" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Compartir" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Fotos Recents" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Compte aprovat." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Procés de Registre revocat per a %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Si us plau, ingressa." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Moure el compte" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Pots importar un compte d'un altre servidor 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 "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." - -#: ../../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 "Aquesta característica es experimental. Podem importar els teus contactes de la xarxa OStatus (status/identi.ca) o de Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Arxiu del compte" - -#: ../../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 "Element no disponible" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element no trobat." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Esborrar aquest element?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "Mostrar menys" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Actualització de %s fracassà. Mira el registre d'errors." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Crear un Nou Compte" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Sortir" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Àlies o Adreça de correu:" - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Contrasenya:" - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Recorda'm ho" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "O accedixi emprant OpenID:" - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Oblidà la contrasenya?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Termes del Servei al Llocweb" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "termes del servei" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Política de Privacitat al Llocweb" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "política de privacitat" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "El compte sol·licitat no esta disponible" - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editar perfil" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Missatge" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Perfils" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Gestiona/edita perfils" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../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 "F d" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[avui]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Recordatori d'Aniversaris" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Aniversari aquesta setmana" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[sense descripció]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Recordatori d'Esdeveniments" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Esdeveniments aquesta setmana" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Estatus" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Missatges i Enviaments d'Estatus" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Detalls del Perfil" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Vídeos" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Esdeveniments i Calendari" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Només ho pots veure tu" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "L'entrada fou editada" - -#: ../../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 "Categories:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Arxivat a:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../include/dbstructure.php:26 +#: include/dbstructure.php:26 #, php-format msgid "" "\n" @@ -5697,1382 +1669,1380 @@ msgid "" "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: ../../include/dbstructure.php:31 +#: include/dbstructure.php:31 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "" -#: ../../include/dbstructure.php:162 +#: include/dbstructure.php:183 msgid "Errors encountered creating database tables." msgstr "Trobats errors durant la creació de les taules de la base de dades." -#: ../../include/dbstructure.php:220 +#: include/dbstructure.php:260 msgid "Errors encountered performing database changes." msgstr "" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Has sortit" +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(sense assumpte)" -#: ../../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 "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Compartint la notificació de la xarxa Diàspora" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "El missatge d'error fou: " +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Adjunts:" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Afegir Nou Contacte" +#: include/network.php:595 +msgid "view full size" +msgstr "Veure'l a mida completa" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Introdueixi adreça o ubicació web" +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Veure Perfil" -#: ../../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.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Veure Estatus" -#: ../../include/contact_widgets.php:24 +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Veure Fotos" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Enviaments a la Xarxa" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Enviar Missatge Privat" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Atia" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "" + +#: include/api.php:1018 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitació disponible" -msgstr[1] "%d invitacions disponibles" +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trobar Gent" +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Introdueixi nom o aficions" +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connectar/Seguir" +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Imatge/foto" -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Pescar" +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Aficions Similars" +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 va escriure:" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Perfi Aleatori" +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Encriptar contingut" -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Invita Amics" +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Xarxes" +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "totes les Xarxes" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Carpetes Guardades" +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tot" +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categories" +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s és ara amic amb %2$s" -#: ../../include/features.php:23 +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s atiat %2$s" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s es normalment %2$s" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s etiquetats %2$s %3$s amb %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "anunci/element" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s marcat %2$s's %3$s com favorit" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Agrada" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "No agrada" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Selecionar" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Esborrar" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Veure perfil de %s @ %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Categories:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Arxivat a:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s des de %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Veure en context" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Si us plau esperi" + +#: include/conversation.php:870 +msgid "remove" +msgstr "esborrar" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Esborra els Elements Seleccionats" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Seguir el Fil" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "a %s agrada això." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "a %s desagrada això." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "i" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", i altres %d persones" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d gent agrada això" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d gent no agrada això" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Visible per a tothom" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Sius plau, entri l'enllaç URL:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Per favor , introdueixi el enllaç/URL del video" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Per favor , introdueixi el enllaç/URL del audio:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Terminis de l'etiqueta:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Guardar a la Carpeta:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "On ets ara?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Esborrar element(s)?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Compartir" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Carregar foto" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "carregar fotos" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Adjunta fitxer" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "adjuntar arxiu" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Inserir enllaç web" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "enllaç de web" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Insertar enllaç de video" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "enllaç de video" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Insertar enllaç de audio" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "enllaç de audio" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Canvia la teva ubicació" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "establir la ubicació" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "neteja adreçes del navegador" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "netejar ubicació" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Canviar títol" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Categories (lista separada per comes)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Configuració de permisos" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "Permissos" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Enviament públic" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Vista prèvia" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Cancel·lar" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Publica-ho a Grups" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Publica-ho a Contactes" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Enviament Privat" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Missatge" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 msgid "General Features" msgstr "Característiques Generals" -#: ../../include/features.php:25 +#: include/features.php:72 msgid "Multiple Profiles" msgstr "Perfils Múltiples" -#: ../../include/features.php:25 +#: include/features.php:72 msgid "Ability to create multiple profiles" msgstr "Habilitat per crear múltiples perfils" -#: ../../include/features.php:30 +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 msgid "Post Composition Features" msgstr "Característiques de Composició d'Enviaments" -#: ../../include/features.php:31 +#: include/features.php:80 msgid "Richtext Editor" msgstr "Editor de Text Enriquit" -#: ../../include/features.php:31 +#: include/features.php:80 msgid "Enable richtext editor" msgstr "Activar l'Editor de Text Enriquit" -#: ../../include/features.php:32 +#: include/features.php:81 msgid "Post Preview" msgstr "Vista Prèvia de l'Enviament" -#: ../../include/features.php:32 +#: include/features.php:81 msgid "Allow previewing posts and comments before publishing them" msgstr "Permetre la vista prèvia dels enviament i comentaris abans de publicar-los" -#: ../../include/features.php:33 +#: include/features.php:82 msgid "Auto-mention Forums" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:82 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"Add/remove mention when a forum page is selected/deselected in ACL window." msgstr "" -#: ../../include/features.php:38 +#: include/features.php:87 msgid "Network Sidebar Widgets" msgstr "Barra Lateral Selectora de Xarxa " -#: ../../include/features.php:39 +#: include/features.php:88 msgid "Search by Date" msgstr "Cerca per Data" -#: ../../include/features.php:39 +#: include/features.php:88 msgid "Ability to select posts by date ranges" msgstr "Possibilitat de seleccionar els missatges per intervals de temps" -#: ../../include/features.php:40 +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 msgid "Group Filter" msgstr "Filtre de Grup" -#: ../../include/features.php:40 +#: include/features.php:90 msgid "Enable widget to display Network posts only from selected group" msgstr "Habilitar botò per veure missatges de Xarxa només del grup seleccionat" -#: ../../include/features.php:41 +#: include/features.php:91 msgid "Network Filter" msgstr "Filtre de Xarxa" -#: ../../include/features.php:41 +#: include/features.php:91 msgid "Enable widget to display Network posts only from selected network" msgstr "Habilitar botò per veure missatges de Xarxa només de la xarxa seleccionada" -#: ../../include/features.php:42 +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Cerques Guardades" + +#: include/features.php:92 msgid "Save search terms for re-use" msgstr "Guarda els termes de cerca per re-emprar" -#: ../../include/features.php:47 +#: include/features.php:97 msgid "Network Tabs" msgstr "Pestanya Xarxes" -#: ../../include/features.php:48 +#: include/features.php:98 msgid "Network Personal Tab" msgstr "Pestanya Xarxa Personal" -#: ../../include/features.php:48 +#: include/features.php:98 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Habilitar la pestanya per veure unicament missatges de Xarxa en els que has intervingut" -#: ../../include/features.php:49 +#: include/features.php:99 msgid "Network New Tab" msgstr "Pestanya Nova Xarxa" -#: ../../include/features.php:49 +#: include/features.php:99 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Habilitar la pestanya per veure només els nous missatges de Xarxa (els de les darreres 12 hores)" -#: ../../include/features.php:50 +#: include/features.php:100 msgid "Network Shared Links Tab" msgstr "Pestanya d'Enllaços de Xarxa Compartits" -#: ../../include/features.php:50 +#: include/features.php:100 msgid "Enable tab to display only Network posts with links in them" msgstr "Habilitar la pestanya per veure els missatges de Xarxa amb enllaços en ells" -#: ../../include/features.php:55 +#: include/features.php:105 msgid "Post/Comment Tools" msgstr "Eines d'Enviaments/Comentaris" -#: ../../include/features.php:56 +#: include/features.php:106 msgid "Multiple Deletion" msgstr "Esborrat Múltiple" -#: ../../include/features.php:56 +#: include/features.php:106 msgid "Select and delete multiple posts/comments at once" msgstr "Sel·lecciona i esborra múltiples enviaments/commentaris en una vegada" -#: ../../include/features.php:57 +#: include/features.php:107 msgid "Edit Sent Posts" msgstr "Editar Missatges Enviats" -#: ../../include/features.php:57 +#: include/features.php:107 msgid "Edit and correct posts and comments after sending" msgstr "Edita i corregeix enviaments i comentaris una vegada han estat enviats" -#: ../../include/features.php:58 +#: include/features.php:108 msgid "Tagging" msgstr "Etiquetant" -#: ../../include/features.php:58 +#: include/features.php:108 msgid "Ability to tag existing posts" msgstr "Habilitar el etiquetar missatges existents" -#: ../../include/features.php:59 +#: include/features.php:109 msgid "Post Categories" msgstr "Categories en Enviaments" -#: ../../include/features.php:59 +#: include/features.php:109 msgid "Add categories to your posts" msgstr "Afegeix categories als teus enviaments" -#: ../../include/features.php:60 +#: include/features.php:110 msgid "Ability to file posts under folders" msgstr "Habilitar el arxivar missatges en carpetes" -#: ../../include/features.php:61 +#: include/features.php:111 msgid "Dislike Posts" msgstr "No agrada el Missatge" -#: ../../include/features.php:61 +#: include/features.php:111 msgid "Ability to dislike posts/comments" msgstr "Habilita el marcar amb \"no agrada\" els enviaments/comentaris" -#: ../../include/features.php:62 +#: include/features.php:112 msgid "Star Posts" msgstr "Missatge Estelar" -#: ../../include/features.php:62 +#: include/features.php:112 msgid "Ability to mark special posts with a star indicator" msgstr "Habilita el marcar amb un estel, missatges especials" -#: ../../include/features.php:63 +#: include/features.php:113 msgid "Mute Post Notifications" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:113 msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../include/follow.php:32 +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Perfil URL no permès." + +#: include/follow.php:86 msgid "Connect URL missing." msgstr "URL del connector perduda." -#: ../../include/follow.php:59 +#: include/follow.php:113 msgid "" "This site is not configured to allow communications with other networks." msgstr "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes." -#: ../../include/follow.php:60 ../../include/follow.php:80 +#: include/follow.php:114 include/follow.php:134 msgid "No compatible communication protocols or feeds were discovered." msgstr "Protocol de comunnicació no compatible o alimentador descobert." -#: ../../include/follow.php:78 +#: include/follow.php:132 msgid "The profile address specified does not provide adequate information." msgstr "L'adreça de perfil especificada no proveeix informació adient." -#: ../../include/follow.php:82 +#: include/follow.php:136 msgid "An author or name was not found." msgstr "Un autor o nom no va ser trobat" -#: ../../include/follow.php:84 +#: include/follow.php:138 msgid "No browser URL could be matched to this address." msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." -#: ../../include/follow.php:86 +#: include/follow.php:140 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " -#: ../../include/follow.php:87 +#: include/follow.php:141 msgid "Use mailto: in front of address to force email check." msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." -#: ../../include/follow.php:93 +#: include/follow.php:147 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." -#: ../../include/follow.php:103 +#: include/follow.php:157 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." -#: ../../include/follow.php:205 +#: include/follow.php:258 msgid "Unable to retrieve contact information." msgstr "No es pot recuperar la informació de contacte." -#: ../../include/follow.php:258 +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "El compte sol·licitat no esta disponible" + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "El perfil sol·licitat no està disponible." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Editar perfil" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Gestiona/edita perfils" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Canviar la foto del perfil" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Crear un Nou Perfil" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Imatge del Perfil" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "Visible per tothom" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Editar visibilitat" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Gènere:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Estatus:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Pàgina web:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Acerca de:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "F d" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[avui]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Recordatori d'Aniversaris" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Aniversari aquesta setmana" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[sense descripció]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Recordatori d'Esdeveniments" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Esdeveniments aquesta setmana" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Nom Complet:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Edat:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "per a %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Preferència Sexual:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Lloc de residència:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Etiquetes:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Idees Polítiques:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religió:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Aficiones/Intereses:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Agrada:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "No Agrada" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Informació de contacte i Xarxes Socials:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Gustos musicals:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Llibres, literatura:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Televisió:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinema/ball/cultura/entreteniments:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Amor/sentiments:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Treball/ocupació:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Escola/formació" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Avançat" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Missatges i Enviaments d'Estatus" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Detalls del Perfil" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Àlbum de Fotos" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Notes Personals" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Només ho pots veure tu" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Nom Amagat]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Article no trobat." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Realment vols esborrar aquest article?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Si" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Permís denegat." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Arxius" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Contingut incrustat" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Incrustacions deshabilitades" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 msgid "following" msgstr "seguint" -#: ../../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 grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Privacitat per defecte per a nous contactes" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tothom" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editar grup" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crear un nou grup" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contactes en cap grup" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Miscel·lania" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "any" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mes" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dia" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "Fa menys d'un segon" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "anys" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "mesos" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "setmana" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "setmanes" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dies" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "hora" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "hores" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minuts" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "segon" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "segons" - -#: ../../include/datetime.php:305 +#: include/ostatus.php:1829 #, php-format -msgid "%1$d %2$s ago" -msgstr " fa %1$d %2$s" +msgid "%s stopped following %s." +msgstr "" -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "%s aniversari" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliç Aniversari %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Visible per tothom" - -#: ../../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 "no mostris" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[Sense assumpte]" - -#: ../../include/Contact.php:115 +#: include/ostatus.php:1830 msgid "stopped following" msgstr "Deixar de seguir" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Atia" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Veure Estatus" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Veure Perfil" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Veure Fotos" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Enviaments a la Xarxa" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Editat Contacte" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Enviar Missatge Privat" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Benvingut" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Per favor, carrega una foto per al perfil" - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Benvingut de nou " - -#: ../../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 "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "esdeveniment" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s atiat %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "atiar" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "anunci/element" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marcat %2$s's %3$s com favorit" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "esborrar" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Esborra els Elements Seleccionats" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Seguir el Fil" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "a %s agrada això." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "a %s desagrada això." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d gent agrada això" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d gent no agrada això" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "i" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", i altres %d persones" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "a %s li agrada això." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "a %s no li agrada això." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Visible per a tothom" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Per favor , introdueixi el enllaç/URL del video" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Per favor , introdueixi el enllaç/URL del audio:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Terminis de l'etiqueta:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "On ets ara?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Esborrar element(s)?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Correu per enviar" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "Permissos" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Publica-ho a Grups" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Publica-ho a Contactes" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Enviament Privat" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "Veure'l a mida completa" - -#: ../../include/text.php:297 +#: include/text.php:304 msgid "newer" msgstr "Més nou" -#: ../../include/text.php:299 +#: include/text.php:306 msgid "older" msgstr "més vell" -#: ../../include/text.php:304 +#: include/text.php:311 msgid "prev" msgstr "Prev" -#: ../../include/text.php:306 +#: include/text.php:313 msgid "first" msgstr "Primer" -#: ../../include/text.php:338 +#: include/text.php:345 msgid "last" msgstr "Últim" -#: ../../include/text.php:341 +#: include/text.php:348 msgid "next" msgstr "següent" -#: ../../include/text.php:855 +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 msgid "No contacts" msgstr "Sense contactes" -#: ../../include/text.php:864 +#: include/text.php:912 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contacte" msgstr[1] "%d Contactes" -#: ../../include/text.php:1005 +#: include/text.php:925 +msgid "View Contacts" +msgstr "Veure Contactes" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Guardar" + +#: include/text.php:1076 msgid "poke" msgstr "atia" -#: ../../include/text.php:1006 +#: include/text.php:1076 +msgid "poked" +msgstr "atiar" + +#: include/text.php:1077 msgid "ping" msgstr "toc" -#: ../../include/text.php:1006 +#: include/text.php:1077 msgid "pinged" msgstr "tocat" -#: ../../include/text.php:1007 +#: include/text.php:1078 msgid "prod" msgstr "pinxat" -#: ../../include/text.php:1007 +#: include/text.php:1078 msgid "prodded" msgstr "pinxat" -#: ../../include/text.php:1008 +#: include/text.php:1079 msgid "slap" msgstr "bufetada" -#: ../../include/text.php:1008 +#: include/text.php:1079 msgid "slapped" msgstr "Abufetejat" -#: ../../include/text.php:1009 +#: include/text.php:1080 msgid "finger" msgstr "dit" -#: ../../include/text.php:1009 +#: include/text.php:1080 msgid "fingered" msgstr "Senyalat" -#: ../../include/text.php:1010 +#: include/text.php:1081 msgid "rebuff" msgstr "rebuig" -#: ../../include/text.php:1010 +#: include/text.php:1081 msgid "rebuffed" msgstr "rebutjat" -#: ../../include/text.php:1024 +#: include/text.php:1095 msgid "happy" msgstr "feliç" -#: ../../include/text.php:1025 +#: include/text.php:1096 msgid "sad" msgstr "trist" -#: ../../include/text.php:1026 +#: include/text.php:1097 msgid "mellow" msgstr "embafador" -#: ../../include/text.php:1027 +#: include/text.php:1098 msgid "tired" msgstr "cansat" -#: ../../include/text.php:1028 +#: include/text.php:1099 msgid "perky" msgstr "alegre" -#: ../../include/text.php:1029 +#: include/text.php:1100 msgid "angry" msgstr "disgustat" -#: ../../include/text.php:1030 +#: include/text.php:1101 msgid "stupified" msgstr "estupefacte" -#: ../../include/text.php:1031 +#: include/text.php:1102 msgid "puzzled" msgstr "perplexe" -#: ../../include/text.php:1032 +#: include/text.php:1103 msgid "interested" msgstr "interessat" -#: ../../include/text.php:1033 +#: include/text.php:1104 msgid "bitter" msgstr "amarg" -#: ../../include/text.php:1034 +#: include/text.php:1105 msgid "cheerful" msgstr "animat" -#: ../../include/text.php:1035 +#: include/text.php:1106 msgid "alive" msgstr "viu" -#: ../../include/text.php:1036 +#: include/text.php:1107 msgid "annoyed" msgstr "molest" -#: ../../include/text.php:1037 +#: include/text.php:1108 msgid "anxious" msgstr "ansiós" -#: ../../include/text.php:1038 +#: include/text.php:1109 msgid "cranky" msgstr "irritable" -#: ../../include/text.php:1039 +#: include/text.php:1110 msgid "disturbed" msgstr "turbat" -#: ../../include/text.php:1040 +#: include/text.php:1111 msgid "frustrated" msgstr "frustrat" -#: ../../include/text.php:1041 +#: include/text.php:1112 msgid "motivated" msgstr "motivat" -#: ../../include/text.php:1042 +#: include/text.php:1113 msgid "relaxed" msgstr "tranquil" -#: ../../include/text.php:1043 +#: include/text.php:1114 msgid "surprised" msgstr "sorprès" -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Dilluns" +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Veure Video" -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Dimarts" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Dimecres" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Dijous" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Divendres" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Dissabte" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Diumenge" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Gener" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Febrer" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Març" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Maig" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Juny" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Juliol" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Agost" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "Setembre" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Octubre" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Desembre" - -#: ../../include/text.php:1437 +#: include/text.php:1356 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1461 ../../include/text.php:1473 +#: include/text.php:1388 include/text.php:1400 msgid "Click to open/close" msgstr "Clicar per a obrir/tancar" -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "per defecte" +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Sel·lecciona un idioma alternatiu" +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" -#: ../../include/text.php:1970 +#: include/text.php:1806 msgid "activity" msgstr "activitat" -#: ../../include/text.php:1973 +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "comentari" + +#: include/text.php:1809 msgid "post" msgstr "missatge" -#: ../../include/text.php:2141 +#: include/text.php:1977 msgid "Item filed" msgstr "Element arxivat" -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Imatge/foto" +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." -#: ../../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 va escriure:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Encriptar contingut" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(sense assumpte)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "no contestar" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No put trobar informació de DNS del servidor de base de dades '%s'" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Desconegut/No categoritzat" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquejar immediatament" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Sospitós, Spam, auto-publicitat" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Conegut per mi, però sense opinió" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Bé, probablement inofensiu" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Bona reputació, té la meva confiança" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Setmanal" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensual" - -#: ../../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 "" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr " a Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inici:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Acaba:" - -#: ../../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 "Aniversari:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Edat:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "per a %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Etiquetes:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religió:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Gustos musicals:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Llibres, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisió:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinema/ball/cultura/entreteniments:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amor/sentiments:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Treball/ocupació:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Escola/formació" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Clica aquí per actualitzar." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Aquesta acció excedeix els límits del teu plan de subscripció." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el teu plan de subscripció." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Termina sessió" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Els teus anuncis i converses" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "La seva pàgina de perfil" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Les seves fotos" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Els seus esdeveniments" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Notes personals" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Accedeix" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Pàgina d'Inici" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Crear un compte" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplicacions" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Afegits: aplicacions, utilitats, jocs" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Busca contingut en el lloc" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Converses en aquest lloc" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Directori" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Directori de gent" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Converses dels teus amics" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Reiniciar Xarxa" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "carrega la pàgina de Xarxa sense filtres" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Sol·licitud d'Amistat" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Veure totes les notificacions" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Marcar totes les notificacions del sistema com a vistes" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Correu privat" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Gestionar" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Gestiona altres pàgines" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Configuració del compte" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Gestiona/Edita Perfils" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Gestiona/edita amics i contactes" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Ajustos i configuració del lloc" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navegació" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Mapa del lloc" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 +#: include/user.php:48 msgid "An invitation is required." msgstr "Es requereix invitació." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "La invitació no ha pogut ser verificada." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "OpenID url no vàlid" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "Per favor, introdueixi la informació requerida." -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "Per favor, empri un nom més curt." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "Nom massa curt." -#: ../../include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "Això no sembla ser el teu nom complet." -#: ../../include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." -#: ../../include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "Adreça de correu no vàlida." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "No es pot utilitzar aquest correu electrònic." -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "àlies ja registrat. Tria un altre." -#: ../../include/user.php:148 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar " -#: ../../include/user.php:164 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." -#: ../../include/user.php:222 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "Un error ha succeït durant el registre. Intenta-ho de nou." -#: ../../include/user.php:257 +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "per defecte" + +#: include/user.php:266 msgid "An error occurred creating your default profile. Please try again." msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou." -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amics/Amigues" +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Fotos del Perfil" -#: ../../include/user.php:377 +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 #, php-format msgid "" "\n" @@ -7081,7 +3051,7 @@ msgid "" "\t" msgstr "" -#: ../../include/user.php:381 +#: include/user.php:438 #, php-format msgid "" "\n" @@ -7111,762 +3081,5821 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Compartint la notificació de la xarxa Diàspora" +#: include/user.php:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Detalls del registre per a %s" -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Adjunts:" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publicat amb éxit." -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Realment vols esborrar aquest article?" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accés denegat." -#: ../../include/items.php:4778 -msgid "Archives" +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "No més notificacions del sistema." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Notificacions del Sistema" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Traieu termini" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Accés públic denegat." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Sense resultats." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Això és Friendica, versió" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "funcionant en la ubicació web" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica." + +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Pels informes d'error i problemes: si us plau, visiteu" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com" + +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "plugins/addons/apps instal·lats:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "plugins/addons/apps no instal·lats" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "compte no vàlid trobat." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." + +#: 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 "Contrasenya restablerta enviada a %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." + +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Restabliment de Contrasenya" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La teva contrasenya fou restablerta com vas demanar." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La teva nova contrasenya es" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Guarda o copia la nova contrasenya - i llavors" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clica aquí per identificarte" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." + +#: 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 "La teva contrasenya ha estat canviada a %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Has Oblidat la Contrasenya?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " + +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Àlies o Correu:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Restablir" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Sense perfil" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Ajuda:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "No trobat" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Pàgina no trobada." + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informació de privacitat remota no disponible." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visible per a:" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Error al protocol OpenID. No ha retornat ID." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc." + +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." + +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Importar" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Moure el compte" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Pots importar un compte d'un altre servidor 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 "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Arxiu del compte" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar perfil de %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Editar contacte" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Contactes que no pertanyen a cap grup" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "Exportar compte" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "Exportar tot" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s'exporten)" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Exportar dades personals" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit d'invitacions excedit." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una adreça de correu vàlida" + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Per favor, uneixi's a nosaltres en Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Ha fallat l'entrega del missatge." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d missatge enviat" +msgstr[1] "%d missatges enviats." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "No te més invitacions 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 "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." + +#: 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 acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." + +#: 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 "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Enviant Invitacions" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Entri adreçes de correu, una per línia:" + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "El teu missatge:" + +#: 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 "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" + +#: 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 a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com" + +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Enviar" + +#: mod/fbrowser.php:133 +msgid "Files" msgstr "Arxius" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Home" +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Permís denegat" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Dona" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no vàlid." -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualment Home" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor de Visibilitat del Perfil" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualment Dona" +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Clicar sobre el contacte per afegir o esborrar." -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Habitualment Home" +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visible Per" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Habitualment Dona" +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tots els Contactes (amb accés segur al perfil)" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgènere" +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Etiqueta eliminada" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Bisexual" +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Esborrar etiqueta del element" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecciona etiqueta a esborrar:" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Esborrar" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "No específicat" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altres" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "No Decidit" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Home" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Dona" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbiana" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sense Preferències" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexual" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent/a" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Verge" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Desviat/da" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetixiste" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Orgies" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asexual" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Solter/a" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitari" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponible" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "No Disponible" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Compromés" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Enamorat" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "De cites" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infidel" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Adicte al sexe" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amics íntims" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Oportunista" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Promès" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Casat" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Matrimoni imaginari" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Socis" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Cohabitant" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Segons costums" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliç" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "No cerco" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Parella Liberal" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Traït/da" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separat/da" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Inestable" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorciat/da" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorci imaginari" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vidu/a" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incert" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Es complicat" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "No t'interessa" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Pregunta'm" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notificacions de Friendica" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Gràcies," - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: ../../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] nou correu rebut a %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s t'ha enviat %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "un missatge privat" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha comentat en [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 ha comentat en [url=%2$s]%3$s de %4$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s] el teu %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha comentat un element/conversació que estas seguint." - -#: ../../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 "Si us pau, visiteu %s per a veure i/o respondre la conversació." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s enviat al teu mur del perfil" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s t'ha etiquetat" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s t'ha etiquetat a %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s] t'ha etiquetat[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" msgstr "" -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" +#: mod/repair_ostatus.php:30 +msgid "Error" msgstr "" -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" msgstr "" -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notificació] %1$s t'atia" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s t'atia en %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]t'atia[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha etiquetat el teu missatge" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha etiquetat un missatge teu a %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s etiquetà [url=%2$s] el teu enviament[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Presentacio rebuda" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Has rebut una presentació des de '%1$s' en %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Pot visitar el seu perfil en %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." msgstr "" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "No es troben pàgines potencialment delegades." + +#: 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 "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Actuals Administradors de Pàgina" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Actuals Delegats de Pàgina" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegats Potencials" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Afegir" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Sense entrades" + +#: mod/credits.php:16 +msgid "Credits" msgstr "" -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" msgstr "" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleccionar -" + +#: mod/subthread.php:103 #, php-format -msgid "You have a new follower at %2$s : %1$s" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s esta seguint %2$s de %3$s" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Element no disponible" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Element no trobat." + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "T'has d'identificar per emprar els complements" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Aplicacions" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Aplicacions no instal·lades." + +#: mod/p.php:9 +msgid "Not Extended" msgstr "" -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Suggerencia d'amistat rebuda" +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Benvingut a Friendica" -#: ../../include/enotify.php:271 +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Llista de Verificació dels Nous Membres" + +#: 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 "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Començem" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Paseja per 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 "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Anar als Teus Ajustos" + +#: 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 "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." + +#: 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 "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Pujar Foto del Perfil" + +#: 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 "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editar el Teu Perfil" + +#: 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 "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Paraules clau del Perfil" + +#: 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 "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Connectant" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Important Emails" + +#: mod/newmember.php:51 +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 "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Anar a la Teva Pàgina de Contactes" + +#: mod/newmember.php:53 +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 "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "Anar al Teu Directori" + +#: mod/newmember.php:55 +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 pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Trobar Gent Nova" + +#: mod/newmember.php:57 +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 "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "Agrupar els Teus Contactes" + +#: mod/newmember.php:65 +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 "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "Per que no es public el meu enviament?" + +#: mod/newmember.php:68 +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 respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "Demanant Ajuda" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Anar a la secció d'Ajuda" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Eliminar el Meu Compte" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Si us plau, introduïu la contrasenya per a la verificació:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Element no trobat" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Editar Enviament" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Temps de Conversió" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes" + +#: mod/localtime.php:30 #, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" +msgid "UTC time: %s" +msgstr "hora UTC: %s" -#: ../../include/enotify.php:272 +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Zona horària actual: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Conversión de hora local: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Si us plau, seleccioneu la vostra zona horària:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Grup creat." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "No puc crear grup." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Grup no trobat" + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Nom de Grup canviat." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crear un grup de contactes/amics." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Grup esborrat." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Incapaç de esborrar Grup." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Editor de Grup:" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membres" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Tots els Contactes" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "El Grup es buit" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat." + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "No s'ha seleccionat destinatari." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Incapaç de comprovar la localització." + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "El Missatge no ha estat enviat." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Ha fallat la recollida del missatge." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Missatge enviat." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Sense destinatari." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Enviant Missatge Privat" + +#: mod/wallmessage.php:143 #, php-format msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts." -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nom:" +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Per a:" -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto:" +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Assumpte::" -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." +#: mod/share.php:38 +msgid "link" +msgstr "enllaç" -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoritzi la connexió de aplicacions" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torni a la seva aplicació i inserti aquest Codi de Seguretat:" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Per favor, accedeixi per a continuar." -#: ../../include/enotify.php:294 +#: mod/api.php:104 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "No" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Text Codi (bbcode): " + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Font (Diaspora) Convertir text a BBcode" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Entrada de Codi:" + +#: 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 "Font d'entrada (format de Diaspora)" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" msgstr "" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +msgid "%1$s welcomes %2$s" +msgstr "%1$s benvingut %2$s" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "No es pot trobar informació de contacte." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Realment vols esborrar aquest missatge?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Missatge eliminat." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Conversació esborrada." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Sense missatges." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Missatge no disponible." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Esborra missatge" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Esborrar conversació" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Enviar Resposta" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "remitent desconegut - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Tu i %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s i Tu" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d missatge" +msgstr[1] "%d missatges" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Administrar Identitats i/o Pàgines" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Seleccionar identitat a administrar:" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Ajustos de Contacte aplicats." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Fracassà l'actualització de Contacte" + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Contacte no trobat" + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ADVERTÈNCIA: Això és molt avançat i si s'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" msgstr "" -#: ../../include/enotify.php:307 +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Tornar al editor de contactes" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Nom" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Àlies del Compte" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - té prel·lació sobre Nom/Àlies" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "Adreça URL del Compte" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Adreça URL de sol·licitud d'Amistat" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "Adreça URL de confirmació d'Amic" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Adreça URL de Notificació" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Adreça de Enquesta/Alimentador" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nova foto d'aquesta URL" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Cap grup com" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "L'entrada fou editada" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentari" +msgstr[1] "%d comentaris" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Missatge Privat" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "M'agrada això (canviar)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "Agrada" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "No m'agrada això (canviar)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "Desagrada" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Compartir això" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "Compartir" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Aquest ets tu" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Comentari" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Negreta" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Itallica" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Subratllat" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Cometes" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Codi" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Imatge" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Enllaç" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Editar" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "Afegir a favorits" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "Esborrar favorit" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "Canviar estatus de favorit" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "favorit" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "afegir etiqueta" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "guardat a la carpeta" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "a" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Mur-a-Mur" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "via Mur-a-Mur" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Enviat suggeriment d'amic." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerir Amics" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerir un amic per a %s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Humor" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Ajusta el teu actual estat d'ànim i comenta-ho als amics" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Atia/Punxa" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Atiar, punxar o fer altres coses a algú" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Recipient" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Tria que vols fer amb el contenidor" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Fes aquest missatge privat" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Imatge pujada però no es va poder retallar." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "La reducció de la imatge [%s] va fracassar." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "No es pot processar la imatge" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Incapaç de processar la imatge." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Pujar arxiu:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Tria un perfil:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Pujar" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "saltar aquest pas" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "tria una foto dels teus àlbums" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "retallar imatge" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Edició Feta" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Carregada de la imatge amb èxit." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Actualització de la imatge fracassada." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Compte aprovat." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Procés de Registre revocat per a %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Si us plau, ingressa." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Sol·licitud d'identificació no vàlida." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Descartar" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignorar" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Notificacions de la Xarxa" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Notificacions Personals" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Notificacions d'Inici" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Mostra les Sol·licituds Ignorades" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Amaga les Sol·licituds Ignorades" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Tipus de Notificació:" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "sugerit per %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Amaga aquest contacte dels altres" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Publica una activitat d'amic nova" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "si es pot aplicar" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Aprovar" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Diu que et coneix:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "sí" + +#: mod/notifications.php:196 +msgid "no" +msgstr "no" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Amic" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Partícip" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Admirador" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Sense presentacions." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Perfil no trobat." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Perfil esborrat." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Perfil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Nou perfil creat." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "No es pot clonar el perfil." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Nom de perfil requerit." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Estatus Marital" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Soci Romàntic" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Treball/Ocupació" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Religió" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Idees Polítiques" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Gènere" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Preferència sexual" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Inici" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Interesos" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Adreça" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Ubicació" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Perfil actualitzat." + +#: mod/profiles.php:564 +msgid " and " +msgstr " i " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "perfil públic" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s s'ha canviat de %2$s a “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visita %1$s de %2$s" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s te una actualització %2$s, canviant %3$s." + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Amaga la llista de contactes/amics en la vista d'aquest perfil?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Editor de Detalls del Perfil" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Canviar la Foto del Perfil" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Veure aquest perfil" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Crear un nou perfil amb aquests ajustos" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Clonar aquest perfil" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Esborrar aquest perfil" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Gènere:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Estat Civil:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Exemple: pesca fotografia programari" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Nom de Perfil:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Requerit" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "Aquest és el teu perfil públic.
                                              El qual pot ser visible per qualsevol qui faci servir Internet." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "El Teu Nom Complet." + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Títol/Descripció:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Direcció:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Localitat/Ciutat:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Regió/Estat:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Codi Postal:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "País" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Qui? (si és aplicable)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Des de [data]" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Parla'ns de tú....." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Pàgina web URL:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Creencies Religioses:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Paraules Clau Públiques" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Paraules Clau Privades:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Gustos musicals" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Llibres, Literatura" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Televisió" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Cinema/ball/cultura/entreteniments" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Aficions/Interessos" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Amor/sentiments" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Treball/ocupació" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Ensenyament/estudis" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Informació de contacte i Xarxes Socials" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Editar/Gestionar Perfils" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "No hi ha amics que mostrar" + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accés a aquest perfil ha estat restringit." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Previ" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Següent" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Sense contactes en comú." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Amics Comuns" + +#: mod/community.php:27 +msgid "Not available." +msgstr "No disponible." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Directori Global" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Trobat en aquest lloc" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Directori Local" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "No hi ha coincidències" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "El element ha estat esborrat." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Títol d'esdeveniment i hora d'inici requerits." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Crear un nou esdeveniment" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Detalls del esdeveniment" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Inici d'Esdeveniment:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/hora de finalització no es coneixen o no són relevants" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "L'esdeveniment Finalitza:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Ajustar a la zona horaria de l'espectador" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Descripció:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Títol:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Compartir aquest esdeveniment" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Sistema apagat per manteniment" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "està interessat en:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Perfil Aconseguit" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consells per a nous membres" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Realment vols esborrar aquest suggeriment?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignorar/Amagar" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Contingut embegut - recarrega la pàgina per a veure-ho]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Fotos Recents" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Actualitzar Noves Fotos" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "tothom" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Informació del Contacte no disponible" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Àlbum no trobat." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Eliminar Àlbum" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Eliminar Foto" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Realment vols esborrar aquesta foto?" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s fou etiquetat a %2$s per %3$s" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "El fitxer de imatge és buit." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "No s'han seleccionat fotos" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "L'accés a aquest element està restringit." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos." + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Carregar Fotos" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nou nom d'àlbum:" + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "o nom d'àlbum existent:" + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Mostrar en Grups" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Mostrar a Contactes" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Foto Privada" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Foto Pública" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Editar Àlbum" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Mostrar el més Nou Primer" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Mostrar el més Antic Primer" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Veure Foto" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permís denegat. L'accés a aquest element pot estar restringit." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Veure foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Editar foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Emprar com a foto del perfil" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Veure'l a Mida Completa" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Etiquetes:" + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "Treure etiquetes" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nou nom d'àlbum" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Títol" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Afegir una etiqueta" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Rotar CW (dreta)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Rotar CCW (esquerra)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Foto Privada" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Foto pública" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Veure Àlbum" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." + +#: mod/register.php:98 #, 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." +"Failed to send email message. Here your accout details:
                                              login: %s
                                              " +"password: %s

                                              You can change your password after login." msgstr "" -#: ../../include/enotify.php:309 -#, php-format +#: mod/register.php:105 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "El seu registre no pot ser processat." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." + +#: mod/register.php:226 msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "El seu OpenID (opcional):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Incloc el seu perfil al directori de membres?" + +#: mod/register.php:267 +msgid "Note for the admin" msgstr "" -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Lloc accesible mitjançant invitació." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "El teu ID de invitació:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Procés de Registre" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "" -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "La Seva Adreça de Correu:" + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nova Contrasenya:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." 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)" +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Confirmar:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@$sitename'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Tria un àlies:" + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" msgstr "" -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Compte" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Característiques Adicionals" + +#: mod/settings.php:60 +msgid "Display" msgstr "" -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Contingut incrustat" +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "" -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Incrustacions deshabilitades" +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Plugins" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Error decodificant l'arxiu del compte" +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "App connectada" -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Esborrar compte" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Error! No puc comprobar l'Àlies" +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Perdudes algunes dades importants!" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Actualitzar" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Configuració del correu electrònic actualitzada." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Característiques actualitzades" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No es permeten contasenyes buides. Contrasenya no canviada" + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Contrasenya errònia" + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Contrasenya canviada." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr "Si us plau, faci servir un nom més curt." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr "Nom massa curt." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Contrasenya Errònia" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr "Correu no vàlid." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr "No puc canviar a aquest correu." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte." + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup." + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Ajustos actualitzats." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Afegir aplicació" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Redirigir" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "icona de url" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "No pots editar aquesta aplicació." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Aplicacions conectades" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Les claus de client comançen amb" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Sense nom" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "retirar l'autorització" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "No s'han configurat ajustos de Plugin" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Ajustos de Plugin" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Apagat" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Engegat" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Característiques Adicionals" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "El usuari %s' ja existeix en aquest servidor!" +msgid "Built-in support for %s connectivity is %s" +msgstr "El suport integrat per a la connectivitat de %s és %s" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Error en la creació de l'usuari" +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "habilitat" -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Error en la creació del perfil d'usuari" +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "deshabilitat" -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contacte no importat" -msgstr[1] "%d contactes no importats" +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "L'accés al correu està deshabilitat en aquest lloc." -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "canviar a mòbil" +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Preparació de Correu/Bústia" -#: ../../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 +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Última comprovació de correu amb èxit:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Nom del servidor IMAP:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Seguretat:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Cap" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Nom d'usuari del correu" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Contrasenya del correu:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Adreça de resposta:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Enviar correu públic a tots els contactes del correu:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Acció després d'importar:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Moure a la carpeta" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Moure a la carpeta:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "No hi ha un tema específic per a mòbil" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Ajustos de Pantalla" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Visualitzar el Tema:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Tema Mobile:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Actualitzar navegador cada xx segons" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Número d'elements a mostrar per pàgina" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Màxim de 100 elements" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "No mostrar emoticons" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Configuració de Temes" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Ajusteu el nivell de canvi de mida d'imatges en els missatges i comentaris ( amplada i alçada" +#: mod/settings.php:1099 +msgid "Account Types" +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 "Canvia la mida del tipus de lletra per enviaments i comentaris" +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Ajustar l'ample del tema" +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Esquema de colors" +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Canvia l'espaiat de línia per enviaments i comentaris" +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Establir l'esquema de color" +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" -#: ../../view/theme/quattro/config.php:67 +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Pàgina Normal del Compte " + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Aques compte es un compte personal normal" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Pàgina de Soapbox" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura." + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Compte d'Amistat Automàtica" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Fòrum Privat [Experimental]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Fòrum privat - Només membres aprovats" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Publicar el teu perfil predeterminat en el directori del lloc local?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Publicar el teu perfil predeterminat al directori social global?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Permet als amics publicar en la seva pàgina de perfil?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Permet als amics d'etiquetar els teus missatges?" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Permeteu-nos suggerir-li com un amic potencial dels nous membres?" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetre a desconeguts enviar missatges al teu correu privat?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "El Perfil no està publicat." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Configuració avançada d'expiració" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Expiració Avançada" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Expiració d'enviaments" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Expiració de notes personals" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Expiració de enviaments de favorits" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Expiració de fotos" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Només expiren els enviaments dels altres:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Ajustos de Compte" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Ajustos de Contrasenya" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Deixi els camps de contrasenya buits per a no fer canvis" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Contrasenya Actual:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "La teva actual contrasenya a fi de confirmar els canvis" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Contrasenya:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Ajustos Basics" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Adreça de Correu:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "La teva zona Horària:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Localització per Defecte del Missatge:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Ubicar-se amb el Navegador:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Ajustos de Seguretat i Privacitat" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre Màxim de Sol·licituds per Dia" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(per a prevenir abusos de spam)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Permisos de Correu per Defecte" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(clicar per a obrir/tancar)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Missatges Privats Per Defecte" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Missatges Públics Per Defecte" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Permisos Per Defecte per a Nous Missatges" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Màxim nombre de missatges, per dia, de desconeguts:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Ajustos de Notificació" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Enviar per defecte un missatge de estatus quan:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "Acceptar una sol·licitud d'amistat" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "Unint-se a un fòrum/comunitat" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "fent un canvi al perfil" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Envia un correu notificant quan:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Has rebut una presentació" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "La teva presentació està confirmada" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Algú ha escrit en el teu mur de perfil" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Algú ha escrit un comentari de seguiment" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Has rebut un missatge privat" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Has rebut una suggerencia d'un amic" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Estàs etiquetat en un enviament" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "Has estat Atiat/punxat/etc, en un enviament" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustos Avançats de Compte/ Pàgina" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Canviar el comportament d'aquest compte en situacions especials" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "No s'han seleccionat vídeos " + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Videos Recents" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Carrega Nous Videos" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "La càrrega de fitxers ha fallat." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Ajustos de Tema actualitzats" + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Lloc" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Usuaris" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Temes" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Actualitzacions de BD" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Registres" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Característiques del Plugin" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Registre d'usuari a l'espera de confirmació" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Administració" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Compte Normal" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Compte Tribuna" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Compte de Comunitat/Celebritat" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Compte d'Amistat Automàtic" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Compte de Blog" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Fòrum Privat" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Cues de missatges" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Sumari" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Usuaris registrats" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Registres d'usuari pendents" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Versió" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Plugins actius" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Ajustos del lloc actualitzats." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Mai" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:907 +msgid "One year" +msgstr "" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Instancia multiusuari" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Tancat" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Requereix aprovació" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Obert" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Forzar a tots els enllaços a utilitzar SSL" + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)" + +#: mod/admin.php:957 +msgid "File upload" +msgstr "Fitxer carregat" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Polítiques" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Rendiment" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Nom del lloc" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Senyera/Logo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Idioma del Sistema" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Tema del sistema" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "Tema per a mòbil" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Tema per a aparells mòbils" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Política SSL per als enllaços" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina si els enllaços generats han de ser forçats a utilitzar SSL" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "Amaga l'entrada d'ajuda del menu de navegació" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Amaga l'entrada del menú de les pàgines d'ajuda. Pots encara accedir entrant /ajuda directament." + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "Instancia per a un únic usuari" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat" + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Mida màxima de les imatges" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "Maxima longitud d'imatge" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits" + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "Qualitat per a la imatge JPEG" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat." + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Política per a registrar" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Registres Màxims Diaris" + +#: mod/admin.php:986 +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 "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes." + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Text al registrar" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Serà mostrat de forma preminent a la pàgina durant el procés de registre." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Comptes abandonats després de x dies" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Dominis amics permesos" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Dominis de correu permesos" + +#: mod/admin.php:990 +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 "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Bloqueig públic" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Forçar publicació" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "Permetre fils als articles" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "Permet un nivell infinit de fils per a articles en aquest lloc." + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "Els enviaments dels nous usuaris seran privats per defecte." + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Canviar els permisos d'enviament per defecte per a tots els nous membres a grup privat en lloc de públic." + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "No incloure el assumpte a les notificacions per correu electrónic" + +#: mod/admin.php:996 +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 "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. " + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions" + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "No incrustar imatges en missatges privats" + +#: mod/admin.php:998 +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 "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps." + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Bloquejar multiples registracions" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines." + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Suport per a OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "Suport per a registre i validació a OpenID." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Comprobació de nom complet" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "expresions regulars UTF-8" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Empri expresions regulars de PHP amb format UTF8" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Activa el suport per a OStatus" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "Interval de conclusió de la conversació a OStatus" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball." + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Habilitar suport per Diaspora" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Proveeix compatibilitat integrada amb la xarxa Diaspora" + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Només permetre contactes de Friendica" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tots els contactes " + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: mod/admin.php:1014 +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 "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "proxy d'usuari" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "URL del proxy" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Temps excedit a la xarxa" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "Interval d'entrega" + +#: mod/admin.php:1018 +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 "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Interval entre sondejos" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. " + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Càrrega Màxima Sostinguda" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50." + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "Emprar el motor de text complet de MySQL" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters." + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "Camí cap a la caché de l'article" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "Duració de la caché en segons" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "Camí per a l'arxiu bloquejat" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Camí a carpeta temporal" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "Trajectoria base per a instal·lar" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "L'actualització ha estat marcada amb èxit" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'actualització de %s es va aplicar amb èxit." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "No hi ha actualitzacions fallides." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Actualitzacions Fallides" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Marcat am èxit (si l'actualització es va fer manualment)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Intentant executar aquest pas d'actualització automàticament" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s usuari bloquejar/desbloquejar" +msgstr[1] "%s usuaris bloquejar/desbloquejar" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuari esborrat" +msgstr[1] "%s usuaris esborrats" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Usuari %s' esborrat" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Usuari %s' desbloquejat" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "L'usuari '%s' és bloquejat" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Data de registre" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Últim accés" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Últim element" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "Seleccionar tot" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Registre d'usuari esperant confirmació" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Data de sol·licitud" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Sense registres." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Denegar" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Bloquejar" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Desbloquejar" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Administrador del lloc" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Compte expirat" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" + +#: mod/admin.php:1428 +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'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s deshabilitat." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s habilitat." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Deshabilitar" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Habilitar" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Canviar" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Autor:" + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Responsable:" + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "No s'ha trobat temes." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[No soportat]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Configuració del registre actualitzada." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Netejar" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "Habilitar Depuració" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Arxiu de registre" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Nivell de transcripció" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "No puc accedir al registre del contacte." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "No puc localitzar el perfil seleccionat." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Contacte actualitzat." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Error en actualitzar registre de contacte." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Elcontacte ha estat bloquejat" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "El contacte ha estat desbloquejat" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "El contacte ha estat ignorat" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "El contacte ha estat recordat" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "El contacte ha estat arxivat" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "El contacte ha estat desarxivat" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Realment vols esborrar aquest contacte?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "El contacte ha estat tret" + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Ara te una amistat mutua amb %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Estas compartint amb %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s esta compartint amb tú" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Comunicacions privades no disponibles per aquest contacte." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(L'actualització fou exitosa)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(L'actualització fracassà)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Suggerir amics" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Xarxa tipus: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "La comunicació amb aquest contacte s'ha perdut!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Perfil de Visibilitat" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura." + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Informació/Notes del contacte" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Editar notes de contactes" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Bloquejar/Alliberar contacte" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignore contacte" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Restablir configuració de URL" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Veient conversacions" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Última actualització:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Actualitzar enviament públic" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Actualitza ara" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Treure d'Ignorats" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Bloquejat actualment" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Ignorat actualment" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Actualment arxivat" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Répliques/agraiments per als teus missatges públics poden romandre visibles" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Suggeriments" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Suggerir amics potencials" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Mostrar tots els contactes" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Desblocat" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Mostrar únicament els contactes no blocats" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Blocat" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Mostrar únicament els contactes blocats" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Ignorat" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Mostrar únicament els contactes ignorats" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Arxivat" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Mostrar únicament els contactes arxivats" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Amagat" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Mostrar únicament els contactes amagats" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Cercant el seus contactes" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Arxivat" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Desarxivat" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Veure tots els contactes" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Ajustos Avançats per als Contactes" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Amistat Mutua" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "Es un fan teu" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "ets fan de" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Canvi de estatus blocat" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Canvi de estatus ignorat" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Canvi de estatus del arxiu" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Esborrar contacte" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "La resposta des del lloc remot no s'entenia." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Resposta inesperada de lloc remot:" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "La confirmació s'ha completat correctament." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "El lloc remot informa:" + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Fallada temporal. Si us plau, espereu i torneu a intentar." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "La presentació va fallar o va ser revocada." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "No es pot canviar la foto de contacte." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "No es troben registres d'usuari per a '%s'" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra clau de xifrat del lloc pel que sembla en mal estat." + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "No s'han trobat registres del contacte al nostre lloc." + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "la clau pública del lloc no disponible en les dades del contacte per URL %s." + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "No es pot canviar les seves credencials de contacte en el nostre sistema." + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s s'ha unit a %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Aquesta presentació ha estat acceptada." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "El perfil de situació no és vàlid o no contè informació de perfil" + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Atenció: El perfil de situació no te nom de propietari identificable." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Atenció: El perfil de situació no te foto de perfil" + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d el paràmetre requerit no es va trobar al lloc indicat" +msgstr[1] "%d els paràmetres requerits no es van trobar allloc indicat" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Completada la presentació." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Error de protocol irrecuperable." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Perfil no disponible" + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s avui ha rebut excesives peticions de connexió. " + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Mesures de protecció contra spam han estat invocades." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "S'aconsellà els amics que probin pasades 24 hores." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Localitzador no vàlid" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Adreça de correu no vàlida." + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud." + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Has fer la teva presentació aquí." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Aparentment, ja tens amistat amb %s" + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Perfil URL no vàlid." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "La teva presentació ha estat enviada." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Si us plau, entri per confirmar la presentació." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Confirmar" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Amaga aquest contacte" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Benvingut de nou %s" + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:" + +#: mod/dfrn_request.php:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Sol·licitud d'Amistat" + +#: mod/dfrn_request.php:860 +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:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Si us plau, contesti les següents preguntes:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "%s et coneix?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Afegir una nota personal:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "Web Social StatusNet/Federated " + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora." + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "La Teva Adreça Identificativa:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Sol·licitud Enviada" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Contacte afegit" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Servidor de Comunicacions - Configuració" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "No puc connectar a la base de dades." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "No puc creat taula." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Comprovació del Sistema" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Comprovi de nou" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Conexió a la base de dades" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Nom del Servidor de base de Dades" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Nom d'Usuari de la base de Dades" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Contrasenya d'Usuari de la base de Dades" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Nom de la base de Dades" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Adreça de correu del administrador del lloc" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Configuracions del lloc" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "Direcció del executable PHP" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "Linia de comandos PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "Trobada la versió PHP:" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "PHP cli binari" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Això és necessari perquè funcioni el lliurament de missatges." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Generar claus d'encripció" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "Mòdul libCurl de PHP" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "Mòdul GD de gràfics de PHP" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "Mòdul OpenSSl de PHP" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "Mòdul mysqli de PHP" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "Mòdul mb_string de PHP" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul " + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Error: El mòdul mysqli de PHP és necessari però no està instal·lat." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica." + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php és escribible" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar." + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica." + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta." + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté." + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 es escribible" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor." + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "URL rewrite està treballant" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Que es següent

                                              " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)" + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "No es pot localitzar post original." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Buidat després de rebutjar." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Error del sistema. Publicació no guardada." + +#: mod/item.php:992 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "El pot visitar en línia a %s" + +#: mod/item.php:995 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s ha publicat una actualització." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Els missatges privats a aquesta persona es troben en risc de divulgació pública." + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Contacte no vàlid." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Ordre dels Comentaris" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Ordenar per Data de Comentari" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Ordre dels Enviaments" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Ordenar per Data d'Enviament" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Missatge que et menciona o t'impliquen" + +#: mod/network.php:856 +msgid "New" +msgstr "Nou" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Activitat del Flux - per data" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Enllaços Compartits" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Enllaços Interesants" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Favorits" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Enviaments Favorits" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} vol ser el teu amic" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} t'ha enviat un missatge de" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} solicituts de registre" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Sense Contactes" + +#: object/Item.php:370 +msgid "via" +msgstr "via" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "Adaptació" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Left" msgstr "Esquerra" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Center" msgstr "Centre" -#: ../../view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Esquema de colors" + +#: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Mida del text en enviaments" -#: ../../view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:70 msgid "Textareas font size" msgstr "mida del text en Areas de Text" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "canvia la resolució per a la columna central" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Canvia l'esquema de color" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Ajustar el factor de zoom de Earth Layers" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Ajustar longitud (X) per Earth Layers" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Ajustar latitud (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 "Pàgines de la Comunitat" - -#: ../../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 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "Perfils de Comunitat" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Ajuda o @NouAqui?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Serveis Connectats" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trobar Amistats" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 msgid "Last users" msgstr "Últims usuaris" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Últimes fotos" +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Trobar Amistats" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Últims \"m'agrada\"" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Els teus contactes" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Les seves fotos personals" - -#: ../../view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Directori Local" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Ajustar el factor de zoom per Earth Layers" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/amaga els marcs de la columna a ma dreta" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Serveis Connectats" -#: ../../view/theme/vier/config.php:56 +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "" -#: ../../view/theme/duepuntozero/config.php:45 +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Pàgines de la Comunitat" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Ajuda o @NouAqui?" + +#: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:46 msgid "purplezero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:47 msgid "easterbunny" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:48 msgid "darkzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:49 msgid "comix" msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:50 msgid "slackr" msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Esborrar aquest element?" + +#: boot.php:973 +msgid "show fewer" +msgstr "Mostrar menys" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Actualització de %s fracassà. Mira el registre d'errors." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Crear un Nou Compte" + +#: boot.php:1796 +msgid "Password: " +msgstr "Contrasenya:" + +#: boot.php:1797 +msgid "Remember me" +msgstr "Recorda'm ho" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "O accedixi emprant OpenID:" + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Oblidà la contrasenya?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Termes del Servei al Llocweb" + +#: boot.php:1810 +msgid "terms of service" +msgstr "termes del servei" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Política de Privacitat al Llocweb" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "política de privacitat" + +#: index.php:451 +msgid "toggle mobile" +msgstr "canviar a mòbil" diff --git a/view/lang/ca/strings.php b/view/lang/ca/strings.php index 80e09cbac..58b5e2fb4 100644 --- a/view/lang/ca/strings.php +++ b/view/lang/ca/strings.php @@ -5,1298 +5,10 @@ function string_plural_select_ca($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "No puc accedir al registre del contacte."; -$a->strings["Could not locate selected profile."] = "No puc localitzar el perfil seleccionat."; -$a->strings["Contact updated."] = "Contacte actualitzat."; -$a->strings["Failed to update contact record."] = "Error en actualitzar registre de contacte."; -$a->strings["Permission denied."] = "Permís denegat."; -$a->strings["Contact has been blocked"] = "Elcontacte ha estat bloquejat"; -$a->strings["Contact has been unblocked"] = "El contacte ha estat desbloquejat"; -$a->strings["Contact has been ignored"] = "El contacte ha estat ignorat"; -$a->strings["Contact has been unignored"] = "El contacte ha estat recordat"; -$a->strings["Contact has been archived"] = "El contacte ha estat arxivat"; -$a->strings["Contact has been unarchived"] = "El contacte ha estat desarxivat"; -$a->strings["Do you really want to delete this contact?"] = "Realment vols esborrar aquest contacte?"; -$a->strings["Yes"] = "Si"; -$a->strings["Cancel"] = "Cancel·lar"; -$a->strings["Contact has been removed."] = "El contacte ha estat tret"; -$a->strings["You are mutual friends with %s"] = "Ara te una amistat mutua amb %s"; -$a->strings["You are sharing with %s"] = "Estas compartint amb %s"; -$a->strings["%s is sharing with you"] = "%s esta compartint amb tú"; -$a->strings["Private communications are not available for this contact."] = "Comunicacions privades no disponibles per aquest contacte."; -$a->strings["Never"] = "Mai"; -$a->strings["(Update was successful)"] = "(L'actualització fou exitosa)"; -$a->strings["(Update was not successful)"] = "(L'actualització fracassà)"; -$a->strings["Suggest friends"] = "Suggerir amics"; -$a->strings["Network type: %s"] = "Xarxa tipus: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contacte en comú", - 1 => "%d contactes en comú", -); -$a->strings["View all contacts"] = "Veure tots els contactes"; -$a->strings["Unblock"] = "Desbloquejar"; -$a->strings["Block"] = "Bloquejar"; -$a->strings["Toggle Blocked status"] = "Canvi de estatus blocat"; -$a->strings["Unignore"] = "Treure d'Ignorats"; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["Toggle Ignored status"] = "Canvi de estatus ignorat"; -$a->strings["Unarchive"] = "Desarxivat"; -$a->strings["Archive"] = "Arxivat"; -$a->strings["Toggle Archive status"] = "Canvi de estatus del arxiu"; -$a->strings["Repair"] = "Reparar"; -$a->strings["Advanced Contact Settings"] = "Ajustos Avançats per als Contactes"; -$a->strings["Communications lost with this contact!"] = "La comunicació amb aquest contacte s'ha perdut!"; -$a->strings["Contact Editor"] = "Editor de Contactes"; -$a->strings["Submit"] = "Enviar"; -$a->strings["Profile Visibility"] = "Perfil de Visibilitat"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura."; -$a->strings["Contact Information / Notes"] = "Informació/Notes del contacte"; -$a->strings["Edit contact notes"] = "Editar notes de contactes"; -$a->strings["Visit %s's profile [%s]"] = "Visitar perfil de %s [%s]"; -$a->strings["Block/Unblock contact"] = "Bloquejar/Alliberar contacte"; -$a->strings["Ignore contact"] = "Ignore contacte"; -$a->strings["Repair URL settings"] = "Restablir configuració de URL"; -$a->strings["View conversations"] = "Veient conversacions"; -$a->strings["Delete contact"] = "Esborrar contacte"; -$a->strings["Last update:"] = "Última actualització:"; -$a->strings["Update public posts"] = "Actualitzar enviament públic"; -$a->strings["Update now"] = "Actualitza ara"; -$a->strings["Currently blocked"] = "Bloquejat actualment"; -$a->strings["Currently ignored"] = "Ignorat actualment"; -$a->strings["Currently archived"] = "Actualment arxivat"; -$a->strings["Hide this contact from others"] = "Amaga aquest contacte dels altres"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Répliques/agraiments per als teus missatges públics poden romandre visibles"; -$a->strings["Notification for new posts"] = ""; -$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"] = "Suggeriments"; -$a->strings["Suggest potential friends"] = "Suggerir amics potencials"; -$a->strings["All Contacts"] = "Tots els Contactes"; -$a->strings["Show all contacts"] = "Mostrar tots els contactes"; -$a->strings["Unblocked"] = "Desblocat"; -$a->strings["Only show unblocked contacts"] = "Mostrar únicament els contactes no blocats"; -$a->strings["Blocked"] = "Blocat"; -$a->strings["Only show blocked contacts"] = "Mostrar únicament els contactes blocats"; -$a->strings["Ignored"] = "Ignorat"; -$a->strings["Only show ignored contacts"] = "Mostrar únicament els contactes ignorats"; -$a->strings["Archived"] = "Arxivat"; -$a->strings["Only show archived contacts"] = "Mostrar únicament els contactes arxivats"; -$a->strings["Hidden"] = "Amagat"; -$a->strings["Only show hidden contacts"] = "Mostrar únicament els contactes amagats"; -$a->strings["Mutual Friendship"] = "Amistat Mutua"; -$a->strings["is a fan of yours"] = "Es un fan teu"; -$a->strings["you are a fan of"] = "ets fan de"; -$a->strings["Edit contact"] = "Editar contacte"; -$a->strings["Contacts"] = "Contactes"; -$a->strings["Search your contacts"] = "Cercant el seus contactes"; -$a->strings["Finding: "] = "Cercant:"; -$a->strings["Find"] = "Cercar"; -$a->strings["Update"] = "Actualitzar"; -$a->strings["Delete"] = "Esborrar"; -$a->strings["No profile"] = "Sense perfil"; -$a->strings["Manage Identities and/or Pages"] = "Administrar Identitats i/o Pàgines"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\""; -$a->strings["Select an identity to manage: "] = "Seleccionar identitat a administrar:"; -$a->strings["Post successful."] = "Publicat amb éxit."; -$a->strings["Permission denied"] = "Permís denegat"; -$a->strings["Invalid profile identifier."] = "Identificador del perfil no vàlid."; -$a->strings["Profile Visibility Editor"] = "Editor de Visibilitat del Perfil"; -$a->strings["Profile"] = "Perfil"; -$a->strings["Click on a contact to add or remove."] = "Clicar sobre el contacte per afegir o esborrar."; -$a->strings["Visible To"] = "Visible Per"; -$a->strings["All Contacts (with secure profile access)"] = "Tots els Contactes (amb accés segur al perfil)"; -$a->strings["Item not found."] = "Article no trobat."; -$a->strings["Public access denied."] = "Accés públic denegat."; -$a->strings["Access to this profile has been restricted."] = "L'accés a aquest perfil ha estat restringit."; -$a->strings["Item has been removed."] = "El element ha estat esborrat."; -$a->strings["Welcome to Friendica"] = "Benvingut a Friendica"; -$a->strings["New Member Checklist"] = "Llista de Verificació dels Nous Membres"; -$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."] = "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci."; -$a->strings["Getting Started"] = "Començem"; -$a->strings["Friendica Walk-Through"] = "Paseja per 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."] = "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te."; -$a->strings["Settings"] = "Ajustos"; -$a->strings["Go to Your Settings"] = "Anar als Teus Ajustos"; -$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."] = "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure."; -$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."] = "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li."; -$a->strings["Upload Profile Photo"] = "Pujar Foto del Perfil"; -$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."] = "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan."; -$a->strings["Edit Your Profile"] = "Editar el Teu Perfil"; -$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."] = "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts."; -$a->strings["Profile Keywords"] = "Paraules clau del Perfil"; -$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."] = "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats."; -$a->strings["Connecting"] = "Connectant"; -$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."] = "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure."; -$a->strings["Importing Emails"] = "Important Emails"; -$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"] = "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email"; -$a->strings["Go to Your Contacts Page"] = "Anar a la Teva Pàgina de Contactes"; -$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 seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte."; -$a->strings["Go to Your Site's Directory"] = "Anar al Teu Directori"; -$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 pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita."; -$a->strings["Finding New People"] = "Trobar Gent Nova"; -$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."] = "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores."; -$a->strings["Groups"] = "Grups"; -$a->strings["Group Your Contacts"] = "Agrupar els Teus Contactes"; -$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."] = "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa."; -$a->strings["Why Aren't My Posts Public?"] = "Per que no es public el meu enviament?"; -$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 respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt."; -$a->strings["Getting Help"] = "Demanant Ajuda"; -$a->strings["Go to the Help Section"] = "Anar a la secció d'Ajuda"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos."; -$a->strings["OpenID protocol error. No ID returned."] = "Error al protocol OpenID. No ha retornat ID."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc."; -$a->strings["Login failed."] = "Error d'accés."; -$a->strings["Image uploaded but image cropping failed."] = "Imatge pujada però no es va poder retallar."; -$a->strings["Profile Photos"] = "Fotos del Perfil"; -$a->strings["Image size reduction [%s] failed."] = "La reducció de la imatge [%s] va fracassar."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament."; -$a->strings["Unable to process image"] = "No es pot processar la imatge"; -$a->strings["Image exceeds size limit of %d"] = "La imatge sobrepassa el límit de mida de %d"; -$a->strings["Unable to process image."] = "Incapaç de processar la imatge."; -$a->strings["Upload File:"] = "Pujar arxiu:"; -$a->strings["Select a profile:"] = "Tria un perfil:"; -$a->strings["Upload"] = "Pujar"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "saltar aquest pas"; -$a->strings["select a photo from your photo albums"] = "tria una foto dels teus àlbums"; -$a->strings["Crop Image"] = "retallar imatge"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Per favor, ajusta la retallada d'imatge per a una optima visualització."; -$a->strings["Done Editing"] = "Edició Feta"; -$a->strings["Image uploaded successfully."] = "Carregada de la imatge amb èxit."; -$a->strings["Image upload failed."] = "Actualització de la imatge fracassada."; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "estatus"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s esta seguint %2\$s de %3\$s"; -$a->strings["Tag removed"] = "Etiqueta eliminada"; -$a->strings["Remove Item Tag"] = "Esborrar etiqueta del element"; -$a->strings["Select a tag to remove: "] = "Selecciona etiqueta a esborrar:"; -$a->strings["Remove"] = "Esborrar"; -$a->strings["Save to Folder:"] = "Guardar a la Carpeta:"; -$a->strings["- select -"] = "- seleccionar -"; -$a->strings["Save"] = "Guardar"; -$a->strings["Contact added"] = "Contacte afegit"; -$a->strings["Unable to locate original post."] = "No es pot localitzar post original."; -$a->strings["Empty post discarded."] = "Buidat després de rebutjar."; -$a->strings["Wall Photos"] = "Fotos del Mur"; -$a->strings["System error. Post not saved."] = "Error del sistema. Publicació no guardada."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica."; -$a->strings["You may visit them online at %s"] = "El pot visitar en línia a %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges."; -$a->strings["%s posted an update."] = "%s ha publicat una actualització."; -$a->strings["Group created."] = "Grup creat."; -$a->strings["Could not create group."] = "No puc crear grup."; -$a->strings["Group not found."] = "Grup no trobat"; -$a->strings["Group name changed."] = "Nom de Grup canviat."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Crear un grup de contactes/amics."; -$a->strings["Group Name: "] = "Nom del Grup:"; -$a->strings["Group removed."] = "Grup esborrat."; -$a->strings["Unable to remove group."] = "Incapaç de esborrar Grup."; -$a->strings["Group Editor"] = "Editor de Grup:"; -$a->strings["Members"] = "Membres"; -$a->strings["You must be logged in to use addons. "] = "T'has d'identificar per emprar els complements"; -$a->strings["Applications"] = "Aplicacions"; -$a->strings["No installed applications."] = "Aplicacions no instal·lades."; -$a->strings["Profile not found."] = "Perfil no trobat."; -$a->strings["Contact not found."] = "Contacte no trobat"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades."; -$a->strings["Response from remote site was not understood."] = "La resposta des del lloc remot no s'entenia."; -$a->strings["Unexpected response from remote site: "] = "Resposta inesperada de lloc remot:"; -$a->strings["Confirmation completed successfully."] = "La confirmació s'ha completat correctament."; -$a->strings["Remote site reported: "] = "El lloc remot informa:"; -$a->strings["Temporary failure. Please wait and try again."] = "Fallada temporal. Si us plau, espereu i torneu a intentar."; -$a->strings["Introduction failed or was revoked."] = "La presentació va fallar o va ser revocada."; -$a->strings["Unable to set contact photo."] = "No es pot canviar la foto de contacte."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s és ara amic amb %2\$s"; -$a->strings["No user record found for '%s' "] = "No es troben registres d'usuari per a '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra clau de xifrat del lloc pel que sembla en mal estat."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres."; -$a->strings["Contact record was not found for you on our site."] = "No s'han trobat registres del contacte al nostre lloc."; -$a->strings["Site public key not available in contact record for URL %s."] = "la clau pública del lloc no disponible en les dades del contacte per URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou."; -$a->strings["Unable to set your contact credentials on our system."] = "No es pot canviar les seves credencials de contacte en el nostre sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema"; -$a->strings["[Name Withheld]"] = "[Nom Amagat]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s s'ha unit a %2\$s"; -$a->strings["Requested profile is not available."] = "El perfil sol·licitat no està disponible."; -$a->strings["Tips for New Members"] = "Consells per a nous membres"; -$a->strings["No videos selected"] = "No s'han seleccionat vídeos "; -$a->strings["Access to this item is restricted."] = "L'accés a aquest element està restringit."; -$a->strings["View Video"] = "Veure Video"; -$a->strings["View Album"] = "Veure Àlbum"; -$a->strings["Recent Videos"] = "Videos Recents"; -$a->strings["Upload New Videos"] = "Carrega Nous Videos"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetats %2\$s %3\$s amb %4\$s"; -$a->strings["Friend suggestion sent."] = "Enviat suggeriment d'amic."; -$a->strings["Suggest Friends"] = "Suggerir Amics"; -$a->strings["Suggest a friend for %s"] = "Suggerir un amic per a %s"; -$a->strings["No valid account found."] = "compte no vàlid trobat."; -$a->strings["Password reset request issued. Check your email."] = "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu."; -$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"] = "Contrasenya restablerta enviada a %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat."; -$a->strings["Password Reset"] = "Restabliment de Contrasenya"; -$a->strings["Your password has been reset as requested."] = "La teva contrasenya fou restablerta com vas demanar."; -$a->strings["Your new password is"] = "La teva nova contrasenya es"; -$a->strings["Save or copy your new password - and then"] = "Guarda o copia la nova contrasenya - i llavors"; -$a->strings["click here to login"] = "clica aquí per identificarte"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit."; -$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"] = "La teva contrasenya ha estat canviada a %s"; -$a->strings["Forgot your Password?"] = "Has Oblidat la Contrasenya?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. "; -$a->strings["Nickname or Email: "] = "Àlies o Correu:"; -$a->strings["Reset"] = "Restablir"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s agrada %2\$s de %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no agrada %2\$s de %3\$s"; -$a->strings["{0} wants to be your friend"] = "{0} vol ser el teu amic"; -$a->strings["{0} sent you a message"] = "{0} t'ha enviat un missatge de"; -$a->strings["{0} requested registration"] = "{0} solicituts de registre"; -$a->strings["{0} commented %s's post"] = "{0} va comentar l'enviament de %s"; -$a->strings["{0} liked %s's post"] = "A {0} l'ha agradat l'enviament de %s"; -$a->strings["{0} disliked %s's post"] = "A {0} no l'ha agradat l'enviament de %s"; -$a->strings["{0} is now friends with %s"] = "{0} ara és amic de %s"; -$a->strings["{0} posted"] = "{0} publicat"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} va etiquetar la publicació de %s com #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} et menciona en un missatge"; -$a->strings["No contacts."] = "Sense Contactes"; -$a->strings["View Contacts"] = "Veure Contactes"; -$a->strings["Invalid request identifier."] = "Sol·licitud d'identificació no vàlida."; -$a->strings["Discard"] = "Descartar"; -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Xarxa"; -$a->strings["Personal"] = "Personal"; -$a->strings["Home"] = "Inici"; -$a->strings["Introductions"] = "Presentacions"; -$a->strings["Show Ignored Requests"] = "Mostra les Sol·licituds Ignorades"; -$a->strings["Hide Ignored Requests"] = "Amaga les Sol·licituds Ignorades"; -$a->strings["Notification type: "] = "Tipus de Notificació:"; -$a->strings["Friend Suggestion"] = "Amics Suggerits "; -$a->strings["suggested by %s"] = "sugerit per %s"; -$a->strings["Post a new friend activity"] = "Publica una activitat d'amic nova"; -$a->strings["if applicable"] = "si es pot aplicar"; -$a->strings["Approve"] = "Aprovar"; -$a->strings["Claims to be known to you: "] = "Diu que et coneix:"; -$a->strings["yes"] = "sí"; -$a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Aprovat com:"; -$a->strings["Friend"] = "Amic"; -$a->strings["Sharer"] = "Partícip"; -$a->strings["Fan/Admirer"] = "Fan/Admirador"; -$a->strings["Friend/Connect Request"] = "Sol·licitud d'Amistat/Connexió"; -$a->strings["New Follower"] = "Nou Seguidor"; -$a->strings["No introductions."] = "Sense presentacions."; -$a->strings["Notifications"] = "Notificacions"; -$a->strings["%s liked %s's post"] = "A %s li agrada l'enviament de %s"; -$a->strings["%s disliked %s's post"] = "A %s no li agrada l'enviament de %s"; -$a->strings["%s is now friends with %s"] = "%s es ara amic de %s"; -$a->strings["%s created a new post"] = "%s ha creat un enviament nou"; -$a->strings["%s commented on %s's post"] = "%s va comentar en l'enviament de %s"; -$a->strings["No more network notifications."] = "No més notificacions de xarxa."; -$a->strings["Network Notifications"] = "Notificacions de la Xarxa"; -$a->strings["No more system notifications."] = "No més notificacions del sistema."; -$a->strings["System Notifications"] = "Notificacions del Sistema"; -$a->strings["No more personal notifications."] = "No més notificacions personals."; -$a->strings["Personal Notifications"] = "Notificacions Personals"; -$a->strings["No more home notifications."] = "No més notificacions d'inici."; -$a->strings["Home Notifications"] = "Notificacions d'Inici"; -$a->strings["Source (bbcode) text:"] = "Text Codi (bbcode): "; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Font (Diaspora) Convertir text a BBcode"; -$a->strings["Source input: "] = "Entrada de Codi:"; -$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): "] = "Font d'entrada (format de Diaspora)"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Res nou aquí"; -$a->strings["Clear notifications"] = "Neteja notificacions"; -$a->strings["New Message"] = "Nou Missatge"; -$a->strings["No recipient selected."] = "No s'ha seleccionat destinatari."; -$a->strings["Unable to locate contact information."] = "No es pot trobar informació de contacte."; -$a->strings["Message could not be sent."] = "El Missatge no ha estat enviat."; -$a->strings["Message collection failure."] = "Ha fallat la recollida del missatge."; -$a->strings["Message sent."] = "Missatge enviat."; -$a->strings["Messages"] = "Missatges"; -$a->strings["Do you really want to delete this message?"] = "Realment vols esborrar aquest missatge?"; -$a->strings["Message deleted."] = "Missatge eliminat."; -$a->strings["Conversation removed."] = "Conversació esborrada."; -$a->strings["Please enter a link URL:"] = "Sius plau, entri l'enllaç URL:"; -$a->strings["Send Private Message"] = "Enviant Missatge Privat"; -$a->strings["To:"] = "Per a:"; -$a->strings["Subject:"] = "Assumpte::"; -$a->strings["Your message:"] = "El teu missatge:"; -$a->strings["Upload photo"] = "Carregar foto"; -$a->strings["Insert web link"] = "Inserir enllaç web"; -$a->strings["Please wait"] = "Si us plau esperi"; -$a->strings["No messages."] = "Sense missatges."; -$a->strings["Unknown sender - %s"] = "remitent desconegut - %s"; -$a->strings["You and %s"] = "Tu i %s"; -$a->strings["%s and You"] = "%s i Tu"; -$a->strings["Delete conversation"] = "Esborrar conversació"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d missatge", - 1 => "%d missatges", -); -$a->strings["Message not available."] = "Missatge no disponible."; -$a->strings["Delete message"] = "Esborra missatge"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent."; -$a->strings["Send Reply"] = "Enviar Resposta"; -$a->strings["[Embedded content - reload page to view]"] = "[Contingut embegut - recarrega la pàgina per a veure-ho]"; -$a->strings["Contact settings applied."] = "Ajustos de Contacte aplicats."; -$a->strings["Contact update failed."] = "Fracassà l'actualització de Contacte"; -$a->strings["Repair Contact Settings"] = "Reposar els ajustos de Contacte"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTÈNCIA: Això és molt avançat i si s'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui."; -$a->strings["Return to contact editor"] = "Tornar al editor de contactes"; -$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"] = "Àlies del Compte"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - té prel·lació sobre Nom/Àlies"; -$a->strings["Account URL"] = "Adreça URL del Compte"; -$a->strings["Friend Request URL"] = "Adreça URL de sol·licitud d'Amistat"; -$a->strings["Friend Confirm URL"] = "Adreça URL de confirmació d'Amic"; -$a->strings["Notification Endpoint URL"] = "Adreça URL de Notificació"; -$a->strings["Poll/Feed URL"] = "Adreça de Enquesta/Alimentador"; -$a->strings["New photo from this URL"] = "Nova foto d'aquesta 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"] = "Identifica't"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Accés denegat."; -$a->strings["People Search"] = "Cercant Gent"; -$a->strings["No matches"] = "No hi ha coincidències"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Files"] = "Arxius"; -$a->strings["Contacts who are not members of a group"] = "Contactes que no pertanyen a cap grup"; -$a->strings["Theme settings updated."] = "Ajustos de Tema actualitzats"; -$a->strings["Site"] = "Lloc"; -$a->strings["Users"] = "Usuaris"; -$a->strings["Plugins"] = "Plugins"; -$a->strings["Themes"] = "Temes"; -$a->strings["DB updates"] = "Actualitzacions de BD"; -$a->strings["Logs"] = "Registres"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Admin"; -$a->strings["Plugin Features"] = "Característiques del Plugin"; -$a->strings["diagnostics"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Registre d'usuari a l'espera de confirmació"; -$a->strings["Normal Account"] = "Compte Normal"; -$a->strings["Soapbox Account"] = "Compte Tribuna"; -$a->strings["Community/Celebrity Account"] = "Compte de Comunitat/Celebritat"; -$a->strings["Automatic Friend Account"] = "Compte d'Amistat Automàtic"; -$a->strings["Blog Account"] = "Compte de Blog"; -$a->strings["Private Forum"] = "Fòrum Privat"; -$a->strings["Message queues"] = "Cues de missatges"; -$a->strings["Administration"] = "Administració"; -$a->strings["Summary"] = "Sumari"; -$a->strings["Registered users"] = "Usuaris registrats"; -$a->strings["Pending registrations"] = "Registres d'usuari pendents"; -$a->strings["Version"] = "Versió"; -$a->strings["Active plugins"] = "Plugins actius"; -$a->strings["Can not parse base url. Must have at least ://"] = ""; -$a->strings["Site settings updated."] = "Ajustos del lloc actualitzats."; -$a->strings["No special theme for mobile devices"] = "No hi ha un tema específic per a mòbil"; -$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"] = "Freqüentment"; -$a->strings["Hourly"] = "Cada hora"; -$a->strings["Twice daily"] = "Dues vegades al dia"; -$a->strings["Daily"] = "Diari"; -$a->strings["Multi user instance"] = "Instancia multiusuari"; -$a->strings["Closed"] = "Tancat"; -$a->strings["Requires approval"] = "Requereix aprovació"; -$a->strings["Open"] = "Obert"; -$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL"; -$a->strings["Force all links to use SSL"] = "Forzar a tots els enllaços a utilitzar SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)"; -$a->strings["Save Settings"] = ""; -$a->strings["Registration"] = "Procés de Registre"; -$a->strings["File upload"] = "Fitxer carregat"; -$a->strings["Policies"] = "Polítiques"; -$a->strings["Advanced"] = "Avançat"; -$a->strings["Performance"] = "Rendiment"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; -$a->strings["Site name"] = "Nom del lloc"; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; -$a->strings["Banner/Logo"] = "Senyera/Logo"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; -$a->strings["System language"] = "Idioma del Sistema"; -$a->strings["System theme"] = "Tema del sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema"; -$a->strings["Mobile system theme"] = "Tema per a mòbil"; -$a->strings["Theme for mobile devices"] = "Tema per a aparells mòbils"; -$a->strings["SSL link policy"] = "Política SSL per als enllaços"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si els enllaços generats han de ser forçats a utilitzar 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["Old style 'Share'"] = ""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; -$a->strings["Hide help entry from navigation menu"] = "Amaga l'entrada d'ajuda del menu de navegació"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Amaga l'entrada del menú de les pàgines d'ajuda. Pots encara accedir entrant /ajuda directament."; -$a->strings["Single user instance"] = "Instancia per a un únic usuari"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat"; -$a->strings["Maximum image size"] = "Mida màxima de les imatges"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits."; -$a->strings["Maximum image length"] = "Maxima longitud d'imatge"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits"; -$a->strings["JPEG image quality"] = "Qualitat per a la imatge JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat."; -$a->strings["Register policy"] = "Política per a registrar"; -$a->strings["Maximum Daily Registrations"] = "Registres Màxims Diaris"; -$a->strings["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."] = "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes."; -$a->strings["Register text"] = "Text al registrar"; -$a->strings["Will be displayed prominently on the registration page."] = "Serà mostrat de forma preminent a la pàgina durant el procés de registre."; -$a->strings["Accounts abandoned after x days"] = "Comptes abandonats després de x dies"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal."; -$a->strings["Allowed friend domains"] = "Dominis amics permesos"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."; -$a->strings["Allowed email domains"] = "Dominis de correu permesos"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."; -$a->strings["Block public"] = "Bloqueig públic"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat."; -$a->strings["Force publish"] = "Forçar publicació"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc."; -$a->strings["Global directory update URL"] = "Actualitzar URL del directori global"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL per actualitzar el directori global. Si no es configura, el directori global serà completament inaccesible per a l'aplicació. "; -$a->strings["Allow threaded items"] = "Permetre fils als articles"; -$a->strings["Allow infinite level threading for items on this site."] = "Permet un nivell infinit de fils per a articles en aquest lloc."; -$a->strings["Private posts by default for new users"] = "Els enviaments dels nous usuaris seran privats per defecte."; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Canviar els permisos d'enviament per defecte per a tots els nous membres a grup privat en lloc de públic."; -$a->strings["Don't include post content in email notifications"] = "No incloure el assumpte a les notificacions per correu electrónic"; -$a->strings["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."] = "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. "; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Deshabilita el accés públic als complements llistats al menu d'aplicacions"; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcant això restringiras els complements llistats al menú d'aplicacions al membres"; -$a->strings["Don't embed private images in posts"] = "No incrustar imatges en missatges privats"; -$a->strings["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."] = "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps."; -$a->strings["Allow Users to set remote_self"] = ""; -$a->strings["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."] = ""; -$a->strings["Block multiple registrations"] = "Bloquejar multiples registracions"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines."; -$a->strings["OpenID support"] = "Suport per a OpenID"; -$a->strings["OpenID support for registration and logins."] = "Suport per a registre i validació a OpenID."; -$a->strings["Fullname check"] = "Comprobació de nom complet"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam"; -$a->strings["UTF-8 Regular expressions"] = "expresions regulars UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Empri expresions regulars de PHP amb format 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["Enable OStatus support"] = "Activa el suport per a 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."] = ""; -$a->strings["OStatus conversation completion interval"] = "Interval de conclusió de la conversació a OStatus"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball."; -$a->strings["Enable Diaspora support"] = "Habilitar suport per Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Proveeix compatibilitat integrada amb la xarxa Diaspora"; -$a->strings["Only allow Friendica contacts"] = "Només permetre contactes de Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tots els contactes "; -$a->strings["Verify SSL"] = "Verificar SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats."; -$a->strings["Proxy user"] = "proxy d'usuari"; -$a->strings["Proxy URL"] = "URL del proxy"; -$a->strings["Network timeout"] = "Temps excedit a la xarxa"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segons. Canviat a 0 es sense límits (no recomenat)"; -$a->strings["Delivery interval"] = "Interval d'entrega"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats."; -$a->strings["Poll interval"] = "Interval entre sondejos"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. "; -$a->strings["Maximum Load Average"] = "Càrrega Màxima Sostinguda"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50."; -$a->strings["Use MySQL full text engine"] = "Emprar el motor de text complet de MySQL"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters."; -$a->strings["Suppress Language"] = ""; -$a->strings["Suppress language information in meta information about a posting."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = "Camí cap a la caché de l'article"; -$a->strings["Cache duration in seconds"] = "Duració de la caché en segons"; -$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."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Path for lock file"] = "Camí per a l'arxiu bloquejat"; -$a->strings["Temp path"] = "Camí a carpeta temporal"; -$a->strings["Base path to installation"] = "Trajectoria base per a instal·lar"; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$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["New base url"] = ""; -$a->strings["Update has been marked successful"] = "L'actualització ha estat marcada amb èxit"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = "L'actualització de %s es va aplicar amb èxit."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit."; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "No hi ha actualitzacions fallides."; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = "Actualitzacions Fallides"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus."; -$a->strings["Mark success (if update was manually applied)"] = "Marcat am èxit (si l'actualització es va fer manualment)"; -$a->strings["Attempt to execute this update step automatically"] = "Intentant executar aquest pas d'actualització automàticament"; -$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"] = "Detalls del registre per a %s"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s usuari bloquejar/desbloquejar", - 1 => "%s usuaris bloquejar/desbloquejar", -); -$a->strings["%s user deleted"] = array( - 0 => "%s usuari esborrat", - 1 => "%s usuaris esborrats", -); -$a->strings["User '%s' deleted"] = "Usuari %s' esborrat"; -$a->strings["User '%s' unblocked"] = "Usuari %s' desbloquejat"; -$a->strings["User '%s' blocked"] = "L'usuari '%s' és bloquejat"; -$a->strings["Add User"] = ""; -$a->strings["select all"] = "Seleccionar tot"; -$a->strings["User registrations waiting for confirm"] = "Registre d'usuari esperant confirmació"; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = "Data de sol·licitud"; -$a->strings["Email"] = "Correu"; -$a->strings["No registrations."] = "Sense registres."; -$a->strings["Deny"] = "Denegar"; -$a->strings["Site admin"] = "Administrador del lloc"; -$a->strings["Account expired"] = "Compte expirat"; -$a->strings["New User"] = ""; -$a->strings["Register date"] = "Data de registre"; -$a->strings["Last login"] = "Últim accés"; -$a->strings["Last item"] = "Últim element"; -$a->strings["Deleted since"] = ""; -$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?"] = "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"; -$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'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; -$a->strings["Plugin %s disabled."] = "Plugin %s deshabilitat."; -$a->strings["Plugin %s enabled."] = "Plugin %s habilitat."; -$a->strings["Disable"] = "Deshabilitar"; -$a->strings["Enable"] = "Habilitar"; -$a->strings["Toggle"] = "Canviar"; -$a->strings["Author: "] = "Autor:"; -$a->strings["Maintainer: "] = "Responsable:"; -$a->strings["No themes found."] = "No s'ha trobat temes."; -$a->strings["Screenshot"] = "Captura de pantalla"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[No soportat]"; -$a->strings["Log settings updated."] = "Configuració del registre actualitzada."; -$a->strings["Clear"] = "Netejar"; -$a->strings["Enable Debugging"] = "Habilitar Depuració"; -$a->strings["Log file"] = "Arxiu de registre"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior."; -$a->strings["Log level"] = "Nivell de transcripció"; -$a->strings["Close"] = "Tancar"; -$a->strings["FTP Host"] = "Amfitrió FTP"; -$a->strings["FTP Path"] = "Direcció FTP"; -$a->strings["FTP User"] = "Usuari FTP"; -$a->strings["FTP Password"] = "Contrasenya FTP"; -$a->strings["Search Results For:"] = "Resultats de la Cerca Per a:"; -$a->strings["Remove term"] = "Traieu termini"; -$a->strings["Saved Searches"] = "Cerques Guardades"; -$a->strings["add"] = "afegir"; -$a->strings["Commented Order"] = "Ordre dels Comentaris"; -$a->strings["Sort by Comment Date"] = "Ordenar per Data de Comentari"; -$a->strings["Posted Order"] = "Ordre dels Enviaments"; -$a->strings["Sort by Post Date"] = "Ordenar per Data d'Enviament"; -$a->strings["Posts that mention or involve you"] = "Missatge que et menciona o t'impliquen"; -$a->strings["New"] = "Nou"; -$a->strings["Activity Stream - by date"] = "Activitat del Flux - per data"; -$a->strings["Shared Links"] = "Enllaços Compartits"; -$a->strings["Interesting Links"] = "Enllaços Interesants"; -$a->strings["Starred"] = "Favorits"; -$a->strings["Favourite Posts"] = "Enviaments Favorits"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Advertència: Aquest grup conté el membre %s en una xarxa insegura.", - 1 => "Advertència: Aquest grup conté %s membres d'una xarxa insegura.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Els missatges privats a aquest grup es troben en risc de divulgació pública."; -$a->strings["No such group"] = "Cap grup com"; -$a->strings["Group is empty"] = "El Grup es buit"; -$a->strings["Group: "] = "Grup:"; -$a->strings["Contact: "] = "Contacte:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Els missatges privats a aquesta persona es troben en risc de divulgació pública."; -$a->strings["Invalid contact."] = "Contacte no vàlid."; -$a->strings["Friends of %s"] = "Amics de %s"; -$a->strings["No friends to display."] = "No hi ha amics que mostrar"; -$a->strings["Event title and start time are required."] = "Títol d'esdeveniment i hora d'inici requerits."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar esdeveniment"; -$a->strings["link to source"] = "Enllaç al origen"; -$a->strings["Events"] = "Esdeveniments"; -$a->strings["Create New Event"] = "Crear un nou esdeveniment"; -$a->strings["Previous"] = "Previ"; -$a->strings["Next"] = "Següent"; -$a->strings["hour:minute"] = "hora:minut"; -$a->strings["Event details"] = "Detalls del esdeveniment"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "El Format és %s %s. Data d'inici i títol requerits."; -$a->strings["Event Starts:"] = "Inici d'Esdeveniment:"; -$a->strings["Required"] = "Requerit"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/hora de finalització no es coneixen o no són relevants"; -$a->strings["Event Finishes:"] = "L'esdeveniment Finalitza:"; -$a->strings["Adjust for viewer timezone"] = "Ajustar a la zona horaria de l'espectador"; -$a->strings["Description:"] = "Descripció:"; -$a->strings["Location:"] = "Ubicació:"; -$a->strings["Title:"] = "Títol:"; -$a->strings["Share this event"] = "Compartir aquest esdeveniment"; -$a->strings["Select"] = "Selecionar"; -$a->strings["View %s's profile @ %s"] = "Veure perfil de %s @ %s"; -$a->strings["%s from %s"] = "%s des de %s"; -$a->strings["View in context"] = "Veure en context"; -$a->strings["%d comment"] = array( - 0 => "%d comentari", - 1 => "%d comentaris", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "comentari", -); -$a->strings["show more"] = "Mostrar més"; -$a->strings["Private Message"] = "Missatge Privat"; -$a->strings["I like this (toggle)"] = "M'agrada això (canviar)"; -$a->strings["like"] = "Agrada"; -$a->strings["I don't like this (toggle)"] = "No m'agrada això (canviar)"; -$a->strings["dislike"] = "Desagrada"; -$a->strings["Share this"] = "Compartir això"; -$a->strings["share"] = "Compartir"; -$a->strings["This is you"] = "Aquest ets tu"; -$a->strings["Comment"] = "Comentari"; -$a->strings["Bold"] = "Negreta"; -$a->strings["Italic"] = "Itallica"; -$a->strings["Underline"] = "Subratllat"; -$a->strings["Quote"] = "Cometes"; -$a->strings["Code"] = "Codi"; -$a->strings["Image"] = "Imatge"; -$a->strings["Link"] = "Enllaç"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Vista prèvia"; -$a->strings["Edit"] = "Editar"; -$a->strings["add star"] = "Afegir a favorits"; -$a->strings["remove star"] = "Esborrar favorit"; -$a->strings["toggle star status"] = "Canviar estatus de favorit"; -$a->strings["starred"] = "favorit"; -$a->strings["add tag"] = "afegir etiqueta"; -$a->strings["save to folder"] = "guardat a la carpeta"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Mur-a-Mur"; -$a->strings["via Wall-To-Wall:"] = "via Mur-a-Mur"; -$a->strings["Remove My Account"] = "Eliminar el Meu Compte"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable."; -$a->strings["Please enter your password for verification:"] = "Si us plau, introduïu la contrasenya per a la verificació:"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Servidor de Comunicacions - Configuració"; -$a->strings["Could not connect to database."] = "No puc connectar a la base de dades."; -$a->strings["Could not create table."] = "No puc creat taula."; -$a->strings["Your Friendica site database has been installed."] = "La base de dades del teu lloc Friendica ha estat instal·lada."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Per favor, consulti l'arxiu \"INSTALL.txt\"."; -$a->strings["System check"] = "Comprovació del Sistema"; -$a->strings["Check again"] = "Comprovi de nou"; -$a->strings["Database connection"] = "Conexió a la base de dades"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar."; -$a->strings["Database Server Name"] = "Nom del Servidor de base de Dades"; -$a->strings["Database Login Name"] = "Nom d'Usuari de la base de Dades"; -$a->strings["Database Login Password"] = "Contrasenya d'Usuari de la base de Dades"; -$a->strings["Database Name"] = "Nom de la base de Dades"; -$a->strings["Site administrator email address"] = "Adreça de correu del administrador del lloc"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web."; -$a->strings["Please select a default timezone for your website"] = "Per favor, seleccioni una zona horària per defecte per al seu lloc web"; -$a->strings["Site settings"] = "Configuracions del lloc"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si no tens una versió de línia de comandos instal·lada al teu servidor PHP, no podràs fer córrer els sondejos via cron. Mira 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Direcció del executable PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació."; -$a->strings["Command line PHP"] = "Linia de comandos PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Trobada la versió PHP:"; -$a->strings["PHP cli binary"] = "PHP cli binari"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat."; -$a->strings["This is required for message delivery to work."] = "Això és necessari perquè funcioni el lliurament de missatges."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generar claus d'encripció"; -$a->strings["libCurl PHP module"] = "Mòdul libCurl de PHP"; -$a->strings["GD graphics PHP module"] = "Mòdul GD de gràfics de PHP"; -$a->strings["OpenSSL PHP module"] = "Mòdul OpenSSl de PHP"; -$a->strings["mysqli PHP module"] = "Mòdul mysqli de PHP"; -$a->strings["mb_string PHP module"] = "Mòdul mb_string de PHP"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul "; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El mòdul libCURL de PHP és necessari però no està instal·lat."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: El mòdul enssl de PHP és necessari però no està instal·lat."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El mòdul mysqli de PHP és necessari però no està instal·lat."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mòdul mb_string de PHP requerit però no instal·lat."; -$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'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir."; -$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."] = "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible."; -$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."] = "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php és escribible"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 es escribible"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor."; -$a->strings["Url rewrite is working"] = "URL rewrite està treballant"; -$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."] = "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web."; -$a->strings["

                                              What next

                                              "] = "

                                              Que es següent

                                              "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat."; -$a->strings["Unable to check your home location."] = "Incapaç de comprovar la localització."; -$a->strings["No recipient."] = "Sense destinatari."; -$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 vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts."; -$a->strings["Help:"] = "Ajuda:"; -$a->strings["Help"] = "Ajuda"; -$a->strings["Not Found"] = "No trobat"; -$a->strings["Page not found."] = "Pàgina no trobada."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s benvingut %2\$s"; -$a->strings["Welcome to %s"] = "Benvingut a %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"] = "L'arxiu excedeix la mida límit de %d"; -$a->strings["File upload failed."] = "La càrrega de fitxers ha fallat."; -$a->strings["Profile Match"] = "Perfil Aconseguit"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat."; -$a->strings["is interested in:"] = "està interessat en:"; -$a->strings["Connect"] = "Connexió"; -$a->strings["link"] = "enllaç"; -$a->strings["Not available."] = "No disponible."; -$a->strings["Community"] = "Comunitat"; -$a->strings["No results."] = "Sense resultats."; -$a->strings["everybody"] = "tothom"; -$a->strings["Additional features"] = "Característiques Adicionals"; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Delegations"] = "Delegacions"; -$a->strings["Connected apps"] = "App connectada"; -$a->strings["Export personal data"] = "Exportar dades personals"; -$a->strings["Remove account"] = "Esborrar compte"; -$a->strings["Missing some important data!"] = "Perdudes algunes dades importants!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Connexió fracassada amb el compte de correu emprant la configuració proveïda."; -$a->strings["Email settings updated."] = "Configuració del correu electrònic actualitzada."; -$a->strings["Features updated"] = "Característiques actualitzades"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Les contrasenyes no coincideixen. Contrasenya no canviada."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "No es permeten contasenyes buides. Contrasenya no canviada"; -$a->strings["Wrong password."] = "Contrasenya errònia"; -$a->strings["Password changed."] = "Contrasenya canviada."; -$a->strings["Password update failed. Please try again."] = "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou."; -$a->strings[" Please use a shorter name."] = "Si us plau, faci servir un nom més curt."; -$a->strings[" Name too short."] = "Nom massa curt."; -$a->strings["Wrong Password"] = "Contrasenya Errònia"; -$a->strings[" Not valid email."] = "Correu no vàlid."; -$a->strings[" Cannot change to that email."] = "No puc canviar a aquest correu."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup."; -$a->strings["Settings updated."] = "Ajustos actualitzats."; -$a->strings["Add application"] = "Afegir aplicació"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Redirigir"; -$a->strings["Icon url"] = "icona de url"; -$a->strings["You can't edit this application."] = "No pots editar aquesta aplicació."; -$a->strings["Connected Apps"] = "Aplicacions conectades"; -$a->strings["Client key starts with"] = "Les claus de client comançen amb"; -$a->strings["No name"] = "Sense nom"; -$a->strings["Remove authorization"] = "retirar l'autorització"; -$a->strings["No Plugin settings configured"] = "No s'han configurat ajustos de Plugin"; -$a->strings["Plugin Settings"] = "Ajustos de Plugin"; -$a->strings["Off"] = "Apagat"; -$a->strings["On"] = "Engegat"; -$a->strings["Additional Features"] = "Característiques Adicionals"; -$a->strings["Built-in support for %s connectivity is %s"] = "El suport integrat per a la connectivitat de %s és %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "habilitat"; -$a->strings["disabled"] = "deshabilitat"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accés al correu està deshabilitat en aquest lloc."; -$a->strings["Email/Mailbox Setup"] = "Preparació de Correu/Bústia"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia."; -$a->strings["Last successful email check:"] = "Última comprovació de correu amb èxit:"; -$a->strings["IMAP server name:"] = "Nom del servidor IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Seguretat:"; -$a->strings["None"] = "Cap"; -$a->strings["Email login name:"] = "Nom d'usuari del correu"; -$a->strings["Email password:"] = "Contrasenya del correu:"; -$a->strings["Reply-to address:"] = "Adreça de resposta:"; -$a->strings["Send public posts to all email contacts:"] = "Enviar correu públic a tots els contactes del correu:"; -$a->strings["Action after import:"] = "Acció després d'importar:"; -$a->strings["Mark as seen"] = "Marcar com a vist"; -$a->strings["Move to folder"] = "Moure a la carpeta"; -$a->strings["Move to folder:"] = "Moure a la carpeta:"; -$a->strings["Display Settings"] = "Ajustos de Pantalla"; -$a->strings["Display Theme:"] = "Visualitzar el Tema:"; -$a->strings["Mobile Theme:"] = "Tema Mobile:"; -$a->strings["Update browser every xx seconds"] = "Actualitzar navegador cada xx segons"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Mínim cada 10 segons, no hi ha màxim"; -$a->strings["Number of items to display per page:"] = "Número d'elements a mostrar per pàgina"; -$a->strings["Maximum of 100 items"] = "Màxim de 100 elements"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:"; -$a->strings["Don't show emoticons"] = "No mostrar emoticons"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = "Pàgina Normal del Compte "; -$a->strings["This account is a normal personal profile"] = "Aques compte es un compte personal normal"; -$a->strings["Soapbox Page"] = "Pàgina de Soapbox"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura."; -$a->strings["Community Forum/Celebrity Account"] = "Compte de Comunitat/Celebritat"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de lectura-escriptura"; -$a->strings["Automatic Friend Page"] = "Compte d'Amistat Automàtica"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament"; -$a->strings["Private Forum [Experimental]"] = "Fòrum Privat [Experimental]"; -$a->strings["Private forum - approved members only"] = "Fòrum privat - Només membres aprovats"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte."; -$a->strings["Publish your default profile in your local site directory?"] = "Publicar el teu perfil predeterminat en el directori del lloc local?"; -$a->strings["No"] = "No"; -$a->strings["Publish your default profile in the global social directory?"] = "Publicar el teu perfil predeterminat al directori social global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Amagar els detalls del seu perfil a espectadors desconeguts?"; -$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?"] = "Permet als amics publicar en la seva pàgina de perfil?"; -$a->strings["Allow friends to tag your posts?"] = "Permet als amics d'etiquetar els teus missatges?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permeteu-nos suggerir-li com un amic potencial dels nous membres?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permetre a desconeguts enviar missatges al teu correu privat?"; -$a->strings["Profile is not published."] = "El Perfil no està publicat."; -$a->strings["Your Identity Address is"] = "La seva Adreça d'Identitat és"; -$a->strings["Automatically expire posts after this many days:"] = "Després de aquests nombre de dies, els missatges caduquen automàticament:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran"; -$a->strings["Advanced expiration settings"] = "Configuració avançada d'expiració"; -$a->strings["Advanced Expiration"] = "Expiració Avançada"; -$a->strings["Expire posts:"] = "Expiració d'enviaments"; -$a->strings["Expire personal notes:"] = "Expiració de notes personals"; -$a->strings["Expire starred posts:"] = "Expiració de enviaments de favorits"; -$a->strings["Expire photos:"] = "Expiració de fotos"; -$a->strings["Only expire posts by others:"] = "Només expiren els enviaments dels altres:"; -$a->strings["Account Settings"] = "Ajustos de Compte"; -$a->strings["Password Settings"] = "Ajustos de Contrasenya"; -$a->strings["New Password:"] = "Nova Contrasenya:"; -$a->strings["Confirm:"] = "Confirmar:"; -$a->strings["Leave password fields blank unless changing"] = "Deixi els camps de contrasenya buits per a no fer canvis"; -$a->strings["Current Password:"] = "Contrasenya Actual:"; -$a->strings["Your current password to confirm the changes"] = "La teva actual contrasenya a fi de confirmar els canvis"; -$a->strings["Password:"] = "Contrasenya:"; -$a->strings["Basic Settings"] = "Ajustos Basics"; -$a->strings["Full Name:"] = "Nom Complet:"; -$a->strings["Email Address:"] = "Adreça de Correu:"; -$a->strings["Your Timezone:"] = "La teva zona Horària:"; -$a->strings["Default Post Location:"] = "Localització per Defecte del Missatge:"; -$a->strings["Use Browser Location:"] = "Ubicar-se amb el Navegador:"; -$a->strings["Security and Privacy Settings"] = "Ajustos de Seguretat i Privacitat"; -$a->strings["Maximum Friend Requests/Day:"] = "Nombre Màxim de Sol·licituds per Dia"; -$a->strings["(to prevent spam abuse)"] = "(per a prevenir abusos de spam)"; -$a->strings["Default Post Permissions"] = "Permisos de Correu per Defecte"; -$a->strings["(click to open/close)"] = "(clicar per a obrir/tancar)"; -$a->strings["Show to Groups"] = "Mostrar en Grups"; -$a->strings["Show to Contacts"] = "Mostrar a Contactes"; -$a->strings["Default Private Post"] = "Missatges Privats Per Defecte"; -$a->strings["Default Public Post"] = "Missatges Públics Per Defecte"; -$a->strings["Default Permissions for New Posts"] = "Permisos Per Defecte per a Nous Missatges"; -$a->strings["Maximum private messages per day from unknown people:"] = "Màxim nombre de missatges, per dia, de desconeguts:"; -$a->strings["Notification Settings"] = "Ajustos de Notificació"; -$a->strings["By default post a status message when:"] = "Enviar per defecte un missatge de estatus quan:"; -$a->strings["accepting a friend request"] = "Acceptar una sol·licitud d'amistat"; -$a->strings["joining a forum/community"] = "Unint-se a un fòrum/comunitat"; -$a->strings["making an interesting profile change"] = "fent un canvi al perfil"; -$a->strings["Send a notification email when:"] = "Envia un correu notificant quan:"; -$a->strings["You receive an introduction"] = "Has rebut una presentació"; -$a->strings["Your introductions are confirmed"] = "La teva presentació està confirmada"; -$a->strings["Someone writes on your profile wall"] = "Algú ha escrit en el teu mur de perfil"; -$a->strings["Someone writes a followup comment"] = "Algú ha escrit un comentari de seguiment"; -$a->strings["You receive a private message"] = "Has rebut un missatge privat"; -$a->strings["You receive a friend suggestion"] = "Has rebut una suggerencia d'un amic"; -$a->strings["You are tagged in a post"] = "Estàs etiquetat en un enviament"; -$a->strings["You are poked/prodded/etc. in a post"] = "Has estat Atiat/punxat/etc, en un enviament"; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = "Ajustos Avançats de Compte/ Pàgina"; -$a->strings["Change the behaviour of this account for special situations"] = "Canviar el comportament d'aquest compte en situacions especials"; -$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."] = "Aquesta presentació ha estat acceptada."; -$a->strings["Profile location is not valid or does not contain profile information."] = "El perfil de situació no és vàlid o no contè informació de perfil"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Atenció: El perfil de situació no te nom de propietari identificable."; -$a->strings["Warning: profile location has no profile photo."] = "Atenció: El perfil de situació no te foto de perfil"; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d el paràmetre requerit no es va trobar al lloc indicat", - 1 => "%d els paràmetres requerits no es van trobar allloc indicat", -); -$a->strings["Introduction complete."] = "Completada la presentació."; -$a->strings["Unrecoverable protocol error."] = "Error de protocol irrecuperable."; -$a->strings["Profile unavailable."] = "Perfil no disponible"; -$a->strings["%s has received too many connection requests today."] = "%s avui ha rebut excesives peticions de connexió. "; -$a->strings["Spam protection measures have been invoked."] = "Mesures de protecció contra spam han estat invocades."; -$a->strings["Friends are advised to please try again in 24 hours."] = "S'aconsellà els amics que probin pasades 24 hores."; -$a->strings["Invalid locator"] = "Localitzador no vàlid"; -$a->strings["Invalid email address."] = "Adreça de correu no vàlida."; -$a->strings["This account has not been configured for email. Request failed."] = "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud."; -$a->strings["Unable to resolve your name at the provided location."] = "Incapaç de resoldre el teu nom al lloc facilitat."; -$a->strings["You have already introduced yourself here."] = "Has fer la teva presentació aquí."; -$a->strings["Apparently you are already friends with %s."] = "Aparentment, ja tens amistat amb %s"; -$a->strings["Invalid profile URL."] = "Perfil URL no vàlid."; -$a->strings["Disallowed profile URL."] = "Perfil URL no permès."; -$a->strings["Your introduction has been sent."] = "La teva presentació ha estat enviada."; -$a->strings["Please login to confirm introduction."] = "Si us plau, entri per confirmar la presentació."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil."; -$a->strings["Hide this contact"] = "Amaga aquest contacte"; -$a->strings["Welcome home %s."] = "Benvingut de nou %s"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:"; -$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 encara no ets membre de la web social lliure, segueix aquest enllaç per a trobar un lloc Friendica públic i uneix-te avui."; -$a->strings["Friend/Connection Request"] = "Sol·licitud d'Amistat"; -$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:"] = "Si us plau, contesti les següents preguntes:"; -$a->strings["Does %s know you?"] = "%s et coneix?"; -$a->strings["Add a personal note:"] = "Afegir una nota personal:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "Web Social StatusNet/Federated "; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora."; -$a->strings["Your Identity Address:"] = "La Teva Adreça Identificativa:"; -$a->strings["Submit Request"] = "Sol·licitud Enviada"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions."; -$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."] = "El seu registre no pot ser processat."; -$a->strings["Your registration is pending approval by the site owner."] = "El seu registre està pendent d'aprovació pel propietari del lloc."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements."; -$a->strings["Your OpenID (optional): "] = "El seu OpenID (opcional):"; -$a->strings["Include your profile in member directory?"] = "Incloc el seu perfil al directori de membres?"; -$a->strings["Membership on this site is by invitation only."] = "Lloc accesible mitjançant invitació."; -$a->strings["Your invitation ID: "] = "El teu ID de invitació:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "El seu nom complet (per exemple, Joan Ningú):"; -$a->strings["Your Email Address: "] = "La Seva Adreça de Correu:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@\$sitename'."; -$a->strings["Choose a nickname: "] = "Tria un àlies:"; -$a->strings["Register"] = "Registrar"; -$a->strings["Import"] = "Importar"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["System down for maintenance"] = "Sistema apagat per manteniment"; -$a->strings["Search"] = "Cercar"; -$a->strings["Global Directory"] = "Directori Global"; -$a->strings["Find on this site"] = "Trobat en aquest lloc"; -$a->strings["Site Directory"] = "Directori Local"; -$a->strings["Age: "] = "Edat:"; -$a->strings["Gender: "] = "Gènere:"; -$a->strings["Gender:"] = "Gènere:"; -$a->strings["Status:"] = "Estatus:"; -$a->strings["Homepage:"] = "Pàgina web:"; -$a->strings["About:"] = "Acerca de:"; -$a->strings["No entries (some entries may be hidden)."] = "No hi ha entrades (algunes de les entrades poden estar amagades)."; -$a->strings["No potential page delegates located."] = "No es troben pàgines potencialment delegades."; -$a->strings["Delegate Page Management"] = "Gestió de les Pàgines Delegades"; -$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."] = "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament."; -$a->strings["Existing Page Managers"] = "Actuals Administradors de Pàgina"; -$a->strings["Existing Page Delegates"] = "Actuals Delegats de Pàgina"; -$a->strings["Potential Delegates"] = "Delegats Potencials"; -$a->strings["Add"] = "Afegir"; -$a->strings["No entries."] = "Sense entrades"; -$a->strings["Common Friends"] = "Amics Comuns"; -$a->strings["No contacts in common."] = "Sense contactes en comú."; -$a->strings["Export account"] = "Exportar 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."] = "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. "; -$a->strings["Export all"] = "Exportar tot"; -$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)"] = "Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s'exporten)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s es normalment %2\$s"; -$a->strings["Mood"] = "Humor"; -$a->strings["Set your current mood and tell your friends"] = "Ajusta el teu actual estat d'ànim i comenta-ho als amics"; -$a->strings["Do you really want to delete this suggestion?"] = "Realment vols esborrar aquest suggeriment?"; -$a->strings["Friend Suggestions"] = "Amics Suggerits"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores."; -$a->strings["Ignore/Hide"] = "Ignorar/Amagar"; -$a->strings["Profile deleted."] = "Perfil esborrat."; -$a->strings["Profile-"] = "Perfil-"; -$a->strings["New profile created."] = "Nou perfil creat."; -$a->strings["Profile unavailable to clone."] = "No es pot clonar el perfil."; -$a->strings["Profile Name is required."] = "Nom de perfil requerit."; -$a->strings["Marital Status"] = "Estatus Marital"; -$a->strings["Romantic Partner"] = "Soci Romàntic"; -$a->strings["Likes"] = "Agrada"; -$a->strings["Dislikes"] = "No agrada"; -$a->strings["Work/Employment"] = "Treball/Ocupació"; -$a->strings["Religion"] = "Religió"; -$a->strings["Political Views"] = "Idees Polítiques"; -$a->strings["Gender"] = "Gènere"; -$a->strings["Sexual Preference"] = "Preferència sexual"; -$a->strings["Homepage"] = "Inici"; -$a->strings["Interests"] = "Interesos"; -$a->strings["Address"] = "Adreça"; -$a->strings["Location"] = "Ubicació"; -$a->strings["Profile updated."] = "Perfil actualitzat."; -$a->strings[" and "] = " i "; -$a->strings["public profile"] = "perfil públic"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s s'ha canviat de %2\$s a “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s de %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s te una actualització %2\$s, canviant %3\$s."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Amaga la llista de contactes/amics en la vista d'aquest perfil?"; -$a->strings["Edit Profile Details"] = "Editor de Detalls del Perfil"; -$a->strings["Change Profile Photo"] = "Canviar la Foto del Perfil"; -$a->strings["View this profile"] = "Veure aquest perfil"; -$a->strings["Create a new profile using these settings"] = "Crear un nou perfil amb aquests ajustos"; -$a->strings["Clone this profile"] = "Clonar aquest perfil"; -$a->strings["Delete this profile"] = "Esborrar aquest perfil"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Nom de Perfil:"; -$a->strings["Your Full Name:"] = "El Teu Nom Complet."; -$a->strings["Title/Description:"] = "Títol/Descripció:"; -$a->strings["Your Gender:"] = "Gènere:"; -$a->strings["Birthday (%s):"] = "Aniversari (%s)"; -$a->strings["Street Address:"] = "Direcció:"; -$a->strings["Locality/City:"] = "Localitat/Ciutat:"; -$a->strings["Postal/Zip Code:"] = "Codi Postal:"; -$a->strings["Country:"] = "País"; -$a->strings["Region/State:"] = "Regió/Estat:"; -$a->strings[" Marital Status:"] = " Estat Civil:"; -$a->strings["Who: (if applicable)"] = "Qui? (si és aplicable)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Des de [data]"; -$a->strings["Sexual Preference:"] = "Preferència Sexual:"; -$a->strings["Homepage URL:"] = "Pàgina web URL:"; -$a->strings["Hometown:"] = "Lloc de residència:"; -$a->strings["Political Views:"] = "Idees Polítiques:"; -$a->strings["Religious Views:"] = "Creencies Religioses:"; -$a->strings["Public Keywords:"] = "Paraules Clau Públiques"; -$a->strings["Private Keywords:"] = "Paraules Clau Privades:"; -$a->strings["Likes:"] = "Agrada:"; -$a->strings["Dislikes:"] = "No Agrada"; -$a->strings["Example: fishing photography software"] = "Exemple: pesca fotografia programari"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Emprat per suggerir potencials amics, Altres poden veure-ho)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Emprat durant la cerca de perfils, mai mostrat a ningú)"; -$a->strings["Tell us about yourself..."] = "Parla'ns de tú....."; -$a->strings["Hobbies/Interests"] = "Aficions/Interessos"; -$a->strings["Contact information and Social Networks"] = "Informació de contacte i Xarxes Socials"; -$a->strings["Musical interests"] = "Gustos musicals"; -$a->strings["Books, literature"] = "Llibres, Literatura"; -$a->strings["Television"] = "Televisió"; -$a->strings["Film/dance/culture/entertainment"] = "Cinema/ball/cultura/entreteniments"; -$a->strings["Love/romance"] = "Amor/sentiments"; -$a->strings["Work/employment"] = "Treball/ocupació"; -$a->strings["School/education"] = "Ensenyament/estudis"; -$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Aquest és el teu perfil públic.
                                              El qual pot ser visible per qualsevol qui faci servir Internet."; -$a->strings["Edit/Manage Profiles"] = "Editar/Gestionar Perfils"; -$a->strings["Change profile photo"] = "Canviar la foto del perfil"; -$a->strings["Create New Profile"] = "Crear un Nou Perfil"; -$a->strings["Profile Image"] = "Imatge del Perfil"; -$a->strings["visible to everybody"] = "Visible per tothom"; -$a->strings["Edit visibility"] = "Editar visibilitat"; -$a->strings["Item not found"] = "Element no trobat"; -$a->strings["Edit post"] = "Editar Enviament"; -$a->strings["upload photo"] = "carregar fotos"; -$a->strings["Attach file"] = "Adjunta fitxer"; -$a->strings["attach file"] = "adjuntar arxiu"; -$a->strings["web link"] = "enllaç de web"; -$a->strings["Insert video link"] = "Insertar enllaç de video"; -$a->strings["video link"] = "enllaç de video"; -$a->strings["Insert audio link"] = "Insertar enllaç de audio"; -$a->strings["audio link"] = "enllaç de audio"; -$a->strings["Set your location"] = "Canvia la teva ubicació"; -$a->strings["set location"] = "establir la ubicació"; -$a->strings["Clear browser location"] = "neteja adreçes del navegador"; -$a->strings["clear location"] = "netejar ubicació"; -$a->strings["Permission settings"] = "Configuració de permisos"; -$a->strings["CC: email addresses"] = "CC: Adreça de correu"; -$a->strings["Public post"] = "Enviament públic"; -$a->strings["Set title"] = "Canviar títol"; -$a->strings["Categories (comma-separated list)"] = "Categories (lista separada per comes)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Això és Friendica, versió"; -$a->strings["running at web location"] = "funcionant en la ubicació web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Pels informes d'error i problemes: si us plau, visiteu"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "plugins/addons/apps instal·lats:"; -$a->strings["No installed plugins/addons/apps"] = "plugins/addons/apps no instal·lats"; -$a->strings["Authorize application connection"] = "Autoritzi la connexió de aplicacions"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torni a la seva aplicació i inserti aquest Codi de Seguretat:"; -$a->strings["Please login to continue."] = "Per favor, accedeixi per a continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?"; -$a->strings["Remote privacy information not available."] = "Informació de privacitat remota no disponible."; -$a->strings["Visible to:"] = "Visible per a:"; -$a->strings["Personal Notes"] = "Notes Personals"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Temps de Conversió"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes"; -$a->strings["UTC time: %s"] = "hora UTC: %s"; -$a->strings["Current timezone: %s"] = "Zona horària actual: %s"; -$a->strings["Converted localtime: %s"] = "Conversión de hora local: %s"; -$a->strings["Please select your timezone:"] = "Si us plau, seleccioneu la vostra zona horària:"; -$a->strings["Poke/Prod"] = "Atia/Punxa"; -$a->strings["poke, prod or do other things to somebody"] = "Atiar, punxar o fer altres coses a algú"; -$a->strings["Recipient"] = "Recipient"; -$a->strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el contenidor"; -$a->strings["Make this post private"] = "Fes aquest missatge privat"; -$a->strings["Total invitation limit exceeded."] = "Limit d'invitacions excedit."; -$a->strings["%s : Not a valid email address."] = "%s : No es una adreça de correu vàlida"; -$a->strings["Please join us on Friendica"] = "Per favor, uneixi's a nosaltres en Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc."; -$a->strings["%s : Message delivery failed."] = "%s : Ha fallat l'entrega del missatge."; -$a->strings["%d message sent."] = array( - 0 => "%d missatge enviat", - 1 => "%d missatges enviats.", -); -$a->strings["You have no more invitations available"] = "No te més invitacions 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."] = "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica."; -$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."] = "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres."; -$a->strings["Send invitations"] = "Enviant Invitacions"; -$a->strings["Enter email addresses, one per line:"] = "Entri adreçes de correu, una per línia:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vostè haurà de proporcionar aquest codi d'invitació: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com"; -$a->strings["Photo Albums"] = "Àlbum de Fotos"; -$a->strings["Contact Photos"] = "Fotos de Contacte"; -$a->strings["Upload New Photos"] = "Actualitzar Noves Fotos"; -$a->strings["Contact information unavailable"] = "Informació del Contacte no disponible"; -$a->strings["Album not found."] = "Àlbum no trobat."; -$a->strings["Delete Album"] = "Eliminar Àlbum"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Realment vols esborrar aquest album de fotos amb totes les fotos?"; -$a->strings["Delete Photo"] = "Eliminar Foto"; -$a->strings["Do you really want to delete this photo?"] = "Realment vols esborrar aquesta foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fou etiquetat a %2\$s per %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image exceeds size limit of "] = "La imatge excedeix el límit de "; -$a->strings["Image file is empty."] = "El fitxer de imatge és buit."; -$a->strings["No photos selected"] = "No s'han seleccionat fotos"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos."; -$a->strings["Upload Photos"] = "Carregar Fotos"; -$a->strings["New album name: "] = "Nou nom d'àlbum:"; -$a->strings["or existing album name: "] = "o nom d'àlbum existent:"; -$a->strings["Do not show a status post for this upload"] = "No tornis a mostrar un missatge d'estat d'aquesta pujada"; -$a->strings["Permissions"] = "Permisos"; -$a->strings["Private Photo"] = "Foto Privada"; -$a->strings["Public Photo"] = "Foto Pública"; -$a->strings["Edit Album"] = "Editar Àlbum"; -$a->strings["Show Newest First"] = "Mostrar el més Nou Primer"; -$a->strings["Show Oldest First"] = "Mostrar el més Antic Primer"; -$a->strings["View Photo"] = "Veure Foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permís denegat. L'accés a aquest element pot estar restringit."; -$a->strings["Photo not available"] = "Foto no disponible"; -$a->strings["View photo"] = "Veure foto"; -$a->strings["Edit photo"] = "Editar foto"; -$a->strings["Use as profile photo"] = "Emprar com a foto del perfil"; -$a->strings["View Full Size"] = "Veure'l a Mida Completa"; -$a->strings["Tags: "] = "Etiquetes:"; -$a->strings["[Remove any tag]"] = "Treure etiquetes"; -$a->strings["Rotate CW (right)"] = "Rotar CW (dreta)"; -$a->strings["Rotate CCW (left)"] = "Rotar CCW (esquerra)"; -$a->strings["New album name"] = "Nou nom d'àlbum"; -$a->strings["Caption"] = "Títol"; -$a->strings["Add a Tag"] = "Afegir una etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Foto Privada"; -$a->strings["Public photo"] = "Foto pública"; -$a->strings["Share"] = "Compartir"; -$a->strings["Recent Photos"] = "Fotos Recents"; -$a->strings["Account approved."] = "Compte aprovat."; -$a->strings["Registration revoked for %s"] = "Procés de Registre revocat per a %s"; -$a->strings["Please login."] = "Si us plau, ingressa."; -$a->strings["Move account"] = "Moure el compte"; -$a->strings["You can import an account from another Friendica server."] = "Pots importar un compte d'un altre servidor 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."] = "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Aquesta característica es experimental. Podem importar els teus contactes de la xarxa OStatus (status/identi.ca) o de Diaspora"; -$a->strings["Account file"] = "Arxiu del compte"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Item not available."] = "Element no disponible"; -$a->strings["Item was not found."] = "Element no trobat."; -$a->strings["Delete this item?"] = "Esborrar aquest element?"; -$a->strings["show fewer"] = "Mostrar menys"; -$a->strings["Update %s failed. See error logs."] = "Actualització de %s fracassà. Mira el registre d'errors."; -$a->strings["Create a New Account"] = "Crear un Nou Compte"; -$a->strings["Logout"] = "Sortir"; -$a->strings["Nickname or Email address: "] = "Àlies o Adreça de correu:"; -$a->strings["Password: "] = "Contrasenya:"; -$a->strings["Remember me"] = "Recorda'm ho"; -$a->strings["Or login using OpenID: "] = "O accedixi emprant OpenID:"; -$a->strings["Forgot your password?"] = "Oblidà la contrasenya?"; -$a->strings["Website Terms of Service"] = "Termes del Servei al Llocweb"; -$a->strings["terms of service"] = "termes del servei"; -$a->strings["Website Privacy Policy"] = "Política de Privacitat al Llocweb"; -$a->strings["privacy policy"] = "política de privacitat"; -$a->strings["Requested account is not available."] = "El compte sol·licitat no esta disponible"; -$a->strings["Edit profile"] = "Editar perfil"; -$a->strings["Message"] = "Missatge"; -$a->strings["Profiles"] = "Perfils"; -$a->strings["Manage/edit profiles"] = "Gestiona/edita perfils"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[avui]"; -$a->strings["Birthday Reminders"] = "Recordatori d'Aniversaris"; -$a->strings["Birthdays this week:"] = "Aniversari aquesta setmana"; -$a->strings["[No description]"] = "[sense descripció]"; -$a->strings["Event Reminders"] = "Recordatori d'Esdeveniments"; -$a->strings["Events this week:"] = "Esdeveniments aquesta setmana"; -$a->strings["Status"] = "Estatus"; -$a->strings["Status Messages and Posts"] = "Missatges i Enviaments d'Estatus"; -$a->strings["Profile Details"] = "Detalls del Perfil"; -$a->strings["Videos"] = "Vídeos"; -$a->strings["Events and Calendar"] = "Esdeveniments i Calendari"; -$a->strings["Only You Can See This"] = "Només ho pots veure tu"; -$a->strings["This entry was edited"] = "L'entrada fou editada"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["Categories:"] = "Categories:"; -$a->strings["Filed under:"] = "Arxivat a:"; -$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."] = "Trobats errors durant la creació de les taules de la base de dades."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Has sortit"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID."; -$a->strings["The error message was:"] = "El missatge d'error fou: "; $a->strings["Add New Contact"] = "Afegir Nou Contacte"; $a->strings["Enter address or web location"] = "Introdueixi adreça o ubicació web"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Connexió"; $a->strings["%d invitation available"] = array( 0 => "%d invitació disponible", 1 => "%d invitacions disponibles", @@ -1305,6 +17,8 @@ $a->strings["Find People"] = "Trobar Gent"; $a->strings["Enter name or interest"] = "Introdueixi nom o aficions"; $a->strings["Connect/Follow"] = "Connectar/Seguir"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pescar"; +$a->strings["Find"] = "Cercar"; +$a->strings["Friend Suggestions"] = "Amics Suggerits"; $a->strings["Similar Interests"] = "Aficions Similars"; $a->strings["Random Profile"] = "Perfi Aleatori"; $a->strings["Invite Friends"] = "Invita Amics"; @@ -1313,321 +27,13 @@ $a->strings["All Networks"] = "totes les Xarxes"; $a->strings["Saved Folders"] = "Carpetes Guardades"; $a->strings["Everything"] = "Tot"; $a->strings["Categories"] = "Categories"; -$a->strings["General Features"] = "Característiques Generals"; -$a->strings["Multiple Profiles"] = "Perfils Múltiples"; -$a->strings["Ability to create multiple profiles"] = "Habilitat per crear múltiples perfils"; -$a->strings["Post Composition Features"] = "Característiques de Composició d'Enviaments"; -$a->strings["Richtext Editor"] = "Editor de Text Enriquit"; -$a->strings["Enable richtext editor"] = "Activar l'Editor de Text Enriquit"; -$a->strings["Post Preview"] = "Vista Prèvia de l'Enviament"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permetre la vista prèvia dels enviament i comentaris abans de publicar-los"; -$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"] = "Barra Lateral Selectora de Xarxa "; -$a->strings["Search by Date"] = "Cerca per Data"; -$a->strings["Ability to select posts by date ranges"] = "Possibilitat de seleccionar els missatges per intervals de temps"; -$a->strings["Group Filter"] = "Filtre de Grup"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Habilitar botò per veure missatges de Xarxa només del grup seleccionat"; -$a->strings["Network Filter"] = "Filtre de Xarxa"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Habilitar botò per veure missatges de Xarxa només de la xarxa seleccionada"; -$a->strings["Save search terms for re-use"] = "Guarda els termes de cerca per re-emprar"; -$a->strings["Network Tabs"] = "Pestanya Xarxes"; -$a->strings["Network Personal Tab"] = "Pestanya Xarxa Personal"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar la pestanya per veure unicament missatges de Xarxa en els que has intervingut"; -$a->strings["Network New Tab"] = "Pestanya Nova Xarxa"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilitar la pestanya per veure només els nous missatges de Xarxa (els de les darreres 12 hores)"; -$a->strings["Network Shared Links Tab"] = "Pestanya d'Enllaços de Xarxa Compartits"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Habilitar la pestanya per veure els missatges de Xarxa amb enllaços en ells"; -$a->strings["Post/Comment Tools"] = "Eines d'Enviaments/Comentaris"; -$a->strings["Multiple Deletion"] = "Esborrat Múltiple"; -$a->strings["Select and delete multiple posts/comments at once"] = "Sel·lecciona i esborra múltiples enviaments/commentaris en una vegada"; -$a->strings["Edit Sent Posts"] = "Editar Missatges Enviats"; -$a->strings["Edit and correct posts and comments after sending"] = "Edita i corregeix enviaments i comentaris una vegada han estat enviats"; -$a->strings["Tagging"] = "Etiquetant"; -$a->strings["Ability to tag existing posts"] = "Habilitar el etiquetar missatges existents"; -$a->strings["Post Categories"] = "Categories en Enviaments"; -$a->strings["Add categories to your posts"] = "Afegeix categories als teus enviaments"; -$a->strings["Ability to file posts under folders"] = "Habilitar el arxivar missatges en carpetes"; -$a->strings["Dislike Posts"] = "No agrada el Missatge"; -$a->strings["Ability to dislike posts/comments"] = "Habilita el marcar amb \"no agrada\" els enviaments/comentaris"; -$a->strings["Star Posts"] = "Missatge Estelar"; -$a->strings["Ability to mark special posts with a star indicator"] = "Habilita el marcar amb un estel, missatges especials"; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Connect URL missing."] = "URL del connector perduda."; -$a->strings["This site is not configured to allow communications with other networks."] = "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Protocol de comunnicació no compatible o alimentador descobert."; -$a->strings["The profile address specified does not provide adequate information."] = "L'adreça de perfil especificada no proveeix informació adient."; -$a->strings["An author or name was not found."] = "Un autor o nom no va ser trobat"; -$a->strings["No browser URL could be matched to this address."] = "Cap direcció URL del navegador coincideix amb aquesta adreça."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. "; -$a->strings["Use mailto: in front of address to force email check."] = "Emprar mailto: davant la adreça per a forçar la comprovació del correu."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu."; -$a->strings["Unable to retrieve contact information."] = "No es pot recuperar la informació de contacte."; -$a->strings["following"] = "seguint"; -$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 grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent."; -$a->strings["Default privacy group for new contacts"] = "Privacitat per defecte per a nous contactes"; -$a->strings["Everybody"] = "Tothom"; -$a->strings["edit"] = "editar"; -$a->strings["Edit group"] = "Editar grup"; -$a->strings["Create a new group"] = "Crear un nou grup"; -$a->strings["Contacts not in any group"] = "Contactes en cap grup"; -$a->strings["Miscellaneous"] = "Miscel·lania"; -$a->strings["year"] = "any"; -$a->strings["month"] = "mes"; -$a->strings["day"] = "dia"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "Fa menys d'un segon"; -$a->strings["years"] = "anys"; -$a->strings["months"] = "mesos"; -$a->strings["week"] = "setmana"; -$a->strings["weeks"] = "setmanes"; -$a->strings["days"] = "dies"; -$a->strings["hour"] = "hora"; -$a->strings["hours"] = "hores"; -$a->strings["minute"] = "minut"; -$a->strings["minutes"] = "minuts"; -$a->strings["second"] = "segon"; -$a->strings["seconds"] = "segons"; -$a->strings["%1\$d %2\$s ago"] = " fa %1\$d %2\$s"; -$a->strings["%s's birthday"] = "%s aniversari"; -$a->strings["Happy Birthday %s"] = "Feliç Aniversari %s"; -$a->strings["Visible to everybody"] = "Visible per tothom"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "no mostris"; -$a->strings["[no subject]"] = "[Sense assumpte]"; -$a->strings["stopped following"] = "Deixar de seguir"; -$a->strings["Poke"] = "Atia"; -$a->strings["View Status"] = "Veure Estatus"; -$a->strings["View Profile"] = "Veure Perfil"; -$a->strings["View Photos"] = "Veure Fotos"; -$a->strings["Network Posts"] = "Enviaments a la Xarxa"; -$a->strings["Edit Contact"] = "Editat Contacte"; -$a->strings["Drop Contact"] = ""; -$a->strings["Send PM"] = "Enviar Missatge Privat"; -$a->strings["Welcome "] = "Benvingut"; -$a->strings["Please upload a profile photo."] = "Per favor, carrega una foto per al perfil"; -$a->strings["Welcome back "] = "Benvingut de nou "; -$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."] = "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo."; -$a->strings["event"] = "esdeveniment"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s atiat %2\$s"; -$a->strings["poked"] = "atiar"; -$a->strings["post/item"] = "anunci/element"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcat %2\$s's %3\$s com favorit"; -$a->strings["remove"] = "esborrar"; -$a->strings["Delete Selected Items"] = "Esborra els Elements Seleccionats"; -$a->strings["Follow Thread"] = "Seguir el Fil"; -$a->strings["%s likes this."] = "a %s agrada això."; -$a->strings["%s doesn't like this."] = "a %s desagrada això."; -$a->strings["%2\$d people like this"] = "%2\$d gent agrada això"; -$a->strings["%2\$d people don't like this"] = "%2\$d gent no agrada això"; -$a->strings["and"] = "i"; -$a->strings[", and %d other people"] = ", i altres %d persones"; -$a->strings["%s like this."] = "a %s li agrada això."; -$a->strings["%s don't like this."] = "a %s no li agrada això."; -$a->strings["Visible to everybody"] = "Visible per a tothom"; -$a->strings["Please enter a video link/URL:"] = "Per favor , introdueixi el enllaç/URL del video"; -$a->strings["Please enter an audio link/URL:"] = "Per favor , introdueixi el enllaç/URL del audio:"; -$a->strings["Tag term:"] = "Terminis de l'etiqueta:"; -$a->strings["Where are you right now?"] = "On ets ara?"; -$a->strings["Delete item(s)?"] = "Esborrar element(s)?"; -$a->strings["Post to Email"] = "Correu per enviar"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["permissions"] = "Permissos"; -$a->strings["Post to Groups"] = "Publica-ho a Grups"; -$a->strings["Post to Contacts"] = "Publica-ho a Contactes"; -$a->strings["Private post"] = "Enviament Privat"; -$a->strings["view full size"] = "Veure'l a mida completa"; -$a->strings["newer"] = "Més nou"; -$a->strings["older"] = "més vell"; -$a->strings["prev"] = "Prev"; -$a->strings["first"] = "Primer"; -$a->strings["last"] = "Últim"; -$a->strings["next"] = "següent"; -$a->strings["No contacts"] = "Sense contactes"; -$a->strings["%d Contact"] = array( - 0 => "%d Contacte", - 1 => "%d Contactes", +$a->strings["%d contact in common"] = array( + 0 => "%d contacte en comú", + 1 => "%d contactes en comú", ); -$a->strings["poke"] = "atia"; -$a->strings["ping"] = "toc"; -$a->strings["pinged"] = "tocat"; -$a->strings["prod"] = "pinxat"; -$a->strings["prodded"] = "pinxat"; -$a->strings["slap"] = "bufetada"; -$a->strings["slapped"] = "Abufetejat"; -$a->strings["finger"] = "dit"; -$a->strings["fingered"] = "Senyalat"; -$a->strings["rebuff"] = "rebuig"; -$a->strings["rebuffed"] = "rebutjat"; -$a->strings["happy"] = "feliç"; -$a->strings["sad"] = "trist"; -$a->strings["mellow"] = "embafador"; -$a->strings["tired"] = "cansat"; -$a->strings["perky"] = "alegre"; -$a->strings["angry"] = "disgustat"; -$a->strings["stupified"] = "estupefacte"; -$a->strings["puzzled"] = "perplexe"; -$a->strings["interested"] = "interessat"; -$a->strings["bitter"] = "amarg"; -$a->strings["cheerful"] = "animat"; -$a->strings["alive"] = "viu"; -$a->strings["annoyed"] = "molest"; -$a->strings["anxious"] = "ansiós"; -$a->strings["cranky"] = "irritable"; -$a->strings["disturbed"] = "turbat"; -$a->strings["frustrated"] = "frustrat"; -$a->strings["motivated"] = "motivat"; -$a->strings["relaxed"] = "tranquil"; -$a->strings["surprised"] = "sorprès"; -$a->strings["Monday"] = "Dilluns"; -$a->strings["Tuesday"] = "Dimarts"; -$a->strings["Wednesday"] = "Dimecres"; -$a->strings["Thursday"] = "Dijous"; -$a->strings["Friday"] = "Divendres"; -$a->strings["Saturday"] = "Dissabte"; -$a->strings["Sunday"] = "Diumenge"; -$a->strings["January"] = "Gener"; -$a->strings["February"] = "Febrer"; -$a->strings["March"] = "Març"; -$a->strings["April"] = "Abril"; -$a->strings["May"] = "Maig"; -$a->strings["June"] = "Juny"; -$a->strings["July"] = "Juliol"; -$a->strings["August"] = "Agost"; -$a->strings["September"] = "Setembre"; -$a->strings["October"] = "Octubre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Desembre"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicar per a obrir/tancar"; -$a->strings["default"] = "per defecte"; -$a->strings["Select an alternate language"] = "Sel·lecciona un idioma alternatiu"; -$a->strings["activity"] = "activitat"; -$a->strings["post"] = "missatge"; -$a->strings["Item filed"] = "Element arxivat"; -$a->strings["Image/photo"] = "Imatge/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 va escriure:"; -$a->strings["Encrypted content"] = "Encriptar contingut"; -$a->strings["(no subject)"] = "(sense assumpte)"; -$a->strings["noreply"] = "no contestar"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "No put trobar informació de DNS del servidor de base de dades '%s'"; -$a->strings["Unknown | Not categorised"] = "Desconegut/No categoritzat"; -$a->strings["Block immediately"] = "Bloquejar immediatament"; -$a->strings["Shady, spammer, self-marketer"] = "Sospitós, Spam, auto-publicitat"; -$a->strings["Known to me, but no opinion"] = "Conegut per mi, però sense opinió"; -$a->strings["OK, probably harmless"] = "Bé, probablement inofensiu"; -$a->strings["Reputable, has my trust"] = "Bona reputació, té la meva confiança"; -$a->strings["Weekly"] = "Setmanal"; -$a->strings["Monthly"] = "Mensual"; -$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"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; -$a->strings["App.net"] = ""; -$a->strings[" on Last.fm"] = " a Last.fm"; -$a->strings["Starts:"] = "Inici:"; -$a->strings["Finishes:"] = "Acaba:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Aniversari:"; -$a->strings["Age:"] = "Edat:"; -$a->strings["for %1\$d %2\$s"] = "per a %1\$d %2\$s"; -$a->strings["Tags:"] = "Etiquetes:"; -$a->strings["Religion:"] = "Religió:"; -$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; -$a->strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; -$a->strings["Musical interests:"] = "Gustos musicals:"; -$a->strings["Books, literature:"] = "Llibres, literatura:"; -$a->strings["Television:"] = "Televisió:"; -$a->strings["Film/dance/culture/entertainment:"] = "Cinema/ball/cultura/entreteniments:"; -$a->strings["Love/Romance:"] = "Amor/sentiments:"; -$a->strings["Work/employment:"] = "Treball/ocupació:"; -$a->strings["School/education:"] = "Escola/formació"; -$a->strings["Click here to upgrade."] = "Clica aquí per actualitzar."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció excedeix els límits del teu plan de subscripció."; -$a->strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el teu plan de subscripció."; -$a->strings["End this session"] = "Termina sessió"; -$a->strings["Your posts and conversations"] = "Els teus anuncis i converses"; -$a->strings["Your profile page"] = "La seva pàgina de perfil"; -$a->strings["Your photos"] = "Les seves fotos"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Els seus esdeveniments"; -$a->strings["Personal notes"] = "Notes personals"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Accedeix"; -$a->strings["Home Page"] = "Pàgina d'Inici"; -$a->strings["Create an account"] = "Crear un compte"; -$a->strings["Help and documentation"] = "Ajuda i documentació"; -$a->strings["Apps"] = "Aplicacions"; -$a->strings["Addon applications, utilities, games"] = "Afegits: aplicacions, utilitats, jocs"; -$a->strings["Search site content"] = "Busca contingut en el lloc"; -$a->strings["Conversations on this site"] = "Converses en aquest lloc"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Directori"; -$a->strings["People directory"] = "Directori de gent"; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Converses dels teus amics"; -$a->strings["Network Reset"] = "Reiniciar Xarxa"; -$a->strings["Load Network page with no filters"] = "carrega la pàgina de Xarxa sense filtres"; -$a->strings["Friend Requests"] = "Sol·licitud d'Amistat"; -$a->strings["See all notifications"] = "Veure totes les notificacions"; -$a->strings["Mark all system notifications seen"] = "Marcar totes les notificacions del sistema com a vistes"; -$a->strings["Private mail"] = "Correu privat"; -$a->strings["Inbox"] = "Safata d'entrada"; -$a->strings["Outbox"] = "Safata de sortida"; -$a->strings["Manage"] = "Gestionar"; -$a->strings["Manage other pages"] = "Gestiona altres pàgines"; -$a->strings["Account settings"] = "Configuració del compte"; -$a->strings["Manage/Edit Profiles"] = "Gestiona/Edita Perfils"; -$a->strings["Manage/edit friends and contacts"] = "Gestiona/edita amics i contactes"; -$a->strings["Site setup and configuration"] = "Ajustos i configuració del lloc"; -$a->strings["Navigation"] = "Navegació"; -$a->strings["Site map"] = "Mapa del lloc"; -$a->strings["User not found."] = ""; -$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."] = ""; -$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."] = "Es requereix invitació."; -$a->strings["Invitation could not be verified."] = "La invitació no ha pogut ser verificada."; -$a->strings["Invalid OpenID url"] = "OpenID url no vàlid"; -$a->strings["Please enter the required information."] = "Per favor, introdueixi la informació requerida."; -$a->strings["Please use a shorter name."] = "Per favor, empri un nom més curt."; -$a->strings["Name too short."] = "Nom massa curt."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Això no sembla ser el teu nom complet."; -$a->strings["Your email domain is not among those allowed on this site."] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc."; -$a->strings["Not a valid email address."] = "Adreça de correu no vàlida."; -$a->strings["Cannot use that email."] = "No es pot utilitzar aquest correu electrònic."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra."; -$a->strings["Nickname is already registered. Please choose another."] = "àlies ja registrat. Tria un altre."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar "; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR IMPORTANT: La generació de claus de seguretat ha fallat."; -$a->strings["An error occurred during registration. Please try again."] = "Un error ha succeït durant el registre. Intenta-ho de nou."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou."; -$a->strings["Friends"] = "Amics/Amigues"; -$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"] = "Compartint la notificació de la xarxa Diàspora"; -$a->strings["Attachments:"] = "Adjunts:"; -$a->strings["Do you really want to delete this item?"] = "Realment vols esborrar aquest article?"; -$a->strings["Archives"] = "Arxius"; +$a->strings["show more"] = "Mostrar més"; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; $a->strings["Male"] = "Home"; $a->strings["Female"] = "Dona"; $a->strings["Currently Male"] = "Actualment Home"; @@ -1641,7 +47,10 @@ $a->strings["Hermaphrodite"] = "Hermafrodita"; $a->strings["Neuter"] = "Neutre"; $a->strings["Non-specific"] = "No específicat"; $a->strings["Other"] = "Altres"; -$a->strings["Undecided"] = "No Decidit"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); $a->strings["Males"] = "Home"; $a->strings["Females"] = "Dona"; $a->strings["Gay"] = "Gay"; @@ -1664,6 +73,7 @@ $a->strings["Infatuated"] = "Enamorat"; $a->strings["Dating"] = "De cites"; $a->strings["Unfaithful"] = "Infidel"; $a->strings["Sex Addict"] = "Adicte al sexe"; +$a->strings["Friends"] = "Amics/Amigues"; $a->strings["Friends/Benefits"] = "Amics íntims"; $a->strings["Casual"] = "Oportunista"; $a->strings["Engaged"] = "Promès"; @@ -1685,9 +95,113 @@ $a->strings["Uncertain"] = "Incert"; $a->strings["It's complicated"] = "Es complicat"; $a->strings["Don't care"] = "No t'interessa"; $a->strings["Ask me"] = "Pregunta'm"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "No put trobar informació de DNS del servidor de base de dades '%s'"; +$a->strings["Logged out."] = "Has sortit"; +$a->strings["Login failed."] = "Error d'accés."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID."; +$a->strings["The error message was:"] = "El missatge d'error fou: "; +$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 grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent."; +$a->strings["Default privacy group for new contacts"] = "Privacitat per defecte per a nous contactes"; +$a->strings["Everybody"] = "Tothom"; +$a->strings["edit"] = "editar"; +$a->strings["Groups"] = "Grups"; +$a->strings["Edit groups"] = ""; +$a->strings["Edit group"] = "Editar grup"; +$a->strings["Create a new group"] = "Crear un nou grup"; +$a->strings["Group Name: "] = "Nom del Grup:"; +$a->strings["Contacts not in any group"] = "Contactes en cap grup"; +$a->strings["add"] = "afegir"; +$a->strings["Unknown | Not categorised"] = "Desconegut/No categoritzat"; +$a->strings["Block immediately"] = "Bloquejar immediatament"; +$a->strings["Shady, spammer, self-marketer"] = "Sospitós, Spam, auto-publicitat"; +$a->strings["Known to me, but no opinion"] = "Conegut per mi, però sense opinió"; +$a->strings["OK, probably harmless"] = "Bé, probablement inofensiu"; +$a->strings["Reputable, has my trust"] = "Bona reputació, té la meva confiança"; +$a->strings["Frequently"] = "Freqüentment"; +$a->strings["Hourly"] = "Cada hora"; +$a->strings["Twice daily"] = "Dues vegades al dia"; +$a->strings["Daily"] = "Diari"; +$a->strings["Weekly"] = "Setmanal"; +$a->strings["Monthly"] = "Mensual"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Correu"; +$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"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$a->strings["Post to Email"] = "Correu per enviar"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Amagar els detalls del seu perfil a espectadors desconeguts?"; +$a->strings["Visible to everybody"] = "Visible per tothom"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "no mostris"; +$a->strings["CC: email addresses"] = "CC: Adreça de correu"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permisos"; +$a->strings["Close"] = "Tancar"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "estatus"; +$a->strings["event"] = "esdeveniment"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s agrada %2\$s de %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no agrada %2\$s de %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[Sense assumpte]"; +$a->strings["Wall Photos"] = "Fotos del Mur"; +$a->strings["Click here to upgrade."] = "Clica aquí per actualitzar."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció excedeix els límits del teu plan de subscripció."; +$a->strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el teu plan de subscripció."; +$a->strings["Error decoding account file"] = "Error decodificant l'arxiu del compte"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Error! No puc comprobar l'Àlies"; +$a->strings["User '%s' already exists on this server!"] = "El usuari %s' ja existeix en aquest servidor!"; +$a->strings["User creation error"] = "Error en la creació de l'usuari"; +$a->strings["User profile creation error"] = "Error en la creació del perfil d'usuari"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contacte no importat", + 1 => "%d contactes no importats", +); +$a->strings["Done. You can now login with your username and password"] = "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya"; +$a->strings["Miscellaneous"] = "Miscel·lania"; +$a->strings["Birthday:"] = "Aniversari:"; +$a->strings["Age: "] = "Edat:"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "Fa menys d'un segon"; +$a->strings["year"] = "any"; +$a->strings["years"] = "anys"; +$a->strings["month"] = "mes"; +$a->strings["months"] = "mesos"; +$a->strings["week"] = "setmana"; +$a->strings["weeks"] = "setmanes"; +$a->strings["day"] = "dia"; +$a->strings["days"] = "dies"; +$a->strings["hour"] = "hora"; +$a->strings["hours"] = "hores"; +$a->strings["minute"] = "minut"; +$a->strings["minutes"] = "minuts"; +$a->strings["second"] = "segon"; +$a->strings["seconds"] = "segons"; +$a->strings["%1\$d %2\$s ago"] = " fa %1\$d %2\$s"; +$a->strings["%s's birthday"] = "%s aniversari"; +$a->strings["Happy Birthday %s"] = "Feliç Aniversari %s"; $a->strings["Friendica Notification"] = "Notificacions de Friendica"; $a->strings["Thank You,"] = "Gràcies,"; $a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$a->strings["noreply"] = "no contestar"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Notifica] nou correu rebut a %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s t'ha enviat un missatge privat nou en %2\$s."; @@ -1731,63 +245,1791 @@ $a->strings["Name:"] = "Nom:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia."; $a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["'%1\$s' has accepted 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["You are now mutual friends and may exchange status updates, photos, and email without 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["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; $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["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Inici:"; +$a->strings["Finishes:"] = "Acaba:"; +$a->strings["Location:"] = "Ubicació:"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Diumenge"; +$a->strings["Monday"] = "Dilluns"; +$a->strings["Tuesday"] = "Dimarts"; +$a->strings["Wednesday"] = "Dimecres"; +$a->strings["Thursday"] = "Dijous"; +$a->strings["Friday"] = "Divendres"; +$a->strings["Saturday"] = "Dissabte"; +$a->strings["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Maig"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "Gener"; +$a->strings["February"] = "Febrer"; +$a->strings["March"] = "Març"; +$a->strings["April"] = "Abril"; +$a->strings["June"] = "Juny"; +$a->strings["July"] = "Juliol"; +$a->strings["August"] = "Agost"; +$a->strings["September"] = "Setembre"; +$a->strings["October"] = "Octubre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Desembre"; +$a->strings["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editar esdeveniment"; +$a->strings["link to source"] = "Enllaç al origen"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Res nou aquí"; +$a->strings["Clear notifications"] = "Neteja notificacions"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Sortir"; +$a->strings["End this session"] = "Termina sessió"; +$a->strings["Status"] = "Estatus"; +$a->strings["Your posts and conversations"] = "Els teus anuncis i converses"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Your profile page"] = "La seva pàgina de perfil"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Your photos"] = "Les seves fotos"; +$a->strings["Videos"] = "Vídeos"; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = "Esdeveniments"; +$a->strings["Your events"] = "Els seus esdeveniments"; +$a->strings["Personal notes"] = "Notes personals"; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Identifica't"; +$a->strings["Sign in"] = "Accedeix"; +$a->strings["Home"] = "Inici"; +$a->strings["Home Page"] = "Pàgina d'Inici"; +$a->strings["Register"] = "Registrar"; +$a->strings["Create an account"] = "Crear un compte"; +$a->strings["Help"] = "Ajuda"; +$a->strings["Help and documentation"] = "Ajuda i documentació"; +$a->strings["Apps"] = "Aplicacions"; +$a->strings["Addon applications, utilities, games"] = "Afegits: aplicacions, utilitats, jocs"; +$a->strings["Search"] = "Cercar"; +$a->strings["Search site content"] = "Busca contingut en el lloc"; +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Contactes"; +$a->strings["Community"] = "Comunitat"; +$a->strings["Conversations on this site"] = "Converses en aquest lloc"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = "Esdeveniments i Calendari"; +$a->strings["Directory"] = "Directori"; +$a->strings["People directory"] = "Directori de gent"; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Xarxa"; +$a->strings["Conversations from your friends"] = "Converses dels teus amics"; +$a->strings["Network Reset"] = "Reiniciar Xarxa"; +$a->strings["Load Network page with no filters"] = "carrega la pàgina de Xarxa sense filtres"; +$a->strings["Introductions"] = "Presentacions"; +$a->strings["Friend Requests"] = "Sol·licitud d'Amistat"; +$a->strings["Notifications"] = "Notificacions"; +$a->strings["See all notifications"] = "Veure totes les notificacions"; +$a->strings["Mark as seen"] = "Marcar com a vist"; +$a->strings["Mark all system notifications seen"] = "Marcar totes les notificacions del sistema com a vistes"; +$a->strings["Messages"] = "Missatges"; +$a->strings["Private mail"] = "Correu privat"; +$a->strings["Inbox"] = "Safata d'entrada"; +$a->strings["Outbox"] = "Safata de sortida"; +$a->strings["New Message"] = "Nou Missatge"; +$a->strings["Manage"] = "Gestionar"; +$a->strings["Manage other pages"] = "Gestiona altres pàgines"; +$a->strings["Delegations"] = "Delegacions"; +$a->strings["Delegate Page Management"] = "Gestió de les Pàgines Delegades"; +$a->strings["Settings"] = "Ajustos"; +$a->strings["Account settings"] = "Configuració del compte"; +$a->strings["Profiles"] = "Perfils"; +$a->strings["Manage/Edit Profiles"] = "Gestiona/Edita Perfils"; +$a->strings["Manage/edit friends and contacts"] = "Gestiona/edita amics i contactes"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Ajustos i configuració del lloc"; +$a->strings["Navigation"] = "Navegació"; +$a->strings["Site map"] = "Mapa del lloc"; +$a->strings["Contact Photos"] = "Fotos de Contacte"; +$a->strings["Welcome "] = "Benvingut"; +$a->strings["Please upload a profile photo."] = "Per favor, carrega una foto per al perfil"; +$a->strings["Welcome back "] = "Benvingut de nou "; +$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."] = "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo."; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Personal"; +$a->strings["%s commented on %s's post"] = "%s va comentar en l'enviament de %s"; +$a->strings["%s created a new post"] = "%s ha creat un enviament nou"; +$a->strings["%s liked %s's post"] = "A %s li agrada l'enviament de %s"; +$a->strings["%s disliked %s's post"] = "A %s no li agrada l'enviament de %s"; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s es ara amic de %s"; +$a->strings["Friend Suggestion"] = "Amics Suggerits "; +$a->strings["Friend/Connect Request"] = "Sol·licitud d'Amistat/Connexió"; +$a->strings["New Follower"] = "Nou Seguidor"; +$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."] = "Trobats errors durant la creació de les taules de la base de dades."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(sense assumpte)"; +$a->strings["Sharing notification from Diaspora network"] = "Compartint la notificació de la xarxa Diàspora"; +$a->strings["Attachments:"] = "Adjunts:"; +$a->strings["view full size"] = "Veure'l a mida completa"; +$a->strings["View Profile"] = "Veure Perfil"; +$a->strings["View Status"] = "Veure Estatus"; +$a->strings["View Photos"] = "Veure Fotos"; +$a->strings["Network Posts"] = "Enviaments a la Xarxa"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = ""; +$a->strings["Send PM"] = "Enviar Missatge Privat"; +$a->strings["Poke"] = "Atia"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = ""; +$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["Image/photo"] = "Imatge/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 va escriure:"; +$a->strings["Encrypted content"] = "Encriptar contingut"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s és ara amic amb %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s atiat %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s es normalment %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetats %2\$s %3\$s amb %4\$s"; +$a->strings["post/item"] = "anunci/element"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcat %2\$s's %3\$s com favorit"; +$a->strings["Likes"] = "Agrada"; +$a->strings["Dislikes"] = "No agrada"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Select"] = "Selecionar"; +$a->strings["Delete"] = "Esborrar"; +$a->strings["View %s's profile @ %s"] = "Veure perfil de %s @ %s"; +$a->strings["Categories:"] = "Categories:"; +$a->strings["Filed under:"] = "Arxivat a:"; +$a->strings["%s from %s"] = "%s des de %s"; +$a->strings["View in context"] = "Veure en context"; +$a->strings["Please wait"] = "Si us plau esperi"; +$a->strings["remove"] = "esborrar"; +$a->strings["Delete Selected Items"] = "Esborra els Elements Seleccionats"; +$a->strings["Follow Thread"] = "Seguir el Fil"; +$a->strings["%s likes this."] = "a %s agrada això."; +$a->strings["%s doesn't like this."] = "a %s desagrada això."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "i"; +$a->strings[", and %d other people"] = ", i altres %d persones"; +$a->strings["%2\$d people like this"] = "%2\$d gent agrada això"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d gent no agrada això"; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Visible per a tothom"; +$a->strings["Please enter a link URL:"] = "Sius plau, entri l'enllaç URL:"; +$a->strings["Please enter a video link/URL:"] = "Per favor , introdueixi el enllaç/URL del video"; +$a->strings["Please enter an audio link/URL:"] = "Per favor , introdueixi el enllaç/URL del audio:"; +$a->strings["Tag term:"] = "Terminis de l'etiqueta:"; +$a->strings["Save to Folder:"] = "Guardar a la Carpeta:"; +$a->strings["Where are you right now?"] = "On ets ara?"; +$a->strings["Delete item(s)?"] = "Esborrar element(s)?"; +$a->strings["Share"] = "Compartir"; +$a->strings["Upload photo"] = "Carregar foto"; +$a->strings["upload photo"] = "carregar fotos"; +$a->strings["Attach file"] = "Adjunta fitxer"; +$a->strings["attach file"] = "adjuntar arxiu"; +$a->strings["Insert web link"] = "Inserir enllaç web"; +$a->strings["web link"] = "enllaç de web"; +$a->strings["Insert video link"] = "Insertar enllaç de video"; +$a->strings["video link"] = "enllaç de video"; +$a->strings["Insert audio link"] = "Insertar enllaç de audio"; +$a->strings["audio link"] = "enllaç de audio"; +$a->strings["Set your location"] = "Canvia la teva ubicació"; +$a->strings["set location"] = "establir la ubicació"; +$a->strings["Clear browser location"] = "neteja adreçes del navegador"; +$a->strings["clear location"] = "netejar ubicació"; +$a->strings["Set title"] = "Canviar títol"; +$a->strings["Categories (comma-separated list)"] = "Categories (lista separada per comes)"; +$a->strings["Permission settings"] = "Configuració de permisos"; +$a->strings["permissions"] = "Permissos"; +$a->strings["Public post"] = "Enviament públic"; +$a->strings["Preview"] = "Vista prèvia"; +$a->strings["Cancel"] = "Cancel·lar"; +$a->strings["Post to Groups"] = "Publica-ho a Grups"; +$a->strings["Post to Contacts"] = "Publica-ho a Contactes"; +$a->strings["Private post"] = "Enviament Privat"; +$a->strings["Message"] = "Missatge"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$a->strings["General Features"] = "Característiques Generals"; +$a->strings["Multiple Profiles"] = "Perfils Múltiples"; +$a->strings["Ability to create multiple profiles"] = "Habilitat per crear múltiples perfils"; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = "Característiques de Composició d'Enviaments"; +$a->strings["Richtext Editor"] = "Editor de Text Enriquit"; +$a->strings["Enable richtext editor"] = "Activar l'Editor de Text Enriquit"; +$a->strings["Post Preview"] = "Vista Prèvia de l'Enviament"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permetre la vista prèvia dels enviament i comentaris abans de publicar-los"; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Barra Lateral Selectora de Xarxa "; +$a->strings["Search by Date"] = "Cerca per Data"; +$a->strings["Ability to select posts by date ranges"] = "Possibilitat de seleccionar els missatges per intervals de temps"; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = "Filtre de Grup"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Habilitar botò per veure missatges de Xarxa només del grup seleccionat"; +$a->strings["Network Filter"] = "Filtre de Xarxa"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Habilitar botò per veure missatges de Xarxa només de la xarxa seleccionada"; +$a->strings["Saved Searches"] = "Cerques Guardades"; +$a->strings["Save search terms for re-use"] = "Guarda els termes de cerca per re-emprar"; +$a->strings["Network Tabs"] = "Pestanya Xarxes"; +$a->strings["Network Personal Tab"] = "Pestanya Xarxa Personal"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar la pestanya per veure unicament missatges de Xarxa en els que has intervingut"; +$a->strings["Network New Tab"] = "Pestanya Nova Xarxa"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilitar la pestanya per veure només els nous missatges de Xarxa (els de les darreres 12 hores)"; +$a->strings["Network Shared Links Tab"] = "Pestanya d'Enllaços de Xarxa Compartits"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Habilitar la pestanya per veure els missatges de Xarxa amb enllaços en ells"; +$a->strings["Post/Comment Tools"] = "Eines d'Enviaments/Comentaris"; +$a->strings["Multiple Deletion"] = "Esborrat Múltiple"; +$a->strings["Select and delete multiple posts/comments at once"] = "Sel·lecciona i esborra múltiples enviaments/commentaris en una vegada"; +$a->strings["Edit Sent Posts"] = "Editar Missatges Enviats"; +$a->strings["Edit and correct posts and comments after sending"] = "Edita i corregeix enviaments i comentaris una vegada han estat enviats"; +$a->strings["Tagging"] = "Etiquetant"; +$a->strings["Ability to tag existing posts"] = "Habilitar el etiquetar missatges existents"; +$a->strings["Post Categories"] = "Categories en Enviaments"; +$a->strings["Add categories to your posts"] = "Afegeix categories als teus enviaments"; +$a->strings["Ability to file posts under folders"] = "Habilitar el arxivar missatges en carpetes"; +$a->strings["Dislike Posts"] = "No agrada el Missatge"; +$a->strings["Ability to dislike posts/comments"] = "Habilita el marcar amb \"no agrada\" els enviaments/comentaris"; +$a->strings["Star Posts"] = "Missatge Estelar"; +$a->strings["Ability to mark special posts with a star indicator"] = "Habilita el marcar amb un estel, missatges especials"; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Perfil URL no permès."; +$a->strings["Connect URL missing."] = "URL del connector perduda."; +$a->strings["This site is not configured to allow communications with other networks."] = "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Protocol de comunnicació no compatible o alimentador descobert."; +$a->strings["The profile address specified does not provide adequate information."] = "L'adreça de perfil especificada no proveeix informació adient."; +$a->strings["An author or name was not found."] = "Un autor o nom no va ser trobat"; +$a->strings["No browser URL could be matched to this address."] = "Cap direcció URL del navegador coincideix amb aquesta adreça."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. "; +$a->strings["Use mailto: in front of address to force email check."] = "Emprar mailto: davant la adreça per a forçar la comprovació del correu."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu."; +$a->strings["Unable to retrieve contact information."] = "No es pot recuperar la informació de contacte."; +$a->strings["Requested account is not available."] = "El compte sol·licitat no esta disponible"; +$a->strings["Requested profile is not available."] = "El perfil sol·licitat no està disponible."; +$a->strings["Edit profile"] = "Editar perfil"; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = "Gestiona/edita perfils"; +$a->strings["Change profile photo"] = "Canviar la foto del perfil"; +$a->strings["Create New Profile"] = "Crear un Nou Perfil"; +$a->strings["Profile Image"] = "Imatge del Perfil"; +$a->strings["visible to everybody"] = "Visible per tothom"; +$a->strings["Edit visibility"] = "Editar visibilitat"; +$a->strings["Gender:"] = "Gènere:"; +$a->strings["Status:"] = "Estatus:"; +$a->strings["Homepage:"] = "Pàgina web:"; +$a->strings["About:"] = "Acerca de:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[avui]"; +$a->strings["Birthday Reminders"] = "Recordatori d'Aniversaris"; +$a->strings["Birthdays this week:"] = "Aniversari aquesta setmana"; +$a->strings["[No description]"] = "[sense descripció]"; +$a->strings["Event Reminders"] = "Recordatori d'Esdeveniments"; +$a->strings["Events this week:"] = "Esdeveniments aquesta setmana"; +$a->strings["Full Name:"] = "Nom Complet:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Edat:"; +$a->strings["for %1\$d %2\$s"] = "per a %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferència Sexual:"; +$a->strings["Hometown:"] = "Lloc de residència:"; +$a->strings["Tags:"] = "Etiquetes:"; +$a->strings["Political Views:"] = "Idees Polítiques:"; +$a->strings["Religion:"] = "Religió:"; +$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; +$a->strings["Likes:"] = "Agrada:"; +$a->strings["Dislikes:"] = "No Agrada"; +$a->strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; +$a->strings["Musical interests:"] = "Gustos musicals:"; +$a->strings["Books, literature:"] = "Llibres, literatura:"; +$a->strings["Television:"] = "Televisió:"; +$a->strings["Film/dance/culture/entertainment:"] = "Cinema/ball/cultura/entreteniments:"; +$a->strings["Love/Romance:"] = "Amor/sentiments:"; +$a->strings["Work/employment:"] = "Treball/ocupació:"; +$a->strings["School/education:"] = "Escola/formació"; +$a->strings["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Avançat"; +$a->strings["Status Messages and Posts"] = "Missatges i Enviaments d'Estatus"; +$a->strings["Profile Details"] = "Detalls del Perfil"; +$a->strings["Photo Albums"] = "Àlbum de Fotos"; +$a->strings["Personal Notes"] = "Notes Personals"; +$a->strings["Only You Can See This"] = "Només ho pots veure tu"; +$a->strings["[Name Withheld]"] = "[Nom Amagat]"; +$a->strings["Item not found."] = "Article no trobat."; +$a->strings["Do you really want to delete this item?"] = "Realment vols esborrar aquest article?"; +$a->strings["Yes"] = "Si"; +$a->strings["Permission denied."] = "Permís denegat."; +$a->strings["Archives"] = "Arxius"; $a->strings["Embedded content"] = "Contingut incrustat"; $a->strings["Embedding disabled"] = "Incrustacions deshabilitades"; -$a->strings["Error decoding account file"] = "Error decodificant l'arxiu del compte"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Error! No puc comprobar l'Àlies"; -$a->strings["User '%s' already exists on this server!"] = "El usuari %s' ja existeix en aquest servidor!"; -$a->strings["User creation error"] = "Error en la creació de l'usuari"; -$a->strings["User profile creation error"] = "Error en la creació del perfil d'usuari"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contacte no importat", - 1 => "%d contactes no importats", +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "seguint"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "Deixar de seguir"; +$a->strings["newer"] = "Més nou"; +$a->strings["older"] = "més vell"; +$a->strings["prev"] = "Prev"; +$a->strings["first"] = "Primer"; +$a->strings["last"] = "Últim"; +$a->strings["next"] = "següent"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Sense contactes"; +$a->strings["%d Contact"] = array( + 0 => "%d Contacte", + 1 => "%d Contactes", ); -$a->strings["Done. You can now login with your username and password"] = "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya"; -$a->strings["toggle mobile"] = "canviar a mòbil"; +$a->strings["View Contacts"] = "Veure Contactes"; +$a->strings["Save"] = "Guardar"; +$a->strings["poke"] = "atia"; +$a->strings["poked"] = "atiar"; +$a->strings["ping"] = "toc"; +$a->strings["pinged"] = "tocat"; +$a->strings["prod"] = "pinxat"; +$a->strings["prodded"] = "pinxat"; +$a->strings["slap"] = "bufetada"; +$a->strings["slapped"] = "Abufetejat"; +$a->strings["finger"] = "dit"; +$a->strings["fingered"] = "Senyalat"; +$a->strings["rebuff"] = "rebuig"; +$a->strings["rebuffed"] = "rebutjat"; +$a->strings["happy"] = "feliç"; +$a->strings["sad"] = "trist"; +$a->strings["mellow"] = "embafador"; +$a->strings["tired"] = "cansat"; +$a->strings["perky"] = "alegre"; +$a->strings["angry"] = "disgustat"; +$a->strings["stupified"] = "estupefacte"; +$a->strings["puzzled"] = "perplexe"; +$a->strings["interested"] = "interessat"; +$a->strings["bitter"] = "amarg"; +$a->strings["cheerful"] = "animat"; +$a->strings["alive"] = "viu"; +$a->strings["annoyed"] = "molest"; +$a->strings["anxious"] = "ansiós"; +$a->strings["cranky"] = "irritable"; +$a->strings["disturbed"] = "turbat"; +$a->strings["frustrated"] = "frustrat"; +$a->strings["motivated"] = "motivat"; +$a->strings["relaxed"] = "tranquil"; +$a->strings["surprised"] = "sorprès"; +$a->strings["View Video"] = "Veure Video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Clicar per a obrir/tancar"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "activitat"; +$a->strings["comment"] = array( + 0 => "", + 1 => "comentari", +); +$a->strings["post"] = "missatge"; +$a->strings["Item filed"] = "Element arxivat"; +$a->strings["Passwords do not match. Password unchanged."] = "Les contrasenyes no coincideixen. Contrasenya no canviada."; +$a->strings["An invitation is required."] = "Es requereix invitació."; +$a->strings["Invitation could not be verified."] = "La invitació no ha pogut ser verificada."; +$a->strings["Invalid OpenID url"] = "OpenID url no vàlid"; +$a->strings["Please enter the required information."] = "Per favor, introdueixi la informació requerida."; +$a->strings["Please use a shorter name."] = "Per favor, empri un nom més curt."; +$a->strings["Name too short."] = "Nom massa curt."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Això no sembla ser el teu nom complet."; +$a->strings["Your email domain is not among those allowed on this site."] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc."; +$a->strings["Not a valid email address."] = "Adreça de correu no vàlida."; +$a->strings["Cannot use that email."] = "No es pot utilitzar aquest correu electrònic."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "àlies ja registrat. Tria un altre."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar "; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR IMPORTANT: La generació de claus de seguretat ha fallat."; +$a->strings["An error occurred during registration. Please try again."] = "Un error ha succeït durant el registre. Intenta-ho de nou."; +$a->strings["default"] = "per defecte"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou."; +$a->strings["Profile Photos"] = "Fotos del Perfil"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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"] = "Detalls del registre per a %s"; +$a->strings["Post successful."] = "Publicat amb éxit."; +$a->strings["Access denied."] = "Accés denegat."; +$a->strings["Welcome to %s"] = "Benvingut a %s"; +$a->strings["No more system notifications."] = "No més notificacions del sistema."; +$a->strings["System Notifications"] = "Notificacions del Sistema"; +$a->strings["Remove term"] = "Traieu termini"; +$a->strings["Public access denied."] = "Accés públic denegat."; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Sense resultats."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$a->strings["This is Friendica, version"] = "Això és Friendica, versió"; +$a->strings["running at web location"] = "funcionant en la ubicació web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Pels informes d'error i problemes: si us plau, visiteu"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "plugins/addons/apps instal·lats:"; +$a->strings["No installed plugins/addons/apps"] = "plugins/addons/apps no instal·lats"; +$a->strings["No valid account found."] = "compte no vàlid trobat."; +$a->strings["Password reset request issued. Check your email."] = "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu."; +$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"] = "Contrasenya restablerta enviada a %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat."; +$a->strings["Password Reset"] = "Restabliment de Contrasenya"; +$a->strings["Your password has been reset as requested."] = "La teva contrasenya fou restablerta com vas demanar."; +$a->strings["Your new password is"] = "La teva nova contrasenya es"; +$a->strings["Save or copy your new password - and then"] = "Guarda o copia la nova contrasenya - i llavors"; +$a->strings["click here to login"] = "clica aquí per identificarte"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit."; +$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"] = "La teva contrasenya ha estat canviada a %s"; +$a->strings["Forgot your Password?"] = "Has Oblidat la Contrasenya?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. "; +$a->strings["Nickname or Email: "] = "Àlies o Correu:"; +$a->strings["Reset"] = "Restablir"; +$a->strings["No profile"] = "Sense perfil"; +$a->strings["Help:"] = "Ajuda:"; +$a->strings["Not Found"] = "No trobat"; +$a->strings["Page not found."] = "Pàgina no trobada."; +$a->strings["Remote privacy information not available."] = "Informació de privacitat remota no disponible."; +$a->strings["Visible to:"] = "Visible per a:"; +$a->strings["OpenID protocol error. No ID returned."] = "Error al protocol OpenID. No ha retornat ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà."; +$a->strings["Import"] = "Importar"; +$a->strings["Move account"] = "Moure el compte"; +$a->strings["You can import an account from another Friendica server."] = "Pots importar un compte d'un altre servidor 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."] = "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = "Arxiu del compte"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Visit %s's profile [%s]"] = "Visitar perfil de %s [%s]"; +$a->strings["Edit contact"] = "Editar contacte"; +$a->strings["Contacts who are not members of a group"] = "Contactes que no pertanyen a cap grup"; +$a->strings["Export account"] = "Exportar 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."] = "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. "; +$a->strings["Export all"] = "Exportar tot"; +$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)"] = "Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s'exporten)"; +$a->strings["Export personal data"] = "Exportar dades personals"; +$a->strings["Total invitation limit exceeded."] = "Limit d'invitacions excedit."; +$a->strings["%s : Not a valid email address."] = "%s : No es una adreça de correu vàlida"; +$a->strings["Please join us on Friendica"] = "Per favor, uneixi's a nosaltres en Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc."; +$a->strings["%s : Message delivery failed."] = "%s : Ha fallat l'entrega del missatge."; +$a->strings["%d message sent."] = array( + 0 => "%d missatge enviat", + 1 => "%d missatges enviats.", +); +$a->strings["You have no more invitations available"] = "No te més invitacions 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."] = "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica."; +$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."] = "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres."; +$a->strings["Send invitations"] = "Enviant Invitacions"; +$a->strings["Enter email addresses, one per line:"] = "Entri adreçes de correu, una per línia:"; +$a->strings["Your message:"] = "El teu missatge:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vostè haurà de proporcionar aquest codi d'invitació: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com"; +$a->strings["Submit"] = "Enviar"; +$a->strings["Files"] = "Arxius"; +$a->strings["Permission denied"] = "Permís denegat"; +$a->strings["Invalid profile identifier."] = "Identificador del perfil no vàlid."; +$a->strings["Profile Visibility Editor"] = "Editor de Visibilitat del Perfil"; +$a->strings["Click on a contact to add or remove."] = "Clicar sobre el contacte per afegir o esborrar."; +$a->strings["Visible To"] = "Visible Per"; +$a->strings["All Contacts (with secure profile access)"] = "Tots els Contactes (amb accés segur al perfil)"; +$a->strings["Tag removed"] = "Etiqueta eliminada"; +$a->strings["Remove Item Tag"] = "Esborrar etiqueta del element"; +$a->strings["Select a tag to remove: "] = "Selecciona etiqueta a esborrar:"; +$a->strings["Remove"] = "Esborrar"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = "No es troben pàgines potencialment delegades."; +$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."] = "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament."; +$a->strings["Existing Page Managers"] = "Actuals Administradors de Pàgina"; +$a->strings["Existing Page Delegates"] = "Actuals Delegats de Pàgina"; +$a->strings["Potential Delegates"] = "Delegats Potencials"; +$a->strings["Add"] = "Afegir"; +$a->strings["No entries."] = "Sense entrades"; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- seleccionar -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s esta seguint %2\$s de %3\$s"; +$a->strings["Item not available."] = "Element no disponible"; +$a->strings["Item was not found."] = "Element no trobat."; +$a->strings["You must be logged in to use addons. "] = "T'has d'identificar per emprar els complements"; +$a->strings["Applications"] = "Aplicacions"; +$a->strings["No installed applications."] = "Aplicacions no instal·lades."; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = "Benvingut a Friendica"; +$a->strings["New Member Checklist"] = "Llista de Verificació dels Nous Membres"; +$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."] = "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci."; +$a->strings["Getting Started"] = "Començem"; +$a->strings["Friendica Walk-Through"] = "Paseja per 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."] = "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te."; +$a->strings["Go to Your Settings"] = "Anar als Teus Ajustos"; +$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."] = "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure."; +$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."] = "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li."; +$a->strings["Upload Profile Photo"] = "Pujar Foto del Perfil"; +$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."] = "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan."; +$a->strings["Edit Your Profile"] = "Editar el Teu Perfil"; +$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."] = "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts."; +$a->strings["Profile Keywords"] = "Paraules clau del Perfil"; +$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."] = "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats."; +$a->strings["Connecting"] = "Connectant"; +$a->strings["Importing Emails"] = "Important Emails"; +$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"] = "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email"; +$a->strings["Go to Your Contacts Page"] = "Anar a la Teva Pàgina de Contactes"; +$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 seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte."; +$a->strings["Go to Your Site's Directory"] = "Anar al Teu Directori"; +$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 pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita."; +$a->strings["Finding New People"] = "Trobar Gent Nova"; +$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."] = "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores."; +$a->strings["Group Your Contacts"] = "Agrupar els Teus Contactes"; +$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."] = "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa."; +$a->strings["Why Aren't My Posts Public?"] = "Per que no es public el meu enviament?"; +$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 respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt."; +$a->strings["Getting Help"] = "Demanant Ajuda"; +$a->strings["Go to the Help Section"] = "Anar a la secció d'Ajuda"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos."; +$a->strings["Remove My Account"] = "Eliminar el Meu Compte"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable."; +$a->strings["Please enter your password for verification:"] = "Si us plau, introduïu la contrasenya per a la verificació:"; +$a->strings["Item not found"] = "Element no trobat"; +$a->strings["Edit post"] = "Editar Enviament"; +$a->strings["Time Conversion"] = "Temps de Conversió"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes"; +$a->strings["UTC time: %s"] = "hora UTC: %s"; +$a->strings["Current timezone: %s"] = "Zona horària actual: %s"; +$a->strings["Converted localtime: %s"] = "Conversión de hora local: %s"; +$a->strings["Please select your timezone:"] = "Si us plau, seleccioneu la vostra zona horària:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Grup creat."; +$a->strings["Could not create group."] = "No puc crear grup."; +$a->strings["Group not found."] = "Grup no trobat"; +$a->strings["Group name changed."] = "Nom de Grup canviat."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Crear un grup de contactes/amics."; +$a->strings["Group removed."] = "Grup esborrat."; +$a->strings["Unable to remove group."] = "Incapaç de esborrar Grup."; +$a->strings["Group Editor"] = "Editor de Grup:"; +$a->strings["Members"] = "Membres"; +$a->strings["All Contacts"] = "Tots els Contactes"; +$a->strings["Group is empty"] = "El Grup es buit"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat."; +$a->strings["No recipient selected."] = "No s'ha seleccionat destinatari."; +$a->strings["Unable to check your home location."] = "Incapaç de comprovar la localització."; +$a->strings["Message could not be sent."] = "El Missatge no ha estat enviat."; +$a->strings["Message collection failure."] = "Ha fallat la recollida del missatge."; +$a->strings["Message sent."] = "Missatge enviat."; +$a->strings["No recipient."] = "Sense destinatari."; +$a->strings["Send Private Message"] = "Enviant Missatge Privat"; +$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 vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts."; +$a->strings["To:"] = "Per a:"; +$a->strings["Subject:"] = "Assumpte::"; +$a->strings["link"] = "enllaç"; +$a->strings["Authorize application connection"] = "Autoritzi la connexió de aplicacions"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torni a la seva aplicació i inserti aquest Codi de Seguretat:"; +$a->strings["Please login to continue."] = "Per favor, accedeixi per a continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?"; +$a->strings["No"] = "No"; +$a->strings["Source (bbcode) text:"] = "Text Codi (bbcode): "; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Font (Diaspora) Convertir text a BBcode"; +$a->strings["Source input: "] = "Entrada de Codi:"; +$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): "] = "Font d'entrada (format de Diaspora)"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s benvingut %2\$s"; +$a->strings["Unable to locate contact information."] = "No es pot trobar informació de contacte."; +$a->strings["Do you really want to delete this message?"] = "Realment vols esborrar aquest missatge?"; +$a->strings["Message deleted."] = "Missatge eliminat."; +$a->strings["Conversation removed."] = "Conversació esborrada."; +$a->strings["No messages."] = "Sense missatges."; +$a->strings["Message not available."] = "Missatge no disponible."; +$a->strings["Delete message"] = "Esborra missatge"; +$a->strings["Delete conversation"] = "Esborrar conversació"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent."; +$a->strings["Send Reply"] = "Enviar Resposta"; +$a->strings["Unknown sender - %s"] = "remitent desconegut - %s"; +$a->strings["You and %s"] = "Tu i %s"; +$a->strings["%s and You"] = "%s i Tu"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d missatge", + 1 => "%d missatges", +); +$a->strings["Manage Identities and/or Pages"] = "Administrar Identitats i/o Pàgines"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\""; +$a->strings["Select an identity to manage: "] = "Seleccionar identitat a administrar:"; +$a->strings["Contact settings applied."] = "Ajustos de Contacte aplicats."; +$a->strings["Contact update failed."] = "Fracassà l'actualització de Contacte"; +$a->strings["Contact not found."] = "Contacte no trobat"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTÈNCIA: Això és molt avançat i si s'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = "Tornar al editor de contactes"; +$a->strings["Refetch contact data"] = ""; +$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["Name"] = "Nom"; +$a->strings["Account Nickname"] = "Àlies del Compte"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - té prel·lació sobre Nom/Àlies"; +$a->strings["Account URL"] = "Adreça URL del Compte"; +$a->strings["Friend Request URL"] = "Adreça URL de sol·licitud d'Amistat"; +$a->strings["Friend Confirm URL"] = "Adreça URL de confirmació d'Amic"; +$a->strings["Notification Endpoint URL"] = "Adreça URL de Notificació"; +$a->strings["Poll/Feed URL"] = "Adreça de Enquesta/Alimentador"; +$a->strings["New photo from this URL"] = "Nova foto d'aquesta URL"; +$a->strings["No such group"] = "Cap grup com"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = "L'entrada fou editada"; +$a->strings["%d comment"] = array( + 0 => "%d comentari", + 1 => "%d comentaris", +); +$a->strings["Private Message"] = "Missatge Privat"; +$a->strings["I like this (toggle)"] = "M'agrada això (canviar)"; +$a->strings["like"] = "Agrada"; +$a->strings["I don't like this (toggle)"] = "No m'agrada això (canviar)"; +$a->strings["dislike"] = "Desagrada"; +$a->strings["Share this"] = "Compartir això"; +$a->strings["share"] = "Compartir"; +$a->strings["This is you"] = "Aquest ets tu"; +$a->strings["Comment"] = "Comentari"; +$a->strings["Bold"] = "Negreta"; +$a->strings["Italic"] = "Itallica"; +$a->strings["Underline"] = "Subratllat"; +$a->strings["Quote"] = "Cometes"; +$a->strings["Code"] = "Codi"; +$a->strings["Image"] = "Imatge"; +$a->strings["Link"] = "Enllaç"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Editar"; +$a->strings["add star"] = "Afegir a favorits"; +$a->strings["remove star"] = "Esborrar favorit"; +$a->strings["toggle star status"] = "Canviar estatus de favorit"; +$a->strings["starred"] = "favorit"; +$a->strings["add tag"] = "afegir etiqueta"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "guardat a la carpeta"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Mur-a-Mur"; +$a->strings["via Wall-To-Wall:"] = "via Mur-a-Mur"; +$a->strings["Friend suggestion sent."] = "Enviat suggeriment d'amic."; +$a->strings["Suggest Friends"] = "Suggerir Amics"; +$a->strings["Suggest a friend for %s"] = "Suggerir un amic per a %s"; +$a->strings["Mood"] = "Humor"; +$a->strings["Set your current mood and tell your friends"] = "Ajusta el teu actual estat d'ànim i comenta-ho als amics"; +$a->strings["Poke/Prod"] = "Atia/Punxa"; +$a->strings["poke, prod or do other things to somebody"] = "Atiar, punxar o fer altres coses a algú"; +$a->strings["Recipient"] = "Recipient"; +$a->strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el contenidor"; +$a->strings["Make this post private"] = "Fes aquest missatge privat"; +$a->strings["Image uploaded but image cropping failed."] = "Imatge pujada però no es va poder retallar."; +$a->strings["Image size reduction [%s] failed."] = "La reducció de la imatge [%s] va fracassar."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament."; +$a->strings["Unable to process image"] = "No es pot processar la imatge"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Incapaç de processar la imatge."; +$a->strings["Upload File:"] = "Pujar arxiu:"; +$a->strings["Select a profile:"] = "Tria un perfil:"; +$a->strings["Upload"] = "Pujar"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "saltar aquest pas"; +$a->strings["select a photo from your photo albums"] = "tria una foto dels teus àlbums"; +$a->strings["Crop Image"] = "retallar imatge"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Per favor, ajusta la retallada d'imatge per a una optima visualització."; +$a->strings["Done Editing"] = "Edició Feta"; +$a->strings["Image uploaded successfully."] = "Carregada de la imatge amb èxit."; +$a->strings["Image upload failed."] = "Actualització de la imatge fracassada."; +$a->strings["Account approved."] = "Compte aprovat."; +$a->strings["Registration revoked for %s"] = "Procés de Registre revocat per a %s"; +$a->strings["Please login."] = "Si us plau, ingressa."; +$a->strings["Invalid request identifier."] = "Sol·licitud d'identificació no vàlida."; +$a->strings["Discard"] = "Descartar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["Network Notifications"] = "Notificacions de la Xarxa"; +$a->strings["Personal Notifications"] = "Notificacions Personals"; +$a->strings["Home Notifications"] = "Notificacions d'Inici"; +$a->strings["Show Ignored Requests"] = "Mostra les Sol·licituds Ignorades"; +$a->strings["Hide Ignored Requests"] = "Amaga les Sol·licituds Ignorades"; +$a->strings["Notification type: "] = "Tipus de Notificació:"; +$a->strings["suggested by %s"] = "sugerit per %s"; +$a->strings["Hide this contact from others"] = "Amaga aquest contacte dels altres"; +$a->strings["Post a new friend activity"] = "Publica una activitat d'amic nova"; +$a->strings["if applicable"] = "si es pot aplicar"; +$a->strings["Approve"] = "Aprovar"; +$a->strings["Claims to be known to you: "] = "Diu que et coneix:"; +$a->strings["yes"] = "sí"; +$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: "] = ""; +$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"] = "Amic"; +$a->strings["Sharer"] = "Partícip"; +$a->strings["Fan/Admirer"] = "Fan/Admirador"; +$a->strings["Profile URL"] = ""; +$a->strings["No introductions."] = "Sense presentacions."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Perfil no trobat."; +$a->strings["Profile deleted."] = "Perfil esborrat."; +$a->strings["Profile-"] = "Perfil-"; +$a->strings["New profile created."] = "Nou perfil creat."; +$a->strings["Profile unavailable to clone."] = "No es pot clonar el perfil."; +$a->strings["Profile Name is required."] = "Nom de perfil requerit."; +$a->strings["Marital Status"] = "Estatus Marital"; +$a->strings["Romantic Partner"] = "Soci Romàntic"; +$a->strings["Work/Employment"] = "Treball/Ocupació"; +$a->strings["Religion"] = "Religió"; +$a->strings["Political Views"] = "Idees Polítiques"; +$a->strings["Gender"] = "Gènere"; +$a->strings["Sexual Preference"] = "Preferència sexual"; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = "Inici"; +$a->strings["Interests"] = "Interesos"; +$a->strings["Address"] = "Adreça"; +$a->strings["Location"] = "Ubicació"; +$a->strings["Profile updated."] = "Perfil actualitzat."; +$a->strings[" and "] = " i "; +$a->strings["public profile"] = "perfil públic"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s s'ha canviat de %2\$s a “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s de %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s te una actualització %2\$s, canviant %3\$s."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Amaga la llista de contactes/amics en la vista d'aquest perfil?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Editor de Detalls del Perfil"; +$a->strings["Change Profile Photo"] = "Canviar la Foto del Perfil"; +$a->strings["View this profile"] = "Veure aquest perfil"; +$a->strings["Create a new profile using these settings"] = "Crear un nou perfil amb aquests ajustos"; +$a->strings["Clone this profile"] = "Clonar aquest perfil"; +$a->strings["Delete this profile"] = "Esborrar aquest perfil"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Gènere:"; +$a->strings[" Marital Status:"] = " Estat Civil:"; +$a->strings["Example: fishing photography software"] = "Exemple: pesca fotografia programari"; +$a->strings["Profile Name:"] = "Nom de Perfil:"; +$a->strings["Required"] = "Requerit"; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Aquest és el teu perfil públic.
                                              El qual pot ser visible per qualsevol qui faci servir Internet."; +$a->strings["Your Full Name:"] = "El Teu Nom Complet."; +$a->strings["Title/Description:"] = "Títol/Descripció:"; +$a->strings["Street Address:"] = "Direcció:"; +$a->strings["Locality/City:"] = "Localitat/Ciutat:"; +$a->strings["Region/State:"] = "Regió/Estat:"; +$a->strings["Postal/Zip Code:"] = "Codi Postal:"; +$a->strings["Country:"] = "País"; +$a->strings["Who: (if applicable)"] = "Qui? (si és aplicable)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Des de [data]"; +$a->strings["Tell us about yourself..."] = "Parla'ns de tú....."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Pàgina web URL:"; +$a->strings["Religious Views:"] = "Creencies Religioses:"; +$a->strings["Public Keywords:"] = "Paraules Clau Públiques"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Emprat per suggerir potencials amics, Altres poden veure-ho)"; +$a->strings["Private Keywords:"] = "Paraules Clau Privades:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Emprat durant la cerca de perfils, mai mostrat a ningú)"; +$a->strings["Musical interests"] = "Gustos musicals"; +$a->strings["Books, literature"] = "Llibres, Literatura"; +$a->strings["Television"] = "Televisió"; +$a->strings["Film/dance/culture/entertainment"] = "Cinema/ball/cultura/entreteniments"; +$a->strings["Hobbies/Interests"] = "Aficions/Interessos"; +$a->strings["Love/romance"] = "Amor/sentiments"; +$a->strings["Work/employment"] = "Treball/ocupació"; +$a->strings["School/education"] = "Ensenyament/estudis"; +$a->strings["Contact information and Social Networks"] = "Informació de contacte i Xarxes Socials"; +$a->strings["Edit/Manage Profiles"] = "Editar/Gestionar Perfils"; +$a->strings["No friends to display."] = "No hi ha amics que mostrar"; +$a->strings["Access to this profile has been restricted."] = "L'accés a aquest perfil ha estat restringit."; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Previ"; +$a->strings["Next"] = "Següent"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Sense contactes en comú."; +$a->strings["Common Friends"] = "Amics Comuns"; +$a->strings["Not available."] = "No disponible."; +$a->strings["Global Directory"] = "Directori Global"; +$a->strings["Find on this site"] = "Trobat en aquest lloc"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Directori Local"; +$a->strings["No entries (some entries may be hidden)."] = "No hi ha entrades (algunes de les entrades poden estar amagades)."; +$a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; +$a->strings["No matches"] = "No hi ha coincidències"; +$a->strings["Item has been removed."] = "El element ha estat esborrat."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Títol d'esdeveniment i hora d'inici requerits."; +$a->strings["Create New Event"] = "Crear un nou esdeveniment"; +$a->strings["Event details"] = "Detalls del esdeveniment"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Inici d'Esdeveniment:"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/hora de finalització no es coneixen o no són relevants"; +$a->strings["Event Finishes:"] = "L'esdeveniment Finalitza:"; +$a->strings["Adjust for viewer timezone"] = "Ajustar a la zona horaria de l'espectador"; +$a->strings["Description:"] = "Descripció:"; +$a->strings["Title:"] = "Títol:"; +$a->strings["Share this event"] = "Compartir aquest esdeveniment"; +$a->strings["System down for maintenance"] = "Sistema apagat per manteniment"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat."; +$a->strings["is interested in:"] = "està interessat en:"; +$a->strings["Profile Match"] = "Perfil Aconseguit"; +$a->strings["Tips for New Members"] = "Consells per a nous membres"; +$a->strings["Do you really want to delete this suggestion?"] = "Realment vols esborrar aquest suggeriment?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores."; +$a->strings["Ignore/Hide"] = "Ignorar/Amagar"; +$a->strings["[Embedded content - reload page to view]"] = "[Contingut embegut - recarrega la pàgina per a veure-ho]"; +$a->strings["Recent Photos"] = "Fotos Recents"; +$a->strings["Upload New Photos"] = "Actualitzar Noves Fotos"; +$a->strings["everybody"] = "tothom"; +$a->strings["Contact information unavailable"] = "Informació del Contacte no disponible"; +$a->strings["Album not found."] = "Àlbum no trobat."; +$a->strings["Delete Album"] = "Eliminar Àlbum"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Realment vols esborrar aquest album de fotos amb totes les fotos?"; +$a->strings["Delete Photo"] = "Eliminar Foto"; +$a->strings["Do you really want to delete this photo?"] = "Realment vols esborrar aquesta foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fou etiquetat a %2\$s per %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image file is empty."] = "El fitxer de imatge és buit."; +$a->strings["No photos selected"] = "No s'han seleccionat fotos"; +$a->strings["Access to this item is restricted."] = "L'accés a aquest element està restringit."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos."; +$a->strings["Upload Photos"] = "Carregar Fotos"; +$a->strings["New album name: "] = "Nou nom d'àlbum:"; +$a->strings["or existing album name: "] = "o nom d'àlbum existent:"; +$a->strings["Do not show a status post for this upload"] = "No tornis a mostrar un missatge d'estat d'aquesta pujada"; +$a->strings["Show to Groups"] = "Mostrar en Grups"; +$a->strings["Show to Contacts"] = "Mostrar a Contactes"; +$a->strings["Private Photo"] = "Foto Privada"; +$a->strings["Public Photo"] = "Foto Pública"; +$a->strings["Edit Album"] = "Editar Àlbum"; +$a->strings["Show Newest First"] = "Mostrar el més Nou Primer"; +$a->strings["Show Oldest First"] = "Mostrar el més Antic Primer"; +$a->strings["View Photo"] = "Veure Foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permís denegat. L'accés a aquest element pot estar restringit."; +$a->strings["Photo not available"] = "Foto no disponible"; +$a->strings["View photo"] = "Veure foto"; +$a->strings["Edit photo"] = "Editar foto"; +$a->strings["Use as profile photo"] = "Emprar com a foto del perfil"; +$a->strings["View Full Size"] = "Veure'l a Mida Completa"; +$a->strings["Tags: "] = "Etiquetes:"; +$a->strings["[Remove any tag]"] = "Treure etiquetes"; +$a->strings["New album name"] = "Nou nom d'àlbum"; +$a->strings["Caption"] = "Títol"; +$a->strings["Add a Tag"] = "Afegir una etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Rotar CW (dreta)"; +$a->strings["Rotate CCW (left)"] = "Rotar CCW (esquerra)"; +$a->strings["Private photo"] = "Foto Privada"; +$a->strings["Public photo"] = "Foto pública"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Veure Àlbum"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "El seu registre no pot ser processat."; +$a->strings["Your registration is pending approval by the site owner."] = "El seu registre està pendent d'aprovació pel propietari del lloc."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements."; +$a->strings["Your OpenID (optional): "] = "El seu OpenID (opcional):"; +$a->strings["Include your profile in member directory?"] = "Incloc el seu perfil al directori de membres?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Lloc accesible mitjançant invitació."; +$a->strings["Your invitation ID: "] = "El teu ID de invitació:"; +$a->strings["Registration"] = "Procés de Registre"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "La Seva Adreça de Correu:"; +$a->strings["New Password:"] = "Nova Contrasenya:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Confirmar:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@\$sitename'."; +$a->strings["Choose a nickname: "] = "Tria un àlies:"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Account"] = "Compte"; +$a->strings["Additional features"] = "Característiques Adicionals"; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Connected apps"] = "App connectada"; +$a->strings["Remove account"] = "Esborrar compte"; +$a->strings["Missing some important data!"] = "Perdudes algunes dades importants!"; +$a->strings["Update"] = "Actualitzar"; +$a->strings["Failed to connect with email account using the settings provided."] = "Connexió fracassada amb el compte de correu emprant la configuració proveïda."; +$a->strings["Email settings updated."] = "Configuració del correu electrònic actualitzada."; +$a->strings["Features updated"] = "Característiques actualitzades"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "No es permeten contasenyes buides. Contrasenya no canviada"; +$a->strings["Wrong password."] = "Contrasenya errònia"; +$a->strings["Password changed."] = "Contrasenya canviada."; +$a->strings["Password update failed. Please try again."] = "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou."; +$a->strings[" Please use a shorter name."] = "Si us plau, faci servir un nom més curt."; +$a->strings[" Name too short."] = "Nom massa curt."; +$a->strings["Wrong Password"] = "Contrasenya Errònia"; +$a->strings[" Not valid email."] = "Correu no vàlid."; +$a->strings[" Cannot change to that email."] = "No puc canviar a aquest correu."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup."; +$a->strings["Settings updated."] = "Ajustos actualitzats."; +$a->strings["Add application"] = "Afegir aplicació"; +$a->strings["Save Settings"] = ""; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Redirigir"; +$a->strings["Icon url"] = "icona de url"; +$a->strings["You can't edit this application."] = "No pots editar aquesta aplicació."; +$a->strings["Connected Apps"] = "Aplicacions conectades"; +$a->strings["Client key starts with"] = "Les claus de client comançen amb"; +$a->strings["No name"] = "Sense nom"; +$a->strings["Remove authorization"] = "retirar l'autorització"; +$a->strings["No Plugin settings configured"] = "No s'han configurat ajustos de Plugin"; +$a->strings["Plugin Settings"] = "Ajustos de Plugin"; +$a->strings["Off"] = "Apagat"; +$a->strings["On"] = "Engegat"; +$a->strings["Additional Features"] = "Característiques Adicionals"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "El suport integrat per a la connectivitat de %s és %s"; +$a->strings["enabled"] = "habilitat"; +$a->strings["disabled"] = "deshabilitat"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "L'accés al correu està deshabilitat en aquest lloc."; +$a->strings["Email/Mailbox Setup"] = "Preparació de Correu/Bústia"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia."; +$a->strings["Last successful email check:"] = "Última comprovació de correu amb èxit:"; +$a->strings["IMAP server name:"] = "Nom del servidor IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Seguretat:"; +$a->strings["None"] = "Cap"; +$a->strings["Email login name:"] = "Nom d'usuari del correu"; +$a->strings["Email password:"] = "Contrasenya del correu:"; +$a->strings["Reply-to address:"] = "Adreça de resposta:"; +$a->strings["Send public posts to all email contacts:"] = "Enviar correu públic a tots els contactes del correu:"; +$a->strings["Action after import:"] = "Acció després d'importar:"; +$a->strings["Move to folder"] = "Moure a la carpeta"; +$a->strings["Move to folder:"] = "Moure a la carpeta:"; +$a->strings["No special theme for mobile devices"] = "No hi ha un tema específic per a mòbil"; +$a->strings["Display Settings"] = "Ajustos de Pantalla"; +$a->strings["Display Theme:"] = "Visualitzar el Tema:"; +$a->strings["Mobile Theme:"] = "Tema Mobile:"; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Actualitzar navegador cada xx segons"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = "Número d'elements a mostrar per pàgina"; +$a->strings["Maximum of 100 items"] = "Màxim de 100 elements"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:"; +$a->strings["Don't show emoticons"] = "No mostrar emoticons"; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; $a->strings["Theme settings"] = "Configuració de Temes"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Ajusteu el nivell de canvi de mida d'imatges en els missatges i comentaris ( amplada i alçada"; -$a->strings["Set font-size for posts and comments"] = "Canvia la mida del tipus de lletra per enviaments i comentaris"; -$a->strings["Set theme width"] = "Ajustar l'ample del tema"; -$a->strings["Color scheme"] = "Esquema de colors"; -$a->strings["Set line-height for posts and comments"] = "Canvia l'espaiat de línia per enviaments i comentaris"; -$a->strings["Set colour scheme"] = "Establir l'esquema de color"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = "Pàgina Normal del Compte "; +$a->strings["This account is a normal personal profile"] = "Aques compte es un compte personal normal"; +$a->strings["Soapbox Page"] = "Pàgina de Soapbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura."; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = "Compte d'Amistat Automàtica"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament"; +$a->strings["Private Forum [Experimental]"] = "Fòrum Privat [Experimental]"; +$a->strings["Private forum - approved members only"] = "Fòrum privat - Només membres aprovats"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte."; +$a->strings["Publish your default profile in your local site directory?"] = "Publicar el teu perfil predeterminat en el directori del lloc local?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publicar el teu perfil predeterminat al directori social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?"; +$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?"] = "Permet als amics publicar en la seva pàgina de perfil?"; +$a->strings["Allow friends to tag your posts?"] = "Permet als amics d'etiquetar els teus missatges?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permeteu-nos suggerir-li com un amic potencial dels nous membres?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permetre a desconeguts enviar missatges al teu correu privat?"; +$a->strings["Profile is not published."] = "El Perfil no està publicat."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Després de aquests nombre de dies, els missatges caduquen automàticament:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran"; +$a->strings["Advanced expiration settings"] = "Configuració avançada d'expiració"; +$a->strings["Advanced Expiration"] = "Expiració Avançada"; +$a->strings["Expire posts:"] = "Expiració d'enviaments"; +$a->strings["Expire personal notes:"] = "Expiració de notes personals"; +$a->strings["Expire starred posts:"] = "Expiració de enviaments de favorits"; +$a->strings["Expire photos:"] = "Expiració de fotos"; +$a->strings["Only expire posts by others:"] = "Només expiren els enviaments dels altres:"; +$a->strings["Account Settings"] = "Ajustos de Compte"; +$a->strings["Password Settings"] = "Ajustos de Contrasenya"; +$a->strings["Leave password fields blank unless changing"] = "Deixi els camps de contrasenya buits per a no fer canvis"; +$a->strings["Current Password:"] = "Contrasenya Actual:"; +$a->strings["Your current password to confirm the changes"] = "La teva actual contrasenya a fi de confirmar els canvis"; +$a->strings["Password:"] = "Contrasenya:"; +$a->strings["Basic Settings"] = "Ajustos Basics"; +$a->strings["Email Address:"] = "Adreça de Correu:"; +$a->strings["Your Timezone:"] = "La teva zona Horària:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Localització per Defecte del Missatge:"; +$a->strings["Use Browser Location:"] = "Ubicar-se amb el Navegador:"; +$a->strings["Security and Privacy Settings"] = "Ajustos de Seguretat i Privacitat"; +$a->strings["Maximum Friend Requests/Day:"] = "Nombre Màxim de Sol·licituds per Dia"; +$a->strings["(to prevent spam abuse)"] = "(per a prevenir abusos de spam)"; +$a->strings["Default Post Permissions"] = "Permisos de Correu per Defecte"; +$a->strings["(click to open/close)"] = "(clicar per a obrir/tancar)"; +$a->strings["Default Private Post"] = "Missatges Privats Per Defecte"; +$a->strings["Default Public Post"] = "Missatges Públics Per Defecte"; +$a->strings["Default Permissions for New Posts"] = "Permisos Per Defecte per a Nous Missatges"; +$a->strings["Maximum private messages per day from unknown people:"] = "Màxim nombre de missatges, per dia, de desconeguts:"; +$a->strings["Notification Settings"] = "Ajustos de Notificació"; +$a->strings["By default post a status message when:"] = "Enviar per defecte un missatge de estatus quan:"; +$a->strings["accepting a friend request"] = "Acceptar una sol·licitud d'amistat"; +$a->strings["joining a forum/community"] = "Unint-se a un fòrum/comunitat"; +$a->strings["making an interesting profile change"] = "fent un canvi al perfil"; +$a->strings["Send a notification email when:"] = "Envia un correu notificant quan:"; +$a->strings["You receive an introduction"] = "Has rebut una presentació"; +$a->strings["Your introductions are confirmed"] = "La teva presentació està confirmada"; +$a->strings["Someone writes on your profile wall"] = "Algú ha escrit en el teu mur de perfil"; +$a->strings["Someone writes a followup comment"] = "Algú ha escrit un comentari de seguiment"; +$a->strings["You receive a private message"] = "Has rebut un missatge privat"; +$a->strings["You receive a friend suggestion"] = "Has rebut una suggerencia d'un amic"; +$a->strings["You are tagged in a post"] = "Estàs etiquetat en un enviament"; +$a->strings["You are poked/prodded/etc. in a post"] = "Has estat Atiat/punxat/etc, en un enviament"; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Ajustos Avançats de Compte/ Pàgina"; +$a->strings["Change the behaviour of this account for special situations"] = "Canviar el comportament d'aquest compte en situacions especials"; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = "No s'han seleccionat vídeos "; +$a->strings["Recent Videos"] = "Videos Recents"; +$a->strings["Upload New Videos"] = "Carrega Nous Videos"; +$a->strings["Invalid request."] = ""; +$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 %s"] = ""; +$a->strings["File upload failed."] = "La càrrega de fitxers ha fallat."; +$a->strings["Theme settings updated."] = "Ajustos de Tema actualitzats"; +$a->strings["Site"] = "Lloc"; +$a->strings["Users"] = "Usuaris"; +$a->strings["Themes"] = "Temes"; +$a->strings["DB updates"] = "Actualitzacions de BD"; +$a->strings["Inspect Queue"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = "Registres"; +$a->strings["View Logs"] = ""; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = "Característiques del Plugin"; +$a->strings["diagnostics"] = ""; +$a->strings["User registrations waiting for confirmation"] = "Registre d'usuari a l'espera de confirmació"; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Administration"] = "Administració"; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Compte Normal"; +$a->strings["Soapbox Account"] = "Compte Tribuna"; +$a->strings["Community/Celebrity Account"] = "Compte de Comunitat/Celebritat"; +$a->strings["Automatic Friend Account"] = "Compte d'Amistat Automàtic"; +$a->strings["Blog Account"] = "Compte de Blog"; +$a->strings["Private Forum"] = "Fòrum Privat"; +$a->strings["Message queues"] = "Cues de missatges"; +$a->strings["Summary"] = "Sumari"; +$a->strings["Registered users"] = "Usuaris registrats"; +$a->strings["Pending registrations"] = "Registres d'usuari pendents"; +$a->strings["Version"] = "Versió"; +$a->strings["Active plugins"] = "Plugins actius"; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["Site settings updated."] = "Ajustos del lloc actualitzats."; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["Never"] = "Mai"; +$a->strings["At post arrival"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = ""; +$a->strings["Three months"] = ""; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = ""; +$a->strings["Multi user instance"] = "Instancia multiusuari"; +$a->strings["Closed"] = "Tancat"; +$a->strings["Requires approval"] = "Requereix aprovació"; +$a->strings["Open"] = "Obert"; +$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL"; +$a->strings["Force all links to use SSL"] = "Forzar a tots els enllaços a utilitzar SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)"; +$a->strings["File upload"] = "Fitxer carregat"; +$a->strings["Policies"] = "Polítiques"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "Rendiment"; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "Nom del lloc"; +$a->strings["Host name"] = ""; +$a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = "Senyera/Logo"; +$a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = "Idioma del Sistema"; +$a->strings["System theme"] = "Tema del sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema"; +$a->strings["Mobile system theme"] = "Tema per a mòbil"; +$a->strings["Theme for mobile devices"] = "Tema per a aparells mòbils"; +$a->strings["SSL link policy"] = "Política SSL per als enllaços"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si els enllaços generats han de ser forçats a utilitzar 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["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = "Amaga l'entrada d'ajuda del menu de navegació"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Amaga l'entrada del menú de les pàgines d'ajuda. Pots encara accedir entrant /ajuda directament."; +$a->strings["Single user instance"] = "Instancia per a un únic usuari"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat"; +$a->strings["Maximum image size"] = "Mida màxima de les imatges"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits."; +$a->strings["Maximum image length"] = "Maxima longitud d'imatge"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits"; +$a->strings["JPEG image quality"] = "Qualitat per a la imatge JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat."; +$a->strings["Register policy"] = "Política per a registrar"; +$a->strings["Maximum Daily Registrations"] = "Registres Màxims Diaris"; +$a->strings["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."] = "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes."; +$a->strings["Register text"] = "Text al registrar"; +$a->strings["Will be displayed prominently on the registration page."] = "Serà mostrat de forma preminent a la pàgina durant el procés de registre."; +$a->strings["Accounts abandoned after x days"] = "Comptes abandonats després de x dies"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal."; +$a->strings["Allowed friend domains"] = "Dominis amics permesos"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."; +$a->strings["Allowed email domains"] = "Dominis de correu permesos"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."; +$a->strings["Block public"] = "Bloqueig públic"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat."; +$a->strings["Force publish"] = "Forçar publicació"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc."; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = "Permetre fils als articles"; +$a->strings["Allow infinite level threading for items on this site."] = "Permet un nivell infinit de fils per a articles en aquest lloc."; +$a->strings["Private posts by default for new users"] = "Els enviaments dels nous usuaris seran privats per defecte."; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Canviar els permisos d'enviament per defecte per a tots els nous membres a grup privat en lloc de públic."; +$a->strings["Don't include post content in email notifications"] = "No incloure el assumpte a les notificacions per correu electrónic"; +$a->strings["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."] = "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. "; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Deshabilita el accés públic als complements llistats al menu d'aplicacions"; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcant això restringiras els complements llistats al menú d'aplicacions al membres"; +$a->strings["Don't embed private images in posts"] = "No incrustar imatges en missatges privats"; +$a->strings["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."] = "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps."; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["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."] = ""; +$a->strings["Block multiple registrations"] = "Bloquejar multiples registracions"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines."; +$a->strings["OpenID support"] = "Suport per a OpenID"; +$a->strings["OpenID support for registration and logins."] = "Suport per a registre i validació a OpenID."; +$a->strings["Fullname check"] = "Comprobació de nom complet"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam"; +$a->strings["UTF-8 Regular expressions"] = "expresions regulars UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Empri expresions regulars de PHP amb format 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["Enable OStatus support"] = "Activa el suport per a 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."] = ""; +$a->strings["OStatus conversation completion interval"] = "Interval de conclusió de la conversació a OStatus"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball."; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = "Habilitar suport per Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Proveeix compatibilitat integrada amb la xarxa Diaspora"; +$a->strings["Only allow Friendica contacts"] = "Només permetre contactes de Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tots els contactes "; +$a->strings["Verify SSL"] = "Verificar SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats."; +$a->strings["Proxy user"] = "proxy d'usuari"; +$a->strings["Proxy URL"] = "URL del proxy"; +$a->strings["Network timeout"] = "Temps excedit a la xarxa"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segons. Canviat a 0 es sense límits (no recomenat)"; +$a->strings["Delivery interval"] = "Interval d'entrega"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats."; +$a->strings["Poll interval"] = "Interval entre sondejos"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. "; +$a->strings["Maximum Load Average"] = "Càrrega Màxima Sostinguda"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Use MySQL full text engine"] = "Emprar el motor de text complet de MySQL"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters."; +$a->strings["Suppress Language"] = ""; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = "Camí cap a la caché de l'article"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = "Duració de la caché en segons"; +$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."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Path for lock file"] = "Camí per a l'arxiu bloquejat"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; +$a->strings["Temp path"] = "Camí a carpeta temporal"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = "Trajectoria base per a instal·lar"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$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["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = "L'actualització ha estat marcada amb èxit"; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = "L'actualització de %s es va aplicar amb èxit."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit."; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "No hi ha actualitzacions fallides."; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = "Actualitzacions Fallides"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus."; +$a->strings["Mark success (if update was manually applied)"] = "Marcat am èxit (si l'actualització es va fer manualment)"; +$a->strings["Attempt to execute this update step automatically"] = "Intentant executar aquest pas d'actualització automàticament"; +$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["%s user blocked/unblocked"] = array( + 0 => "%s usuari bloquejar/desbloquejar", + 1 => "%s usuaris bloquejar/desbloquejar", +); +$a->strings["%s user deleted"] = array( + 0 => "%s usuari esborrat", + 1 => "%s usuaris esborrats", +); +$a->strings["User '%s' deleted"] = "Usuari %s' esborrat"; +$a->strings["User '%s' unblocked"] = "Usuari %s' desbloquejat"; +$a->strings["User '%s' blocked"] = "L'usuari '%s' és bloquejat"; +$a->strings["Register date"] = "Data de registre"; +$a->strings["Last login"] = "Últim accés"; +$a->strings["Last item"] = "Últim element"; +$a->strings["Add User"] = ""; +$a->strings["select all"] = "Seleccionar tot"; +$a->strings["User registrations waiting for confirm"] = "Registre d'usuari esperant confirmació"; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = "Data de sol·licitud"; +$a->strings["No registrations."] = "Sense registres."; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = "Denegar"; +$a->strings["Block"] = "Bloquejar"; +$a->strings["Unblock"] = "Desbloquejar"; +$a->strings["Site admin"] = "Administrador del lloc"; +$a->strings["Account expired"] = "Compte expirat"; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"; +$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'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = "Plugin %s deshabilitat."; +$a->strings["Plugin %s enabled."] = "Plugin %s habilitat."; +$a->strings["Disable"] = "Deshabilitar"; +$a->strings["Enable"] = "Habilitar"; +$a->strings["Toggle"] = "Canviar"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Responsable:"; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = "No s'ha trobat temes."; +$a->strings["Screenshot"] = "Captura de pantalla"; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[No soportat]"; +$a->strings["Log settings updated."] = "Configuració del registre actualitzada."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = "Netejar"; +$a->strings["Enable Debugging"] = "Habilitar Depuració"; +$a->strings["Log file"] = "Arxiu de registre"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior."; +$a->strings["Log level"] = "Nivell de transcripció"; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", +); +$a->strings["Could not access contact record."] = "No puc accedir al registre del contacte."; +$a->strings["Could not locate selected profile."] = "No puc localitzar el perfil seleccionat."; +$a->strings["Contact updated."] = "Contacte actualitzat."; +$a->strings["Failed to update contact record."] = "Error en actualitzar registre de contacte."; +$a->strings["Contact has been blocked"] = "Elcontacte ha estat bloquejat"; +$a->strings["Contact has been unblocked"] = "El contacte ha estat desbloquejat"; +$a->strings["Contact has been ignored"] = "El contacte ha estat ignorat"; +$a->strings["Contact has been unignored"] = "El contacte ha estat recordat"; +$a->strings["Contact has been archived"] = "El contacte ha estat arxivat"; +$a->strings["Contact has been unarchived"] = "El contacte ha estat desarxivat"; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Realment vols esborrar aquest contacte?"; +$a->strings["Contact has been removed."] = "El contacte ha estat tret"; +$a->strings["You are mutual friends with %s"] = "Ara te una amistat mutua amb %s"; +$a->strings["You are sharing with %s"] = "Estas compartint amb %s"; +$a->strings["%s is sharing with you"] = "%s esta compartint amb tú"; +$a->strings["Private communications are not available for this contact."] = "Comunicacions privades no disponibles per aquest contacte."; +$a->strings["(Update was successful)"] = "(L'actualització fou exitosa)"; +$a->strings["(Update was not successful)"] = "(L'actualització fracassà)"; +$a->strings["Suggest friends"] = "Suggerir amics"; +$a->strings["Network type: %s"] = "Xarxa tipus: %s"; +$a->strings["Communications lost with this contact!"] = "La comunicació amb aquest contacte s'ha perdut!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Perfil de Visibilitat"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura."; +$a->strings["Contact Information / Notes"] = "Informació/Notes del contacte"; +$a->strings["Edit contact notes"] = "Editar notes de contactes"; +$a->strings["Block/Unblock contact"] = "Bloquejar/Alliberar contacte"; +$a->strings["Ignore contact"] = "Ignore contacte"; +$a->strings["Repair URL settings"] = "Restablir configuració de URL"; +$a->strings["View conversations"] = "Veient conversacions"; +$a->strings["Last update:"] = "Última actualització:"; +$a->strings["Update public posts"] = "Actualitzar enviament públic"; +$a->strings["Update now"] = "Actualitza ara"; +$a->strings["Unignore"] = "Treure d'Ignorats"; +$a->strings["Currently blocked"] = "Bloquejat actualment"; +$a->strings["Currently ignored"] = "Ignorat actualment"; +$a->strings["Currently archived"] = "Actualment arxivat"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Répliques/agraiments per als teus missatges públics poden romandre visibles"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Suggeriments"; +$a->strings["Suggest potential friends"] = "Suggerir amics potencials"; +$a->strings["Show all contacts"] = "Mostrar tots els contactes"; +$a->strings["Unblocked"] = "Desblocat"; +$a->strings["Only show unblocked contacts"] = "Mostrar únicament els contactes no blocats"; +$a->strings["Blocked"] = "Blocat"; +$a->strings["Only show blocked contacts"] = "Mostrar únicament els contactes blocats"; +$a->strings["Ignored"] = "Ignorat"; +$a->strings["Only show ignored contacts"] = "Mostrar únicament els contactes ignorats"; +$a->strings["Archived"] = "Arxivat"; +$a->strings["Only show archived contacts"] = "Mostrar únicament els contactes arxivats"; +$a->strings["Hidden"] = "Amagat"; +$a->strings["Only show hidden contacts"] = "Mostrar únicament els contactes amagats"; +$a->strings["Search your contacts"] = "Cercant el seus contactes"; +$a->strings["Archive"] = "Arxivat"; +$a->strings["Unarchive"] = "Desarxivat"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Veure tots els contactes"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Ajustos Avançats per als Contactes"; +$a->strings["Mutual Friendship"] = "Amistat Mutua"; +$a->strings["is a fan of yours"] = "Es un fan teu"; +$a->strings["you are a fan of"] = "ets fan de"; +$a->strings["Toggle Blocked status"] = "Canvi de estatus blocat"; +$a->strings["Toggle Ignored status"] = "Canvi de estatus ignorat"; +$a->strings["Toggle Archive status"] = "Canvi de estatus del arxiu"; +$a->strings["Delete contact"] = "Esborrar contacte"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades."; +$a->strings["Response from remote site was not understood."] = "La resposta des del lloc remot no s'entenia."; +$a->strings["Unexpected response from remote site: "] = "Resposta inesperada de lloc remot:"; +$a->strings["Confirmation completed successfully."] = "La confirmació s'ha completat correctament."; +$a->strings["Remote site reported: "] = "El lloc remot informa:"; +$a->strings["Temporary failure. Please wait and try again."] = "Fallada temporal. Si us plau, espereu i torneu a intentar."; +$a->strings["Introduction failed or was revoked."] = "La presentació va fallar o va ser revocada."; +$a->strings["Unable to set contact photo."] = "No es pot canviar la foto de contacte."; +$a->strings["No user record found for '%s' "] = "No es troben registres d'usuari per a '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra clau de xifrat del lloc pel que sembla en mal estat."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres."; +$a->strings["Contact record was not found for you on our site."] = "No s'han trobat registres del contacte al nostre lloc."; +$a->strings["Site public key not available in contact record for URL %s."] = "la clau pública del lloc no disponible en les dades del contacte per URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou."; +$a->strings["Unable to set your contact credentials on our system."] = "No es pot canviar les seves credencials de contacte en el nostre sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s s'ha unit a %2\$s"; +$a->strings["This introduction has already been accepted."] = "Aquesta presentació ha estat acceptada."; +$a->strings["Profile location is not valid or does not contain profile information."] = "El perfil de situació no és vàlid o no contè informació de perfil"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Atenció: El perfil de situació no te nom de propietari identificable."; +$a->strings["Warning: profile location has no profile photo."] = "Atenció: El perfil de situació no te foto de perfil"; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d el paràmetre requerit no es va trobar al lloc indicat", + 1 => "%d els paràmetres requerits no es van trobar allloc indicat", +); +$a->strings["Introduction complete."] = "Completada la presentació."; +$a->strings["Unrecoverable protocol error."] = "Error de protocol irrecuperable."; +$a->strings["Profile unavailable."] = "Perfil no disponible"; +$a->strings["%s has received too many connection requests today."] = "%s avui ha rebut excesives peticions de connexió. "; +$a->strings["Spam protection measures have been invoked."] = "Mesures de protecció contra spam han estat invocades."; +$a->strings["Friends are advised to please try again in 24 hours."] = "S'aconsellà els amics que probin pasades 24 hores."; +$a->strings["Invalid locator"] = "Localitzador no vàlid"; +$a->strings["Invalid email address."] = "Adreça de correu no vàlida."; +$a->strings["This account has not been configured for email. Request failed."] = "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud."; +$a->strings["You have already introduced yourself here."] = "Has fer la teva presentació aquí."; +$a->strings["Apparently you are already friends with %s."] = "Aparentment, ja tens amistat amb %s"; +$a->strings["Invalid profile URL."] = "Perfil URL no vàlid."; +$a->strings["Your introduction has been sent."] = "La teva presentació ha estat enviada."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Si us plau, entri per confirmar la presentació."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["Hide this contact"] = "Amaga aquest contacte"; +$a->strings["Welcome home %s."] = "Benvingut de nou %s"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:"; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Sol·licitud d'Amistat"; +$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:"] = "Si us plau, contesti les següents preguntes:"; +$a->strings["Does %s know you?"] = "%s et coneix?"; +$a->strings["Add a personal note:"] = "Afegir una nota personal:"; +$a->strings["StatusNet/Federated Social Web"] = "Web Social StatusNet/Federated "; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora."; +$a->strings["Your Identity Address:"] = "La Teva Adreça Identificativa:"; +$a->strings["Submit Request"] = "Sol·licitud Enviada"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Contacte afegit"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Servidor de Comunicacions - Configuració"; +$a->strings["Could not connect to database."] = "No puc connectar a la base de dades."; +$a->strings["Could not create table."] = "No puc creat taula."; +$a->strings["Your Friendica site database has been installed."] = "La base de dades del teu lloc Friendica ha estat instal·lada."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Per favor, consulti l'arxiu \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Comprovació del Sistema"; +$a->strings["Check again"] = "Comprovi de nou"; +$a->strings["Database connection"] = "Conexió a la base de dades"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar."; +$a->strings["Database Server Name"] = "Nom del Servidor de base de Dades"; +$a->strings["Database Login Name"] = "Nom d'Usuari de la base de Dades"; +$a->strings["Database Login Password"] = "Contrasenya d'Usuari de la base de Dades"; +$a->strings["Database Name"] = "Nom de la base de Dades"; +$a->strings["Site administrator email address"] = "Adreça de correu del administrador del lloc"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web."; +$a->strings["Please select a default timezone for your website"] = "Per favor, seleccioni una zona horària per defecte per al seu lloc web"; +$a->strings["Site settings"] = "Configuracions del lloc"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "Direcció del executable PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació."; +$a->strings["Command line PHP"] = "Linia de comandos PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Trobada la versió PHP:"; +$a->strings["PHP cli binary"] = "PHP cli binari"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat."; +$a->strings["This is required for message delivery to work."] = "Això és necessari perquè funcioni el lliurament de missatges."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generar claus d'encripció"; +$a->strings["libCurl PHP module"] = "Mòdul libCurl de PHP"; +$a->strings["GD graphics PHP module"] = "Mòdul GD de gràfics de PHP"; +$a->strings["OpenSSL PHP module"] = "Mòdul OpenSSl de PHP"; +$a->strings["mysqli PHP module"] = "Mòdul mysqli de PHP"; +$a->strings["mb_string PHP module"] = "Mòdul mb_string de PHP"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul "; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El mòdul libCURL de PHP és necessari però no està instal·lat."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: El mòdul enssl de PHP és necessari però no està instal·lat."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El mòdul mysqli de PHP és necessari però no està instal·lat."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mòdul mb_string de PHP requerit però no instal·lat."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir."; +$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."] = "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible."; +$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."] = "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php és escribible"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 es escribible"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor."; +$a->strings["Url rewrite is working"] = "URL rewrite està treballant"; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web."; +$a->strings["

                                              What next

                                              "] = "

                                              Que es següent

                                              "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)"; +$a->strings["Unable to locate original post."] = "No es pot localitzar post original."; +$a->strings["Empty post discarded."] = "Buidat després de rebutjar."; +$a->strings["System error. Post not saved."] = "Error del sistema. Publicació no guardada."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica."; +$a->strings["You may visit them online at %s"] = "El pot visitar en línia a %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges."; +$a->strings["%s posted an update."] = "%s ha publicat una actualització."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", +); +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Els missatges privats a aquesta persona es troben en risc de divulgació pública."; +$a->strings["Invalid contact."] = "Contacte no vàlid."; +$a->strings["Commented Order"] = "Ordre dels Comentaris"; +$a->strings["Sort by Comment Date"] = "Ordenar per Data de Comentari"; +$a->strings["Posted Order"] = "Ordre dels Enviaments"; +$a->strings["Sort by Post Date"] = "Ordenar per Data d'Enviament"; +$a->strings["Posts that mention or involve you"] = "Missatge que et menciona o t'impliquen"; +$a->strings["New"] = "Nou"; +$a->strings["Activity Stream - by date"] = "Activitat del Flux - per data"; +$a->strings["Shared Links"] = "Enllaços Compartits"; +$a->strings["Interesting Links"] = "Enllaços Interesants"; +$a->strings["Starred"] = "Favorits"; +$a->strings["Favourite Posts"] = "Enviaments Favorits"; +$a->strings["{0} wants to be your friend"] = "{0} vol ser el teu amic"; +$a->strings["{0} sent you a message"] = "{0} t'ha enviat un missatge de"; +$a->strings["{0} requested registration"] = "{0} solicituts de registre"; +$a->strings["No contacts."] = "Sense Contactes"; +$a->strings["via"] = "via"; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; $a->strings["Alignment"] = "Adaptació"; $a->strings["Left"] = "Esquerra"; $a->strings["Center"] = "Centre"; +$a->strings["Color scheme"] = "Esquema de colors"; $a->strings["Posts font size"] = "Mida del text en enviaments"; $a->strings["Textareas font size"] = "mida del text en Areas de Text"; -$a->strings["Set resolution for middle column"] = "canvia la resolució per a la columna central"; -$a->strings["Set color scheme"] = "Canvia l'esquema de color"; -$a->strings["Set zoomfactor for Earth Layer"] = "Ajustar el factor de zoom de Earth Layers"; -$a->strings["Set longitude (X) for Earth Layers"] = "Ajustar longitud (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Ajustar latitud (Y) per Earth Layers"; -$a->strings["Community Pages"] = "Pàgines de la Comunitat"; -$a->strings["Earth Layers"] = "Earth Layers"; $a->strings["Community Profiles"] = "Perfils de Comunitat"; -$a->strings["Help or @NewHere ?"] = "Ajuda o @NouAqui?"; -$a->strings["Connect Services"] = "Serveis Connectats"; -$a->strings["Find Friends"] = "Trobar Amistats"; $a->strings["Last users"] = "Últims usuaris"; -$a->strings["Last photos"] = "Últimes fotos"; -$a->strings["Last likes"] = "Últims \"m'agrada\""; -$a->strings["Your contacts"] = "Els teus contactes"; -$a->strings["Your personal photos"] = "Les seves fotos personals"; +$a->strings["Find Friends"] = "Trobar Amistats"; $a->strings["Local Directory"] = "Directori Local"; -$a->strings["Set zoomfactor for Earth Layers"] = "Ajustar el factor de zoom per Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/amaga els marcs de la columna a ma dreta"; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = "Serveis Connectats"; +$a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = ""; +$a->strings["Community Pages"] = "Pàgines de la Comunitat"; +$a->strings["Help or @NewHere ?"] = "Ajuda o @NouAqui?"; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; @@ -1795,3 +2037,16 @@ $a->strings["darkzero"] = ""; $a->strings["comix"] = ""; $a->strings["slackr"] = ""; $a->strings["Variations"] = ""; +$a->strings["Delete this item?"] = "Esborrar aquest element?"; +$a->strings["show fewer"] = "Mostrar menys"; +$a->strings["Update %s failed. See error logs."] = "Actualització de %s fracassà. Mira el registre d'errors."; +$a->strings["Create a New Account"] = "Crear un Nou Compte"; +$a->strings["Password: "] = "Contrasenya:"; +$a->strings["Remember me"] = "Recorda'm ho"; +$a->strings["Or login using OpenID: "] = "O accedixi emprant OpenID:"; +$a->strings["Forgot your password?"] = "Oblidà la contrasenya?"; +$a->strings["Website Terms of Service"] = "Termes del Servei al Llocweb"; +$a->strings["terms of service"] = "termes del servei"; +$a->strings["Website Privacy Policy"] = "Política de Privacitat al Llocweb"; +$a->strings["privacy policy"] = "política de privacitat"; +$a->strings["toggle mobile"] = "canviar a mòbil"; diff --git a/view/lang/cs/messages.po b/view/lang/cs/messages.po index 84193cbcf..b5f46180a 100644 --- a/view/lang/cs/messages.po +++ b/view/lang/cs/messages.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-26 07:53+0200\n" -"PO-Revision-Date: 2015-08-29 12:37+0000\n" -"Last-Translator: michal_s \n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,5836 +20,6 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: mod/contacts.php:114 -#, 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:145 mod/contacts.php:340 -msgid "Could not access contact record." -msgstr "Nelze získat přístup k záznamu kontaktu." - -#: mod/contacts.php:159 -msgid "Could not locate selected profile." -msgstr "Nelze nalézt vybraný profil." - -#: mod/contacts.php:192 -msgid "Contact updated." -msgstr "Kontakt aktualizován." - -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Nepodařilo se aktualizovat kontakt." - -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 -#: 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/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 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:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5022 index.php:382 -msgid "Permission denied." -msgstr "Přístup odmítnut." - -#: mod/contacts.php:361 -msgid "Contact has been blocked" -msgstr "Kontakt byl zablokován" - -#: mod/contacts.php:361 -msgid "Contact has been unblocked" -msgstr "Kontakt byl odblokován" - -#: mod/contacts.php:372 -msgid "Contact has been ignored" -msgstr "Kontakt bude ignorován" - -#: mod/contacts.php:372 -msgid "Contact has been unignored" -msgstr "Kontakt přestal být ignorován" - -#: mod/contacts.php:384 -msgid "Contact has been archived" -msgstr "Kontakt byl archivován" - -#: mod/contacts.php:384 -msgid "Contact has been unarchived" -msgstr "Kontakt byl vrácen z archívu." - -#: mod/contacts.php:411 mod/contacts.php:767 -msgid "Do you really want to delete this contact?" -msgstr "Opravdu chcete smazat tento kontakt?" - -#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:210 -#: mod/settings.php:1063 mod/settings.php:1069 mod/settings.php:1077 -#: mod/settings.php:1081 mod/settings.php:1086 mod/settings.php:1092 -#: mod/settings.php:1098 mod/settings.php:1104 mod/settings.php:1130 -#: mod/settings.php:1131 mod/settings.php:1132 mod/settings.php:1133 -#: mod/settings.php:1134 mod/dfrn_request.php:845 mod/register.php:235 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4854 -msgid "Yes" -msgstr "Ano" - -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4857 -msgid "Cancel" -msgstr "Zrušit" - -#: mod/contacts.php:428 -msgid "Contact has been removed." -msgstr "Kontakt byl odstraněn." - -#: mod/contacts.php:466 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jste vzájemní přátelé s uživatelem %s" - -#: mod/contacts.php:470 -#, php-format -msgid "You are sharing with %s" -msgstr "Sdílíte s uživatelem %s" - -#: mod/contacts.php:475 -#, php-format -msgid "%s is sharing with you" -msgstr "uživatel %s sdílí s vámi" - -#: mod/contacts.php:495 -msgid "Private communications are not available for this contact." -msgstr "Soukromá komunikace není dostupná pro tento kontakt." - -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Nikdy" - -#: mod/contacts.php:502 -msgid "(Update was successful)" -msgstr "(Aktualizace byla úspěšná)" - -#: mod/contacts.php:502 -msgid "(Update was not successful)" -msgstr "(Aktualizace nebyla úspěšná)" - -#: mod/contacts.php:504 -msgid "Suggest friends" -msgstr "Navrhněte přátelé" - -#: mod/contacts.php:508 -#, php-format -msgid "Network type: %s" -msgstr "Typ sítě: %s" - -#: mod/contacts.php:511 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d sdílený kontakt" -msgstr[1] "%d sdílených kontaktů" -msgstr[2] "%d sdílených kontaktů" - -#: mod/contacts.php:516 -msgid "View all contacts" -msgstr "Zobrazit všechny kontakty" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Odblokovat" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Blokovat" - -#: mod/contacts.php:524 -msgid "Toggle Blocked status" -msgstr "Přepnout stav Blokováno" - -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -msgid "Unignore" -msgstr "Přestat ignorovat" - -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 -msgid "Ignore" -msgstr "Ignorovat" - -#: mod/contacts.php:531 -msgid "Toggle Ignored status" -msgstr "Přepnout stav Ignorováno" - -#: mod/contacts.php:536 mod/contacts.php:772 -msgid "Unarchive" -msgstr "Vrátit z archívu" - -#: mod/contacts.php:536 mod/contacts.php:772 -msgid "Archive" -msgstr "Archivovat" - -#: mod/contacts.php:539 -msgid "Toggle Archive status" -msgstr "Přepnout stav Archivováno" - -#: mod/contacts.php:543 -msgid "Repair" -msgstr "Opravit" - -#: mod/contacts.php:546 -msgid "Advanced Contact Settings" -msgstr "Pokročilé nastavení kontaktu" - -#: mod/contacts.php:553 -msgid "Communications lost with this contact!" -msgstr "Komunikace s tímto kontaktem byla ztracena!" - -#: mod/contacts.php:556 -msgid "Fetch further information for feeds" -msgstr "Načítat další informace pro kanál" - -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "Zakázáno" - -#: mod/contacts.php:557 -msgid "Fetch information" -msgstr "Načítat informace" - -#: mod/contacts.php:557 -msgid "Fetch information and keywords" -msgstr "Načítat informace a klíčová slova" - -#: mod/contacts.php:566 -msgid "Contact Editor" -msgstr "Editor kontaktu" - -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 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:56 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Odeslat" - -#: mod/contacts.php:569 -msgid "Profile Visibility" -msgstr "Viditelnost profilu" - -#: mod/contacts.php:570 -#, 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:571 -msgid "Contact Information / Notes" -msgstr "Kontaktní informace / poznámky" - -#: mod/contacts.php:572 -msgid "Edit contact notes" -msgstr "Editovat poznámky kontaktu" - -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Navštivte profil uživatele %s [%s]" - -#: mod/contacts.php:578 -msgid "Block/Unblock contact" -msgstr "Blokovat / Odblokovat kontakt" - -#: mod/contacts.php:579 -msgid "Ignore contact" -msgstr "Ignorovat kontakt" - -#: mod/contacts.php:580 -msgid "Repair URL settings" -msgstr "Opravit nastavení adresy URL " - -#: mod/contacts.php:581 -msgid "View conversations" -msgstr "Zobrazit konverzace" - -#: mod/contacts.php:583 -msgid "Delete contact" -msgstr "Odstranit kontakt" - -#: mod/contacts.php:587 -msgid "Last update:" -msgstr "Poslední aktualizace:" - -#: mod/contacts.php:589 -msgid "Update public posts" -msgstr "Aktualizovat veřejné příspěvky" - -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Aktualizovat" - -#: mod/contacts.php:598 -msgid "Currently blocked" -msgstr "V současnosti zablokováno" - -#: mod/contacts.php:599 -msgid "Currently ignored" -msgstr "V současnosti ignorováno" - -#: mod/contacts.php:600 -msgid "Currently archived" -msgstr "Aktuálně archivován" - -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" - -#: mod/contacts.php:601 -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:602 -msgid "Notification for new posts" -msgstr "Upozornění na nové příspěvky" - -#: mod/contacts.php:602 -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:605 -msgid "Blacklisted keywords" -msgstr "Zakázaná klíčová slova" - -#: mod/contacts.php:605 -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:612 -msgid "Profile URL" -msgstr "URL profilu" - -#: mod/contacts.php:658 -msgid "Suggestions" -msgstr "Doporučení" - -#: mod/contacts.php:661 -msgid "Suggest potential friends" -msgstr "Navrhnout potenciální přátele" - -#: mod/contacts.php:665 mod/group.php:192 -msgid "All Contacts" -msgstr "Všechny kontakty" - -#: mod/contacts.php:668 -msgid "Show all contacts" -msgstr "Zobrazit všechny kontakty" - -#: mod/contacts.php:672 -msgid "Unblocked" -msgstr "Odblokován" - -#: mod/contacts.php:675 -msgid "Only show unblocked contacts" -msgstr "Zobrazit pouze neblokované kontakty" - -#: mod/contacts.php:680 -msgid "Blocked" -msgstr "Blokován" - -#: mod/contacts.php:683 -msgid "Only show blocked contacts" -msgstr "Zobrazit pouze blokované kontakty" - -#: mod/contacts.php:688 -msgid "Ignored" -msgstr "Ignorován" - -#: mod/contacts.php:691 -msgid "Only show ignored contacts" -msgstr "Zobrazit pouze ignorované kontakty" - -#: mod/contacts.php:696 -msgid "Archived" -msgstr "Archivován" - -#: mod/contacts.php:699 -msgid "Only show archived contacts" -msgstr "Zobrazit pouze archivované kontakty" - -#: mod/contacts.php:704 -msgid "Hidden" -msgstr "Skrytý" - -#: mod/contacts.php:707 -msgid "Only show hidden contacts" -msgstr "Zobrazit pouze skryté kontakty" - -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Kontakty" - -#: mod/contacts.php:762 -msgid "Search your contacts" -msgstr "Prohledat Vaše kontakty" - -#: mod/contacts.php:763 mod/directory.php:63 -msgid "Finding: " -msgstr "Zjištění: " - -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 -msgid "Find" -msgstr "Najít" - -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 -msgid "Update" -msgstr "Aktualizace" - -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 -msgid "Delete" -msgstr "Odstranit" - -#: mod/contacts.php:786 -msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" - -#: mod/contacts.php:790 -msgid "is a fan of yours" -msgstr "je Váš fanoušek" - -#: mod/contacts.php:794 -msgid "you are a fan of" -msgstr "jste fanouškem" - -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editovat kontakt" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Žádný profil" - -#: 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/oexchange.php:25 -msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" - -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Nedostatečné oprávnění" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " - -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Klikněte na kontakt pro přidání nebo odebrání" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Viditelný pro" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" - -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4813 -msgid "Item not found." -msgstr "Položka nenalezena." - -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 -msgid "Public access denied." -msgstr "Veřejný přístup odepřen." - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." - -#: mod/display.php:505 -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:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 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:696 -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 -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." - -#: 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: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:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 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 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Nepodařilo se snížit velikost obrázku [%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ě." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Obrázek nelze zpracovat " - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Obrázek překročil limit velikosti %s" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -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 -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:202 mod/photos.php:856 -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:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: 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:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "Stav" - -#: 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/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/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Odstranit" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Uložit do složky:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- vyber -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Uložit" - -#: mod/follow.php:24 -msgid "You already added this contact." -msgstr "Již jste si tento kontakt přidali." - -#: mod/follow.php:56 mod/dfrn_request.php:844 -msgid "Please answer the following:" -msgstr "Odpovězte, prosím, následující:" - -#: mod/follow.php:57 mod/dfrn_request.php:845 -#, php-format -msgid "Does %s know you?" -msgstr "Zná Vás uživatel %s ?" - -#: mod/follow.php:57 mod/settings.php:1063 mod/settings.php:1069 -#: mod/settings.php:1077 mod/settings.php:1081 mod/settings.php:1086 -#: mod/settings.php:1092 mod/settings.php:1098 mod/settings.php:1104 -#: mod/settings.php:1130 mod/settings.php:1131 mod/settings.php:1132 -#: mod/settings.php:1133 mod/settings.php:1134 mod/dfrn_request.php:845 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 -msgid "No" -msgstr "Ne" - -#: mod/follow.php:58 mod/dfrn_request.php:849 -msgid "Add a personal note:" -msgstr "Přidat osobní poznámku:" - -#: mod/follow.php:64 mod/dfrn_request.php:855 -msgid "Your Identity Address:" -msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." - -#: mod/follow.php:67 mod/dfrn_request.php:858 -msgid "Submit Request" -msgstr "Odeslat žádost" - -#: mod/follow.php:106 -msgid "Contact added" -msgstr "Kontakt přidán" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Nelze nalézt původní příspěvek." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Prázdný příspěvek odstraněn." - -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 -msgid "Wall Photos" -msgstr "Fotografie na zdi" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Chyba systému. Příspěvek nebyl uložen." - -#: mod/item.php:989 -#, 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." - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Můžete je navštívit online na adrese %s" - -#: mod/item.php:992 -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." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s poslal aktualizaci." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Skupina vytvořena." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Nelze vytvořit skupinu." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Skupina nenalezena." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Název skupiny byl změněn." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Uložit Skupinu" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Vytvořit skupinu kontaktů / přátel." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Název skupiny: " - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Skupina odstraněna. " - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nelze odstranit skupinu." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Editor skupin" - -#: mod/group.php:190 -msgid "Members" -msgstr "Členové" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Musíte být přihlášeni pro použití rozšíření." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Aplikace" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Profil nenalezen" - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Kontakt nenalezen." - -#: mod/dfrn_confirm.php:121 -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." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." - -#: 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/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." - -#: 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/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/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Nelze nastavit fotografii kontaktu." - -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 -#, 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:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Pro '%s' nenalezen žádný uživatelský záznam " - -#: 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: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: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: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: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: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: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:753 mod/dfrn_request.php:732 include/items.php:4236 -msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se připojil k %2$s" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Požadovaný profil není k dispozici." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tipy pro nové členy" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Opravdu chcete smazat toto video?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Odstranit video" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Není vybráno žádné video" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Zobrazit video" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Zobrazit album" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Aktuální Videa" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Nahrát nová videa" - -#: mod/tagger.php:95 include/conversation.php:265 -#, 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/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "Neplatný požadavek." - -#: 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:1287 -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:2143 -#: 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:233 -msgid "{0} wants to be your friend" -msgstr "{0} chce být Vaším přítelem" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} vám poslal zprávu" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} požaduje registraci" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Žádné kontakty." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Zobrazit kontakty" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Neplatný identifikátor požadavku." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Odstranit" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Systém" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Síť" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Osobní" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Domů" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Představení" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Zobrazit ignorované žádosti" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Skrýt ignorované žádosti" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Typ oznámení: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Návrh přátelství" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "navrhl %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Zveřejnit aktivitu nového přítele." - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "je-li použitelné" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Schválit" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Vaši údajní známí: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "ano" - -#: mod/notifications.php:191 -msgid "no" -msgstr "ne" - -#: mod/notifications.php:192 -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 "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:195 -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 "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:203 -msgid "Friend" -msgstr "Přítel" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Sdílené" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fanoušek / obdivovatel" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Přítel / žádost o připojení" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Nový následovník" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Místo:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "O mě:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Štítky:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Pohlaví:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Žádné představení." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Upozornění" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "Uživateli %s se líbí příspěvek uživatele %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s se nyní přátelí s %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s vytvořil nový příspěvek" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s okomentoval příspěvek uživatele %s'" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Žádné další síťové upozornění." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Upozornění Sítě" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Žádné další systémová upozornění." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systémová upozornění" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Žádné další osobní upozornění." - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Osobní upozornění" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Žádné další domácí upozornění." - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Upozornění na vstupní straně" - -#: 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/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Zde není nic nového" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Smazat notifikace" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nová zpráva" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nevybrán příjemce." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Sběr zpráv selhal." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Zpráva odeslána." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Zprávy" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Zpráva odstraněna." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Konverzace odstraněna." - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Zadejte prosím URL odkaz:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "Adresát:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Předmět:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Vaše zpráva:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Nahrát fotografii" - -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Vložit webový odkaz" - -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Čekejte prosím" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Žádné zprávy." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Neznámý odesilatel - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Vy a %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s a Vy" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Odstranit konverzaci" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D M R - g:i A" - -#: mod/message.php:412 -#, 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:451 -msgid "Message not available." -msgstr "Zpráva není k dispozici." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Smazat zprávu" - -#: mod/message.php:549 -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:553 -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:107 -msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Opravit nastavení kontaktu" - -#: mod/crepair.php:142 -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:143 -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:149 -msgid "Return to contact editor" -msgstr "Návrat k editoru kontaktu" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Žádné zrcadlení" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Zrcadlit pro přeposlané příspěvky" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Zrcadlit jako mé vlastní příspěvky" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Znovu načíst data kontaktu" - -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 -msgid "Name" -msgstr "Jméno" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Přezdívka účtu" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL adresa účtu" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "Žádost o přátelství URL" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL adresa potvrzení přátelství" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "Notifikační URL adresa" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL adresa" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nové foto z této URL adresy" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Remote Self" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Zrcadlení správ od tohoto kontaktu" - -#: mod/crepair.php:181 -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/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Přihlásit se" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Příspěvek byl vytvořen" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Přístup odmítnut" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Vyhledávání lidí - %s" - -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 -msgid "Connect" -msgstr "Spojit" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "Žádné shody" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Fotografie" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "Soubory" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty, které nejsou členy skupiny" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Nastavení téma zobrazení bylo aktualizováno." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Web" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Uživatelé" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Pluginy" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Témata" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aktualizace databáze" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Proskoumat frontu" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Logy" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "vyzkoušet adresu" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "vyzkoušet webfinger" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Administrace" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Funkčnosti rozšíření" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "diagnostika" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Registrace uživatele čeká na potvrzení" - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 -msgid "Administration" -msgstr "Administrace" - -#: mod/admin.php:202 -msgid "ID" -msgstr "Identifikátor" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Jméno příjemce" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Profil píjemce" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Vytvořeno" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Naposled vyzkoušeno" - -#: mod/admin.php:208 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Normální účet" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Soapbox účet" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Komunitní účet / Účet celebrity" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Účet s automatickým schvalováním přátel" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Účet Blogu" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Soukromé fórum" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Fronty zpráv" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Shrnutí" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Registrovaní uživatelé" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Čekající registrace" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Verze" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Aktivní pluginy" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Nastavení webu aktualizováno." - -#: mod/admin.php:594 mod/settings.php:880 -msgid "No special theme for mobile devices" -msgstr "žádné speciální téma pro mobilní zařízení" - -#: mod/admin.php:611 -msgid "No community page" -msgstr "Komunitní stránka neexistuje" - -#: mod/admin.php:612 -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:613 -msgid "Global community page" -msgstr "Globální komunitní stránka" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "Při obdržení příspěvku" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Často" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "každou hodinu" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dvakrát denně" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "denně" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "Uživatelé, Všechny kontakty" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:634 -msgid "One month" -msgstr "Jeden měsíc" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "Tři měsíce" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "Půl roku" - -#: mod/admin.php:637 -msgid "One year" -msgstr "Jeden rok" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Více uživatelská instance" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Uzavřeno" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Vyžaduje schválení" - -#: mod/admin.php:667 -msgid "Open" -msgstr "Otevřená" - -#: mod/admin.php:671 -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:672 -msgid "Force all links to use SSL" -msgstr "Vyžadovat u všech odkazů použití SSL" - -#: mod/admin.php:673 -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:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:781 -#: mod/settings.php:850 mod/settings.php:932 mod/settings.php:1162 -msgid "Save Settings" -msgstr "Uložit Nastavení" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Registrace" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Nahrání souborů" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "Politiky" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Pokročilé" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Výkonnost" - -#: mod/admin.php:690 -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:693 -msgid "Site name" -msgstr "Název webu" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "Jméno hostitele (host name)" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "Email ddesílatele" - -#: mod/admin.php:696 -msgid "Banner/Logo" -msgstr "Banner/logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "Ikona zkratky" - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "Dotyková ikona" - -#: mod/admin.php:699 -msgid "Additional Info" -msgstr "Dodatečné informace" - -#: mod/admin.php:699 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:700 -msgid "System language" -msgstr "Systémový jazyk" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Grafická šablona systému " - -#: mod/admin.php:701 -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:702 -msgid "Mobile system theme" -msgstr "Systémové téma zobrazení pro mobilní zařízení" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Téma zobrazení pro mobilní zařízení" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "Politika SSL odkazů" - -#: mod/admin.php:703 -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:704 -msgid "Force SSL" -msgstr "Vynutit SSL" - -#: mod/admin.php:704 -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:705 -msgid "Old style 'Share'" -msgstr "Sdílení \"postaru\"" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "skrýt nápovědu z navigačního menu" - -#: mod/admin.php:706 -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:707 -msgid "Single user instance" -msgstr "Jednouživatelská instance" - -#: mod/admin.php:707 -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:708 -msgid "Maximum image size" -msgstr "Maximální velikost obrázků" - -#: mod/admin.php:708 -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:709 -msgid "Maximum image length" -msgstr "Maximální velikost obrázků" - -#: mod/admin.php:709 -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:710 -msgid "JPEG image quality" -msgstr "JPEG kvalita obrázku" - -#: mod/admin.php:710 -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:712 -msgid "Register policy" -msgstr "Politika registrace" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Maximální počet denních registrací" - -#: mod/admin.php:713 -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:714 -msgid "Register text" -msgstr "Registrace textu" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "Bude zřetelně zobrazeno na registrační stránce." - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Účet je opuštěn po x dnech" - -#: mod/admin.php:715 -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:716 -msgid "Allowed friend domains" -msgstr "Povolené domény přátel" - -#: mod/admin.php:716 -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:717 -msgid "Allowed email domains" -msgstr "Povolené e-mailové domény" - -#: mod/admin.php:717 -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:718 -msgid "Block public" -msgstr "Blokovat veřejnost" - -#: mod/admin.php:718 -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:719 -msgid "Force publish" -msgstr "Publikovat" - -#: mod/admin.php:719 -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:720 -msgid "Global directory update URL" -msgstr "aktualizace URL adresy Globálního adresáře " - -#: mod/admin.php:720 -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:721 -msgid "Allow threaded items" -msgstr "Povolit vícevláknové zpracování obsahu" - -#: mod/admin.php:721 -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:722 -msgid "Private posts by default for new users" -msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" - -#: mod/admin.php:722 -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:723 -msgid "Don't include post content in email notifications" -msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" - -#: mod/admin.php:723 -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:724 -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:724 -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:725 -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:725 -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 "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:726 -msgid "Allow Users to set remote_self" -msgstr "Umožnit uživatelům nastavit " - -#: mod/admin.php:726 -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:727 -msgid "Block multiple registrations" -msgstr "Blokovat více registrací" - -#: mod/admin.php:727 -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:728 -msgid "OpenID support" -msgstr "podpora OpenID" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "Podpora OpenID pro registraci a přihlašování." - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "kontrola úplného jména" - -#: mod/admin.php:729 -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:730 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Regulární výrazy" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "Použít PHP UTF8 regulární výrazy." - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "Styl komunitní stránky" - -#: mod/admin.php:731 -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:732 -msgid "Posts per user on community page" -msgstr "Počet příspěvků na komunitní stránce" - -#: mod/admin.php:732 -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:733 -msgid "Enable OStatus support" -msgstr "Zapnout podporu OStatus" - -#: mod/admin.php:733 -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:734 -msgid "OStatus conversation completion interval" -msgstr "Interval dokončení konverzace OStatus" - -#: mod/admin.php:734 -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:735 -msgid "Enable Diaspora support" -msgstr "Povolit podporu Diaspora" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Povolit pouze Friendica kontakty" - -#: mod/admin.php:736 -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:737 -msgid "Verify SSL" -msgstr "Ověřit SSL" - -#: mod/admin.php:737 -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:738 -msgid "Proxy user" -msgstr "Proxy uživatel" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "Proxy URL adresa" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "čas síťového spojení vypršelo (timeout)" - -#: mod/admin.php:740 -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:741 -msgid "Delivery interval" -msgstr "Interval doručování" - -#: mod/admin.php:741 -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:742 -msgid "Poll interval" -msgstr "Dotazovací interval" - -#: mod/admin.php:742 -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:743 -msgid "Maximum Load Average" -msgstr "Maximální průměrné zatížení" - -#: mod/admin.php:743 -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:744 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximální průměrné zatížení (Frontend)" - -#: mod/admin.php:744 -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:746 -msgid "Periodical check of global contacts" -msgstr "Pravidelně ověřování globálních kontaktů" - -#: mod/admin.php:746 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:747 -msgid "Discover contacts from other servers" -msgstr "Objevit kontakty z ostatních serverů" - -#: mod/admin.php:747 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:748 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:748 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:749 -msgid "Search the local directory" -msgstr "Hledat v lokálním adresáři" - -#: mod/admin.php:749 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:751 -msgid "Publish server information" -msgstr "Zveřejnit informace o serveru" - -#: mod/admin.php:751 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:753 -msgid "Use MySQL full text engine" -msgstr "Použít fulltextový vyhledávací stroj MySQL" - -#: mod/admin.php:753 -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:754 -msgid "Suppress Language" -msgstr "Potlačit Jazyk" - -#: mod/admin.php:754 -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:755 -msgid "Suppress Tags" -msgstr "Potlačit štítky" - -#: mod/admin.php:755 -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:756 -msgid "Path to item cache" -msgstr "Cesta k položkám vyrovnávací paměti" - -#: mod/admin.php:756 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:757 -msgid "Cache duration in seconds" -msgstr "Doba platnosti vyrovnávací paměti v sekundách" - -#: mod/admin.php:757 -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:758 -msgid "Maximum numbers of comments per post" -msgstr "Maximální počet komentářů k příspěvku" - -#: mod/admin.php:758 -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:759 -msgid "Path for lock file" -msgstr "Cesta k souboru zámku" - -#: mod/admin.php:759 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:760 -msgid "Temp path" -msgstr "Cesta k dočasným souborům" - -#: mod/admin.php:760 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:761 -msgid "Base path to installation" -msgstr "Základní cesta k instalaci" - -#: mod/admin.php:761 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:762 -msgid "Disable picture proxy" -msgstr "Vypnutí obrázkové proxy" - -#: mod/admin.php:762 -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:763 -msgid "Enable old style pager" -msgstr "Aktivovat \"old style\" stránkování " - -#: mod/admin.php:763 -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:764 -msgid "Only search in tags" -msgstr "Hledat pouze ve štítkách" - -#: mod/admin.php:764 -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:766 -msgid "New base url" -msgstr "Nová výchozí url adresa" - -#: mod/admin.php:766 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:768 -msgid "RINO Encryption" -msgstr "RINO Šifrování" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "Šifrovací vrstva mezi nódy." - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:769 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:787 -msgid "Update has been marked successful" -msgstr "Aktualizace byla označena jako úspěšná." - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." - -#: mod/admin.php:798 -#, 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:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Vykonávání %s selhalo s chybou: %s" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Aktualizace %s byla úspěšně aplikována." - -#: mod/admin.php:817 -#, 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:819 -#, 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:838 -msgid "No failed updates." -msgstr "Žádné neúspěšné aktualizace." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "Ověření struktury databáze" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Neúspěšné aktualizace" - -#: mod/admin.php:845 -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:846 -msgid "Mark success (if update was manually applied)" -msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "Pokusit se provést tuto aktualizaci automaticky." - -#: mod/admin.php:879 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\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:882 -#, php-format -msgid "" -"\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." -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:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Registrační údaje pro %s" - -#: mod/admin.php:926 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -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:933 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s uživatel smazán" -msgstr[1] "%s uživatelů smazáno" -msgstr[2] "%s uživatelů smazáno" - -#: mod/admin.php:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Uživatel '%s' smazán" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Uživatel '%s' odblokován" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Uživatel '%s' blokován" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "Přidat Uživatele" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "Vybrat vše" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "Registrace uživatele čeká na potvrzení" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Uživatel čeká na trvalé smazání" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Datum žádosti" - -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: mod/admin.php:1078 -msgid "No registrations." -msgstr "Žádné registrace." - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Odmítnout" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Site administrátor" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Účtu vypršela platnost" - -#: mod/admin.php:1088 -msgid "New User" -msgstr "Nový uživatel" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Datum registrace" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Datum posledního přihlášení" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Poslední položka" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Smazán od" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Účet" - -#: mod/admin.php:1092 -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:1093 -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:1103 -msgid "Name of the new user." -msgstr "Jméno nového uživatele" - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "Přezdívka" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "Přezdívka nového uživatele." - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Emailová adresa nového uživatele." - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s zakázán." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s povolen." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Zakázat" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Povolit" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Přepnout" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autor: " - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "Správce: " - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Nenalezeny žádná témata." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Snímek obrazovky" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Experimentální]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Nepodporováno]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Nastavení protokolu aktualizováno." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "Vyčistit" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "Povolit ladění" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "Soubor s logem" - -#: mod/admin.php:1534 -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:1535 -msgid "Log level" -msgstr "Úroveň auditu" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Zavřít" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "Hostitel FTP" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "Cesta FTP" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "FTP uživatel" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "FTP heslo" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Výsledky hledání pro: %s" - -#: mod/network.php:187 mod/search.php:25 -msgid "Remove term" -msgstr "Odstranit termín" - -#: mod/network.php:196 mod/search.php:34 include/features.php:42 -msgid "Saved Searches" -msgstr "Uložená hledání" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "přidat" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Dle komentářů" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Řadit podle data komentáře" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Dle data" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Řadit podle data příspěvku" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" - -#: mod/network.php:385 -msgid "New" -msgstr "Nové" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Proud aktivit - dle data" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Sdílené odkazy" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Zajímavé odkazy" - -#: mod/network.php:405 -msgid "Starred" -msgstr "S hvězdičkou" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Oblíbené přízpěvky" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -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:469 -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:532 mod/content.php:119 -msgid "No such group" -msgstr "Žádná taková skupina" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Skupina je prázdná" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Skupina: %s" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "Kontakt: %s" - -#: mod/network.php:582 -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:587 -msgid "Invalid contact." -msgstr "Neplatný kontakt." - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Přátelé uživatele %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Událost nemůže končit dříve, než začala." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Název události a datum začátku jsou vyžadovány." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l, F j" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Editovat událost" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "odkaz na zdroj" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Události" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Vytvořit novou událost" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Předchozí" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Dále" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Detaily události" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "Počáteční datum a Název jsou vyžadovány." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Událost začíná:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Vyžadováno" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Datum/čas konce není zadán nebo není relevantní" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Akce končí:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Popis:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Název:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Sdílet tuto událost" - -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 -msgid "Preview" -msgstr "Náhled" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Vybrat" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Zobrazit profil uživatele %s na %s" - -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Pohled v kontextu" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d komentář" -msgstr[1] "%d komentářů" -msgstr[2] "%d komentářů" - -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "komentář" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5133 -msgid "show more" -msgstr "zobrazit více" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Soukromá zpráva" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Líbí se mi to (přepínač)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "má rád" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Nelíbí se mi to (přepínač)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "nemá rád" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Sdílet toto" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "sdílí" - -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 -msgid "This is you" -msgstr "Nastavte Vaši polohu" - -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 -msgid "Comment" -msgstr "Okomentovat" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Tučné" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Kurzíva" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Podrtžené" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Citovat" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Kód" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Obrázek" - -#: mod/content.php:719 object/Item.php:687 -msgid "Link" -msgstr "Odkaz" - -#: mod/content.php:720 object/Item.php:688 -msgid "Video" -msgstr "Video" - -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 -msgid "Edit" -msgstr "Upravit" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "přidat hvězdu" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "odebrat hvězdu" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "přepnout hvězdu" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "označeno hvězdou" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "přidat štítek" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "uložit do složky" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "pro" - -#: mod/content.php:857 object/Item.php:332 -msgid "Wall-to-Wall" -msgstr "Zeď-na-Zeď" - -#: mod/content.php:858 object/Item.php:333 -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 -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/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Komunikační server - Nastavení" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "Nelze se připojit k databázi." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Nelze vytvořit tabulku." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Vaše databáze Friendica byla nainstalována." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete." - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Databáze se již používá." - -#: mod/install.php:205 -msgid "System check" -msgstr "Testování systému" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Otestovat znovu" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Databázové spojení" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, " - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Jméno databázového serveru" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Přihlašovací jméno k databázi" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Heslo k databázovému účtu " - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Jméno databáze" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Emailová adresa administrátora webu" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Nastavení webu" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." - -#: mod/install.php:324 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si 'Activating scheduled tasks'\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Cesta k \"PHP executable\"" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "Příkazový řádek PHP" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Nalezena PHP verze:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "Toto je nutné pro fungování doručování zpráv." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Generovat kriptovací klíče" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "libCurl PHP modul" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP modul" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP modul" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "mysqli PHP modul" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "mb_string PHP modul" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." - -#: mod/install.php:440 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "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/install.php:441 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete." - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři." - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php je editovatelné" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 je nastaven pro zápis" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru." - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "Url rewrite je funkční." - -#: mod/install.php:489 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "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." - -#: mod/install.php:528 -msgid "

                                              What next

                                              " -msgstr "

                                              Co dál

                                              " - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"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:31 -msgid "Help:" -msgstr "Nápověda:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Nápověda" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Nenalezen" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Stránka nenalezena" - -#: 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:83 -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:83 -msgid "Or - did you try to upload an empty file?" -msgstr "Nebo - nenahrával jste prázdný soubor?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Velikost souboru přesáhla limit %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Shoda profilu" - -#: mod/match.php:22 -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:64 -msgid "is interested in:" -msgstr "zajímá se o:" - -#: mod/share.php:38 -msgid "link" -msgstr "odkaz" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Není k dispozici." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Komunita" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 -msgid "No results." -msgstr "Žádné výsledky." - -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "Žádost o připojení selhala nebo byla zrušena." - -#: mod/settings.php:47 -msgid "Additional features" -msgstr "Další funkčnosti" - -#: mod/settings.php:53 -msgid "Display" -msgstr "Zobrazení" - -#: mod/settings.php:60 mod/settings.php:832 -msgid "Social Networks" -msgstr "Sociální sítě" - -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "Delegace" - -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "Propojené aplikace" - -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Export osobních údajů" - -#: mod/settings.php:90 -msgid "Remove account" -msgstr "Odstranit účet" - -#: mod/settings.php:143 -msgid "Missing some important data!" -msgstr "Chybí některé důležité údaje!" - -#: mod/settings.php:256 -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:261 -msgid "Email settings updated." -msgstr "Nastavení e-mailu aktualizována." - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "Aktualizované funkčnosti" - -#: mod/settings.php:339 -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:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Hesla se neshodují. Heslo nebylo změněno." - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "Špatné heslo." - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "Heslo bylo změněno." - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr "Prosím použijte kratší jméno." - -#: mod/settings.php:448 -msgid " Name too short." -msgstr "Jméno je příliš krátké." - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "Špatné heslo" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr "Neplatný e-mail." - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "Nelze provést změnu na tento e-mail." - -#: mod/settings.php:524 -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:528 -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:558 -msgid "Settings updated." -msgstr "Nastavení aktualizováno." - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "Přidat aplikaci" - -#: mod/settings.php:635 mod/settings.php:661 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:636 mod/settings.php:662 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:637 mod/settings.php:663 -msgid "Redirect" -msgstr "Přesměrování" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "URL ikony" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "Nemůžete editovat tuto aplikaci." - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "Připojené aplikace" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "Klienský klíč začíná" - -#: mod/settings.php:697 -msgid "No name" -msgstr "Bez názvu" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "Odstranit oprávnění" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "Žádný doplněk není nastaven" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "Nastavení doplňku" - -#: mod/settings.php:732 -msgid "Off" -msgstr "Vypnuto" - -#: mod/settings.php:732 -msgid "On" -msgstr "Zapnuto" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "Další Funkčnosti" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "General Social Media nastavení" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "Vypnout inteligentní zkracování" - -#: mod/settings.php:762 -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:768 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele" - -#: mod/settings.php:770 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:776 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:778 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:788 mod/settings.php:789 -#, 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:788 mod/dfrn_request.php:853 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:788 mod/settings.php:789 -msgid "enabled" -msgstr "povoleno" - -#: mod/settings.php:788 mod/settings.php:789 -msgid "disabled" -msgstr "zakázáno" - -#: mod/settings.php:789 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:825 -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:837 -msgid "Email/Mailbox Setup" -msgstr "Nastavení e-mailu" - -#: mod/settings.php:838 -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:839 -msgid "Last successful email check:" -msgstr "Poslední úspěšná kontrola e-mailu:" - -#: mod/settings.php:841 -msgid "IMAP server name:" -msgstr "jméno IMAP serveru:" - -#: mod/settings.php:842 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:843 -msgid "Security:" -msgstr "Zabezpečení:" - -#: mod/settings.php:843 mod/settings.php:848 -msgid "None" -msgstr "Žádný" - -#: mod/settings.php:844 -msgid "Email login name:" -msgstr "přihlašovací jméno k e-mailu:" - -#: mod/settings.php:845 -msgid "Email password:" -msgstr "heslo k Vašemu e-mailu:" - -#: mod/settings.php:846 -msgid "Reply-to address:" -msgstr "Odpovědět na adresu:" - -#: mod/settings.php:847 -msgid "Send public posts to all email contacts:" -msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" - -#: mod/settings.php:848 -msgid "Action after import:" -msgstr "Akce po importu:" - -#: mod/settings.php:848 -msgid "Mark as seen" -msgstr "Označit jako přečtené" - -#: mod/settings.php:848 -msgid "Move to folder" -msgstr "Přesunout do složky" - -#: mod/settings.php:849 -msgid "Move to folder:" -msgstr "Přesunout do složky:" - -#: mod/settings.php:930 -msgid "Display Settings" -msgstr "Nastavení Zobrazení" - -#: mod/settings.php:936 mod/settings.php:952 -msgid "Display Theme:" -msgstr "Vybrat grafickou šablonu:" - -#: mod/settings.php:937 -msgid "Mobile Theme:" -msgstr "Téma pro mobilní zařízení:" - -#: mod/settings.php:938 -msgid "Update browser every xx seconds" -msgstr "Aktualizovat prohlížeč každých xx sekund" - -#: mod/settings.php:938 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekund, žádné maximum." - -#: mod/settings.php:939 -msgid "Number of items to display per page:" -msgstr "Počet položek zobrazených na stránce:" - -#: mod/settings.php:939 mod/settings.php:940 -msgid "Maximum of 100 items" -msgstr "Maximum 100 položek" - -#: mod/settings.php:940 -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:941 -msgid "Don't show emoticons" -msgstr "Nezobrazovat emotikony" - -#: mod/settings.php:942 -msgid "Don't show notices" -msgstr "Nezobrazovat oznámění" - -#: mod/settings.php:943 -msgid "Infinite scroll" -msgstr "Nekonečné posouvání" - -#: mod/settings.php:944 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatické aktualizace pouze na hlavní stránce Síť." - -#: mod/settings.php:946 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:58 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Nastavení téma" - -#: mod/settings.php:1022 -msgid "User Types" -msgstr "Uživatelské typy" - -#: mod/settings.php:1023 -msgid "Community Types" -msgstr "Komunitní typy" - -#: mod/settings.php:1024 -msgid "Normal Account Page" -msgstr "Normální stránka účtu" - -#: mod/settings.php:1025 -msgid "This account is a normal personal profile" -msgstr "Tento účet je běžný osobní profil" - -#: mod/settings.php:1028 -msgid "Soapbox Page" -msgstr "Stránka \"Soapbox\"" - -#: mod/settings.php:1029 -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:1032 -msgid "Community Forum/Celebrity Account" -msgstr "Komunitní fórum/ účet celebrity" - -#: mod/settings.php:1033 -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:1036 -msgid "Automatic Friend Page" -msgstr "Automatická stránka přítele" - -#: mod/settings.php:1037 -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:1040 -msgid "Private Forum [Experimental]" -msgstr "Soukromé fórum [Experimentální]" - -#: mod/settings.php:1041 -msgid "Private forum - approved members only" -msgstr "Soukromé fórum - pouze pro schválené členy" - -#: mod/settings.php:1053 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1053 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." - -#: mod/settings.php:1063 -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:1069 -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:1077 -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:1081 include/acl_selectors.php:330 -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:1081 -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:1086 -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:1092 -msgid "Allow friends to tag your posts?" -msgstr "Povolit přátelům označovat Vaše příspěvky?" - -#: mod/settings.php:1098 -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:1104 -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:1112 -msgid "Profile is not published." -msgstr "Profil není zveřejněn." - -#: mod/settings.php:1120 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Vaše Identity adresa je \"%s\" nebo \"%s\"." - -#: mod/settings.php:1127 -msgid "Automatically expire posts after this many days:" -msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" - -#: mod/settings.php:1127 -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:1128 -msgid "Advanced expiration settings" -msgstr "Pokročilé nastavení expirací" - -#: mod/settings.php:1129 -msgid "Advanced Expiration" -msgstr "Nastavení expirací" - -#: mod/settings.php:1130 -msgid "Expire posts:" -msgstr "Expirovat příspěvky:" - -#: mod/settings.php:1131 -msgid "Expire personal notes:" -msgstr "Expirovat osobní poznámky:" - -#: mod/settings.php:1132 -msgid "Expire starred posts:" -msgstr "Expirovat příspěvky s hvězdou:" - -#: mod/settings.php:1133 -msgid "Expire photos:" -msgstr "Expirovat fotografie:" - -#: mod/settings.php:1134 -msgid "Only expire posts by others:" -msgstr "Přízpěvky expirovat pouze ostatními:" - -#: mod/settings.php:1160 -msgid "Account Settings" -msgstr "Nastavení účtu" - -#: mod/settings.php:1168 -msgid "Password Settings" -msgstr "Nastavení hesla" - -#: mod/settings.php:1169 mod/register.php:271 -msgid "New Password:" -msgstr "Nové heslo:" - -#: mod/settings.php:1170 mod/register.php:272 -msgid "Confirm:" -msgstr "Potvrďte:" - -#: mod/settings.php:1170 -msgid "Leave password fields blank unless changing" -msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" - -#: mod/settings.php:1171 -msgid "Current Password:" -msgstr "Stávající heslo:" - -#: mod/settings.php:1171 mod/settings.php:1172 -msgid "Your current password to confirm the changes" -msgstr "Vaše stávající heslo k potvrzení změn" - -#: mod/settings.php:1172 -msgid "Password:" -msgstr "Heslo: " - -#: mod/settings.php:1176 -msgid "Basic Settings" -msgstr "Základní nastavení" - -#: mod/settings.php:1177 include/identity.php:538 -msgid "Full Name:" -msgstr "Celé jméno:" - -#: mod/settings.php:1178 -msgid "Email Address:" -msgstr "E-mailová adresa:" - -#: mod/settings.php:1179 -msgid "Your Timezone:" -msgstr "Vaše časové pásmo:" - -#: mod/settings.php:1180 -msgid "Default Post Location:" -msgstr "Výchozí umístění příspěvků:" - -#: mod/settings.php:1181 -msgid "Use Browser Location:" -msgstr "Používat umístění dle prohlížeče:" - -#: mod/settings.php:1184 -msgid "Security and Privacy Settings" -msgstr "Nastavení zabezpečení a soukromí" - -#: mod/settings.php:1186 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximální počet žádostí o přátelství za den:" - -#: mod/settings.php:1186 mod/settings.php:1216 -msgid "(to prevent spam abuse)" -msgstr "(Aby se zabránilo spamu)" - -#: mod/settings.php:1187 -msgid "Default Post Permissions" -msgstr "Výchozí oprávnění pro příspěvek" - -#: mod/settings.php:1188 -msgid "(click to open/close)" -msgstr "(Klikněte pro otevření/zavření)" - -#: mod/settings.php:1197 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Zobrazit ve Skupinách" - -#: mod/settings.php:1198 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Zobrazit v Kontaktech" - -#: mod/settings.php:1199 -msgid "Default Private Post" -msgstr "Výchozí Soukromý příspěvek" - -#: mod/settings.php:1200 -msgid "Default Public Post" -msgstr "Výchozí Veřejný příspěvek" - -#: mod/settings.php:1204 -msgid "Default Permissions for New Posts" -msgstr "Výchozí oprávnění pro nové příspěvky" - -#: mod/settings.php:1216 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum soukromých zpráv od neznámých lidí:" - -#: mod/settings.php:1219 -msgid "Notification Settings" -msgstr "Nastavení notifikací" - -#: mod/settings.php:1220 -msgid "By default post a status message when:" -msgstr "Defaultně posílat statusové zprávy když:" - -#: mod/settings.php:1221 -msgid "accepting a friend request" -msgstr "akceptuji požadavek na přátelství" - -#: mod/settings.php:1222 -msgid "joining a forum/community" -msgstr "připojující se k fóru/komunitě" - -#: mod/settings.php:1223 -msgid "making an interesting profile change" -msgstr "provedení zajímavé profilové změny" - -#: mod/settings.php:1224 -msgid "Send a notification email when:" -msgstr "Poslat notifikaci e-mailem, když" - -#: mod/settings.php:1225 -msgid "You receive an introduction" -msgstr "obdržíte žádost o propojení" - -#: mod/settings.php:1226 -msgid "Your introductions are confirmed" -msgstr "Vaše žádosti jsou potvrzeny" - -#: mod/settings.php:1227 -msgid "Someone writes on your profile wall" -msgstr "někdo Vám napíše na Vaši profilovou stránku" - -#: mod/settings.php:1228 -msgid "Someone writes a followup comment" -msgstr "někdo Vám napíše následný komentář" - -#: mod/settings.php:1229 -msgid "You receive a private message" -msgstr "obdržíte soukromou zprávu" - -#: mod/settings.php:1230 -msgid "You receive a friend suggestion" -msgstr "Obdržel jste návrh přátelství" - -#: mod/settings.php:1231 -msgid "You are tagged in a post" -msgstr "Jste označen v příspěvku" - -#: mod/settings.php:1232 -msgid "You are poked/prodded/etc. in a post" -msgstr "Byl Jste šťouchnout v příspěvku" - -#: mod/settings.php:1234 -msgid "Activate desktop notifications" -msgstr "Aktivovat upozornění na desktopu" - -#: mod/settings.php:1234 -msgid "Show desktop popup on new notifications" -msgstr "Zobrazit dektopové zprávy nových upozornění." - -#: mod/settings.php:1236 -msgid "Text-only notification emails" -msgstr "Pouze textové notifikační e-maily" - -#: mod/settings.php:1238 -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:1240 -msgid "Advanced Account/Page Type Settings" -msgstr "Pokročilé nastavení účtu/stránky" - -#: mod/settings.php:1241 -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:1244 -msgid "Relocate" -msgstr "Změna umístění" - -#: mod/settings.php:1245 -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:1246 -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 -#, 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:507 include/follow.php:70 -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 -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: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:689 -#, php-format -msgid "Welcome home %s." -msgstr "Vítejte doma %s." - -#: 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: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:839 -#, php-format -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:842 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / kontaktování" - -#: 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:851 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federativní Sociální Web" - -#: 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/register.php:92 -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:97 -#, 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:107 -msgid "Your registration can not be processed." -msgstr "Vaši registraci nelze zpracovat." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "Vaše registrace čeká na schválení vlastníkem serveru." - -#: mod/register.php:188 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:216 -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:217 -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:218 -msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné): " - -#: mod/register.php:232 -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:256 -msgid "Membership on this site is by invitation only." -msgstr "Členství na tomto webu je pouze na pozvání." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "Vaše pozvání ID:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vaše celé jméno (např. Jan Novák):" - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Vaše e-mailová adresa:" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Ponechte prázdné pro automatické vygenerovaní hesla." - -#: mod/register.php:273 -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:274 -msgid "Choose a nickname: " -msgstr "Vyberte přezdívku:" - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrovat" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: mod/register.php:284 -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:100 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Vyhledávání" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "Položky označené s: %s" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "Výsledky hledání pro: %s" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Globální adresář" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Nalézt na tomto webu" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Adresář serveru" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Věk: " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Pohlaví: " - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Status:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Domácí stránka:" - -#: mod/directory.php:205 -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:179 -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:45 -msgid "Common Friends" -msgstr "Společní přátelé" - -#: mod/common.php:82 -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:226 -#, 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:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Návrhy přátel" - -#: mod/suggest.php:76 -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:94 -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:336 -msgid "Marital Status" -msgstr "Rodinný Stav" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Romatický partner" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Libí se mi" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Nelibí se mi" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Práce/Zaměstnání" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Náboženství" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Politické přesvědčení" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Pohlaví" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Sexuální orientace" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Domácí stránka" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "Zájmy" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adresa" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "Lokace" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profil aktualizován." - -#: mod/profiles.php:565 -msgid " and " -msgstr " a " - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "veřejný profil" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s změnil %2$s na “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Navštivte %2$s uživatele %1$s" - -#: mod/profiles.php:580 -#, 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:655 -msgid "Hide contacts and friends:" -msgstr "Skrýt kontakty a přátele:" - -#: mod/profiles.php:660 -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:682 -msgid "Edit Profile Details" -msgstr "Upravit podrobnosti profilu " - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "Změna Profilové fotky" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "Zobrazit tento profil" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "Vytvořit nový profil pomocí tohoto nastavení" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "Klonovat tento profil" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "Smazat tento profil" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "Základní informace" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "Profilový obrázek" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "Nastavení" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "Statusové informace" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "Dodatečné informace" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "Jméno profilu:" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "Vaše celé jméno:" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "Název / Popis:" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "Vaše pohlaví:" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "Narozeniny:" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "Ulice:" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "Město:" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "PSČ:" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "Země:" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "Region / stát:" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr " Rodinný stav:" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "Kdo: (pokud je možné)" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: mod/profiles.php:711 include/identity.php:569 -msgid "Sexual Preference:" -msgstr "Sexuální preference:" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "Odkaz na domovskou stránku:" - -#: mod/profiles.php:713 include/identity.php:573 -msgid "Hometown:" -msgstr "Rodné město" - -#: mod/profiles.php:714 include/identity.php:577 -msgid "Political Views:" -msgstr "Politické přesvědčení:" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "Náboženské přesvědčení:" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "Veřejná klíčová slova:" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "Soukromá klíčová slova:" - -#: mod/profiles.php:718 include/identity.php:585 -msgid "Likes:" -msgstr "Líbí se:" - -#: mod/profiles.php:719 include/identity.php:587 -msgid "Dislikes:" -msgstr "Nelibí se:" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "Příklad: fishing photography software" - -#: mod/profiles.php:721 -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:722 -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:723 -msgid "Tell us about yourself..." -msgstr "Řekněte nám něco o sobě ..." - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "Koníčky/zájmy" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "Kontaktní informace a sociální sítě" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "Hudební vkus" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "Knihy, literatura" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "Televize" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "Film/tanec/kultura/zábava" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "Láska/romantika" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "Práce/zaměstnání" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "Škola/vzdělání" - -#: mod/profiles.php:737 -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:800 -msgid "Edit/Manage Profiles" -msgstr "Upravit / Spravovat profily" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Změnit profilovou fotografii" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "Vytvořit nový profil" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "Profilový obrázek" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "viditelné pro všechny" - -#: mod/profiles.php:816 include/identity.php:246 -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:40 -msgid "Edit post" -msgstr "Upravit příspěvek" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "nahrát fotky" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Přiložit soubor" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "přidat soubor" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "webový odkaz" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Zadejte odkaz na video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "odkaz na video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Zadejte odkaz na zvukový záznam" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "odkaz na audio" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Nastavte vaši polohu" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "nastavit místo" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Odstranit adresu v prohlížeči" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "vymazat místo" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Nastavení oprávnění" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "skrytá kopie: e-mailové adresy" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Veřejný příspěvek" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Nastavit titulek" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (čárkou oddělený seznam)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -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:64 -msgid "the bugtracker at github" -msgstr "" - -#: 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 include/identity.php:675 -msgid "Personal Notes" -msgstr "Osobní poznámky" - -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 -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" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "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" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC čas: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuální časové pásmo: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -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:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Fotogalerie kontaktu" - -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Fotoalba" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Aktuální fotografie" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Nahrát nové fotografie" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nenalezeno." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Smazat album" - -#: mod/photos.php:220 -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:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Smazat fotografii" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Opravdu chcete smazat tuto fotografii?" - -#: mod/photos.php:684 -#, 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:684 -msgid "a photo" -msgstr "fotografie" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" - -#: mod/photos.php:1114 -#, 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:1149 -msgid "Upload Photos" -msgstr "Nahrání fotografií " - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Název nového alba: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "nebo stávající název alba: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Nezobrazovat stav pro tento upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Oprávnění:" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Soukromé Fotografie" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Veřejné Fotografie" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Edituj album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Zobrazit nejprve nejnovější:" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Zobrazit nejprve nejstarší:" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Zobraz fotografii" - -#: mod/photos.php:1314 -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:1316 -msgid "Photo not available" -msgstr "Fotografie není k dispozici" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Zobrazit obrázek" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Editovat fotografii" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Štítky: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Odstranit všechny štítky]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nové jméno alba" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titulek" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Přidat štítek" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Neotáčet" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Rotovat po směru hodinových ručiček (doprava)" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Rotovat proti směru hodinových ručiček (doleva)" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Soukromé fotografie" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Veřejné fotografie" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Sdílet" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Nerozšířeně" - -#: 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:763 -msgid "Delete this item?" -msgstr "Odstranit tuto položku?" - -#: boot.php:766 -msgid "show fewer" -msgstr "zobrazit méně" - -#: boot.php:1140 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." - -#: boot.php:1247 -msgid "Create a New Account" -msgstr "Vytvořit nový účet" - -#: boot.php:1272 include/nav.php:73 -msgid "Logout" -msgstr "Odhlásit se" - -#: boot.php:1275 -msgid "Nickname or Email address: " -msgstr "Přezdívka nebo e-mailová adresa:" - -#: boot.php:1276 -msgid "Password: " -msgstr "Heslo: " - -#: boot.php:1277 -msgid "Remember me" -msgstr "Pamatuj si mne" - -#: boot.php:1280 -msgid "Or login using OpenID: " -msgstr "Nebo přihlášení pomocí OpenID: " - -#: boot.php:1286 -msgid "Forgot your password?" -msgstr "Zapomněli jste své heslo?" - -#: boot.php:1289 -msgid "Website Terms of Service" -msgstr "Podmínky použití serveru" - -#: boot.php:1290 -msgid "terms of service" -msgstr "podmínky použití" - -#: boot.php:1292 -msgid "Website Privacy Policy" -msgstr "Pravidla ochrany soukromí serveru" - -#: boot.php:1293 -msgid "privacy policy" -msgstr "Ochrana soukromí" - -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Tento záznam byl editován" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignorovat vlákno" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "přestat ignorovat vlákno" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "přepnout stav Ignorování" - -#: object/Item.php:214 -msgid "ignored" -msgstr "ignorován" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Kategorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Vyplněn pod:" - -#: object/Item.php:331 -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:152 -msgid "Errors encountered creating database tables." -msgstr "Při vytváření databázových tabulek došlo k chybám." - -#: 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." - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Odhlášen." - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "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:75 -msgid "The error message was:" -msgstr "Chybová zpráva byla:" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Přidat nový kontakt" @@ -5862,6 +32,12 @@ msgstr "Zadejte adresu nebo umístění webu" 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:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Spojit" + #: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" @@ -5878,7 +54,9 @@ msgstr "Nalézt lidi" msgid "Enter name or interest" msgstr "Zadejte jméno nebo zájmy" -#: include/contact_widgets.php:32 +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 msgid "Connect/Follow" msgstr "Připojit / Následovat" @@ -5886,7 +64,16 @@ msgstr "Připojit / Následovat" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Příklady: Robert Morgenstein, rybaření" -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Najít" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 msgid "Similar Interests" msgstr "Podobné zájmy" @@ -5894,1465 +81,52 @@ msgstr "Podobné zájmy" msgid "Random Profile" msgstr "Náhodný Profil" -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 msgid "Invite Friends" msgstr "Pozvat přátele" -#: include/contact_widgets.php:71 +#: include/contact_widgets.php:108 msgid "Networks" msgstr "Sítě" -#: include/contact_widgets.php:74 +#: include/contact_widgets.php:111 msgid "All Networks" msgstr "Všechny sítě" -#: include/contact_widgets.php:104 include/features.php:60 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Uložené složky" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 +#: include/contact_widgets.php:144 include/contact_widgets.php:176 msgid "Everything" msgstr "Všechno" -#: include/contact_widgets.php:136 +#: include/contact_widgets.php:173 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:75 -msgid "Connect URL missing." -msgstr "Chybí URL adresa." - -#: include/follow.php:102 -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:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." - -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." - -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Autor nebo jméno nenalezeno" - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Této adrese neodpovídá žádné URL prohlížeče." - -#: include/follow.php:129 -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:130 -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:136 -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:146 -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:249 -msgid "Unable to retrieve contact information." -msgstr "Nepodařilo se získat kontaktní informace." - -#: include/follow.php:302 -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:275 -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:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:256 -msgid "never" -msgstr "nikdy" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "méně než před sekundou" - -#: include/datetime.php:272 -msgid "year" -msgstr "rok" - -#: include/datetime.php:272 -msgid "years" -msgstr "let" - -#: include/datetime.php:273 -msgid "month" -msgstr "měsíc" - -#: include/datetime.php:273 -msgid "months" -msgstr "měsíců" - -#: include/datetime.php:274 -msgid "week" -msgstr "týdnem" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "týdny" - -#: include/datetime.php:275 -msgid "day" -msgstr "den" - -#: include/datetime.php:275 -msgid "days" -msgstr "dnů" - -#: include/datetime.php:276 -msgid "hour" -msgstr "hodina" - -#: include/datetime.php:276 -msgid "hours" -msgstr "hodin" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuta" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minut" - -#: include/datetime.php:278 -msgid "second" -msgstr "sekunda" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "sekund" - -#: include/datetime.php:287 +#: include/contact_widgets.php:237 #, php-format -msgid "%1$d %2$s ago" -msgstr "před %1$d %2$s" - -#: include/datetime.php:459 include/items.php:2431 -#, php-format -msgid "%s's birthday" -msgstr "%s má narozeniny" - -#: include/datetime.php:460 include/items.php:2432 -#, php-format -msgid "Happy Birthday %s" -msgstr "Veselé narozeniny %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "Požadovaný účet není dostupný." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Upravit profil" - -#: include/identity.php:220 -msgid "Message" -msgstr "Zpráva" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profily" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Síť:" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "g A l F d" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "d. F" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[Dnes]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[Žádný popis]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Připomenutí událostí" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Události tohoto týdne:" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:546 -msgid "j F" -msgstr "j F" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Narozeniny:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Věk:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "pro %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Náboženství:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Hudební vkus:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Knihy, literatura:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Televize:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Láska/romance" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Práce/zaměstnání:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Škola/vzdělávání:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Stav" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Statusové zprávy a příspěvky " - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Detaily profilu" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Videa" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Události a kalendář" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Toto můžete vidět jen Vy" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "zobrazit" - -#: include/acl_selectors.php:337 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:173 -msgid "[no subject]" -msgstr "[bez předmětu]" - -#: 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" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -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: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/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "událost" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "příspěvek/položka" - -#: 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: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: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:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Kde právě jste?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "oprávnění" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Zveřejnit na Groups" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Zveřejnit na Groups" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Soukromý příspěvek" - -#: include/network.php:959 -msgid "view full size" -msgstr "zobrazit v plné velikosti" - -#: include/text.php:299 -msgid "newer" -msgstr "novější" - -#: include/text.php:301 -msgid "older" -msgstr "starší" - -#: include/text.php:306 -msgid "prev" -msgstr "předchozí" - -#: include/text.php:308 -msgid "first" -msgstr "první" - -#: include/text.php:340 -msgid "last" -msgstr "poslední" - -#: include/text.php:343 -msgid "next" -msgstr "další" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "Načítání více záznamů..." - -#: include/text.php:399 -msgid "The end" -msgstr "Konec" - -#: include/text.php:890 -msgid "No contacts" -msgstr "Žádné kontakty" - -#: include/text.php:905 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktů" -msgstr[2] "%d kontaktů" - -#: include/text.php:1003 include/nav.php:122 -msgid "Full Text" -msgstr "Celý text" - -#: include/text.php:1004 include/nav.php:123 -msgid "Tags" -msgstr "Štítky:" - -#: include/text.php:1008 include/nav.php:127 +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d sdílený kontakt" +msgstr[1] "%d sdílených kontaktů" +msgstr[2] "%d sdílených kontaktů" + +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "zobrazit více" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 msgid "Forums" msgstr "Fóra" -#: include/text.php:1058 -msgid "poke" -msgstr "šťouchnout" - -#: include/text.php:1058 -msgid "poked" -msgstr "šťouchnut" - -#: include/text.php:1059 -msgid "ping" -msgstr "cinknout" - -#: include/text.php:1059 -msgid "pinged" -msgstr "cinkut" - -#: include/text.php:1060 -msgid "prod" -msgstr "pobídnout" - -#: include/text.php:1060 -msgid "prodded" -msgstr "pobídnut" - -#: include/text.php:1061 -msgid "slap" -msgstr "dát facku" - -#: include/text.php:1061 -msgid "slapped" -msgstr "být uhozen" - -#: include/text.php:1062 -msgid "finger" -msgstr "osahávat" - -#: include/text.php:1062 -msgid "fingered" -msgstr "osaháván" - -#: include/text.php:1063 -msgid "rebuff" -msgstr "odmítnout" - -#: include/text.php:1063 -msgid "rebuffed" -msgstr "odmítnut" - -#: include/text.php:1077 -msgid "happy" -msgstr "šťasný" - -#: include/text.php:1078 -msgid "sad" -msgstr "smutný" - -#: include/text.php:1079 -msgid "mellow" -msgstr "jemný" - -#: include/text.php:1080 -msgid "tired" -msgstr "unavený" - -#: include/text.php:1081 -msgid "perky" -msgstr "emergický" - -#: include/text.php:1082 -msgid "angry" -msgstr "nazlobený" - -#: include/text.php:1083 -msgid "stupified" -msgstr "otupen" - -#: include/text.php:1084 -msgid "puzzled" -msgstr "popletený" - -#: include/text.php:1085 -msgid "interested" -msgstr "zajímavý" - -#: include/text.php:1086 -msgid "bitter" -msgstr "hořký" - -#: include/text.php:1087 -msgid "cheerful" -msgstr "radnostný" - -#: include/text.php:1088 -msgid "alive" -msgstr "naživu" - -#: include/text.php:1089 -msgid "annoyed" -msgstr "otráven" - -#: include/text.php:1090 -msgid "anxious" -msgstr "znepokojený" - -#: include/text.php:1091 -msgid "cranky" -msgstr "mrzutý" - -#: include/text.php:1092 -msgid "disturbed" -msgstr "vyrušen" - -#: include/text.php:1093 -msgid "frustrated" -msgstr "frustrovaný" - -#: include/text.php:1094 -msgid "motivated" -msgstr "motivovaný" - -#: include/text.php:1095 -msgid "relaxed" -msgstr "uvolněný" - -#: include/text.php:1096 -msgid "surprised" -msgstr "překvapený" - -#: include/text.php:1266 -msgid "Monday" -msgstr "Pondělí" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Úterý" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Středa" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Čtvrtek" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Pátek" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Sobota" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Neděle" - -#: include/text.php:1270 -msgid "January" -msgstr "Ledna" - -#: include/text.php:1270 -msgid "February" -msgstr "Února" - -#: include/text.php:1270 -msgid "March" -msgstr "Března" - -#: include/text.php:1270 -msgid "April" -msgstr "Dubna" - -#: include/text.php:1270 -msgid "May" -msgstr "Května" - -#: include/text.php:1270 -msgid "June" -msgstr "Června" - -#: include/text.php:1270 -msgid "July" -msgstr "Července" - -#: include/text.php:1270 -msgid "August" -msgstr "Srpna" - -#: include/text.php:1270 -msgid "September" -msgstr "Září" - -#: include/text.php:1270 -msgid "October" -msgstr "Října" - -#: include/text.php:1270 -msgid "November" -msgstr "Listopadu" - -#: include/text.php:1270 -msgid "December" -msgstr "Prosinec" - -#: include/text.php:1492 -msgid "bytes" -msgstr "bytů" - -#: include/text.php:1524 include/text.php:1536 -msgid "Click to open/close" -msgstr "Klikněte pro otevření/zavření" - -#: include/text.php:1710 -msgid "View on separate page" -msgstr "Zobrazit na separátní stránce" - -#: include/text.php:1711 -msgid "view on separate page" -msgstr "Zobrazit na separátní stránce" - -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "standardní" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Vyběr alternativního jazyka" - -#: include/text.php:2036 -msgid "activity" -msgstr "aktivita" - -#: include/text.php:2039 -msgid "post" -msgstr "příspěvek" - -#: include/text.php:2207 -msgid "Item filed" -msgstr "Položka vyplněna" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Obrázek/fotografie" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s napsal následující příspěvek" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 napsal:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Šifrovaný obsah" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(Bez předmětu)" - -#: include/notifier.php:840 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/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr " na Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Začíná:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Končí:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Klikněte zde pro aktualizaci." - -#: include/plugin.php:466 -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:471 -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:156 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:137 -msgid "Conversations on this site" -msgstr "Konverzace na tomto webu" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Konverzace v síti" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Adresář" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Adresář" - -#: include/nav.php:143 -msgid "Information" -msgstr "Informace" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Konverzace od Vašich přátel" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Síťový Reset" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Žádosti přátel" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Zobrazit všechny upozornění" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Označit všechny upozornění systému jako přečtené" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Soukromá pošta" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "Doručená pošta" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Spravovat" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Spravovat jiné stránky" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Nastavení účtu" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigace" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mapa webu" - -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 -msgid "User not found." -msgstr "Uživatel nenalezen" - -#: include/api.php:795 -#, 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:814 -#, 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:833 -#, 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:1350 -msgid "There is no status with this id." -msgstr "Není tu žádný status s tímto id." - -#: include/api.php:1424 -msgid "There is no conversation with this id." -msgstr "Nemáme žádnou konverzaci s tímto id." - -#: include/api.php:1703 -msgid "Invalid item." -msgstr "Neplatná položka." - -#: include/api.php:1713 -msgid "Invalid action. " -msgstr "Neplatná akce" - -#: include/api.php:1721 -msgid "DB error" -msgstr "DB chyba" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Jméno je příliš krátké." - -#: include/user.php:113 -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:118 -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:121 -msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Přezdívka je již registrována. Prosím vyberte jinou." - -#: include/user.php:156 -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:172 -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:230 -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:265 -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:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Přátelé" - -#: include/user.php:385 -#, 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:389 -#, 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:717 -msgid "Sharing notification from Diaspora network" -msgstr "Sdílení oznámení ze sítě Diaspora" - -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Přílohy:" - -#: include/items.php:4852 -msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" - -#: include/items.php:5127 -msgid "Archives" -msgstr "Archív" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "" #: include/profile_selectors.php:6 msgid "Male" @@ -7406,9 +180,12 @@ msgstr "Nespecifikováno" msgid "Other" msgstr "Jiné" -#: include/profile_selectors.php:6 +#: include/profile_selectors.php:6 include/conversation.php:1487 msgid "Undecided" -msgstr "Nerozhodnuto" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: include/profile_selectors.php:23 msgid "Males" @@ -7498,6 +275,10 @@ msgstr "Nevěrný" msgid "Sex Addict" msgstr "Závislý na sexu" +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Přátelé" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Přátelé / výhody" @@ -7582,296 +363,299 @@ msgstr "Nezajímá" 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 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "%s Administrator" -msgstr "%s Administrátor" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" -#: include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " +#: include/auth.php:45 +msgid "Logged out." +msgstr "Odhlášen." -#: 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/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Přihlášení se nezdařilo." -#: 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:81 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s Vám poslal %2$s." - -#: include/enotify.php:81 -msgid "a private message" -msgstr "soukromá zpráva" - -#: 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: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: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: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: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: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: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: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: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: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:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Upozornění] %s Vás označil" - -#: 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: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:198 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" - -#: 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: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:212 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" - -#: 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: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:229 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" - -#: 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: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:242 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Upozornění] Obdrženo přestavení" - -#: 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: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: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: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: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: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:265 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Upozornění] Máte nového následovníka" - -#: 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:280 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" - -#: 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:282 -#, php-format +#: include/auth.php:132 include/user.php:75 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." +"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/enotify.php:287 -msgid "Name:" -msgstr "Jméno:" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "Chybová zpráva byla:" -#: include/enotify.php:288 -msgid "Photo:" -msgstr "Foto:" - -#: 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:299 include/enotify.php:312 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Upozornění] Spojení akceptováno" - -#: include/enotify.php:300 include/enotify.php:313 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" - -#: 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:304 +#: include/group.php:25 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í." +"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/enotify.php:307 include/enotify.php:321 +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Defaultní soukromá skrupina pro nové kontakty." + +#: include/group.php:242 +msgid "Everybody" +msgstr "Všichni" + +#: include/group.php:265 +msgid "edit" +msgstr "editovat" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Skupiny" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Editovat skupinu" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Vytvořit novou skupinu" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Název skupiny: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Kontakty, které nejsou v žádné skupině" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "přidat" + +#: 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:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Často" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "každou hodinu" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Dvakrát denně" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "denně" + +#: 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:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "E-mail" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "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 "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Poslat příspěvek na e-mail" + +#: include/acl_selectors.php:332 #, 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." +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." -#: include/enotify.php:317 +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "zobrazit" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "nikdy nezobrazit" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "skrytá kopie: e-mailové adresy" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Příklad: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Oprávnění:" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Zavřít" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "fotografie" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "Stav" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "událost" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, 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.." +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s má rád %2$s' na %3$s" -#: include/enotify.php:319 +#: include/like.php:184 include/conversation.php:144 #, 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í" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nemá rád %2$s na %3$s" -#: include/enotify.php:332 -msgid "[Friendica System:Notify] registration request" -msgstr "[Systém Friendica :Upozornění] registrační požadavek" - -#: include/enotify.php:333 +#: include/like.php:186 #, 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" +msgid "%1$s is attending %2$s's %3$s" +msgstr "" -#: include/enotify.php:334 +#: include/like.php:188 #, 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'." +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" -#: include/enotify.php:337 +#: include/like.php:190 #, 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)" +msgid "%1$s may attend %2$s's %3$s" +msgstr "" -#: 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/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[bez předmětu]" -#: include/oembed.php:223 -msgid "Embedded content" -msgstr "vložený obsah" +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Fotografie na zdi" -#: include/oembed.php:232 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Klikněte zde pro aktualizaci." + +#: include/plugin.php:534 +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:539 +msgid "This action is not available under your subscription plan." +msgstr "Tato akce není v rámci Vašeho předplatného dostupná." #: include/uimport.php:94 msgid "Error decoding account file" @@ -7910,34 +694,8085 @@ 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" -#: index.php:441 -msgid "toggle mobile" -msgstr "přepnout mobil" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Různé" -#: 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)" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Narozeniny:" -#: 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." +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Věk: " -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Nastavení šířku grafické šablony" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Barevné schéma" +#: include/datetime.php:341 +msgid "never" +msgstr "nikdy" -#: 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." +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "méně než před sekundou" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Nastavit barevné schéma" +#: include/datetime.php:350 +msgid "year" +msgstr "rok" + +#: include/datetime.php:350 +msgid "years" +msgstr "let" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "měsíc" + +#: include/datetime.php:351 +msgid "months" +msgstr "měsíců" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "týdnem" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "týdny" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "den" + +#: include/datetime.php:353 +msgid "days" +msgstr "dnů" + +#: include/datetime.php:354 +msgid "hour" +msgstr "hodina" + +#: include/datetime.php:354 +msgid "hours" +msgstr "hodin" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minuta" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minut" + +#: include/datetime.php:356 +msgid "second" +msgstr "sekunda" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "sekund" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "před %1$d %2$s" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "%s má narozeniny" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Veselé narozeniny %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica Notifikace" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Děkujeme, " + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrátor" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "neodpovídat" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" + +#: include/enotify.php:85 +#, 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:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s Vám poslal %2$s." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "soukromá zpráva" + +#: include/enotify.php:88 +#, 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: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: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: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: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:161 +#, 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:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, 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:171 +#, 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:173 +#, 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: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:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Upozornění] %s Vás označil" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s Vás označil na %2$s" + +#: include/enotify.php:188 +#, 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:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" + +#: include/enotify.php:201 +#, 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:202 +#, 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:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s Vás šťouchnul na %2$s" + +#: include/enotify.php:216 +#, 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:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" + +#: include/enotify.php:233 +#, 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:234 +#, 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:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Upozornění] Obdrženo přestavení" + +#: include/enotify.php:247 +#, 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:248 +#, 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:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Můžete navštívit jejich profil na %s" + +#: include/enotify.php:254 +#, 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:262 +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:264 include/enotify.php:265 +#, 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:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Upozornění] Máte nového následovníka" + +#: include/enotify.php:273 include/enotify.php:274 +#, 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:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" + +#: include/enotify.php:287 +#, 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:288 +#, 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:293 +msgid "Name:" +msgstr "Jméno:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: include/enotify.php:297 +#, 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:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Upozornění] Spojení akceptováno" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" + +#: include/enotify.php:308 include/enotify.php:322 +#, 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:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, 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:340 +msgid "[Friendica System:Notify] registration request" +msgstr "[Systém Friendica :Upozornění] registrační požadavek" + +#: include/enotify.php:342 +#, 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:343 +#, 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:347 +#, 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:350 +#, 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/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Začíná:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Končí:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Místo:" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Neděle" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Pondělí" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Úterý" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Středa" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Čtvrtek" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Pátek" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Sobota" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Května" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Ledna" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Února" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Března" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Dubna" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Června" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Července" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Srpna" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Září" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Října" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Listopadu" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Prosinec" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Editovat událost" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "odkaz na zdroj" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Zde není nic nového" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Smazat notifikace" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Odhlásit se" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Konec této relace" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Stav" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Vaše příspěvky a konverzace" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profil" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Vaše profilová stránka" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Fotografie" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Vaše fotky" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Videa" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "Vaše videa" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Události" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Vaše události" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Vaše osobní poznámky" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Přihlásit se" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Přihlásit se" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Domů" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Domácí stránka" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registrovat" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Vytvořit účet" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Nápověda" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Nápověda a dokumentace" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Aplikace" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Doplňkové aplikace, nástroje, hry" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Vyhledávání" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Hledání na stránkách tohoto webu" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "Celý text" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "Štítky:" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Kontakty" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Komunita" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Konverzace na tomto webu" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Konverzace v síti" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Události a kalendář" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Adresář" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Adresář" + +#: include/nav.php:154 +msgid "Information" +msgstr "Informace" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Síť" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Konverzace od Vašich přátel" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Síťový Reset" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Načíst stránku Síť bez filtrů" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Představení" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Žádosti přátel" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Upozornění" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Zobrazit všechny upozornění" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Označit jako přečtené" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Označit všechny upozornění systému jako přečtené" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Zprávy" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Soukromá pošta" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Doručená pošta" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nová zpráva" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Spravovat" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Spravovat jiné stránky" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegace" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Správa delegátů stránky" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Nastavení" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Nastavení účtu" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profily" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Spravovat/Editovat Profily" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Spravovat/upravit přátelé a kontakty" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Administrace" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Nastavení webu a konfigurace" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navigace" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mapa webu" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Fotogalerie kontaktu" + +#: 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:373 +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/NotificationsManager.php:153 +msgid "System" +msgstr "Systém" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Osobní" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s okomentoval příspěvek uživatele %s'" + +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s vytvořil nový příspěvek" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s se nyní přátelí s %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Návrh přátelství" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Přítel / žádost o připojení" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nový následovník" + +#: 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:183 +msgid "Errors encountered creating database tables." +msgstr "Při vytváření databázových tabulek došlo k chybám." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "Při provádění databázových změn došlo k chybám." + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(Bez předmětu)" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Sdílení oznámení ze sítě Diaspora" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Přílohy:" + +#: include/network.php:595 +msgid "view full size" +msgstr "zobrazit v plné velikosti" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Zobrazit Profil" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Zobrazit Status" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Zobrazit Fotky" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Zobrazit Příspěvky sítě" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Odstranit kontakt" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Poslat soukromou zprávu" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Šťouchnout" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: include/api.php:1038 +#, 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:1059 +#, 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/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Obrázek/fotografie" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 napsal:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Šifrovaný obsah" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s je nyní přítel s %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s šťouchnul %2$s" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s je právě %2$s" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "příspěvek/položka" + +#: include/conversation.php:304 +#, 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:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Libí se mi" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Nelibí se mi" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Vybrat" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Odstranit" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Zobrazit profil uživatele %s na %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Kategorie:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Vyplněn pod:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Pohled v kontextu" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Čekejte prosím" + +#: include/conversation.php:870 +msgid "remove" +msgstr "odstranit" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Následovat vlákno" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s se to líbí." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s se to nelíbí." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "a" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", a %d dalších lidí" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d lidem se to líbí" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d lidem se to nelíbí" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Prosím zadejte URL adresu videa:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Štítek:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Uložit do složky:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Kde právě jste?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Smazat položku(y)?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Sdílet" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Nahrát fotografii" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "nahrát fotky" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Přiložit soubor" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "přidat soubor" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Vložit webový odkaz" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "webový odkaz" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Zadejte odkaz na video" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "odkaz na video" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Zadejte odkaz na zvukový záznam" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "odkaz na audio" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Nastavte vaši polohu" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "nastavit místo" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Odstranit adresu v prohlížeči" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "vymazat místo" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Nastavit titulek" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (čárkou oddělený seznam)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Nastavení oprávnění" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "oprávnění" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Veřejný příspěvek" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Náhled" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Zrušit" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Zveřejnit na Groups" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Zveřejnit na Groups" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Soukromý příspěvek" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Zpráva" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 +msgid "General Features" +msgstr "Obecné funkčnosti" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "Vícenásobné profily" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "Schopnost vytvořit vícenásobné profily" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "Nastavení vytváření příspěvků" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "Richtext Editor" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "Povolit richtext editor" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "Náhled příspěvku" + +#: include/features.php:81 +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:82 +msgid "Auto-mention Forums" +msgstr "Automaticky zmíněná Fóra" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "Síťové postranní widgety" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Vyhledávat dle Data" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "Možnost označit příspěvky dle časového intervalu" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "Skupinový Filtr" + +#: include/features.php:90 +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:91 +msgid "Network Filter" +msgstr "Síťový Filtr" + +#: include/features.php:91 +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:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Uložená hledání" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "Uložit kritéria vyhledávání pro znovupoužití" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "Síťové záložky" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "Osobní síťový záložka " + +#: include/features.php:98 +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:99 +msgid "Network New Tab" +msgstr "Nová záložka síť" + +#: include/features.php:99 +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:100 +msgid "Network Shared Links Tab" +msgstr "záložka Síťové sdílené odkazy " + +#: include/features.php:100 +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:105 +msgid "Post/Comment Tools" +msgstr "Nástroje Příspěvků/Komentářů" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "Násobné mazání" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "Označit a smazat více " + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "Editovat Odeslané příspěvky" + +#: include/features.php:107 +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:108 +msgid "Tagging" +msgstr "Štítkování" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "Kategorie příspěvků" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "Přidat kategorie k Vašim příspěvkům" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "Možnost řadit příspěvky do složek" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "Označit příspěvky jako neoblíbené" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "Příspěvky s hvězdou" + +#: include/features.php:112 +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:113 +msgid "Mute Post Notifications" +msgstr "Utlumit upozornění na přísvěvky" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "Možnost stlumit upozornění pro vlákno" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Nepovolené URL profilu." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "Chybí URL adresa." + +#: include/follow.php:113 +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:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "Autor nebo jméno nenalezeno" + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Této adrese neodpovídá žádné URL prohlížeče." + +#: include/follow.php:140 +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:141 +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:147 +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:157 +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:258 +msgid "Unable to retrieve contact information." +msgstr "Nepodařilo se získat kontaktní informace." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Požadovaný účet není dostupný." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Požadovaný profil není k dispozici." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Upravit profil" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Spravovat/upravit profily" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Změnit profilovou fotografii" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Vytvořit nový profil" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Profilový obrázek" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "viditelné pro všechny" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Upravit viditelnost" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Pohlaví:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Domácí stránka:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "O mě:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Síť:" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[Dnes]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Žádný popis]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Připomenutí událostí" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Události tohoto týdne:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Celé jméno:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Věk:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "pro %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Sexuální preference:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Rodné město" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Štítky:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Politické přesvědčení:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Náboženství:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Koníčky/zájmy:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Líbí se:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Nelibí se:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Kontaktní informace a sociální sítě:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Hudební vkus:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Knihy, literatura:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Televize:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/tanec/kultura/zábava:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Láska/romance" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Práce/zaměstnání:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Škola/vzdělávání:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Pokročilé" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Statusové zprávy a příspěvky " + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Detaily profilu" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Fotoalba" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Osobní poznámky" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen Vy" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Jméno odepřeno]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Položka nenalezena." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Opravdu chcete smazat tuto položku?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Ano" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Přístup odmítnut." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Archív" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "vložený obsah" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Vkládání zakázáno" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "následující" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "následování zastaveno" + +#: include/text.php:304 +msgid "newer" +msgstr "novější" + +#: include/text.php:306 +msgid "older" +msgstr "starší" + +#: include/text.php:311 +msgid "prev" +msgstr "předchozí" + +#: include/text.php:313 +msgid "first" +msgstr "první" + +#: include/text.php:345 +msgid "last" +msgstr "poslední" + +#: include/text.php:348 +msgid "next" +msgstr "další" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Načítání více záznamů..." + +#: include/text.php:404 +msgid "The end" +msgstr "Konec" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Žádné kontakty" + +#: include/text.php:912 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktů" +msgstr[2] "%d kontaktů" + +#: include/text.php:925 +msgid "View Contacts" +msgstr "Zobrazit kontakty" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Uložit" + +#: include/text.php:1076 +msgid "poke" +msgstr "šťouchnout" + +#: include/text.php:1076 +msgid "poked" +msgstr "šťouchnut" + +#: include/text.php:1077 +msgid "ping" +msgstr "cinknout" + +#: include/text.php:1077 +msgid "pinged" +msgstr "cinkut" + +#: include/text.php:1078 +msgid "prod" +msgstr "pobídnout" + +#: include/text.php:1078 +msgid "prodded" +msgstr "pobídnut" + +#: include/text.php:1079 +msgid "slap" +msgstr "dát facku" + +#: include/text.php:1079 +msgid "slapped" +msgstr "být uhozen" + +#: include/text.php:1080 +msgid "finger" +msgstr "osahávat" + +#: include/text.php:1080 +msgid "fingered" +msgstr "osaháván" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "odmítnout" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "odmítnut" + +#: include/text.php:1095 +msgid "happy" +msgstr "šťasný" + +#: include/text.php:1096 +msgid "sad" +msgstr "smutný" + +#: include/text.php:1097 +msgid "mellow" +msgstr "jemný" + +#: include/text.php:1098 +msgid "tired" +msgstr "unavený" + +#: include/text.php:1099 +msgid "perky" +msgstr "emergický" + +#: include/text.php:1100 +msgid "angry" +msgstr "nazlobený" + +#: include/text.php:1101 +msgid "stupified" +msgstr "otupen" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "popletený" + +#: include/text.php:1103 +msgid "interested" +msgstr "zajímavý" + +#: include/text.php:1104 +msgid "bitter" +msgstr "hořký" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "radnostný" + +#: include/text.php:1106 +msgid "alive" +msgstr "naživu" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "otráven" + +#: include/text.php:1108 +msgid "anxious" +msgstr "znepokojený" + +#: include/text.php:1109 +msgid "cranky" +msgstr "mrzutý" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "vyrušen" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "frustrovaný" + +#: include/text.php:1112 +msgid "motivated" +msgstr "motivovaný" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "uvolněný" + +#: include/text.php:1114 +msgid "surprised" +msgstr "překvapený" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Zobrazit video" + +#: include/text.php:1356 +msgid "bytes" +msgstr "bytů" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "Klikněte pro otevření/zavření" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "Zobrazit na separátní stránce" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "Zobrazit na separátní stránce" + +#: include/text.php:1806 +msgid "activity" +msgstr "aktivita" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "komentář" + +#: include/text.php:1809 +msgid "post" +msgstr "příspěvek" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "Položka vyplněna" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Hesla se neshodují. Heslo nebylo změněno." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Pozvánka je vyžadována." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Pozvánka nemohla být ověřena." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Neplatný odkaz OpenID" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Zadejte prosím požadované informace." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Použijte prosím kratší jméno." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Jméno je příliš krátké." + +#: include/user.php:113 +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:118 +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:121 +msgid "Not a valid email address." +msgstr "Neplatná e-mailová adresa." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Tento e-mail nelze použít." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"." + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." + +#: include/user.php:157 +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:173 +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:231 +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:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "standardní" + +#: include/user.php:266 +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:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Profilové fotografie" + +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 +#, 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:438 +#, 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:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Registrační údaje pro %s" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Příspěvek úspěšně odeslán" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Přístup odmítnut" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Vítá Vás %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Žádné další systémová upozornění." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Systémová upozornění" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Odstranit termín" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Veřejný přístup odepřen." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Žádné výsledky." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Položky označené s: %s" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Toto je Friendica, verze" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "běžící na webu" + +#: mod/friendica.php:73 +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:75 +msgid "Bug reports and issues: please visit" +msgstr "Pro hlášení chyb a námětů na změny navštivte:" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:76 +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:90 +msgid "Installed plugins/addons/apps:" +msgstr "Instalované pluginy/doplňky/aplikace:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Nejsou žádné nainstalované doplňky/aplikace" + +#: 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:1807 +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 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Přezdívka nebo e-mail: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reset" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Žádný profil" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Nápověda:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Nenalezen" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Stránka nenalezena" + +#: 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/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." + +#: mod/openid.php:60 +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/uimport.php:50 mod/register.php:198 +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/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Import" + +#: 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 (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: 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/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Navštivte profil uživatele %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Editovat kontakt" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Kontakty, které nejsou členy skupiny" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "Exportovat účet" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "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:30 +msgid "Export all" +msgstr "Exportovat vše" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "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/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Export osobních údajů" + +#: 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:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Vaše zpráva:" + +#: 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/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Odeslat" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Soubory" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Nedostatečné oprávnění" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Neplatný identifikátor profilu." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor viditelnosti profilu " + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Viditelný pro" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" + +#: 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/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Odstranit" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Žádní potenciální delegáti stránky nenalezeni." + +#: 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/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- vyber -" + +#: 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/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/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Musíte být přihlášeni pro použití rozšíření." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Aplikace" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Žádné nainstalované aplikace." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Nerozšířeně" + +#: 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 mod/profile_photo.php:250 mod/profiles.php:707 +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:51 +msgid "Importing Emails" +msgstr "Importování emaiů" + +#: mod/newmember.php:51 +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:53 +msgid "Go to Your Contacts Page" +msgstr "Navštivte Vaši stránku s kontakty" + +#: mod/newmember.php:53 +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:55 +msgid "Go to Your Site's Directory" +msgstr "Navštivte lokální adresář Friendica" + +#: mod/newmember.php:55 +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:57 +msgid "Finding New People" +msgstr "Nalezení nových lidí" + +#: mod/newmember.php:57 +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:65 +msgid "Group Your Contacts" +msgstr "Seskupte si své kontakty" + +#: mod/newmember.php:65 +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:68 +msgid "Why Aren't My Posts Public?" +msgstr "Proč nejsou mé příspěvky veřejné?" + +#: mod/newmember.php:68 +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:73 +msgid "Getting Help" +msgstr "Získání nápovědy" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Navštivte sekci nápovědy" + +#: mod/newmember.php:77 +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/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/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Položka nenalezena" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Upravit příspěvek" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Časová konverze" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "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" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC čas: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuální časové pásmo: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +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/bookmarklet.php:41 +msgid "The post was created" +msgstr "Příspěvek byl vytvořen" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Skupina vytvořena." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Nelze vytvořit skupinu." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Skupina nenalezena." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Název skupiny byl změněn." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Uložit Skupinu" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Vytvořit skupinu kontaktů / přátel." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Skupina odstraněna. " + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nelze odstranit skupinu." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Editor skupin" + +#: mod/group.php:190 +msgid "Members" +msgstr "Členové" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Všechny kontakty" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Skupina je prázdná" + +#: 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:71 +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:78 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." + +#: mod/wallmessage.php:68 mod/message.php:84 +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:341 +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:342 mod/message.php:536 +msgid "To:" +msgstr "Adresát:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Předmět:" + +#: mod/share.php:38 +msgid "link" +msgstr "odkaz" + +#: 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/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Ne" + +#: 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/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "ignorován" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s vítá %2$s" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Nepodařilo se najít kontaktní informace." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Opravdu chcete smazat tuto zprávu?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Zpráva odstraněna." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Konverzace odstraněna." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Žádné zprávy." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Zpráva není k dispozici." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Smazat zprávu" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Odstranit konverzaci" + +#: mod/message.php:531 +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:535 +msgid "Send Reply" +msgstr "Poslat odpověď" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Neznámý odesilatel - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Vy a %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s a Vy" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D M R - g:i A" + +#: mod/message.php:615 +#, 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/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Správa identit a / nebo stránek" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "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:141 +msgid "Select an identity to manage: " +msgstr "Vyberte identitu pro správu: " + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Nastavení kontaktu změněno" + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Aktualizace kontaktu selhala." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Kontakt nenalezen." + +#: mod/crepair.php:120 +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:121 +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:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "Žádné zrcadlení" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "Zrcadlit pro přeposlané příspěvky" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "Zrcadlit jako mé vlastní příspěvky" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Návrat k editoru kontaktu" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "Znovu načíst data kontaktu" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "Remote Self" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "Zrcadlení správ od tohoto kontaktu" + +#: mod/crepair.php:161 +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/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Jméno" + +#: 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/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Žádná taková skupina" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "Skupina: %s" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Tento záznam byl editován" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komentář" +msgstr[1] "%d komentářů" +msgstr[2] "%d komentářů" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Soukromá zpráva" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Líbí se mi to (přepínač)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "má rád" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Nelíbí se mi to (přepínač)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "nemá rád" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Sdílet toto" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "sdílí" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Nastavte Vaši polohu" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Okomentovat" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Tučné" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Kurzíva" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Podrtžené" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Citovat" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Kód" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Obrázek" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Odkaz" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Upravit" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "přidat hvězdu" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "odebrat hvězdu" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "přepnout hvězdu" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "označeno hvězdou" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "přidat štítek" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "ignorovat vlákno" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "přestat ignorovat vlákno" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "přepnout stav Ignorování" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "uložit do složky" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "pro" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Zeď-na-Zeď" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "přes Zeď-na-Zeď " + +#: 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/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/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/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:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Nepodařilo se snížit velikost obrázku [%s]." + +#: mod/profile_photo.php:124 +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ě." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Obrázek nelze zpracovat " + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Obrázek překročil limit velikosti %s" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Nahrát soubor:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Vybrat profil:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Nahrát" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "nebo" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "přeskočit tento krok " + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "Vybrat fotografii z Vašich fotoalb" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Oříznout obrázek" + +#: mod/profile_photo.php:269 +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:271 +msgid "Done Editing" +msgstr "Editace dokončena" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Obrázek byl úspěšně nahrán." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." + +#: 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/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Neplatný identifikátor požadavku." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Odstranit" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignorovat" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Upozornění Sítě" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Osobní upozornění" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Upozornění na vstupní straně" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Zobrazit ignorované žádosti" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Skrýt ignorované žádosti" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Typ oznámení: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "navrhl %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Zveřejnit aktivitu nového přítele." + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "je-li použitelné" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Schválit" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Vaši údajní známí: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "ano" + +#: mod/notifications.php:196 +msgid "no" +msgstr "ne" + +#: mod/notifications.php:197 +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 "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:200 +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 "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:209 +msgid "Friend" +msgstr "Přítel" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Sdílené" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fanoušek / obdivovatel" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "URL profilu" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Žádné představení." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Profil nenalezen" + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil smazán." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Nový profil vytvořen." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Profil není možné naklonovat." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Jméno profilu je povinné." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Rodinný Stav" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Romatický partner" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Práce/Zaměstnání" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Náboženství" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Politické přesvědčení" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Pohlaví" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Sexuální orientace" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Domácí stránka" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Zájmy" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Adresa" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Lokace" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Profil aktualizován." + +#: mod/profiles.php:564 +msgid " and " +msgstr " a " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "veřejný profil" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s změnil %2$s na “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Navštivte %2$s uživatele %1$s" + +#: mod/profiles.php:579 +#, 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:645 +msgid "Hide contacts and friends:" +msgstr "Skrýt kontakty a přátele:" + +#: mod/profiles.php:650 +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:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Upravit podrobnosti profilu " + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Změna Profilové fotky" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Zobrazit tento profil" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Vytvořit nový profil pomocí tohoto nastavení" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Klonovat tento profil" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Smazat tento profil" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "Základní informace" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "Profilový obrázek" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "Nastavení" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "Statusové informace" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "Dodatečné informace" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Vaše pohlaví:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Rodinný stav:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Příklad: fishing photography software" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Jméno profilu:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Vyžadováno" + +#: mod/profiles.php:718 +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:719 +msgid "Your Full Name:" +msgstr "Vaše celé jméno:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Název / Popis:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Ulice:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Město:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Region / stát:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "PSČ:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Země:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Kdo: (pokud je možné)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Řekněte nám něco o sobě ..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Odkaz na domovskou stránku:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Náboženské přesvědčení:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Veřejná klíčová slova:" + +#: mod/profiles.php:740 +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:741 +msgid "Private Keywords:" +msgstr "Soukromá klíčová slova:" + +#: mod/profiles.php:741 +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:744 +msgid "Musical interests" +msgstr "Hudební vkus" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Knihy, literatura" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Televize" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Film/tanec/kultura/zábava" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Koníčky/zájmy" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Láska/romantika" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Práce/zaměstnání" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Škola/vzdělání" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Kontaktní informace a sociální sítě" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Upravit / Spravovat profily" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Žádní přátelé k zobrazení" + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Přístup na tento profil byl omezen." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Předchozí" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Dále" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Žádné společné kontakty." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Společní přátelé" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Není k dispozici." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Globální adresář" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Nalézt na tomto webu" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Adresář serveru" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Žádné záznamy (některé položky mohou být skryty)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Vyhledávání lidí - %s" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Žádné shody" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Položka byla odstraněna." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "Událost nemůže končit dříve, než začala." + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Název události a datum začátku jsou vyžadovány." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Vytvořit novou událost" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Detaily události" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "Počáteční datum a Název jsou vyžadovány." + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Událost začíná:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Datum/čas konce není zadán nebo není relevantní" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Akce končí:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Popis:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Název:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Sdílet tuto událost" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Systém vypnut z důvodů údržby" + +#: mod/match.php:33 +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:86 +msgid "is interested in:" +msgstr "zajímá se o:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Shoda profilu" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipy pro nové členy" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Opravdu chcete smazat tento návrh?" + +#: mod/suggest.php:71 +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:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignorovat / skrýt" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Vložený obsah - obnovte stránku pro zobrazení]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Aktuální fotografie" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Nahrát nové fotografie" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "Žádost o připojení selhala nebo byla zrušena." + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Kontakt byl zablokován" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Album nenalezeno." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Smazat album" + +#: mod/photos.php:230 +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:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Smazat fotografii" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Opravdu chcete smazat tuto fotografii?" + +#: mod/photos.php:688 +#, 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:688 +msgid "a photo" +msgstr "fotografie" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Není vybrána žádná fotografie" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Přístup k této položce je omezen." + +#: mod/photos.php:1114 +#, 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:1148 +msgid "Upload Photos" +msgstr "Nahrání fotografií " + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Název nového alba: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "nebo stávající název alba: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Nezobrazovat stav pro tento upload" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Zobrazit ve Skupinách" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Zobrazit v Kontaktech" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Soukromé Fotografie" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Veřejné Fotografie" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Edituj album" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Zobrazit nejprve nejnovější:" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Zobrazit nejprve nejstarší:" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Zobraz fotografii" + +#: mod/photos.php:1315 +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:1317 +msgid "Photo not available" +msgstr "Fotografie není k dispozici" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Zobrazit obrázek" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Editovat fotografii" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Použít jako profilovou fotografii" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Zobrazit v plné velikosti" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Štítky: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Odstranit všechny štítky]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nové jméno alba" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Titulek" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Přidat štítek" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "Neotáčet" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Soukromé fotografie" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Veřejné fotografie" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Zobrazit album" + +#: mod/register.php:93 +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:98 +#, 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 "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Vaši registraci nelze zpracovat." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Vaše registrace čeká na schválení vlastníkem serveru." + +#: mod/register.php:226 +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:227 +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:228 +msgid "Your OpenID (optional): " +msgstr "Vaše OpenID (nepovinné): " + +#: mod/register.php:242 +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:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Členství na tomto webu je pouze na pozvání." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Vaše pozvání ID:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Registrace" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Vaše e-mailová adresa:" + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nové heslo:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "Ponechte prázdné pro automatické vygenerovaní hesla." + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Potvrďte:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'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:286 +msgid "Choose a nickname: " +msgstr "Vyberte přezdívku:" + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "Import Vašeho profilu do této friendica instance" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Účet" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Další funkčnosti" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Zobrazení" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "Sociální sítě" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Pluginy" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Propojené aplikace" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Odstranit účet" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Chybí některé důležité údaje!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Aktualizace" + +#: mod/settings.php:269 +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:274 +msgid "Email settings updated." +msgstr "Nastavení e-mailu aktualizována." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Aktualizované funkčnosti" + +#: mod/settings.php:359 +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:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Špatné heslo." + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Heslo bylo změněno." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr "Prosím použijte kratší jméno." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr "Jméno je příliš krátké." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Špatné heslo" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr "Neplatný e-mail." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr "Nelze provést změnu na tento e-mail." + +#: mod/settings.php:557 +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:561 +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:601 +msgid "Settings updated." +msgstr "Nastavení aktualizováno." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Přidat aplikaci" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Uložit Nastavení" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Přesměrování" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "URL ikony" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Nemůžete editovat tuto aplikaci." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Připojené aplikace" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Klienský klíč začíná" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Bez názvu" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Odstranit oprávnění" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Žádný doplněk není nastaven" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Nastavení doplňku" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Vypnuto" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Zapnuto" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Další Funkčnosti" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "General Social Media nastavení" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "Vypnout inteligentní zkracování" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "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:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Vestavěná podpora pro připojení s %s je %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "povoleno" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "zakázáno" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "Přístup k elektronické poště je na tomto serveru zakázán." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Nastavení e-mailu" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "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:893 +msgid "Last successful email check:" +msgstr "Poslední úspěšná kontrola e-mailu:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "jméno IMAP serveru:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Zabezpečení:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Žádný" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "přihlašovací jméno k e-mailu:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "heslo k Vašemu e-mailu:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Odpovědět na adresu:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Akce po importu:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Přesunout do složky" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Přesunout do složky:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "žádné speciální téma pro mobilní zařízení" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Nastavení Zobrazení" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Vybrat grafickou šablonu:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Téma pro mobilní zařízení:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Aktualizovat prohlížeč každých xx sekund" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Počet položek zobrazených na stránce:" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Maximum 100 položek" + +#: mod/settings.php:1005 +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:1006 +msgid "Don't show emoticons" +msgstr "Nezobrazovat emotikony" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "Nezobrazovat oznámění" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "Nekonečné posouvání" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatické aktualizace pouze na hlavní stránce Síť." + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Nastavení téma" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Normální stránka účtu" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Tento účet je běžný osobní profil" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Stránka \"Soapbox\"" + +#: mod/settings.php:1129 +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:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Automatická stránka přítele" + +#: mod/settings.php:1137 +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:1140 +msgid "Private Forum [Experimental]" +msgstr "Soukromé fórum [Experimentální]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Soukromé fórum - pouze pro schválené členy" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." + +#: mod/settings.php:1163 +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:1169 +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:1177 +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:1181 +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:1186 +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:1192 +msgid "Allow friends to tag your posts?" +msgstr "Povolit přátelům označovat Vaše příspěvky?" + +#: mod/settings.php:1198 +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:1204 +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:1212 +msgid "Profile is not published." +msgstr "Profil není zveřejněn." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Vaše Identity adresa je \"%s\" nebo \"%s\"." + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" + +#: mod/settings.php:1227 +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:1228 +msgid "Advanced expiration settings" +msgstr "Pokročilé nastavení expirací" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Nastavení expirací" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Expirovat příspěvky:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Expirovat osobní poznámky:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Expirovat příspěvky s hvězdou:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Expirovat fotografie:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Přízpěvky expirovat pouze ostatními:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Nastavení účtu" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Nastavení hesla" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Stávající heslo:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "Vaše stávající heslo k potvrzení změn" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Heslo: " + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Základní nastavení" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "E-mailová adresa:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Vaše časové pásmo:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Výchozí umístění příspěvků:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Používat umístění dle prohlížeče:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Nastavení zabezpečení a soukromí" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximální počet žádostí o přátelství za den:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(Aby se zabránilo spamu)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Výchozí oprávnění pro příspěvek" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(Klikněte pro otevření/zavření)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Výchozí Soukromý příspěvek" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Výchozí Veřejný příspěvek" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Výchozí oprávnění pro nové příspěvky" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum soukromých zpráv od neznámých lidí:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Nastavení notifikací" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Defaultně posílat statusové zprávy když:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "akceptuji požadavek na přátelství" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "připojující se k fóru/komunitě" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "provedení zajímavé profilové změny" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Poslat notifikaci e-mailem, když" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "obdržíte žádost o propojení" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Vaše žádosti jsou potvrzeny" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "někdo Vám napíše na Vaši profilovou stránku" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "někdo Vám napíše následný komentář" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "obdržíte soukromou zprávu" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Obdržel jste návrh přátelství" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Jste označen v příspěvku" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "Byl Jste šťouchnout v příspěvku" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "Aktivovat upozornění na desktopu" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "Zobrazit dektopové zprávy nových upozornění." + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "Pouze textové notifikační e-maily" + +#: mod/settings.php:1341 +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:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Pokročilé nastavení účtu/stránky" + +#: mod/settings.php:1344 +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:1347 +msgid "Relocate" +msgstr "Změna umístění" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "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:1349 +msgid "Resend relocate message to contacts" +msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "Opravdu chcete smazat toto video?" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "Odstranit video" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Není vybráno žádné video" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Aktuální Videa" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Nahrát nová videa" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "Neplatný požadavek." + +#: mod/wall_attach.php:94 +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:94 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával jste prázdný soubor?" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Velikost souboru přesáhla limit %s" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Nahrání souboru se nezdařilo." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Nastavení téma zobrazení bylo aktualizováno." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Web" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Uživatelé" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Témata" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Aktualizace databáze" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "Proskoumat frontu" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Logy" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "vyzkoušet adresu" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "vyzkoušet webfinger" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Funkčnosti rozšíření" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "diagnostika" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Registrace uživatele čeká na potvrzení" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Administrace" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "Identifikátor" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "Jméno příjemce" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "Profil píjemce" + +#: mod/admin.php:412 +msgid "Created" +msgstr "Vytvořeno" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "Naposled vyzkoušeno" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Normální účet" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Soapbox účet" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Komunitní účet / Účet celebrity" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Účet s automatickým schvalováním přátel" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Účet Blogu" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Soukromé fórum" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Fronty zpráv" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Shrnutí" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Registrovaní uživatelé" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Čekající registrace" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Verze" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Aktivní pluginy" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Nastavení webu aktualizováno." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "Komunitní stránka neexistuje" + +#: mod/admin.php:882 +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:883 +msgid "Global community page" +msgstr "Globální komunitní stránka" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Nikdy" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "Při obdržení příspěvku" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "Zakázáno" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "Uživatelé, Všechny kontakty" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "Jeden měsíc" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "Tři měsíce" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "Půl roku" + +#: mod/admin.php:907 +msgid "One year" +msgstr "Jeden rok" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Více uživatelská instance" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Uzavřeno" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Vyžaduje schválení" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Otevřená" + +#: mod/admin.php:941 +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:942 +msgid "Force all links to use SSL" +msgstr "Vyžadovat u všech odkazů použití SSL" + +#: mod/admin.php:943 +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:957 +msgid "File upload" +msgstr "Nahrání souborů" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Politiky" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Výkonnost" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +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:966 +msgid "Site name" +msgstr "Název webu" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "Jméno hostitele (host name)" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "Email ddesílatele" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Banner/logo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "Ikona zkratky" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "Dotyková ikona" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "Dodatečné informace" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Systémový jazyk" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Grafická šablona systému " + +#: mod/admin.php:974 +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:975 +msgid "Mobile system theme" +msgstr "Systémové téma zobrazení pro mobilní zařízení" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Téma zobrazení pro mobilní zařízení" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Politika SSL odkazů" + +#: mod/admin.php:976 +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:977 +msgid "Force SSL" +msgstr "Vynutit SSL" + +#: mod/admin.php:977 +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:978 +msgid "Old style 'Share'" +msgstr "Sdílení \"postaru\"" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "skrýt nápovědu z navigačního menu" + +#: mod/admin.php:979 +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:980 +msgid "Single user instance" +msgstr "Jednouživatelská instance" + +#: mod/admin.php:980 +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:981 +msgid "Maximum image size" +msgstr "Maximální velikost obrázků" + +#: mod/admin.php:981 +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:982 +msgid "Maximum image length" +msgstr "Maximální velikost obrázků" + +#: mod/admin.php:982 +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:983 +msgid "JPEG image quality" +msgstr "JPEG kvalita obrázku" + +#: mod/admin.php:983 +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:985 +msgid "Register policy" +msgstr "Politika registrace" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Maximální počet denních registrací" + +#: mod/admin.php:986 +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:987 +msgid "Register text" +msgstr "Registrace textu" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Bude zřetelně zobrazeno na registrační stránce." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Účet je opuštěn po x dnech" + +#: mod/admin.php:988 +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:989 +msgid "Allowed friend domains" +msgstr "Povolené domény přátel" + +#: mod/admin.php:989 +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:990 +msgid "Allowed email domains" +msgstr "Povolené e-mailové domény" + +#: mod/admin.php:990 +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:991 +msgid "Block public" +msgstr "Blokovat veřejnost" + +#: mod/admin.php:991 +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:992 +msgid "Force publish" +msgstr "Publikovat" + +#: mod/admin.php:992 +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:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "Povolit vícevláknové zpracování obsahu" + +#: mod/admin.php:994 +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:995 +msgid "Private posts by default for new users" +msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" + +#: mod/admin.php:995 +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:996 +msgid "Don't include post content in email notifications" +msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" + +#: mod/admin.php:996 +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:997 +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:997 +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:998 +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:998 +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 "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:999 +msgid "Allow Users to set remote_self" +msgstr "Umožnit uživatelům nastavit " + +#: mod/admin.php:999 +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:1000 +msgid "Block multiple registrations" +msgstr "Blokovat více registrací" + +#: mod/admin.php:1000 +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:1001 +msgid "OpenID support" +msgstr "podpora OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "Podpora OpenID pro registraci a přihlašování." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "kontrola úplného jména" + +#: mod/admin.php:1002 +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:1003 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Regulární výrazy" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Použít PHP UTF8 regulární výrazy." + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "Styl komunitní stránky" + +#: mod/admin.php:1004 +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:1005 +msgid "Posts per user on community page" +msgstr "Počet příspěvků na komunitní stránce" + +#: mod/admin.php:1005 +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:1006 +msgid "Enable OStatus support" +msgstr "Zapnout podporu OStatus" + +#: mod/admin.php:1006 +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:1007 +msgid "OStatus conversation completion interval" +msgstr "Interval dokončení konverzace OStatus" + +#: mod/admin.php:1007 +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:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Povolit podporu Diaspora" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Povolit pouze Friendica kontakty" + +#: mod/admin.php:1013 +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:1014 +msgid "Verify SSL" +msgstr "Ověřit SSL" + +#: mod/admin.php:1014 +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:1015 +msgid "Proxy user" +msgstr "Proxy uživatel" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "Proxy URL adresa" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "čas síťového spojení vypršelo (timeout)" + +#: mod/admin.php:1017 +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:1018 +msgid "Delivery interval" +msgstr "Interval doručování" + +#: mod/admin.php:1018 +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:1019 +msgid "Poll interval" +msgstr "Dotazovací interval" + +#: mod/admin.php:1019 +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:1020 +msgid "Maximum Load Average" +msgstr "Maximální průměrné zatížení" + +#: mod/admin.php:1020 +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:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximální průměrné zatížení (Frontend)" + +#: mod/admin.php:1021 +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:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "Pravidelně ověřování globálních kontaktů" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "Objevit kontakty z ostatních serverů" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "Hledat v lokálním adresáři" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "Zveřejnit informace o serveru" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "Použít fulltextový vyhledávací stroj MySQL" + +#: mod/admin.php:1033 +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:1034 +msgid "Suppress Language" +msgstr "Potlačit Jazyk" + +#: mod/admin.php:1034 +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:1035 +msgid "Suppress Tags" +msgstr "Potlačit štítky" + +#: mod/admin.php:1035 +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:1036 +msgid "Path to item cache" +msgstr "Cesta k položkám vyrovnávací paměti" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "Doba platnosti vyrovnávací paměti v sekundách" + +#: mod/admin.php:1037 +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:1038 +msgid "Maximum numbers of comments per post" +msgstr "Maximální počet komentářů k příspěvku" + +#: mod/admin.php:1038 +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:1039 +msgid "Path for lock file" +msgstr "Cesta k souboru zámku" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Cesta k dočasným souborům" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "Základní cesta k instalaci" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "Vypnutí obrázkové proxy" + +#: mod/admin.php:1042 +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:1043 +msgid "Enable old style pager" +msgstr "Aktivovat \"old style\" stránkování " + +#: mod/admin.php:1043 +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:1044 +msgid "Only search in tags" +msgstr "Hledat pouze ve štítkách" + +#: mod/admin.php:1044 +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:1046 +msgid "New base url" +msgstr "Nová výchozí url adresa" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "RINO Šifrování" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "Šifrovací vrstva mezi nódy." + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Aktualizace byla označena jako úspěšná." + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." + +#: mod/admin.php:1095 +#, 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:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Vykonávání %s selhalo s chybou: %s" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Aktualizace %s byla úspěšně aplikována." + +#: mod/admin.php:1114 +#, 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:1116 +#, 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:1135 +msgid "No failed updates." +msgstr "Žádné neúspěšné aktualizace." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "Ověření struktury databáze" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Neúspěšné aktualizace" + +#: mod/admin.php:1142 +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:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Pokusit se provést tuto aktualizaci automaticky." + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\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:1181 +#, php-format +msgid "" +"\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." +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:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +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:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s uživatel smazán" +msgstr[1] "%s uživatelů smazáno" +msgstr[2] "%s uživatelů smazáno" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Uživatel '%s' smazán" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Uživatel '%s' odblokován" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Uživatel '%s' blokován" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Datum registrace" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Datum posledního přihlášení" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Poslední položka" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "Přidat Uživatele" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "Vybrat vše" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Registrace uživatele čeká na potvrzení" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "Uživatel čeká na trvalé smazání" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Datum žádosti" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Žádné registrace." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Odmítnout" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Blokovat" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Odblokovat" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Site administrátor" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Účtu vypršela platnost" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "Nový uživatel" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "Smazán od" + +#: mod/admin.php:1427 +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:1428 +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:1438 +msgid "Name of the new user." +msgstr "Jméno nového uživatele" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "Přezdívka" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "Přezdívka nového uživatele." + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "Emailová adresa nového uživatele." + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s zakázán." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s povolen." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Zakázat" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Povolit" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Přepnout" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Autor: " + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Správce: " + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Nenalezeny žádná témata." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Snímek obrazovky" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Experimentální]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Nepodporováno]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Nastavení protokolu aktualizováno." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Vyčistit" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "Povolit ladění" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Soubor s logem" + +#: mod/admin.php:1912 +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:1913 +msgid "Log level" +msgstr "Úroveň auditu" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Nelze získat přístup k záznamu kontaktu." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Nelze nalézt vybraný profil." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Kontakt aktualizován." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Nepodařilo se aktualizovat kontakt." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Kontakt byl zablokován" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Kontakt byl odblokován" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Kontakt bude ignorován" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Kontakt přestal být ignorován" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Kontakt byl archivován" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Kontakt byl vrácen z archívu." + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Opravdu chcete smazat tento kontakt?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Kontakt byl odstraněn." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jste vzájemní přátelé s uživatelem %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Sdílíte s uživatelem %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "uživatel %s sdílí s vámi" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Soukromá komunikace není dostupná pro tento kontakt." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Aktualizace byla úspěšná)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Aktualizace nebyla úspěšná)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Navrhněte přátelé" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Typ sítě: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Komunikace s tímto kontaktem byla ztracena!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "Načítat další informace pro kanál" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "Načítat informace" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "Načítat informace a klíčová slova" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Viditelnost profilu" + +#: mod/contacts.php:579 +#, 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:580 +msgid "Contact Information / Notes" +msgstr "Kontaktní informace / poznámky" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Editovat poznámky kontaktu" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Blokovat / Odblokovat kontakt" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignorovat kontakt" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Opravit nastavení adresy URL " + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Zobrazit konverzace" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Poslední aktualizace:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Aktualizovat veřejné příspěvky" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Aktualizovat" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Přestat ignorovat" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "V současnosti zablokováno" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "V současnosti ignorováno" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Aktuálně archivován" + +#: mod/contacts.php:613 +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:614 +msgid "Notification for new posts" +msgstr "Upozornění na nové příspěvky" + +#: mod/contacts.php:614 +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:617 +msgid "Blacklisted keywords" +msgstr "Zakázaná klíčová slova" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Čá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:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Doporučení" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Navrhnout potenciální přátele" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Zobrazit všechny kontakty" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Odblokován" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Zobrazit pouze neblokované kontakty" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Blokován" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Zobrazit pouze blokované kontakty" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Ignorován" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Zobrazit pouze ignorované kontakty" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Archivován" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Zobrazit pouze archivované kontakty" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Skrytý" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Zobrazit pouze skryté kontakty" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Prohledat Vaše kontakty" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Archivovat" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Vrátit z archívu" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Zobrazit všechny kontakty" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Pokročilé nastavení kontaktu" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Vzájemné přátelství" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "je Váš fanoušek" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "jste fanouškem" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Přepnout stav Blokováno" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Přepnout stav Ignorováno" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Přepnout stav Archivováno" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Odstranit kontakt" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Neočekávaná odpověď od vzdáleného serveru:" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Potvrzení úspěšně dokončena." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Vzdálený server oznámil:" + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Žádost o propojení selhala nebo byla zrušena." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Nelze nastavit fotografii kontaktu." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Pro '%s' nenalezen žádný uživatelský záznam " + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." + +#: mod/dfrn_confirm.php:578 +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:599 +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:613 +#, 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:633 +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:644 +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:703 +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:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s se připojil k %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Toto pozvání již bylo přijato." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +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:129 mod/dfrn_request.php:525 +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:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d 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:180 +msgid "Introduction complete." +msgstr "Představení dokončeno." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Neopravitelná chyba protokolu" + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profil není k dispozici." + +#: mod/dfrn_request.php:277 +#, 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:278 +msgid "Spam protection measures have been invoked." +msgstr "Ochrana proti spamu byla aktivována" + +#: mod/dfrn_request.php:279 +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:341 +msgid "Invalid locator" +msgstr "Neplatný odkaz" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Neplatná emailová adresa" + +#: mod/dfrn_request.php:375 +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:478 +msgid "You have already introduced yourself here." +msgstr "Již jste se zde zavedli." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Zřejmě jste již přátelé se %s." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Neplatné URL profilu." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Vaše žádost o propojení byla odeslána." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." + +#: mod/dfrn_request.php:674 +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:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Potvrdit" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Skrýt tento kontakt" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Vítejte doma %s." + +#: mod/dfrn_request.php:704 +#, 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:833 +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:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství / kontaktování" + +#: mod/dfrn_request.php:860 +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:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Odpovězte, prosím, následující:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "Zná Vás uživatel %s ?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Přidat osobní poznámku:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federativní Sociální Web" + +#: mod/dfrn_request.php:871 +#, 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:872 mod/follow.php:117 +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:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Odeslat žádost" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Již jste si tento kontakt přidali." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Kontakt přidán" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Komunikační server - Nastavení" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Nelze se připojit k databázi." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Nelze vytvořit tabulku." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "Vaše databáze Friendica byla nainstalována." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "Databáze se již používá." + +#: mod/install.php:227 +msgid "System check" +msgstr "Testování systému" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Otestovat znovu" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Databázové spojení" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, " + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Jméno databázového serveru" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Přihlašovací jméno k databázi" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Heslo k databázovému účtu " + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Jméno databáze" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Emailová adresa administrátora webu" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Nastavení webu" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "Cesta k \"PHP executable\"" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "Příkazový řádek PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "Nalezena PHP verze:" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Toto je nutné pro fungování doručování zpráv." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Generovat kriptovací klíče" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "libCurl PHP modul" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP modul" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP modul" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "mysqli PHP modul" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "mb_string PHP modul" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "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/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři." + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php je editovatelné" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 je nastaven pro zápis" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru." + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "Url rewrite je funkční." + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Co dál

                                              " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"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/item.php:116 +msgid "Unable to locate original post." +msgstr "Nelze nalézt původní příspěvek." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Prázdný příspěvek odstraněn." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Chyba systému. Příspěvek nebyl uložen." + +#: mod/item.php:992 +#, 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." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Můžete je navštívit online na adrese %s" + +#: mod/item.php:995 +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." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s poslal aktualizaci." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +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:534 +msgid "Invalid contact." +msgstr "Neplatný kontakt." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Dle komentářů" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Řadit podle data komentáře" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Dle data" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Řadit podle data příspěvku" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" + +#: mod/network.php:856 +msgid "New" +msgstr "Nové" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Proud aktivit - dle data" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Sdílené odkazy" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Zajímavé odkazy" + +#: mod/network.php:878 +msgid "Starred" +msgstr "S hvězdičkou" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Oblíbené přízpěvky" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} chce být Vaším přítelem" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} vám poslal zprávu" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Žádné kontakty." + +#: object/Item.php:370 +msgid "via" +msgstr "přes" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" #: view/theme/quattro/config.php:67 msgid "Alignment" @@ -7951,6 +8786,10 @@ msgstr "Vlevo" msgid "Center" msgstr "Uprostřed" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Barevné schéma" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Velikost písma u příspěvků" @@ -7959,95 +8798,46 @@ msgstr "Velikost písma u příspěvků" 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 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 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 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 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/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Nalézt Přátele" -#: 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 +#: view/theme/vier/theme.php:200 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/vier/theme.php:291 +msgid "Quick Start" +msgstr "" -#: 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/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Propojené služby" -#: view/theme/vier/config.php:59 +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "Nastavit styl" +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Komunitní stránky" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Pomoc nebo @ProNováčky ?" + #: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "zelená nula" @@ -8075,3 +8865,56 @@ msgstr "flákač" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "Variace" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Odstranit tuto položku?" + +#: boot.php:973 +msgid "show fewer" +msgstr "zobrazit méně" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Vytvořit nový účet" + +#: boot.php:1796 +msgid "Password: " +msgstr "Heslo: " + +#: boot.php:1797 +msgid "Remember me" +msgstr "Pamatuj si mne" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Zapomněli jste své heslo?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Podmínky použití serveru" + +#: boot.php:1810 +msgid "terms of service" +msgstr "podmínky použití" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Pravidla ochrany soukromí serveru" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "Ochrana soukromí" + +#: index.php:451 +msgid "toggle mobile" +msgstr "přepnout mobil" diff --git a/view/lang/cs/strings.php b/view/lang/cs/strings.php index fe02c92af..21651ac96 100644 --- a/view/lang/cs/strings.php +++ b/view/lang/cs/strings.php @@ -5,1340 +5,10 @@ function string_plural_select_cs($n){ return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; }} ; -$a->strings["%d contact edited."] = array( - 0 => "%d kontakt upraven.", - 1 => "%d kontakty upraveny", - 2 => "%d kontaktů upraveno", -); -$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu."; -$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"; -$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"; -$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi"; -$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt."; -$a->strings["Never"] = "Nikdy"; -$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"; -$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"; -$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu"; -$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt"; -$a->strings["Ignore contact"] = "Ignorovat kontakt"; -$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL "; -$a->strings["View conversations"] = "Zobrazit konverzace"; -$a->strings["Delete contact"] = "Odstranit kontakt"; -$a->strings["Last update:"] = "Poslední aktualizace:"; -$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; -$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["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["Profile URL"] = "URL profilu"; -$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"; -$a->strings["Blocked"] = "Blokován"; -$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty"; -$a->strings["Ignored"] = "Ignorován"; -$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty"; -$a->strings["Archived"] = "Archivován"; -$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty"; -$a->strings["Hidden"] = "Skrytý"; -$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty"; -$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["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["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["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["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 %s"] = "Obrázek překročil limit velikosti %s"; -$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["You already added this contact."] = "Již jste si tento kontakt přidali."; -$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["No"] = "Ne"; -$a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; -$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["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["Do you really want to delete this video?"] = "Opravdu chcete smazat toto video?"; -$a->strings["Delete Video"] = "Odstranit video"; -$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["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["Invalid request."] = "Neplatný požadavek."; -$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["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["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"; -$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení"; -$a->strings["New Follower"] = "Nový následovník"; -$a->strings["Location:"] = "Místo:"; -$a->strings["About:"] = "O mě:"; -$a->strings["Tags:"] = "Štítky:"; -$a->strings["Gender:"] = "Pohlaví:"; -$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["Refetch contact data"] = "Znovu načíst data kontaktu"; -$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 - %s"] = "Vyhledávání lidí - %s"; -$a->strings["Connect"] = "Spojit"; -$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["Inspect Queue"] = "Proskoumat frontu"; -$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í"; -$a->strings["Administration"] = "Administrace"; -$a->strings["ID"] = "Identifikátor"; -$a->strings["Recipient Name"] = "Jméno příjemce"; -$a->strings["Recipient Profile"] = "Profil píjemce"; -$a->strings["Created"] = "Vytvořeno"; -$a->strings["Last Tried"] = "Naposled vyzkoušeno"; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; -$a->strings["Normal Account"] = "Normální účet"; -$a->strings["Soapbox Account"] = "Soapbox účet"; -$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity"; -$a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel"; -$a->strings["Blog Account"] = "Účet Blogu"; -$a->strings["Private Forum"] = "Soukromé fórum"; -$a->strings["Message queues"] = "Fronty zpráv"; -$a->strings["Summary"] = "Shrnutí"; -$a->strings["Registered users"] = "Registrovaní uživatelé"; -$a->strings["Pending registrations"] = "Čekající registrace"; -$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["Users, Global Contacts"] = "Uživatelé, Všechny kontakty"; -$a->strings["Users, Global Contacts/fallback"] = ""; -$a->strings["One month"] = "Jeden měsíc"; -$a->strings["Three months"] = "Tři měsíce"; -$a->strings["Half a year"] = "Půl roku"; -$a->strings["One year"] = "Jeden rok"; -$a->strings["Multi user instance"] = "Více uživatelská instance"; -$a->strings["Closed"] = "Uzavřeno"; -$a->strings["Requires approval"] = "Vyžaduje schválení"; -$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é"; -$a->strings["Auto Discovered Contact Directory"] = ""; -$a->strings["Performance"] = "Výkonnost"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."; -$a->strings["Site name"] = "Název webu"; -$a->strings["Host name"] = "Jméno hostitele (host name)"; -$a->strings["Sender Email"] = "Email ddesílatele"; -$a->strings["Banner/Logo"] = "Banner/logo"; -$a->strings["Shortcut icon"] = "Ikona zkratky"; -$a->strings["Touch icon"] = "Dotyková ikona"; -$a->strings["Additional Info"] = "Dodatečné informace"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; -$a->strings["System language"] = "Systémový jazyk"; -$a->strings["System theme"] = "Grafická šablona systému "; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings"; -$a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní zařízení"; -$a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení"; -$a->strings["SSL link policy"] = "Politika SSL odkazů"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL"; -$a->strings["Force SSL"] = "Vynutit SSL"; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "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í."; -$a->strings["Old style 'Share'"] = "Sdílení \"postaru\""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky."; -$a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "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."; -$a->strings["Single user instance"] = "Jednouživatelská instance"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"; -$a->strings["Maximum image size"] = "Maximální velikost obrázků"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."; -$a->strings["Maximum image length"] = "Maximální velikost obrázků"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"; -$a->strings["JPEG image quality"] = "JPEG kvalita obrázku"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."; -$a->strings["Register policy"] = "Politika registrace"; -$a->strings["Maximum Daily Registrations"] = "Maximální počet denních registrací"; -$a->strings["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."] = "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."; -$a->strings["Register text"] = "Registrace textu"; -$a->strings["Will be displayed prominently on the registration page."] = "Bude zřetelně zobrazeno na registrační stránce."; -$a->strings["Accounts abandoned after x days"] = "Účet je opuštěn po x dnech"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."; -$a->strings["Allowed friend domains"] = "Povolené domény přátel"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Čá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."; -$a->strings["Allowed email domains"] = "Povolené e-mailové domény"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Čá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."; -$a->strings["Block public"] = "Blokovat veřejnost"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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."; -$a->strings["Force publish"] = "Publikovat"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."; -$a->strings["Global directory update URL"] = "aktualizace URL adresy Globálního adresáře "; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."; -$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu"; -$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."; -$a->strings["Private posts by default for new users"] = "Nastavit pro nové uživatele příspěvky jako soukromé"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "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é."; -$a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních"; -$a->strings["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."] = " 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. "; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."; -$a->strings["Don't embed private images in posts"] = "Nepovolit přidávání soukromých správ v příspěvcích"; -$a->strings["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."] = "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."; -$a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit "; -$a->strings["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."] = "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."; -$a->strings["Block multiple registrations"] = "Blokovat více registrací"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."; -$a->strings["OpenID support"] = "podpora OpenID"; -$a->strings["OpenID support for registration and logins."] = "Podpora OpenID pro registraci a přihlašování."; -$a->strings["Fullname check"] = "kontrola úplného jména"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "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í."; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regulární výrazy"; -$a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární výrazy."; -$a->strings["Community Page Style"] = "Styl komunitní stránky"; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "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."; -$a->strings["Posts per user on community page"] = "Počet příspěvků na komunitní stránce"; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')"; -$a->strings["Enable OStatus support"] = "Zapnout podporu 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."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."; -$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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."; -$a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Poskytnout zabudovanou kompatibilitu sitě Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Povolit pouze Friendica kontakty"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."; -$a->strings["Verify SSL"] = "Ověřit SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "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."; -$a->strings["Proxy user"] = "Proxy uživatel"; -$a->strings["Proxy URL"] = "Proxy URL adresa"; -$a->strings["Network timeout"] = "čas síťového spojení vypršelo (timeout)"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."; -$a->strings["Delivery interval"] = "Interval doručování"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "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."; -$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["Periodical check of global contacts"] = "Pravidelně ověřování globálních kontaktů"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; -$a->strings["Discover contacts from other servers"] = "Objevit kontakty z ostatních serverů"; -$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; -$a->strings["Timeframe for fetching global contacts"] = ""; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; -$a->strings["Search the local directory"] = "Hledat v lokálním adresáři"; -$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; -$a->strings["Publish server information"] = "Zveřejnit informace o serveru"; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; -$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"; -$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích"; -$a->strings["Suppress Tags"] = "Potlačit štítky"; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení listu hastagů na konci zprávy."; -$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti"; -$a->strings["The item caches buffers generated bbcode and external images."] = ""; -$a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách"; -$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."] = "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."; -$a->strings["Maximum numbers of comments per post"] = "Maximální počet komentářů k příspěvku"; -$a->strings["How much comments should be shown for each post? Default value is 100."] = "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."; -$a->strings["Path for lock file"] = "Cesta k souboru zámku"; -$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; -$a->strings["Temp path"] = "Cesta k dočasným souborům"; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; -$a->strings["Base path to installation"] = "Základní cesta k instalaci"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; -$a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy"; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "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."; -$a->strings["Enable old style pager"] = "Aktivovat \"old style\" stránkování "; -$a->strings["The old style pager has page numbers but slows down massively the page speed."] = " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky."; -$a->strings["Only search in tags"] = "Hledat pouze ve štítkách"; -$a->strings["On large systems the text search can slow down the system extremely."] = "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."; -$a->strings["New base url"] = "Nová výchozí url adresa"; -$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; -$a->strings["RINO Encryption"] = "RINO Šifrování"; -$a->strings["Encryption layer between nodes."] = "Šifrovací vrstva mezi nódy."; -$a->strings["Embedly API key"] = ""; -$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; -$a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná."; -$a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována."; -$a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s"; -$a->strings["Executing %s failed with error: %s"] = "Vykonávání %s selhalo s chybou: %s"; -$a->strings["Update %s was successfully applied."] = "Aktualizace %s byla úspěšně aplikována."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."; -$a->strings["There was no additional update function %s that needed to be called."] = "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."; -$a->strings["No failed updates."] = "Žádné neúspěšné aktualizace."; -$a->strings["Check database structure"] = "Ověření struktury databáze"; -$a->strings["Failed Updates"] = "Neúspěšné aktualizace"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."; -$a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"; -$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", - 2 => "%s uživatelů blokováno/odblokováno", -); -$a->strings["%s user deleted"] = array( - 0 => "%s uživatel smazán", - 1 => "%s uživatelů smazáno", - 2 => "%s uživatelů smazáno", -); -$a->strings["User '%s' deleted"] = "Uživatel '%s' smazán"; -$a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován"; -$a->strings["User '%s' blocked"] = "Uživatel '%s' blokován"; -$a->strings["Add User"] = "Přidat Uživatele"; -$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"; -$a->strings["Account expired"] = "Účtu vypršela platnost"; -$a->strings["New User"] = "Nový uživatel"; -$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"; -$a->strings["Nickname"] = "Přezdívka"; -$a->strings["Nickname of the new user."] = "Přezdívka nového uživatele."; -$a->strings["Email address of the new user."] = "Emailová adresa nového uživatele."; -$a->strings["Plugin %s disabled."] = "Plugin %s zakázán."; -$a->strings["Plugin %s enabled."] = "Plugin %s povolen."; -$a->strings["Disable"] = "Zakázat"; -$a->strings["Enable"] = "Povolit"; -$a->strings["Toggle"] = "Přepnout"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = "Správce: "; -$a->strings["No themes found."] = "Nenalezeny žádná témata."; -$a->strings["Screenshot"] = "Snímek obrazovky"; -$a->strings["[Experimental]"] = "[Experimentální]"; -$a->strings["[Unsupported]"] = "[Nepodporováno]"; -$a->strings["Log settings updated."] = "Nastavení protokolu aktualizováno."; -$a->strings["Clear"] = "Vyčistit"; -$a->strings["Enable Debugging"] = "Povolit ladění"; -$a->strings["Log file"] = "Soubor s logem"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"; -$a->strings["Log level"] = "Úroveň auditu"; -$a->strings["Close"] = "Zavřít"; -$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["Search Results For: %s"] = "Výsledky hledání pro: %s"; -$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"; -$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku"; -$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují"; -$a->strings["New"] = "Nové"; -$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data"; -$a->strings["Shared Links"] = "Sdílené odkazy"; -$a->strings["Interesting Links"] = "Zajímavé odkazy"; -$a->strings["Starred"] = "S hvězdičkou"; -$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.", - 1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.", - 2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."; -$a->strings["No such group"] = "Žádná taková skupina"; -$a->strings["Group is empty"] = "Skupina je prázdná"; -$a->strings["Group: %s"] = "Skupina: %s"; -$a->strings["Contact: %s"] = "Kontakt: %s"; -$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["Event can not end before it has started."] = "Událost nemůže končit dříve, než začala."; -$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"; -$a->strings["Event details"] = "Detaily události"; -$a->strings["Starting date and Title are required."] = "Počáteční datum a Název jsou vyžadovány."; -$a->strings["Event Starts:"] = "Událost začíná:"; -$a->strings["Required"] = "Vyžadováno"; -$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní"; -$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["Title:"] = "Název:"; -$a->strings["Share this event"] = "Sdílet tuto událost"; -$a->strings["Preview"] = "Náhled"; -$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["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["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["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."; -$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica byla nainstalována."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Databáze se již používá."; -$a->strings["System check"] = "Testování systému"; -$a->strings["Check again"] = "Otestovat znovu"; -$a->strings["Database connection"] = "Databázové spojení"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."; -$a->strings["Database Server Name"] = "Jméno databázového serveru"; -$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi"; -$a->strings["Database Login Password"] = "Heslo k databázovému účtu "; -$a->strings["Database Name"] = "Jméno databáze"; -$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."; -$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server"; -$a->strings["Site settings"] = "Nastavení webu"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si 'Activating scheduled tasks'\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Cesta k \"PHP executable\""; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."; -$a->strings["Command line PHP"] = "Příkazový řádek PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)"; -$a->strings["Found PHP version: "] = "Nalezena PHP verze:"; -$a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."; -$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče"; -$a->strings["libCurl PHP module"] = "libCurl PHP modul"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP modul"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul"; -$a->strings["mysqli PHP module"] = "mysqli PHP modul"; -$a->strings["mb_string PHP module"] = "mb_string PHP modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován."; -$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován."; -$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."] = "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["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."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."; -$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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."; -$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["%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 %s"] = "Velikost souboru přesáhla limit %s"; -$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["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["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["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele"; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$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["GNU Social (OStatus)"] = "GNU Social (OStatus)"; -$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["Theme settings"] = "Nastavení téma"; -$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["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 '%s' or '%s'."] = "Vaše Identity adresa je \"%s\" nebo \"%s\"."; -$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["Activate desktop notifications"] = "Aktivovat upozornění na desktopu"; -$a->strings["Show desktop popup on new notifications"] = "Zobrazit dektopové zprávy nových upozornění."; -$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["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."; -$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."] = ""; -$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["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["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["Leave empty for an auto generated password."] = "Ponechte prázdné pro automatické vygenerovaní hesla."; -$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["Items tagged with: %s"] = "Položky označené s: %s"; -$a->strings["Search results for: %s"] = "Výsledky hledání pro: %s"; -$a->strings["Global Directory"] = "Globální adresář"; -$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["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Domácí stránka:"; -$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 :"] = "Narozeniny:"; -$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["the bugtracker at github"] = ""; -$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["Contact Photos"] = "Fotogalerie kontaktu"; -$a->strings["Photo Albums"] = "Fotoalba"; -$a->strings["Recent Photos"] = "Aktuální fotografie"; -$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 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["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["Do not rotate"] = "Neotáčet"; -$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["Private photo"] = "Soukromé fotografie"; -$a->strings["Public photo"] = "Veřejné fotografie"; -$a->strings["Share"] = "Sdílet"; -$a->strings["Not Extended"] = "Nerozšířeně"; -$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["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["Connect"] = "Spojit"; $a->strings["%d invitation available"] = array( 0 => "Pozvánka %d k dispozici", 1 => "Pozvánky %d k dispozici", @@ -1348,6 +18,8 @@ $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["Friend Suggestions"] = "Návrhy přátel"; $a->strings["Similar Interests"] = "Podobné zájmy"; $a->strings["Random Profile"] = "Náhodný Profil"; $a->strings["Invite Friends"] = "Pozvat přátele"; @@ -1356,349 +28,14 @@ $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["YYYY-MM-DD or MM-DD"] = ""; -$a->strings["never"] = "nikdy"; -$a->strings["less than a second ago"] = "méně než před sekundou"; -$a->strings["year"] = "rok"; -$a->strings["years"] = "let"; -$a->strings["month"] = "měsíc"; -$a->strings["months"] = "měsíců"; -$a->strings["week"] = "týdnem"; -$a->strings["weeks"] = "týdny"; -$a->strings["day"] = "den"; -$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["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["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["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["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["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["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["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["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["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["%d contact in common"] = array( + 0 => "%d sdílený kontakt", + 1 => "%d sdílených kontaktů", + 2 => "%d sdílených kontaktů", ); -$a->strings["Full Text"] = "Celý text"; -$a->strings["Tags"] = "Štítky:"; +$a->strings["show more"] = "zobrazit více"; $a->strings["Forums"] = "Fóra"; -$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["bytes"] = "bytů"; -$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; -$a->strings["View on separate page"] = "Zobrazit na separátní stránce"; -$a->strings["view on separate page"] = "Zobrazit na separátní stránce"; -$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["Redmatrix"] = "Redmatrix"; -$a->strings[" on Last.fm"] = " na Last.fm"; -$a->strings["Starts:"] = "Začíná:"; -$a->strings["Finishes:"] = "Končí:"; -$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 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 \"_\"."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"."; -$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["External link to forum"] = ""; $a->strings["Male"] = "Muž"; $a->strings["Female"] = "Žena"; $a->strings["Currently Male"] = "V současné době muž"; @@ -1712,7 +49,11 @@ $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["Undecided"] = array( + 0 => "", + 1 => "", + 2 => "", +); $a->strings["Males"] = "Muži"; $a->strings["Females"] = "Ženy"; $a->strings["Gay"] = "Gay"; @@ -1735,6 +76,7 @@ $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ý"; @@ -1756,9 +98,114 @@ $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["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; +$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["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 groups"] = ""; +$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["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["GNU Social"] = ""; +$a->strings["App.net"] = "App.net"; +$a->strings["Hubzilla/Redmatrix"] = ""; +$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["Visible to everybody"] = "Viditelné pro všechny"; +$a->strings["show"] = "zobrazit"; +$a->strings["don't show"] = "nikdy nezobrazit"; +$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Oprávnění:"; +$a->strings["Close"] = "Zavřít"; +$a->strings["photo"] = "fotografie"; +$a->strings["status"] = "Stav"; +$a->strings["event"] = "událost"; +$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["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[bez předmětu]"; +$a->strings["Wall Photos"] = "Fotografie na zdi"; +$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["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["Miscellaneous"] = "Různé"; +$a->strings["Birthday:"] = "Narozeniny:"; +$a->strings["Age: "] = "Věk: "; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nikdy"; +$a->strings["less than a second ago"] = "méně než před sekundou"; +$a->strings["year"] = "rok"; +$a->strings["years"] = "let"; +$a->strings["month"] = "měsíc"; +$a->strings["months"] = "měsíců"; +$a->strings["week"] = "týdnem"; +$a->strings["weeks"] = "týdny"; +$a->strings["day"] = "den"; +$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["Friendica Notification"] = "Friendica Notifikace"; $a->strings["Thank You,"] = "Děkujeme, "; $a->strings["%s Administrator"] = "%s Administrátor"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$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."; @@ -1804,61 +251,1803 @@ $a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím n $a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno"; $a->strings["'%1\$s' has accepted 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["You are now mutual friends and may exchange status updates, photos, and email without 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."] = "'%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["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$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["[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["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["Location:"] = "Místo:"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Neděle"; +$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["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Května"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "Ledna"; +$a->strings["February"] = "Února"; +$a->strings["March"] = "Března"; +$a->strings["April"] = "Dubna"; +$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["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$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["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Zde není nic nového"; +$a->strings["Clear notifications"] = "Smazat notifikace"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Odhlásit se"; +$a->strings["End this session"] = "Konec této relace"; +$a->strings["Status"] = "Stav"; +$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["Photos"] = "Fotografie"; +$a->strings["Your photos"] = "Vaše fotky"; +$a->strings["Videos"] = "Videa"; +$a->strings["Your videos"] = "Vaše videa"; +$a->strings["Events"] = "Události"; +$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["Login"] = "Přihlásit se"; +$a->strings["Sign in"] = "Přihlásit se"; +$a->strings["Home"] = "Domů"; +$a->strings["Home Page"] = "Domácí stránka"; +$a->strings["Register"] = "Registrovat"; +$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["Full Text"] = "Celý text"; +$a->strings["Tags"] = "Štítky:"; +$a->strings["Contacts"] = "Kontakty"; +$a->strings["Community"] = "Komunita"; +$a->strings["Conversations on this site"] = "Konverzace na tomto webu"; +$a->strings["Conversations on the network"] = "Konverzace v síti"; +$a->strings["Events and Calendar"] = "Události a kalendář"; +$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 as seen"] = "Označit jako přečtené"; +$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["Settings"] = "Nastavení"; +$a->strings["Account settings"] = "Nastavení účtu"; +$a->strings["Profiles"] = "Profily"; +$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["Contact Photos"] = "Fotogalerie kontaktu"; +$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["System"] = "Systém"; +$a->strings["Personal"] = "Osobní"; +$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'"; +$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek"; +$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 attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s"; +$a->strings["Friend Suggestion"] = "Návrh přátelství"; +$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení"; +$a->strings["New Follower"] = "Nový následovník"; +$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["(no subject)"] = "(Bez předmětu)"; +$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; +$a->strings["Attachments:"] = "Přílohy:"; +$a->strings["view full size"] = "zobrazit v plné velikosti"; +$a->strings["View Profile"] = "Zobrazit Profil"; +$a->strings["View Status"] = "Zobrazit Status"; +$a->strings["View Photos"] = "Zobrazit Fotky"; +$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = "Odstranit kontakt"; +$a->strings["Send PM"] = "Poslat soukromou zprávu"; +$a->strings["Poke"] = "Šťouchnout"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = ""; +$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["Image/photo"] = "Obrázek/fotografie"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 napsal:"; +$a->strings["Encrypted content"] = "Šifrovaný obsah"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$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["Likes"] = "Libí se mi"; +$a->strings["Dislikes"] = "Nelibí se mi"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$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["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "a"; +$a->strings[", and %d other people"] = ", a %d dalších lidí"; +$a->strings["%2\$d people like this"] = "%2\$d lidem se to líbí"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$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["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["Public post"] = "Veřejný příspěvek"; +$a->strings["Preview"] = "Náhled"; +$a->strings["Cancel"] = "Zrušit"; +$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["Message"] = "Zpráva"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$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["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$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 forum page is selected/deselected in ACL window."] = ""; +$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["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$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["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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$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["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["Atom feed"] = ""; +$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["Gender:"] = "Pohlaví:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Domácí stránka:"; +$a->strings["About:"] = "O mě:"; +$a->strings["XMPP:"] = ""; +$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["Full Name:"] = "Celé jméno:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$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["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Pokročilé"; +$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["Personal Notes"] = "Osobní poznámky"; +$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; +$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["Permission denied."] = "Přístup odmítnut."; +$a->strings["Archives"] = "Archív"; $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["%s is now following %s."] = ""; +$a->strings["following"] = "následující"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "následování zastaveno"; +$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["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["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["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["View Video"] = "Zobrazit video"; +$a->strings["bytes"] = "bytů"; +$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; +$a->strings["View on separate page"] = "Zobrazit na separátní stránce"; +$a->strings["view on separate page"] = "Zobrazit na separátní stránce"; +$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["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno."; +$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 \"_\"."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"."; +$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["default"] = "standardní"; +$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["Profile Photos"] = "Profilové fotografie"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\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["Post successful."] = "Příspěvek úspěšně odeslán"; +$a->strings["Access denied."] = "Přístup odmítnut"; +$a->strings["Welcome to %s"] = "Vítá Vás %s"; +$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; +$a->strings["System Notifications"] = "Systémová upozornění"; +$a->strings["Remove term"] = "Odstranit termín"; +$a->strings["Public access denied."] = "Veřejný přístup odepřen."; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Žádné výsledky."; +$a->strings["Items tagged with: %s"] = "Položky označené s: %s"; +$a->strings["Results for: %s"] = ""; +$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["the bugtracker at github"] = ""; +$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["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["No profile"] = "Žádný profil"; +$a->strings["Help:"] = "Nápověda:"; +$a->strings["Not Found"] = "Nenalezen"; +$a->strings["Page not found."] = "Stránka nenalezena"; +$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; +$a->strings["Visible to:"] = "Viditelné pro:"; +$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["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["Import"] = "Import"; +$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 (GNU Social/Statusnet) or from Diaspora"] = ""; +$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["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]"; +$a->strings["Edit contact"] = "Editovat kontakt"; +$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; +$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["Export personal data"] = "Export osobních údajů"; +$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["Your message:"] = "Vaše zpráva:"; +$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["Submit"] = "Odeslat"; +$a->strings["Files"] = "Soubory"; +$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["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["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["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$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["Add"] = "Přidat"; +$a->strings["No entries."] = "Žádné záznamy."; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- vyber -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; +$a->strings["Item not available."] = "Položka není k dispozici."; +$a->strings["Item was not found."] = "Položka nebyla nalezena."; +$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["Not Extended"] = "Nerozšířeně"; +$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 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["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["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["Item not found"] = "Položka nenalezena"; +$a->strings["Edit post"] = "Upravit příspěvek"; +$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["The post was created"] = "Příspěvek byl vytvořen"; +$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 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["Group is empty"] = "Skupina je prázdná"; +$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["link"] = "odkaz"; +$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["No"] = "Ne"; +$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["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = "ignorován"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; +$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["Message not available."] = "Zpráva není k dispozici."; +$a->strings["Delete message"] = "Smazat zprávu"; +$a->strings["Delete conversation"] = "Odstranit konverzaci"; +$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["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["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["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["Contact settings applied."] = "Nastavení kontaktu změněno"; +$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; +$a->strings["Contact not found."] = "Kontakt nenalezen."; +$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["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["Return to contact editor"] = "Návrat k editoru kontaktu"; +$a->strings["Refetch contact data"] = "Znovu načíst data kontaktu"; +$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["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["No such group"] = "Žádná taková skupina"; +$a->strings["Group: %s"] = "Skupina: %s"; +$a->strings["This entry was edited"] = "Tento záznam byl editován"; +$a->strings["%d comment"] = array( + 0 => "%d komentář", + 1 => "%d komentářů", + 2 => "%d komentářů", +); +$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["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["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["save to folder"] = "uložit do složky"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$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["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["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["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["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["Image exceeds size limit of %s"] = "Obrázek překročil limit velikosti %s"; +$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["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["Invalid request identifier."] = "Neplatný identifikátor požadavku."; +$a->strings["Discard"] = "Odstranit"; +$a->strings["Ignore"] = "Ignorovat"; +$a->strings["Network Notifications"] = "Upozornění Sítě"; +$a->strings["Personal Notifications"] = "Osobní upozornění"; +$a->strings["Home Notifications"] = "Upozornění na vstupní straně"; +$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["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: "] = "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"; +$a->strings["Profile URL"] = "URL profilu"; +$a->strings["No introductions."] = "Žádné představení."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$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["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["XMPP"] = ""; +$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["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$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["Relation"] = ""; +$a->strings["Your Gender:"] = "Vaše pohlaví:"; +$a->strings[" Marital Status:"] = " Rodinný stav:"; +$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software"; +$a->strings["Profile Name:"] = "Jméno profilu:"; +$a->strings["Required"] = "Vyžadováno"; +$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["Your Full Name:"] = "Vaše celé jméno:"; +$a->strings["Title/Description:"] = "Název / Popis:"; +$a->strings["Street Address:"] = "Ulice:"; +$a->strings["Locality/City:"] = "Město:"; +$a->strings["Region/State:"] = "Region / stát:"; +$a->strings["Postal/Zip Code:"] = "PSČ:"; +$a->strings["Country:"] = "Země:"; +$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["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$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["(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["Private Keywords:"] = "Soukromá klíčová slova:"; +$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["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["Hobbies/Interests"] = "Koníčky/zájmy"; +$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["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě"; +$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; +$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; +$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Předchozí"; +$a->strings["Next"] = "Dále"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Žádné společné kontakty."; +$a->strings["Common Friends"] = "Společní přátelé"; +$a->strings["Not available."] = "Není k dispozici."; +$a->strings["Global Directory"] = "Globální adresář"; +$a->strings["Find on this site"] = "Nalézt na tomto webu"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Adresář serveru"; +$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty)."; +$a->strings["People Search - %s"] = "Vyhledávání lidí - %s"; +$a->strings["Forum Search - %s"] = ""; +$a->strings["No matches"] = "Žádné shody"; +$a->strings["Item has been removed."] = "Položka byla odstraněna."; +$a->strings["Event can not end before it has started."] = "Událost nemůže končit dříve, než začala."; +$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány."; +$a->strings["Create New Event"] = "Vytvořit novou událost"; +$a->strings["Event details"] = "Detaily události"; +$a->strings["Starting date and Title are required."] = "Počáteční datum a Název jsou vyžadovány."; +$a->strings["Event Starts:"] = "Událost začíná:"; +$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní"; +$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["Title:"] = "Název:"; +$a->strings["Share this event"] = "Sdílet tuto událost"; +$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; +$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["Profile Match"] = "Shoda profilu"; +$a->strings["Tips for New Members"] = "Tipy pro nové členy"; +$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["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; +$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; +$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; +$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 file is empty."] = "Soubor obrázku je prázdný."; +$a->strings["No photos selected"] = "Není vybrána žádná fotografie"; +$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen."; +$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["Show to Groups"] = "Zobrazit ve Skupinách"; +$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; +$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["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["Do not rotate"] = "Neotáčet"; +$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["Private photo"] = "Soukromé fotografie"; +$a->strings["Public photo"] = "Veřejné fotografie"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Zobrazit album"; +$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["Registration successful."] = ""; +$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["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["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$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, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:"; +$a->strings["New Password:"] = "Nové heslo:"; +$a->strings["Leave empty for an auto generated password."] = "Ponechte prázdné pro automatické vygenerovaní hesla."; +$a->strings["Confirm:"] = "Potvrďte:"; +$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 your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; +$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["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["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["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["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["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$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["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$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["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["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$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["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$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["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = "Nastavení téma"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$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["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$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["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["Your Identity Address is '%s' or '%s'."] = "Vaše Identity adresa je \"%s\" nebo \"%s\"."; +$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["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["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$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["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["Activate desktop notifications"] = "Aktivovat upozornění na desktopu"; +$a->strings["Show desktop popup on new notifications"] = "Zobrazit dektopové zprávy nových upozornění."; +$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["Do you really want to delete this video?"] = "Opravdu chcete smazat toto video?"; +$a->strings["Delete Video"] = "Odstranit video"; +$a->strings["No videos selected"] = "Není vybráno žádné video"; +$a->strings["Recent Videos"] = "Aktuální Videa"; +$a->strings["Upload New Videos"] = "Nahrát nová videa"; +$a->strings["Invalid request."] = "Neplatný požadavek."; +$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 %s"] = "Velikost souboru přesáhla limit %s"; +$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo."; +$a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno."; +$a->strings["Site"] = "Web"; +$a->strings["Users"] = "Uživatelé"; +$a->strings["Themes"] = "Témata"; +$a->strings["DB updates"] = "Aktualizace databáze"; +$a->strings["Inspect Queue"] = "Proskoumat frontu"; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = "Logy"; +$a->strings["View Logs"] = ""; +$a->strings["probe address"] = "vyzkoušet adresu"; +$a->strings["check webfinger"] = "vyzkoušet webfinger"; +$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í"; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Administration"] = "Administrace"; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = "Identifikátor"; +$a->strings["Recipient Name"] = "Jméno příjemce"; +$a->strings["Recipient Profile"] = "Profil píjemce"; +$a->strings["Created"] = "Vytvořeno"; +$a->strings["Last Tried"] = "Naposled vyzkoušeno"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Normální účet"; +$a->strings["Soapbox Account"] = "Soapbox účet"; +$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity"; +$a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel"; +$a->strings["Blog Account"] = "Účet Blogu"; +$a->strings["Private Forum"] = "Soukromé fórum"; +$a->strings["Message queues"] = "Fronty zpráv"; +$a->strings["Summary"] = "Shrnutí"; +$a->strings["Registered users"] = "Registrovaní uživatelé"; +$a->strings["Pending registrations"] = "Čekající registrace"; +$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["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; +$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["Never"] = "Nikdy"; +$a->strings["At post arrival"] = "Při obdržení příspěvku"; +$a->strings["Disabled"] = "Zakázáno"; +$a->strings["Users, Global Contacts"] = "Uživatelé, Všechny kontakty"; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = "Jeden měsíc"; +$a->strings["Three months"] = "Tři měsíce"; +$a->strings["Half a year"] = "Půl roku"; +$a->strings["One year"] = "Jeden rok"; +$a->strings["Multi user instance"] = "Více uživatelská instance"; +$a->strings["Closed"] = "Uzavřeno"; +$a->strings["Requires approval"] = "Vyžaduje schválení"; +$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["File upload"] = "Nahrání souborů"; +$a->strings["Policies"] = "Politiky"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "Výkonnost"; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."; +$a->strings["Site name"] = "Název webu"; +$a->strings["Host name"] = "Jméno hostitele (host name)"; +$a->strings["Sender Email"] = "Email ddesílatele"; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = "Banner/logo"; +$a->strings["Shortcut icon"] = "Ikona zkratky"; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = "Dotyková ikona"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = "Dodatečné informace"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = "Systémový jazyk"; +$a->strings["System theme"] = "Grafická šablona systému "; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings"; +$a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní zařízení"; +$a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení"; +$a->strings["SSL link policy"] = "Politika SSL odkazů"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL"; +$a->strings["Force SSL"] = "Vynutit SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "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í."; +$a->strings["Old style 'Share'"] = "Sdílení \"postaru\""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky."; +$a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "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."; +$a->strings["Single user instance"] = "Jednouživatelská instance"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"; +$a->strings["Maximum image size"] = "Maximální velikost obrázků"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."; +$a->strings["Maximum image length"] = "Maximální velikost obrázků"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"; +$a->strings["JPEG image quality"] = "JPEG kvalita obrázku"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."; +$a->strings["Register policy"] = "Politika registrace"; +$a->strings["Maximum Daily Registrations"] = "Maximální počet denních registrací"; +$a->strings["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."] = "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."; +$a->strings["Register text"] = "Registrace textu"; +$a->strings["Will be displayed prominently on the registration page."] = "Bude zřetelně zobrazeno na registrační stránce."; +$a->strings["Accounts abandoned after x days"] = "Účet je opuštěn po x dnech"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."; +$a->strings["Allowed friend domains"] = "Povolené domény přátel"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Čá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."; +$a->strings["Allowed email domains"] = "Povolené e-mailové domény"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Čá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."; +$a->strings["Block public"] = "Blokovat veřejnost"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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."; +$a->strings["Force publish"] = "Publikovat"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu"; +$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."; +$a->strings["Private posts by default for new users"] = "Nastavit pro nové uživatele příspěvky jako soukromé"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "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é."; +$a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních"; +$a->strings["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."] = " 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. "; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."; +$a->strings["Don't embed private images in posts"] = "Nepovolit přidávání soukromých správ v příspěvcích"; +$a->strings["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."] = "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."; +$a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit "; +$a->strings["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."] = "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."; +$a->strings["Block multiple registrations"] = "Blokovat více registrací"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."; +$a->strings["OpenID support"] = "podpora OpenID"; +$a->strings["OpenID support for registration and logins."] = "Podpora OpenID pro registraci a přihlašování."; +$a->strings["Fullname check"] = "kontrola úplného jména"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "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í."; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regulární výrazy"; +$a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární výrazy."; +$a->strings["Community Page Style"] = "Styl komunitní stránky"; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "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."; +$a->strings["Posts per user on community page"] = "Počet příspěvků na komunitní stránce"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')"; +$a->strings["Enable OStatus support"] = "Zapnout podporu 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."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."; +$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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."; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Poskytnout zabudovanou kompatibilitu sitě Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Povolit pouze Friendica kontakty"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."; +$a->strings["Verify SSL"] = "Ověřit SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "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."; +$a->strings["Proxy user"] = "Proxy uživatel"; +$a->strings["Proxy URL"] = "Proxy URL adresa"; +$a->strings["Network timeout"] = "čas síťového spojení vypršelo (timeout)"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."; +$a->strings["Delivery interval"] = "Interval doručování"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "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."; +$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["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = "Pravidelně ověřování globálních kontaktů"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = "Objevit kontakty z ostatních serverů"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = "Hledat v lokálním adresáři"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = "Zveřejnit informace o serveru"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$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"; +$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích"; +$a->strings["Suppress Tags"] = "Potlačit štítky"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení listu hastagů na konci zprávy."; +$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách"; +$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."] = "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."; +$a->strings["Maximum numbers of comments per post"] = "Maximální počet komentářů k příspěvku"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."; +$a->strings["Path for lock file"] = "Cesta k souboru zámku"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; +$a->strings["Temp path"] = "Cesta k dočasným souborům"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = "Základní cesta k instalaci"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "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."; +$a->strings["Enable old style pager"] = "Aktivovat \"old style\" stránkování "; +$a->strings["The old style pager has page numbers but slows down massively the page speed."] = " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky."; +$a->strings["Only search in tags"] = "Hledat pouze ve štítkách"; +$a->strings["On large systems the text search can slow down the system extremely."] = "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."; +$a->strings["New base url"] = "Nová výchozí url adresa"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = "RINO Šifrování"; +$a->strings["Encryption layer between nodes."] = "Šifrovací vrstva mezi nódy."; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná."; +$a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s"; +$a->strings["Executing %s failed with error: %s"] = "Vykonávání %s selhalo s chybou: %s"; +$a->strings["Update %s was successfully applied."] = "Aktualizace %s byla úspěšně aplikována."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."; +$a->strings["There was no additional update function %s that needed to be called."] = "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."; +$a->strings["No failed updates."] = "Žádné neúspěšné aktualizace."; +$a->strings["Check database structure"] = "Ověření struktury databáze"; +$a->strings["Failed Updates"] = "Neúspěšné aktualizace"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."; +$a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"; +$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["%s user blocked/unblocked"] = array( + 0 => "%s uživatel blokován/odblokován", + 1 => "%s uživatelů blokováno/odblokováno", + 2 => "%s uživatelů blokováno/odblokováno", +); +$a->strings["%s user deleted"] = array( + 0 => "%s uživatel smazán", + 1 => "%s uživatelů smazáno", + 2 => "%s uživatelů smazáno", +); +$a->strings["User '%s' deleted"] = "Uživatel '%s' smazán"; +$a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován"; +$a->strings["User '%s' blocked"] = "Uživatel '%s' blokován"; +$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["Add User"] = "Přidat Uživatele"; +$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["No registrations."] = "Žádné registrace."; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = "Odmítnout"; +$a->strings["Block"] = "Blokovat"; +$a->strings["Unblock"] = "Odblokovat"; +$a->strings["Site admin"] = "Site administrátor"; +$a->strings["Account expired"] = "Účtu vypršela platnost"; +$a->strings["New User"] = "Nový uživatel"; +$a->strings["Deleted since"] = "Smazán od"; +$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"; +$a->strings["Nickname"] = "Přezdívka"; +$a->strings["Nickname of the new user."] = "Přezdívka nového uživatele."; +$a->strings["Email address of the new user."] = "Emailová adresa nového uživatele."; +$a->strings["Plugin %s disabled."] = "Plugin %s zakázán."; +$a->strings["Plugin %s enabled."] = "Plugin %s povolen."; +$a->strings["Disable"] = "Zakázat"; +$a->strings["Enable"] = "Povolit"; +$a->strings["Toggle"] = "Přepnout"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Správce: "; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = "Nenalezeny žádná témata."; +$a->strings["Screenshot"] = "Snímek obrazovky"; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = "[Experimentální]"; +$a->strings["[Unsupported]"] = "[Nepodporováno]"; +$a->strings["Log settings updated."] = "Nastavení protokolu aktualizováno."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = "Vyčistit"; +$a->strings["Enable Debugging"] = "Povolit ladění"; +$a->strings["Log file"] = "Soubor s logem"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"; +$a->strings["Log level"] = "Úroveň auditu"; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu."; +$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["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"; +$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["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?"; +$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"; +$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi"; +$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt."; +$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["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["Fetch information"] = "Načítat informace"; +$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova"; +$a->strings["Contact"] = ""; +$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"; +$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu"; +$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt"; +$a->strings["Ignore contact"] = "Ignorovat kontakt"; +$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL "; +$a->strings["View conversations"] = "Zobrazit konverzace"; +$a->strings["Last update:"] = "Poslední aktualizace:"; +$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; +$a->strings["Update now"] = "Aktualizovat"; +$a->strings["Unignore"] = "Přestat ignorovat"; +$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["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["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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Doporučení"; +$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele"; +$a->strings["Show all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["Unblocked"] = "Odblokován"; +$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty"; +$a->strings["Blocked"] = "Blokován"; +$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty"; +$a->strings["Ignored"] = "Ignorován"; +$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty"; +$a->strings["Archived"] = "Archivován"; +$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty"; +$a->strings["Hidden"] = "Skrytý"; +$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty"; +$a->strings["Search your contacts"] = "Prohledat Vaše kontakty"; +$a->strings["Archive"] = "Archivovat"; +$a->strings["Unarchive"] = "Vrátit z archívu"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu"; +$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["Toggle Blocked status"] = "Přepnout stav Blokováno"; +$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno"; +$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno"; +$a->strings["Delete contact"] = "Odstranit kontakt"; +$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["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["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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$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."; +$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."] = ""; +$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["You already added this contact."] = "Již jste si tento kontakt přidali."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Kontakt přidán"; +$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."; +$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica byla nainstalována."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Databáze se již používá."; +$a->strings["System check"] = "Testování systému"; +$a->strings["Check again"] = "Otestovat znovu"; +$a->strings["Database connection"] = "Databázové spojení"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."; +$a->strings["Database Server Name"] = "Jméno databázového serveru"; +$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi"; +$a->strings["Database Login Password"] = "Heslo k databázovému účtu "; +$a->strings["Database Name"] = "Jméno databáze"; +$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."; +$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server"; +$a->strings["Site settings"] = "Nastavení webu"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "Cesta k \"PHP executable\""; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."; +$a->strings["Command line PHP"] = "Příkazový řádek PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)"; +$a->strings["Found PHP version: "] = "Nalezena PHP verze:"; +$a->strings["PHP cli binary"] = "PHP cli binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."; +$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče"; +$a->strings["libCurl PHP module"] = "libCurl PHP modul"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul"; +$a->strings["mysqli PHP module"] = "mysqli PHP modul"; +$a->strings["mb_string PHP module"] = "mb_string PHP modul"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován."; +$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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."] = "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["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."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."; +$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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."; +$a->strings["Url rewrite is working"] = "Url rewrite je funkční."; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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["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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$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["Commented Order"] = "Dle komentářů"; +$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře"; +$a->strings["Posted Order"] = "Dle data"; +$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku"; +$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují"; +$a->strings["New"] = "Nové"; +$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data"; +$a->strings["Shared Links"] = "Sdílené odkazy"; +$a->strings["Interesting Links"] = "Zajímavé odkazy"; +$a->strings["Starred"] = "S hvězdičkou"; +$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; +$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["No contacts."] = "Žádné kontakty."; +$a->strings["via"] = "přes"; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; $a->strings["Alignment"] = "Zarovnání"; $a->strings["Left"] = "Vlevo"; $a->strings["Center"] = "Uprostřed"; +$a->strings["Color scheme"] = "Barevné schéma"; $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["Find Friends"] = "Nalézt Přátele"; $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["Quick Start"] = ""; +$a->strings["Connect Services"] = "Propojené služby"; +$a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = "Nastavit styl"; +$a->strings["Community Pages"] = "Komunitní stránky"; +$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?"; $a->strings["greenzero"] = "zelená nula"; $a->strings["purplezero"] = "fialová nula"; $a->strings["easterbunny"] = "velikonoční zajíček"; @@ -1866,3 +2055,16 @@ $a->strings["darkzero"] = "tmavá nula"; $a->strings["comix"] = "komiksová"; $a->strings["slackr"] = "flákač"; $a->strings["Variations"] = "Variace"; +$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["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["toggle mobile"] = "přepnout mobil"; diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po index 0c6945808..3666b3752 100644 --- a/view/lang/eo/messages.po +++ b/view/lang/eo/messages.po @@ -5,5690 +5,1662 @@ # Translators: # Diego Souza , 2012 # Martin Schmitt , 2012 -# bavatar , 2014 +# Tobias Diekershoff , 2014 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" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" "Last-Translator: fabrixxm \n" -"Language-Team: Esperanto (http://www.transifex.com/projects/p/friendica/language/eo/)\n" +"Language-Team: Esperanto (http://www.transifex.com/Friendica/friendica/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aldonu Novan Kontakton" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Entajpu adreson aŭ retlokon" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Ekzemple: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Konekti" + +#: include/contact_widgets.php:24 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "Disponeblas %d invito" +msgstr[1] "Disponeblas %d invitoj" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Ne eblis atingi kontaktrikordo." +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trovi Homojn" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Ne trovis elektitan profilon." +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Entajpu nomon aŭ intereson" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Kontakto estas ĝisdatigita." +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "Konekti/Aboni" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis." +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ekzemple: Robert Morgenstein, Fishing" -#: ../../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 -#: ../../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 -msgid "Permission denied." -msgstr "Malpermesita." +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Trovi" -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Kontakto estas blokita." +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Amikosugestoj" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Kontakto estas malblokita." +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Similaj Interesoj" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Kontakto estas ignorita." +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Hazarda Profilo" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Kontakto estas malignorita." +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Inviti amikojn" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Enarkivigis kontakton" +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "Retoj" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Elarkivigis kontakton" +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "Ĉiuj Retoj" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "" +#: include/contact_widgets.php:141 include/features.php:110 +msgid "Saved Folders" +msgstr "Konservitaj Dosierujoj" -#: ../../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 -msgid "Yes" -msgstr "Jes" +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "Ĉio" -#: ../../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 -msgid "Cancel" -msgstr "Nuligi" +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "Kategorioj" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Kontakto estas forigita." - -#: ../../mod/contacts.php:390 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Vi estas reciproka amiko de %s" - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are sharing with %s" -msgstr "Vi kunhavigas kun %s" - -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s kunhavigas kun vi" - -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto." - -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Neniam" - -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Ĝisdatigo sukcesis.)" - -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Ĝisdatigo malsukcesis.)" - -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Sugesti amikojn" - -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Reta tipo: %s" - -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d komuna kontakto" msgstr[1] "%d komunaj kontaktoj" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Vidi ĉiujn kontaktojn" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "montri pli" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Malbloki" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Bloki" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Ŝalti/malŝalti Blokitan staton" +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Vira" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Malignori" +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Ina" -#: ../../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 "Ignori" +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Nuntempe Vira" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Ŝalti/malŝalti Ignoritan staton" +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Nuntempe Ina" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Elarkivigi" +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Ĉefe Vira" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Enarkivigi" +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Ĉefe Ina" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Ŝalti/malŝalti Enarkivigitan staton" +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenra" -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Ripari" +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksa" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Specialaj Kontaktagordoj" +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksa" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Mi perdis la kommunikadon kun tiu kontakto!" +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Kontakta redaktilo." +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neŭtra" -#: ../../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 "Sendi" +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nespecifa" -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Videbleco de profilo" +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Alia" -#: ../../mod/contacts.php:477 +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Viroj" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Inoj" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Geja" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesba" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Neniu Prefero" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Ambaŭseksema" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Memseksema" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinema" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgulino" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Devia" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetiĉo" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Amasa" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Neseksa" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Sola" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Soleca" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Havebla" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nehavebla" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Sekrete enamiĝinta" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Blinda amo" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Rendevuanta" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Malfidela" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Seksmaniulo" + +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Amikoj" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amikoj/Avantaĝoj" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Neformala" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Fianĉiginta" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Edziĝinta" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Image edziĝinta" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Geparuloj" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Kunloĝanta" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Registrita partnereco " + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Feliĉa" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Ne interesiĝis" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Trompita" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Disiĝinta" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Malfirma" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Eksedziĝinta" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Image eksedziĝinta" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vidva" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Ne certa" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Estas komplika" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Egala" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Demandu min" + +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Ne trovis DNS informojn por datumbaza servilo '%s'." -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Kontaktaj informoj / Notoj" +#: include/auth.php:45 +msgid "Logged out." +msgstr "Elsalutita." -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Redakti kontaktnotojn" - -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Viziti la profilon de %s [%s]" - -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Bloki/Malbloki kontakton" - -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignori kontakton" - -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Ripari URL agordoj" - -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Vidi konversaciojn" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Forviŝi kontakton" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Plej ĵusa ĝisdatigo:" - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Ĝisdatigi publikajn afiŝojn" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Ĝisdatigi nun" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Nuntempe blokata" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Nuntempe ignorata" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Nuntempe enarkivigita" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Kaŝi ĉi tiun kontakton al aliaj" - -#: ../../mod/contacts.php:508 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla" - -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../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 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Sugestoj" - -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Sugesti amikojn" - -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Ĉiuj Kontaktoj" - -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Montri ĉiujn kontaktojn" - -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Malblokita" - -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Nur montri neblokitajn kontaktojn" - -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Blokita" - -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Nur montri blokitajn kontaktojn" - -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignorita" - -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Nur montri ignoritajn kontaktojn" - -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Enarkivigita" - -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Nur montri enarkivigitajn kontaktojn" - -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Kaŝita" - -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Nur montri kaŝitajn kontaktojn" - -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Reciproka amikeco" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "estas admiranto de vi" - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "vi estas admiranto de" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Redakti kontakton" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Kontaktoj" - -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Serĉi viajn kontaktojn" - -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Trovata:" - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Trovi" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Ĝisdatigi" - -#: ../../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 "Forviŝi" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Neniu profilo" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Administri identecojn kaj/aŭ paĝojn." - -#: ../../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 "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Elektu identencon por administrado:" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Sukcese afiŝita." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Malpermesita" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Nevaliada profila identigilo." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Redaktilo por profila videbleco." - -#: ../../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" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Klaku kontakton por aldoni aŭ forviŝi." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Videbla Al" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)" - -#: ../../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 ne estas trovita." - -#: ../../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 "Publika atingo ne permesita." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Atingo al ĉi tio profilo estas limitigita" - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Elemento estas forviŝita." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bonvenon ĉe Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Kontrololisto por Novaj Membroj" - -#: ../../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 "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../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 "" - -#: ../../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 "Agordoj" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: ../../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 "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." - -#: ../../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 "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Alŝuti profilbildon" - -#: ../../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 "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: ../../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 "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: ../../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 "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -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 "Rajtigu la Facebook Konektilon se vi nuntempe havas Facebook konton, kaj ni (nedeviga) enportu viajn Facebook amikojn kaj konversaciojn." - -#: ../../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 "Se ĉi tiu estas via propra TTT servilo, instali la Facebook kromprogramon eble plifaciligos la transpason al la libera interkona reto." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "" - -#: ../../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 "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "" - -#: ../../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 "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: ../../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 "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: ../../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 "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Grupoj" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: ../../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 "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: ../../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 "" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Eraro en OpenID protokolo. Ne resendis identecon." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 msgid "Login failed." msgstr "Ensalutado malsukcesis." -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon." - -#: ../../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 "Profilbildoj" - -#: ../../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 "Malsukcesis malpligrandigi [%s] la bildon." - -#: ../../mod/profile_photo.php:118 +#: include/auth.php:132 include/user.php:75 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Ne eblas procezi bildon." +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "La erarmesaĝo estis:" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildo estas pli granda ol la limito %d" +#: 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 "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo." -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Ne eblas procedi la bildon." +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Defaŭlta privateca grupo por novaj kontaktoj" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Alŝuti dosieron:" +#: include/group.php:242 +msgid "Everybody" +msgstr "Ĉiuj" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" +#: include/group.php:265 +msgid "edit" +msgstr "redakti" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Grupoj" + +#: include/group.php:288 +msgid "Edit groups" msgstr "" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Alŝuti" +#: include/group.php:290 +msgid "Edit group" +msgstr "Redakti grupon" -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "aŭ" +#: include/group.php:291 +msgid "Create a new group" +msgstr "Krei novan grupon" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "Preterpasi tian paŝon" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "elekti bildon el viaj albumoj" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Stuci Bildon" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finigi Redaktado" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bildo estas sukcese enŝutita." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Alŝuto de bildo malsukcesis." - -#: ../../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 "bildo" - -#: ../../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 "staton" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Marko forviŝita" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Forviŝi markon" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Elektu forviŝontan markon:" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Forviŝi" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 -msgid "Save to Folder:" -msgstr "Konservi en Dosierujo:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- elekti -" - -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 -msgid "Save" -msgstr "Konservi" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Aldonis kontakton" - -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Ne eblas trovi originalan afiŝon." - -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Forviŝis malplenan afiŝon." - -#: ../../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 "Muraj Bildoj" - -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Sistema eraro. Afiŝo ne registrita." - -#: ../../mod/item.php:964 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto." - -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Vi povas viziti ilin rete ĉe %s" - -#: ../../mod/item.php:967 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn." - -#: ../../mod/item.php:971 -#, php-format -msgid "%s posted an update." -msgstr "%s publikigis afiŝon." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grupo estas kreita." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Ne povas krei grupon." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Grupo ne estas trovita." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "La nomo de la grupo estas ŝanĝita." - -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Krei grupon da kontaktoj/amikoj." - -#: ../../mod/group.php:94 ../../mod/group.php:180 +#: include/group.php:292 mod/group.php:94 mod/group.php:178 msgid "Group Name: " msgstr "Nomo de la grupo:" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Grupo estas forviŝita." +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Kontaktoj en neniu grupo" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Ne eblas forviŝi grupon." +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "aldoni" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Grupa redaktilo" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Nekonata | Nekatorigita" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Anoj" +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloki tuj" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Suspekta, spamisto, memmerkatisto" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Konata al mi, sed mi ne havas opinion" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, verŝajne sendanĝera" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Fidinda laŭ mi" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Ofte" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Ĉiuhore" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Duope ĉiutage" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Ĉiutage" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ĉiusemajne" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Ĉiumonate" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Retpoŝto" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Tujmesaĝilo" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" msgstr "" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Programoj" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Neniom da instalitaj programoj." - -#: ../../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 ne trovita." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Kontakto ne trovita." - -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Ne komprenis la rispondon de la fora retejo." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Neatendita rispondo de la fora retejo:" - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Konfirmo sukcese kompletigita." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "La fora retejo raportis:" - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Dumtempa eraro. Bonvolu atendi kaj provi refoje." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La prezento malsukcesis au estas revokita." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Neeblas agordi la kontaktbildo." - -#: ../../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 amikiĝis kun %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Ne trovis uzanton '%s' " - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Kontakto ne trovita por vi en via retejo." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo." - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Kaŝita nomo]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s aliĝis al %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "La petita profilo ne disponeblas." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Konsilo por novaj membroj" - -#: ../../mod/videos.php:125 -msgid "No videos selected" +#: include/contact_selectors.php:88 +msgid "pump.io" msgstr "" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Atingo al tio elemento estas limigita." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" +#: include/contact_selectors.php:89 +msgid "Twitter" msgstr "" -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Vidi albumon" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" msgstr "" -#: ../../mod/videos.php:319 -msgid "Upload New Videos" +#: include/contact_selectors.php:91 +msgid "GNU Social" msgstr "" -#: ../../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 markis la %3$s de %2$s kun %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Amikosugesto sendita." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugesti amikojn" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugesti amikon por %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Ne trovis validan konton." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." - -#: ../../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." +#: include/contact_selectors.php:92 +msgid "App.net" 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" +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" msgstr "" -#: ../../mod/lostpass.php:72 +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Sendi per retpoŝto" + +#: include/acl_selectors.php:332 #, php-format -msgid "Password reset requested at %s" -msgstr "Pasvorta riparado petita je %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Pasvorta riparado" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Via pasvorto estis riparita laŭ via peto." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Via nova pasvorto estas" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Memorigi vian novan pasvorton - kaj poste" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klaku ĉi tie por ensaluti" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." - -#: ../../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" +msgid "Connectors disabled, since \"%s\" is enabled." 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 "" +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Videbla al ĉiuj" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Ĉu vi forgesis vian pasvorton?" +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "montri" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "kaŝi" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Salutnomo aŭ retpoŝtadreso: " +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: retpoŝtadresojn" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Repari" +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ekzemple: bob@example.com, mary@example.com" -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Permesoj" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Fermi" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "bildo" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "staton" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "okazo" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s ŝatas la %3$s de %2$s" -#: ../../mod/like.php:168 ../../include/conversation.php:140 +#: include/like.php:184 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s malŝatas la %3$s de %2$s" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} volas amikiĝi kun vi" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} sendis mesaĝon al vi" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} petis registradon" - -#: ../../mod/ping.php:256 +#: include/like.php:186 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} komentis pri la afiŝo de %s" +msgid "%1$s is attending %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:261 +#: include/like.php:188 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} satis la afiŝon de %s" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:266 +#: include/like.php:190 #, php-format -msgid "{0} disliked %s's post" -msgstr "{0} malŝatis la afiŝon de %s" +msgid "%1$s may attend %2$s's %3$s" +msgstr "" -#: ../../mod/ping.php:271 +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[neniu temo]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Muraj Bildoj" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Klaku ĉi tie por ĝisdatigi." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Tia ago preterpasas la limojn de via abono." + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "Tia ago ne estas permesita laŭ via abono." + +#: 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 "{0} is now friends with %s" -msgstr "{0} amikiĝis kun %s" +msgid "User '%s' already exists on this server!" +msgstr "" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} afiŝis" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "" -#: ../../mod/ping.php:281 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "" + +#: include/uimport.php:222 #, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} markis la afiŝon de %s kun #%s" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} menciis vin en afiŝo" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "" -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Neniu kontaktojn." +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Diversaj" -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Vidi Kontaktojn" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Naskiĝtago:" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Nevalida peta identigilo." +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Aĝo:" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Forviŝi" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Sistemo" +#: include/datetime.php:341 +msgid "never" +msgstr "neniam" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Reto" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "antaŭ malpli ol unu sekundo" -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Propra" +#: include/datetime.php:350 +msgid "year" +msgstr "jaro" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 +#: include/datetime.php:350 +msgid "years" +msgstr "jaroj" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "monato" + +#: include/datetime.php:351 +msgid "months" +msgstr "monatoj" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "semajno" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "semajnoj" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "tago" + +#: include/datetime.php:353 +msgid "days" +msgstr "tagoj" + +#: include/datetime.php:354 +msgid "hour" +msgstr "horo" + +#: include/datetime.php:354 +msgid "hours" +msgstr "horoj" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minutoj" + +#: include/datetime.php:356 +msgid "second" +msgstr "sekundo" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "sekundoj" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "antaŭ %1$d %2$s" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "Naskiĝtago de %s" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliĉan Naskiĝtagon al %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica Atentigo" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Dankon," + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s Administranto" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "nerespondi" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendis al vi %2$s." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "privatan mesaĝon" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s komentis pri [url=%2$s]%3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s komentis pri [url=%2$s]%4$s de %3$s[/url]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s komentis pri [url=%2$s]via %3$s[/url]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Atentigo] Komento pri konversacio #%1$d de %2$s" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bonvolu viziti %s por vidi aŭ respondi la konversacion." + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Atentigo] %s afiŝis al via profilmuro" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s skribis al via profilmuro ĉe %2$s" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Atentigo] %s markis vin" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s markis vin ĉe %2$s" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]markis vin[/url]." + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Atentigo] %s markis vian afiŝon" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s markis vian afiŝon ĉe %2$s" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s markis [url=%2$s]vian afiŝon[/url]" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Atentigo] Ricevis prezenton" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Atentigo] Ricevis amikosugeston" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Nomo:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Bildo:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Ekas:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Finas:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Loko:" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Dimanĉo" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Lundo" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Mardo" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Merkredo" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Ĵaŭdo" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Vendredo" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Sabato" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Majo" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Januaro" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Februaro" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Marto" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Aprilo" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Junio" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Julio" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Aŭgusto" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Septembro" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Oktobro" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Novembro" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Decembro" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Redakti okazon" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "ligilo al fonto" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Estas neniu nova ĉi tie" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Elsaluti" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Fini ĉi-tiun seancon" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Stato" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Viaj afiŝoj kaj komunikadoj" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profilo" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Via profilo" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Bildoj" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Viaj bildoj" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Okazoj" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Viaj okazoj" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Personaj notoj" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Ensaluti" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Ensaluti" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 msgid "Home" msgstr "Hejmo" -#: ../../mod/notifications.php:98 ../../include/nav.php:154 +#: include/nav.php:105 +msgid "Home Page" +msgstr "Hejmpaĝo" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registri" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Krei konton" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Helpo" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Helpo kaj dokumentado" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Programoj" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Kromprogramoj, utilaĵoj, ludiloj" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Serĉi" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Serĉu la retejon" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Kontaktoj" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Komunumo" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Konversacioj je ĉi-tiu retejo" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Okazoj kaj Kalendaro" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Katalogo" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Katalogo de homoj" + +#: include/nav.php:154 +msgid "Information" +msgstr "" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Reto" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Konversacioj de viaj amikoj" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:166 include/NotificationsManager.php:181 msgid "Introductions" msgstr "Prezentoj" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Montri ignoritajn petojn" +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Kontaktpetoj" -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Kaŝi ignoritajn petojn" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipo de atentigo:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amikosugestoj" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugestita de %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Afiŝi novan amikecan aktivecon" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "se aplikebla" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Aprobi" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Pensas ke vi konas ilin:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "jes" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "ne" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprobi kiel:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amiko" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Kunhaviganto" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fanatikulo/Admiranto" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Kontaktpeto" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nova abonanto" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Neniom da prezentoj" - -#: ../../mod/notifications.php:220 ../../include/nav.php:155 +#: include/nav.php:169 mod/notifications.php:96 msgid "Notifications" msgstr "Atentigoj" -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "%s ŝatis la afiŝon de %s" +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Vidu ĉiujn atentigojn" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s malŝatis la afiŝon de %s" +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Marki kiel legita" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s amikiĝis kun %s" +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Marki ĉiujn atentigojn legita" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "%s kreis novan afiŝon" +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Mesaĝoj" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Privata poŝto" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Enirkesto" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Elirkesto" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nova Mesaĝo" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Administri" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Administri aliajn paĝojn" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Administrado de Delegitajn Paĝojn" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Agordoj" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Konto" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profiloj" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Administri/redakti amikojn kaj kontaktojn" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Administrado" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Agordoj pri la retejo" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "" + +#: include/nav.php:200 +msgid "Site map" +msgstr "" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Kontaktbildoj" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Bonvenon " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bonvolu alŝuti profilbildon." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Bonvenon " + +#: include/security.php:373 +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 "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistemo" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Propra" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 #, php-format msgid "%s commented on %s's post" msgstr "%s komentis pri la afiŝo de %s" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Ne pli da retaj atentigoj." - -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Retaj Atentigoj" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Ne pli da sistemaj atentigoj." - -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Sistemaj Atentigoj" - -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Ne pli da personaj atentigoj" - -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Personaj Atentigoj" - -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Ne pli da hejmrilataj atentigoj." - -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Hejmrilataj atentigoj" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Fontkodo (bbcode):" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Fontokodo (Diaspora) konvertota al BBcode:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Fontoenigo:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: ../../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 "Fontoenigo (Diaspora formato):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Estas neniu nova ĉi tie" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Nova Mesaĝo" - -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Neniom da ricevontoj." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ne eblas trovi kontaktajn informojn." - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Ne povas sendi la mesaĝon." - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Malsukcese provis kolekti mesaĝojn." - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Mesaĝo estas sendita." - -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Mesaĝoj" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Mesaĝo estas forviŝita." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Dialogo estas forviŝita." - -#: ../../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 "Bonvolu entajpu adreson de ligilo:" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Sendi Privatan Mesaĝon" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "Al:" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Temo:" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Via mesaĝo:" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Alŝuti bildon" - -#: ../../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 "Enmeti retan adreson" - -#: ../../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 "Bonvolu atendi" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Neniom da mesaĝoj." - -#: ../../mod/message.php:378 +#: include/NotificationsManager.php:243 #, php-format -msgid "Unknown sender - %s" -msgstr "Nekonata sendanto - %s" +msgid "%s created a new post" +msgstr "%s kreis novan afiŝon" -#: ../../mod/message.php:381 +#: include/NotificationsManager.php:256 #, php-format -msgid "You and %s" -msgstr "Vi kaj %s" +msgid "%s liked %s's post" +msgstr "%s ŝatis la afiŝon de %s" -#: ../../mod/message.php:384 +#: include/NotificationsManager.php:267 #, php-format -msgid "%s and You" -msgstr "%s kaj vi" +msgid "%s disliked %s's post" +msgstr "%s malŝatis la afiŝon de %s" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Forviŝi dialogon" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 +#: include/NotificationsManager.php:278 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mesaĝo" -msgstr[1] "%d mesaĝoj" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Mesaĝo nedisponebla." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Forviŝu mesaĝon" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Respondi" - -#: ../../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 "[Enigita enhavo - reŝargu paĝon por spekti ĝin]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Kontaktagordoj estas konservita." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Ĝisdatigo de kontakto malsukcesis." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Ripari kontaktagordoj." - -#: ../../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 "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Reen al kontakta redaktilo" - -#: ../../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 -msgid "Name" -msgstr "Nomo" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Kaŝnomo de la konto" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Marknomo - Transpasas nomon/kaŝnomon" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "Adreso de la konto" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Kontaktpeta adreso" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Kontaktkonfirma adreso" - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Finpunkta adreso por atentigoj" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Adreso de fluo" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nova bildo el tiu adreso" - -#: ../../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/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Ensaluti" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Atingo nepermesita." - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Serĉi Membrojn" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nenio estas trovita" - -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Bildoj" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Dosieroj" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontaktoj kiuj ne estas en iu grupo" - -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Gisdatigis agordojn pri etosoj." - -#: ../../mod/admin.php:104 ../../mod/admin.php:619 -msgid "Site" -msgstr "Retejo" - -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 -msgid "Users" -msgstr "Uzantoj" - -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Kromprogramoj" - -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 -msgid "Themes" -msgstr "Etosoj" - -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "DB ĝisdatigoj" - -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 -msgid "Logs" -msgstr "Protokoloj" - -#: ../../mod/admin.php:124 -msgid "probe address" -msgstr "" - -#: ../../mod/admin.php:125 -msgid "check webfinger" -msgstr "" - -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Administrado" - -#: ../../mod/admin.php:131 -msgid "Plugin Features" -msgstr "Kromprogramaj Trajtoj" - -#: ../../mod/admin.php:133 -msgid "diagnostics" -msgstr "" - -#: ../../mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Uzantaj registradoj atendante konfirmon" - -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Normala konto" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Soapbox Konto" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Komunuma/eminentula Konto" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Aŭtomata Amika Konto" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Blogkonto" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Privata Forumo" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Mesaĝvicoj" - -#: ../../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 -msgid "Administration" -msgstr "Administrado" - -#: ../../mod/admin.php:223 -msgid "Summary" -msgstr "Resumo" - -#: ../../mod/admin.php:225 -msgid "Registered users" -msgstr "Registrataj uzantoj" - -#: ../../mod/admin.php:227 -msgid "Pending registrations" -msgstr "Okazontaj registradoj" - -#: ../../mod/admin.php:228 -msgid "Version" -msgstr "Versio" - -#: ../../mod/admin.php:232 -msgid "Active plugins" -msgstr "Ŝaltitaj kromprogramoj" - -#: ../../mod/admin.php:255 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: ../../mod/admin.php:516 -msgid "Site settings updated." -msgstr "Ĝisdatigis retejaj agordoj." - -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:562 -msgid "No community page" -msgstr "" - -#: ../../mod/admin.php:563 -msgid "Public postings from users of this site" -msgstr "" - -#: ../../mod/admin.php:564 -msgid "Global community page" -msgstr "" - -#: ../../mod/admin.php:570 -msgid "At post arrival" -msgstr "" - -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Ofte" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ĉiuhore" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Duope ĉiutage" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Ĉiutage" - -#: ../../mod/admin.php:579 -msgid "Multi user instance" -msgstr "" - -#: ../../mod/admin.php:602 -msgid "Closed" -msgstr "Ferma" - -#: ../../mod/admin.php:603 -msgid "Requires approval" -msgstr "Bezonas aprobon" - -#: ../../mod/admin.php:604 -msgid "Open" -msgstr "Malferma" - -#: ../../mod/admin.php:608 -msgid "No SSL policy, links will track page SSL state" -msgstr "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo." - -#: ../../mod/admin.php:609 -msgid "Force all links to use SSL" -msgstr "Devigi ke ĉiuj ligiloj uzu SSL." - -#: ../../mod/admin.php:610 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)" - -#: ../../mod/admin.php: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 "" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Registrado" - -#: ../../mod/admin.php:622 -msgid "File upload" -msgstr "Alŝuto" - -#: ../../mod/admin.php:623 -msgid "Policies" -msgstr "Politiko" - -#: ../../mod/admin.php:624 -msgid "Advanced" -msgstr "Altnivela" - -#: ../../mod/admin.php:625 -msgid "Performance" -msgstr "" - -#: ../../mod/admin.php:626 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:629 -msgid "Site name" -msgstr "Nomo de retejo" - -#: ../../mod/admin.php:630 -msgid "Host name" -msgstr "" - -#: ../../mod/admin.php:631 -msgid "Sender Email" -msgstr "" - -#: ../../mod/admin.php:632 -msgid "Banner/Logo" -msgstr "Emblemo" - -#: ../../mod/admin.php:633 -msgid "Shortcut icon" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "Touch icon" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "Additional Info" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: ../../mod/admin.php:636 -msgid "System language" -msgstr "Sistema lingvo" - -#: ../../mod/admin.php:637 -msgid "System theme" -msgstr "Sistema etoso" - -#: ../../mod/admin.php:637 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj" - -#: ../../mod/admin.php:638 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:638 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:639 -msgid "SSL link policy" -msgstr "Strategio por SSL ligiloj" - -#: ../../mod/admin.php:639 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL." - -#: ../../mod/admin.php:640 -msgid "Force SSL" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Old style 'Share'" -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:642 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: ../../mod/admin.php:642 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." +msgid "%s is attending %s's event" msgstr "" -#: ../../mod/admin.php:643 -msgid "Single user instance" -msgstr "" - -#: ../../mod/admin.php:643 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: ../../mod/admin.php:644 -msgid "Maximum image size" -msgstr "Maksimuma bildgrando" - -#: ../../mod/admin.php:644 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito." - -#: ../../mod/admin.php:645 -msgid "Maximum image length" -msgstr "" - -#: ../../mod/admin.php:645 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: ../../mod/admin.php:646 -msgid "JPEG image quality" -msgstr "" - -#: ../../mod/admin.php:646 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:648 -msgid "Register policy" -msgstr "Interkonsento pri registrado" - -#: ../../mod/admin.php:649 -msgid "Maximum Daily Registrations" -msgstr "" - -#: ../../mod/admin.php:649 -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 -msgid "Register text" -msgstr "Interkonsento teksto" - -#: ../../mod/admin.php:650 -msgid "Will be displayed prominently on the registration page." -msgstr "Tio estos eminente montrata en la registro paĝo." - -#: ../../mod/admin.php:651 -msgid "Accounts abandoned after x days" -msgstr "Kontoj forlasitaj post x tagoj" - -#: ../../mod/admin.php:651 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo." - -#: ../../mod/admin.php:652 -msgid "Allowed friend domains" -msgstr "Permesitaj amikaj domainoj" - -#: ../../mod/admin.php:652 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." - -#: ../../mod/admin.php:653 -msgid "Allowed email domains" -msgstr "Permesitaj retpoŝtaj domajnoj" - -#: ../../mod/admin.php:653 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." - -#: ../../mod/admin.php:654 -msgid "Block public" -msgstr "Bloki publike" - -#: ../../mod/admin.php:654 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita." - -#: ../../mod/admin.php:655 -msgid "Force publish" -msgstr "Devigi publikigon" - -#: ../../mod/admin.php:655 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo." - -#: ../../mod/admin.php:656 -msgid "Global directory update URL" -msgstr "Ĝenerala adreso por ĝisdatigi la katalogon" - -#: ../../mod/admin.php:656 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL adreso por ĝisdatigi la tutmondan katalogon. Se ne agordita, la tutmonda katatolge tute ne disponeblas al la programo." - -#: ../../mod/admin.php:657 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:657 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:658 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:658 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:659 -msgid "Don't include post content in email notifications" -msgstr "" - -#: ../../mod/admin.php:659 -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 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: ../../mod/admin.php:660 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: ../../mod/admin.php:661 -msgid "Don't embed private images in posts" -msgstr "" - -#: ../../mod/admin.php:661 -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 -msgid "Allow Users to set remote_self" -msgstr "" - -#: ../../mod/admin.php:662 -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 -msgid "Block multiple registrations" -msgstr "Bloki pluroblajn registradojn." - -#: ../../mod/admin.php:663 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj." - -#: ../../mod/admin.php:664 -msgid "OpenID support" -msgstr "Subteno por OpenID" - -#: ../../mod/admin.php:664 -msgid "OpenID support for registration and logins." -msgstr "Subteni OpenID por registrado kaj ensaluto." - -#: ../../mod/admin.php:665 -msgid "Fullname check" -msgstr "Kontroli plenan nomon" - -#: ../../mod/admin.php:665 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo." - -#: ../../mod/admin.php:666 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 regulaj exprimoj" - -#: ../../mod/admin.php:666 -msgid "Use PHP UTF8 regular expressions" -msgstr "Uzi PHP UTF8 regulajn esprimojn." - -#: ../../mod/admin.php:667 -msgid "Community Page Style" -msgstr "" - -#: ../../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 "" - -#: ../../mod/admin.php:668 -msgid "Posts per user on community page" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: ../../mod/admin.php:669 -msgid "Enable OStatus support" -msgstr "Ŝalti subtenon por OStatus" - -#: ../../mod/admin.php:669 -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 -msgid "OStatus conversation completion interval" -msgstr "" - -#: ../../mod/admin.php:670 -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 -msgid "Enable Diaspora support" -msgstr "Ŝalti subtenon por Diaspora" - -#: ../../mod/admin.php:671 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Provizi integritan Diaspora subtenon." - -#: ../../mod/admin.php:672 -msgid "Only allow Friendica contacts" -msgstr "Nur permesigi Friendica kontaktojn" - -#: ../../mod/admin.php:672 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita." - -#: ../../mod/admin.php:673 -msgid "Verify SSL" -msgstr "Kontroli SSL" - -#: ../../mod/admin.php:673 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj." - -#: ../../mod/admin.php:674 -msgid "Proxy user" -msgstr "Uzantnomo por retperanto" - -#: ../../mod/admin.php:675 -msgid "Proxy URL" -msgstr "URL adreso de retperanto" - -#: ../../mod/admin.php:676 -msgid "Network timeout" -msgstr "Reta tempolimo" - -#: ../../mod/admin.php:676 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)." - -#: ../../mod/admin.php:677 -msgid "Delivery interval" -msgstr "Intervalo de liverado" - -#: ../../mod/admin.php:677 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj." - -#: ../../mod/admin.php:678 -msgid "Poll interval" -msgstr "Enketintervalo" - -#: ../../mod/admin.php:678 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon." - -#: ../../mod/admin.php:679 -msgid "Maximum Load Average" -msgstr "Maksimuma Meza Sistemŝargo" - -#: ../../mod/admin.php:679 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50." - -#: ../../mod/admin.php:681 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:681 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress Language" -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress Tags" -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: ../../mod/admin.php:684 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:685 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:685 -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 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: ../../mod/admin.php:686 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: ../../mod/admin.php:687 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:688 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:689 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "Disable picture proxy" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: ../../mod/admin.php:691 -msgid "Enable old style pager" -msgstr "" - -#: ../../mod/admin.php:691 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: ../../mod/admin.php:692 -msgid "Only search in tags" -msgstr "" - -#: ../../mod/admin.php:692 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: ../../mod/admin.php:694 -msgid "New base url" -msgstr "" - -#: ../../mod/admin.php:711 -msgid "Update has been marked successful" -msgstr "Ĝisdatigo estas markita sukcesa" - -#: ../../mod/admin.php:719 +#: include/NotificationsManager.php:289 #, php-format -msgid "Database structure update %s was successfully applied." +msgid "%s is not attending %s's event" msgstr "" -#: ../../mod/admin.php:722 +#: include/NotificationsManager.php:300 #, php-format -msgid "Executing of database structure update %s failed with error: %s" +msgid "%s may attend %s's event" msgstr "" -#: ../../mod/admin.php:734 +#: include/NotificationsManager.php:315 #, php-format -msgid "Executing %s failed with error: %s" -msgstr "" +msgid "%s is now friends with %s" +msgstr "%s amikiĝis kun %s" -#: ../../mod/admin.php:737 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Sukcese aplikis la ĝisdatigo %s." - -#: ../../mod/admin.php:741 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Ĝisdatigo %s ne liveris elirstaton. " - -#: ../../mod/admin.php:743 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: ../../mod/admin.php:762 -msgid "No failed updates." -msgstr "Neniom da malsukcesaj ĝisdatigoj." - -#: ../../mod/admin.php:763 -msgid "Check database structure" -msgstr "" - -#: ../../mod/admin.php:768 -msgid "Failed Updates" -msgstr "Malsukcesaj Ĝisdatigoj" - -#: ../../mod/admin.php:769 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." - -#: ../../mod/admin.php:770 -msgid "Mark success (if update was manually applied)" -msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" - -#: ../../mod/admin.php:771 -msgid "Attempt to execute this update step automatically" -msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." - -#: ../../mod/admin.php:803 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "" -"\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." -msgstr "" - -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Detaloj de la registrado por %s" - -#: ../../mod/admin.php:850 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "Blokis/malblokis %s uzanton" -msgstr[1] "Blokis/malblokis %s uzantojn" - -#: ../../mod/admin.php:857 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s uzanto forviŝita" -msgstr[1] "%s uzanto forviŝitaj" - -#: ../../mod/admin.php:896 -#, php-format -msgid "User '%s' deleted" -msgstr "Uzanto '%s' forviŝita" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' unblocked" -msgstr "Uzanto '%s' malblokita" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' blocked" -msgstr "Uzanto '%s' blokita" - -#: ../../mod/admin.php:999 -msgid "Add User" -msgstr "" - -#: ../../mod/admin.php:1000 -msgid "select all" -msgstr "elekti ĉiujn" - -#: ../../mod/admin.php:1001 -msgid "User registrations waiting for confirm" -msgstr "Registriĝoj atendante aprobon" - -#: ../../mod/admin.php:1002 -msgid "User waiting for permanent deletion" -msgstr "" - -#: ../../mod/admin.php:1003 -msgid "Request date" -msgstr "Dato de peto" - -#: ../../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 "Retpoŝto" - -#: ../../mod/admin.php:1004 -msgid "No registrations." -msgstr "Neniom da registriĝoj." - -#: ../../mod/admin.php:1006 -msgid "Deny" -msgstr "Negi" - -#: ../../mod/admin.php:1010 -msgid "Site admin" -msgstr "" - -#: ../../mod/admin.php:1011 -msgid "Account expired" -msgstr "" - -#: ../../mod/admin.php:1014 -msgid "New User" -msgstr "" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Register date" -msgstr "Dato de registrado" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last login" -msgstr "Plej ĵusa ensaluto" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last item" -msgstr "Plej ĵusa elemento" - -#: ../../mod/admin.php:1015 -msgid "Deleted since" -msgstr "" - -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Konto" - -#: ../../mod/admin.php:1018 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" - -#: ../../mod/admin.php:1019 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" - -#: ../../mod/admin.php:1029 -msgid "Name of the new user." -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname" -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname of the new user." -msgstr "" - -#: ../../mod/admin.php:1031 -msgid "Email address of the new user." -msgstr "" - -#: ../../mod/admin.php:1064 -#, php-format -msgid "Plugin %s disabled." -msgstr "Kromprogramo %s estas malŝaltita." - -#: ../../mod/admin.php:1068 -#, php-format -msgid "Plugin %s enabled." -msgstr "Kromprogramo %s estas ŝaltita." - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 -msgid "Disable" -msgstr "Malŝalti" - -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 -msgid "Enable" -msgstr "Ŝalti" - -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 -msgid "Toggle" -msgstr "Ŝalti/Malŝalti" - -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 -msgid "Author: " -msgstr "Aŭtoro: " - -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 -msgid "Maintainer: " -msgstr "Prizorganto: " - -#: ../../mod/admin.php:1254 -msgid "No themes found." -msgstr "Ne trovis etosojn." - -#: ../../mod/admin.php:1316 -msgid "Screenshot" -msgstr "Ekrankopio" - -#: ../../mod/admin.php:1362 -msgid "[Experimental]" -msgstr "[Eksperimenta]" - -#: ../../mod/admin.php:1363 -msgid "[Unsupported]" -msgstr "[Nesubtenata]" - -#: ../../mod/admin.php:1390 -msgid "Log settings updated." -msgstr "Protokolagordoj ĝisdatigitaj." - -#: ../../mod/admin.php:1446 -msgid "Clear" -msgstr "Forviŝi" - -#: ../../mod/admin.php:1452 -msgid "Enable Debugging" -msgstr "" - -#: ../../mod/admin.php:1453 -msgid "Log file" -msgstr "Protokolo" - -#: ../../mod/admin.php:1453 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo." - -#: ../../mod/admin.php:1454 -msgid "Log level" -msgstr "Protokolnivelo" - -#: ../../mod/admin.php:1504 -msgid "Close" -msgstr "Fermi" - -#: ../../mod/admin.php:1510 -msgid "FTP Host" -msgstr "FTP Servilo" - -#: ../../mod/admin.php:1511 -msgid "FTP Path" -msgstr "FTP Vojo" - -#: ../../mod/admin.php:1512 -msgid "FTP User" -msgstr "FTP Uzanto" - -#: ../../mod/admin.php:1513 -msgid "FTP Password" -msgstr "FTP Pasvorto" - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Rezultoj de la serĉado pri:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Forviŝu terminon" - -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Konservitaj Serĉadoj" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "aldoni" - -#: ../../mod/network.php:356 -msgid "Commented Order" -msgstr "Komenta Ordo" - -#: ../../mod/network.php:359 -msgid "Sort by Comment Date" -msgstr "Ordigi laŭ Dato de Komento" - -#: ../../mod/network.php:362 -msgid "Posted Order" -msgstr "Afiŝita Ordo" - -#: ../../mod/network.php:365 -msgid "Sort by Post Date" -msgstr "Ordigi laŭ Dato de Afiŝado" - -#: ../../mod/network.php:374 -msgid "Posts that mention or involve you" -msgstr "Afiŝoj menciantaj vin aŭ pri vi" - -#: ../../mod/network.php:380 -msgid "New" -msgstr "Nova" - -#: ../../mod/network.php:383 -msgid "Activity Stream - by date" -msgstr "Fluo de Aktiveco - laŭ dato" - -#: ../../mod/network.php:389 -msgid "Shared Links" -msgstr "Kunhavigitaj Ligiloj" - -#: ../../mod/network.php:392 -msgid "Interesting Links" -msgstr "Interesaj Ligiloj" - -#: ../../mod/network.php:398 -msgid "Starred" -msgstr "Steligita" - -#: ../../mod/network.php:401 -msgid "Favourite Posts" -msgstr "Favorigitaj Afiŝoj" - -#: ../../mod/network.php:463 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Averto: La grupo enhavas %s membron el nesekuraj retejoj." -msgstr[1] "Averto: La grupo enhavas %s membrojn el nesekuraj retejoj." - -#: ../../mod/network.php:466 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "La privateco de privataj mesaĝoj al ĉi tiu grupo ne ĉiam estas garantita." - -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Grupo ne estas trovita" - -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Grupo estas malplena" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grupo:" - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Kontakto:" - -#: ../../mod/network.php:556 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita." - -#: ../../mod/network.php:561 -msgid "Invalid contact." -msgstr "Nevalida kontakto." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amikoj de %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Neniom da amiko al montri." - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titolo kaj starttempo estas bezonataj por la okazo." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Redakti okazon" - -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "ligilo al fonto" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Okazoj" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Krei novan okazon" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "antaŭa" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "sekva" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "horo:minuto" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detaloj de okazo" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Format is %s %s. Titolo kaj starttempo estas bezonataj." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Okazo startas:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Bezonata" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Okazo finas:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Agordi al horzono de la leganto" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Priskribo" - -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Loko:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titolo:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Kunhavigi la okazon" - -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Elekti" - -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vidi la profilon de %s ĉe %s" - -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Vidi kun kunteksto" - -#: ../../mod/content.php:603 ../../object/Item.php:387 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d komento" -msgstr[1] "%d komentoj" - -#: ../../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] "komento" - -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "montri pli" - -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Privata mesaĝo" - -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Mi ŝatas tion (ŝalti)" - -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "ŝati" - -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Mi malŝatas tion(ŝalti)" - -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "malŝati" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Kunhavigi ĉi tiun" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "kunhavigi" - -#: ../../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 "Tiu estas vi" - -#: ../../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 "Komenti" - -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Grasa" - -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Kursiva" - -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Substreki" - -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Citaĵo" - -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Kodo" - -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Bildo" - -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Ligilo" - -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" - -#: ../../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 "Antaŭrigardi" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Redakti" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "aldoni stelon" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "forpreni stelon" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "ŝalti/malŝalti steloŝtato" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "steligita" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "aldoni markon" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "konservi en dosierujo" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "al" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "Muro-al-Muro" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "per Muro-al-Muro:" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Forigi Mian Konton" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Ne eblas konekti la datumbazon." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Ne eblas krei tabelon." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "La datumbazo de vi Friendica retjo estas instalita." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Bonvolu legi la dosieron \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Sistema kontrolo" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Ree kontroli" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Datumbaza konekto" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nomo de datumbaza servilo." - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Salutnomo ĉe la datumbazo." - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Pasvorto ĉe la datumbazo." - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nomo de la datumbazo." - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Retpoŝtadreso de la reteja administranto" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Bonvolu elekti defaŭltan horzonon por via retejo." - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Retejaj agordoj" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Komanda linia versio de PHP ne trovita en PATH de la retservilo." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Se vi ne havas komandlinian version de PHP sur la servilo, vi ne eblas plenumi fonan planitan enketon per cron. Bonvolu legi 'Activating scheduled tasks'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Vojo de la komanda linia versio de PHP" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "komanda linia versio de PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Tio estas bezonata por la livero de mesaĝoj." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn." - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php" - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generi ĉifroŝlosilojn" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "PHP modulo libCurl" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "PHP modulo GD" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "PHP modulo OpenSSL" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "PHP modulo mysqli" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "PHP modulo mb_string" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modulo" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron \"INSTALL.txt\" por trovi instrukciojn." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php estas skribebla." - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Url rewrite en .htaccess ne funkcias. Kontrolu la agordojn de la servilo." - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "URL rewrite funkcias." - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo." - -#: ../../mod/install.php:523 -msgid "

                                              What next

                                              " -msgstr "

                                              Kio sekvas nun?

                                              " - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller." - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Ne eblas kontroli vian hejmlokon." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Neniom da ricevontoj." - -#: ../../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 vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj." - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Helpo:" - -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Helpo" - -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Ne trovita" - -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Paĝo ne trovita" - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bonvenon ĉe %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 "Dosiero estas pli granda ol la limito de %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Alŝutado malsukcesis." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Kongrua profilo" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "interesiĝas pri:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Konekti" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "ligilo" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Ne disponebla." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Komunumo" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Nenion trovita." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "ĉiuj" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Konektitaj programoj" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Eksporto" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Forigi konton" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Mankas importantaj datumoj!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Retpoŝtagordoj ĝisdatigita" - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "" - -#: ../../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 "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "" - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Pasvorto ŝanĝita." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr " Bonvolu uzi pli mallongan nomon." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr " Nomo estas tro mallonga." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr " Repoŝtadreso ne validas." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr " Ne povas ŝanĝi al tio retpoŝtadreso." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Agordoj ĝisdatigita." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Aldoni programon" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Ŝlosilo de kliento" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Sekreto de kliento" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Alidirekto" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "Piktograma adreso" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Ĉi tio programo ne estas redaktebla." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Konektitaj Programoj" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Ŝlosilo de kliento komencas kun" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Neniu nomo" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Forviŝi rajtigon" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Neniom da kromprogramoagordoj farita" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Kromprogramoagordoj" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Integrita subteno por %s koneto estas %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 "ŝaltita" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "malŝaltita" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "Retpoŝta atingo ne disponeblas ĉi tie." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Agordoj pri Retpoŝto" - -#: ../../mod/settings.php:786 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." - -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" - -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "Nomo de IMAP servilo:" - -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "Numero de IMAP pordo:" - -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Sekureco:" - -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Nenio" - -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Retpoŝta salutnomo:" - -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Retpoŝta pasvorto:" - -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Responda adreso (Reply-to):" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Ago post la importado:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Marki kiel legita" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Movi al dosierujo" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Movi al dosierujo:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Ekranagordoj" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Vidiga etoso:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimume 10 sekundoj, sen maksimumo" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Maksimume 100 eroj" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Ne montru ridetulojn" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Normala Kontopaĝo" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Tiu konto estas normala persona profilo" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Soapbox Paĝo" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Komunuma Forumo/Eminentula Konto" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Aŭtomata Amiko Paĝo" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Privata Forumo [eksperimenta]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Privata forumo - nur por aprobitaj membroj" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?" - -#: ../../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 "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?" - -#: ../../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 "Ĉu amikoj povu afiŝi al via profilo?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Profilo ne estas publika." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Via identeca adreso estas" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Detalaj agordoj rilate al senvalidiĝo" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Detala senvalidiĝo" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Senvalidigi afiŝojn:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Senvalidigi personajn notojn:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Senvalidigi steligitajn afiŝojn:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Senvalidigi bildojn:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Nur senvalidigi afiŝojn de aliaj: " - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Kontoagordoj" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Agordoj pri Pasvorto" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nova pasvorto:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Konfirmi:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Bazaj Agordoj" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Plena Nomo:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Retpoŝtadreso:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Via Horzono:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Defaŭlta Loko por Afiŝoj:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Uzu Lokon laŭ Retesplorilo:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Agordoj pri Sekureco kaj Privateco" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Taga maksimumo da kontaktpetoj:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(por malhelpi spamaĵojn)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Defaŭltaj permesoj por afiŝoj" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(klaku por malfermi/fermi)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Taga maksimumo da privataj mesaĝoj." - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Agordoj pri Atentigoj" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Defaŭlte afiŝi statmesaĝon okaze de:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "akcepti kontaktpeton" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "aliĝi forumon/komunumon" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "fari interesan profilŝanĝon" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Sendu atentiga repoŝton se:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Vi ricevas inviton" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Viaj prezentoj estas konfirmata." - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Iu skribas je via profila muro." - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Iu skribas sekvan komenton" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Vi ricevas privatan mesaĝon." - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Vi ricevas amikosugeston" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Vi estas markita en afiŝon" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../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 "Detalaj Agordoj pri Tipo de Konto/Paĝo." - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Agordi la teniĝon de la konto en specialaj situacioj" - -#: ../../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 "Tia prezento jam estas akceptita" - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Averto: La adreso de la profilo ne enhavas bildon." - -#: ../../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 bezonataj parametroj ne trovita ĉe la donata adreso." -msgstr[1] "%d bezonataj parametroj ne trovita ĉe la donata adreso." - -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Prezento sukcesis." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Neĝustigebla eraro en protokolo." - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo ne estas disponebla." - -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hodiaŭ ricevis tro multe da konektpetoj." - -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Kontraŭspamilo estas aktivita." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Amikoj, vi bonvolu ripeti post 24 horoj." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Nevalida adreso." - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Nevalida repoŝtadreso." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Via nomo ne troveblas al la donita adreso." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Vi vin jam prezentis tie." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Nevalida adreso de profilo." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Malpermesita adreso de profilo." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Via prezento estas sendita." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bonvolu ensaluti por jesigi la prezenton." - -#: ../../mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon." - -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Kaŝi tiun kontakton" - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Bonvenon hejme, %s." - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s." - -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Konfirmi." - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: " - -#: ../../mod/dfrn_request.php: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 vi ne estas membro de la libra interkona reto, sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Prezento / Konektpeto" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Bonvolu respondi:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Ĉu %s konas vin?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Aldoni personan noton:" - -#: ../../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/Federaciaj interkonaj retejoj" - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo." - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Via identeca adreso:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Sendi peton" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj." - -#: ../../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 "Mi ne povas prilabori vian registradon." - -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Via registrado bezonas apropbon de la administranto." - -#: ../../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 "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." - -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vi ankaŭ (nedeviga) povas plenigi la formularon per OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'." - -#: ../../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 vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Via OpenID (nedeviga):" - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Aldoni vian profilon al la membrokatalogo?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Membriĝi ĉi tie nur eblas laŭ invito." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Via invita idento: " - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Via Plena Nomo (e.g. Joe Smith): " - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Via Retpoŝtadreso: " - -#: ../../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 "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@$sitename'." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Elektu kaŝnomon: " - -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Registri" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Serĉi" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Tutmonda Katalogo" - -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Trovi en ĉi retejo" - -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Reteja Katalogo" - -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Aĝo:" - -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Sekso:" - -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Sekso:" - -#: ../../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 "Hejmpaĝo:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Pri:" - -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Ne trovis delegiteblajn paĝojn." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Administrado de Delegitajn Paĝojn" - -#: ../../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 "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Estantaj Administrantoj de la Paĝo" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Estantaj Delegitoj de la Paĝo" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Eblaj Delegitoj" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Aldoni" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Neniom da afiŝoj." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Komunaj Amikoj" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Neniom da komunaj kontaktoj." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: ../../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 "" - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "" - -#: ../../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 "" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" msgstr "Amikosugestoj" -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj." +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Kontaktpeto" -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignori/Kaŝi" +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nova abonanto" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo forviŝita." - -#: ../../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 "Nova profilo kreita." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Ne eblas kopii profilon." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Nomo de profilo estas bezonata." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Amrilata Stato" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Kora Partnero" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Ŝatoj" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Malŝatoj" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Laboro" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religio" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politikaj Opinioj" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Sekso" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Seksa Prefero" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Hejmpaĝo" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interesoj" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adreso" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Loko" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profilo ĝisdatigita." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " kaj " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "publika profilo" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ŝanĝis %2$s al “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Vizitu la %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 havas ĝisdatigigan %2$s, ŝanĝas %3$s." - -#: ../../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 "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Redakti Detalojn de Profilo" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Vidi la profilon." - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Krei novan profilon kun tiaj agordoj" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Kopii ĉi tiun profilon" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Forviŝi ĉi tiun profilon" - -#: ../../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 "Nomo de Profilo:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Via Plena Nomo:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titolo/Priskribo:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Via Sekso:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Naskiĝtago (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Adreso:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Urbo:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Poŝtkodo:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Lando:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Ŝtato:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Civita Stato:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Kiu (se aplikeble):" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Ekzemploj: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Ekde [dato]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Seksa Prefero:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Adreso de Hejmpaĝo:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Hejmurbo:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Politikaj Opinioj:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Religiaj Opinioj:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Publikaj ŝlosilvortoj:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Privataj ŝlosilvortoj:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Ŝatoj:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Malŝatoj:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Ekzemple: fiŝkapti fotografio programaro" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Por sugesti amikoj. Videbla al aliaj.)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Diru al ni pri vi..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Ŝatokupoj/Interesoj" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Muzikaj interesoj" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Libroj, literaturo" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televido" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Filmoj/dancoj/arto/amuzaĵoj" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Amo/romanco" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Laboro" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Lernejo/eduko" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
                                              It may " -"be visible to anybody using the internet." -msgstr "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. " - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Redakti/administri Profilojn" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Ŝanĝi profilbildon" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Krei novan profilon" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Profilbildo" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "videbla al ĉiuj" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Redakti videblecon" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Elemento ne trovita" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Redakti afiŝon" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "alŝuti bildon" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Kunligi dosieron" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "kunsendi dosieron" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "TTT ligilo" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Alglui ligilon de video" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "video ligilo" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Alglui ligilon de sono" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "sono ligilo" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Agordi vian lokon" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "agordi lokon" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Forviŝu retesplorilan lokon" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "forviŝi lokon" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Permesagordoj" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: retpoŝtadresojn" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Publika afiŝo" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Redakti titolon" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Kategorioj (disigita per komo)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ekzemple: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Tio estas Friendica en la versio" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "instalita ĉe la adreso" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica" - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Instalitaj kromprogramoj/programoj:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Neniom da instalitaj aldonaĵoj/programoj" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Rajtigi programkonekton" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Reiru al via programo kaj entajpu la securecan kodon:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Bonvolu ensaluti por pluigi." - -#: ../../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 "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informoj pri fora privateca ne estas disponebla." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Videbla al:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Personaj Notoj" - -#: ../../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 "Konverto de tempo" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC horo: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuala horzono: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Konvertita loka horo: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bonvolu elekti vian horzonon:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Ne estas valida retpoŝtadreso." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Bonvolu aliĝi kun ni ĉe Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: La livero de la mesaĝo malsukcesis." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "Sendis %d mesaĝon." -msgstr[1] "Sendis %d mesaĝojn." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Vi ne plu disponeblas invitaĵojn" - -#: ../../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 "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." - -#: ../../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 "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Sendi invitojn" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." - -#: ../../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 "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: " - -#: ../../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 "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Bildalbumoj" - -#: ../../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 "Kontaktbildoj" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Alŝuti novajn bildojn" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontaktoj informoj ne disponeblas" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Albumo ne trovita." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Forviŝi albumon" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Forviŝi bildon" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Bildo estas pli granda ol la limito de" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Bilddosiero estas malplena." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Neniu bildoj elektita" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Alŝuti bildojn" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nomo por nova albumo:" - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "aŭ nomo de estanta albumo:" - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Ne kreu statan afiŝon por tio alŝuto." - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Permesoj" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Redakti albumon" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Vidi bildon" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "La bildo ne disponeblas" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Vidi bildon" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Redakti bildon" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Uzi kiel profilbildo" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Vidi plengrande " - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Markoj:" - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Forviŝi iun markon]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Turni horloĝdirekte (dekstren)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nova nomo de albumo" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Apudskribo" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Aldoni markon" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Kunhavigi" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "̂Ĵusaj bildoj" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto aprobita." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registraĵo por %s senvalidigita." - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Bonvolu ensaluti." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: ../../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 "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elemento ne disponeblas." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Elemento ne trovita." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Forviŝi ĉi tiun elementon?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "montri malpli" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Krei Novan Konton" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Elsaluti" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Kaŝnomo aŭ retpoŝtadreso:" - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Pasvorto:" - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Aŭ ensaluti per OpenID:" - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Ĉu vi vorgesis vian pasvorton?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "" - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Redakti profilon" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Mesaĝo" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profiloj" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Administri/redakti profilojn" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[hodiaŭ]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Memorigilo pri naskiĝtagoj" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Naskiĝtagoj ĉi-semajne:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Neniu priskribo]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Memorigilo pri Okazoj" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Okazoj ĉi-semajne:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Stato" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Ŝtatmesaĝoj kaj Afiŝoj" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Profildetaloj" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Okazoj kaj Kalendaro" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Nur Vi Povas Vidi Tiun" - -#: ../../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 "" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "" - -#: ../../include/dbstructure.php:26 +#: include/dbstructure.php:26 #, php-format msgid "" "\n" @@ -5698,1382 +1670,1380 @@ msgid "" "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: ../../include/dbstructure.php:31 +#: include/dbstructure.php:31 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "" -#: ../../include/dbstructure.php:162 +#: include/dbstructure.php:183 msgid "Errors encountered creating database tables." msgstr "Okazis eraroj dum la kreado de tabeloj en la datumbazo." -#: ../../include/dbstructure.php:220 +#: include/dbstructure.php:260 msgid "Errors encountered performing database changes." msgstr "" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Elsalutita." +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(neniu temo)" -#: ../../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 "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Antentigo pri kunhavigado de la Diaspora reto" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "La erarmesaĝo estis:" +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Kunsendaĵoj:" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aldonu Novan Kontakton" +#: include/network.php:595 +msgid "view full size" +msgstr "vidi plengrande" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Entajpu adreson aŭ retlokon" +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Vidi Profilon" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ekzemple: bob@example.com, http://example.com/barbara" +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Vidi Staton" -#: ../../include/contact_widgets.php:24 +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Vidi Bildojn" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Enretaj Afiŝoj" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Sendi PM" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "" + +#: include/api.php:1018 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "Disponeblas %d invito" -msgstr[1] "Disponeblas %d invitoj" +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trovi Homojn" +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Entajpu nomon aŭ intereson" +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Konekti/Aboni" +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Bildo" -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ekzemple: Robert Morgenstein, Fishing" +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Similaj Interesoj" +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 skribis:" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Hazarda Profilo" +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "" -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Inviti amikojn" +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Retoj" +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Ĉiuj Retoj" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Konservitaj Dosierujoj" +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Ĉio" +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorioj" +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s amikiĝis kun %2$s" -#: ../../include/features.php:23 +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s markis la %3$s de %2$s kun %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "afiŝo/elemento" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markis la %3$s de %2$s kiel preferita." + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Ŝatoj" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Malŝatoj" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Elekti" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Forviŝi" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vidi la profilon de %s ĉe %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Vidi kun kunteksto" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Bonvolu atendi" + +#: include/conversation.php:870 +msgid "remove" +msgstr "forviŝi" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Forviŝi Elektitajn Elementojn" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s ŝatas tiun." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s malŝatas tiun." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "kaj" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", kaj %d aliaj homoj." + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Videbla al ĉiuj" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Bonvolu entajpu adreson de ligilo:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Bonvolu entajpi ligilon/adreson de video:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Bonvolu entajpi ligilon/adreson de sono:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Markfrazo:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Konservi en Dosierujo:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Kie vi estas nun?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Kunhavigi" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Alŝuti bildon" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "alŝuti bildon" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Kunligi dosieron" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "kunsendi dosieron" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Enmeti retan adreson" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "TTT ligilo" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Alglui ligilon de video" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "video ligilo" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Alglui ligilon de sono" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "sono ligilo" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Agordi vian lokon" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "agordi lokon" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Forviŝu retesplorilan lokon" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "forviŝi lokon" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Redakti titolon" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorioj (disigita per komo)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Permesagordoj" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "permesoj" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Publika afiŝo" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Antaŭrigardi" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Nuligi" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Mesaĝo" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 msgid "General Features" msgstr "" -#: ../../include/features.php:25 +#: include/features.php:72 msgid "Multiple Profiles" msgstr "" -#: ../../include/features.php:25 +#: include/features.php:72 msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/features.php:30 +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 msgid "Post Composition Features" msgstr "" -#: ../../include/features.php:31 +#: include/features.php:80 msgid "Richtext Editor" msgstr "" -#: ../../include/features.php:31 +#: include/features.php:80 msgid "Enable richtext editor" msgstr "" -#: ../../include/features.php:32 +#: include/features.php:81 msgid "Post Preview" msgstr "" -#: ../../include/features.php:32 +#: include/features.php:81 msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:82 msgid "Auto-mention Forums" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:82 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"Add/remove mention when a forum page is selected/deselected in ACL window." msgstr "" -#: ../../include/features.php:38 +#: include/features.php:87 msgid "Network Sidebar Widgets" msgstr "" -#: ../../include/features.php:39 +#: include/features.php:88 msgid "Search by Date" msgstr "" -#: ../../include/features.php:39 +#: include/features.php:88 msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/features.php:40 +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 msgid "Group Filter" msgstr "" -#: ../../include/features.php:40 +#: include/features.php:90 msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: ../../include/features.php:41 +#: include/features.php:91 msgid "Network Filter" msgstr "" -#: ../../include/features.php:41 +#: include/features.php:91 msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: ../../include/features.php:42 +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Konservitaj Serĉadoj" + +#: include/features.php:92 msgid "Save search terms for re-use" msgstr "" -#: ../../include/features.php:47 +#: include/features.php:97 msgid "Network Tabs" msgstr "" -#: ../../include/features.php:48 +#: include/features.php:98 msgid "Network Personal Tab" msgstr "" -#: ../../include/features.php:48 +#: include/features.php:98 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/features.php:49 +#: include/features.php:99 msgid "Network New Tab" msgstr "" -#: ../../include/features.php:49 +#: include/features.php:99 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: ../../include/features.php:50 +#: include/features.php:100 msgid "Network Shared Links Tab" msgstr "" -#: ../../include/features.php:50 +#: include/features.php:100 msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: ../../include/features.php:55 +#: include/features.php:105 msgid "Post/Comment Tools" msgstr "" -#: ../../include/features.php:56 +#: include/features.php:106 msgid "Multiple Deletion" msgstr "" -#: ../../include/features.php:56 +#: include/features.php:106 msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../include/features.php:57 +#: include/features.php:107 msgid "Edit Sent Posts" msgstr "" -#: ../../include/features.php:57 +#: include/features.php:107 msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../include/features.php:58 +#: include/features.php:108 msgid "Tagging" msgstr "" -#: ../../include/features.php:58 +#: include/features.php:108 msgid "Ability to tag existing posts" msgstr "" -#: ../../include/features.php:59 +#: include/features.php:109 msgid "Post Categories" msgstr "" -#: ../../include/features.php:59 +#: include/features.php:109 msgid "Add categories to your posts" msgstr "" -#: ../../include/features.php:60 +#: include/features.php:110 msgid "Ability to file posts under folders" msgstr "" -#: ../../include/features.php:61 +#: include/features.php:111 msgid "Dislike Posts" msgstr "" -#: ../../include/features.php:61 +#: include/features.php:111 msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/features.php:62 +#: include/features.php:112 msgid "Star Posts" msgstr "" -#: ../../include/features.php:62 +#: include/features.php:112 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:113 msgid "Mute Post Notifications" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:113 msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../include/follow.php:32 +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Malpermesita adreso de profilo." + +#: include/follow.php:86 msgid "Connect URL missing." msgstr "Ne ekzistas URL adreso por konekti." -#: ../../include/follow.php:59 +#: include/follow.php:113 msgid "" "This site is not configured to allow communications with other networks." msgstr "Tiu retpaĝo ne permesas komunikadon kun aliaj retoj." -#: ../../include/follow.php:60 ../../include/follow.php:80 +#: include/follow.php:114 include/follow.php:134 msgid "No compatible communication protocols or feeds were discovered." msgstr "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn." -#: ../../include/follow.php:78 +#: include/follow.php:132 msgid "The profile address specified does not provide adequate information." msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." -#: ../../include/follow.php:82 +#: include/follow.php:136 msgid "An author or name was not found." msgstr "Ne trovis aŭtoron aŭ nomon." -#: ../../include/follow.php:84 +#: include/follow.php:138 msgid "No browser URL could be matched to this address." msgstr "Neniu retuma URL adreso kongruas al la adreso." -#: ../../include/follow.php:86 +#: include/follow.php:140 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso." -#: ../../include/follow.php:87 +#: include/follow.php:141 msgid "Use mailto: in front of address to force email check." msgstr "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto." -#: ../../include/follow.php:93 +#: include/follow.php:147 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo." -#: ../../include/follow.php:103 +#: include/follow.php:157 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. " -#: ../../include/follow.php:205 +#: include/follow.php:258 msgid "Unable to retrieve contact information." msgstr "Ne eblas ricevi kontaktinformojn." -#: ../../include/follow.php:258 +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "La petita profilo ne disponeblas." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Redakti profilon" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Administri/redakti profilojn" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Ŝanĝi profilbildon" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Krei novan profilon" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Profilbildo" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "videbla al ĉiuj" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Redakti videblecon" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Sekso:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Stato:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Hejmpaĝo:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Pri:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "F d" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[hodiaŭ]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Memorigilo pri naskiĝtagoj" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Naskiĝtagoj ĉi-semajne:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Neniu priskribo]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Memorigilo pri Okazoj" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Okazoj ĉi-semajne:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Plena Nomo:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Aĝo:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Seksa Prefero:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Hejmurbo:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Markoj:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Politikaj Opinioj:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religio:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Ŝatokupoj/Interesoj:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Ŝatoj:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Malŝatoj:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformoj kaj Interkonaj Retejoj:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Muzaikaj interesoj:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Libroj, literaturo:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Televido:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Filmoj/dancoj/arto/amuzaĵoj:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Amo/romanco:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Laboro:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Lernejo/eduko:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Altnivela" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Ŝtatmesaĝoj kaj Afiŝoj" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Profildetaloj" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Bildalbumoj" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Personaj Notoj" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Nur Vi Povas Vidi Tiun" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Kaŝita nomo]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Elemento ne estas trovita." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Jes" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Malpermesita." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Arkivoj" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Enigita enhavo" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Malŝaltita enigitado" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 msgid "following" msgstr "sekvanta" -#: ../../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 "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Defaŭlta privateca grupo por novaj kontaktoj" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Ĉiuj" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "redakti" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Redakti grupon" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Krei novan grupon" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontaktoj en neniu grupo" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversaj" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "jaro" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "monato" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "tago" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "neniam" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "antaŭ malpli ol unu sekundo" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "jaroj" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "monatoj" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "semajno" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "semajnoj" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "tagoj" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "horo" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "horoj" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minutoj" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "sekundo" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "sekundoj" - -#: ../../include/datetime.php:305 +#: include/ostatus.php:1829 #, php-format -msgid "%1$d %2$s ago" -msgstr "antaŭ %1$d %2$s" +msgid "%s stopped following %s." +msgstr "" -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "Naskiĝtago de %s" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliĉan Naskiĝtagon al %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Videbla al ĉiuj" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "montri" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "kaŝi" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[neniu temo]" - -#: ../../include/Contact.php:115 +#: include/ostatus.php:1830 msgid "stopped following" msgstr "ne plu sekvas" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Vidi Staton" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Vidi Profilon" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Vidi Bildojn" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Enretaj Afiŝoj" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Redakti Kontakton" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Sendi PM" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Bonvenon " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bonvolu alŝuti profilbildon." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Bonvenon " - -#: ../../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 "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "okazo" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "afiŝo/elemento" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markis la %3$s de %2$s kiel preferita." - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "forviŝi" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Forviŝi Elektitajn Elementojn" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s ŝatas tiun." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s malŝatas tiun." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "kaj" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", kaj %d aliaj homoj." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s ŝatas tiun." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s malŝatas tiun." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Videbla al ĉiuj" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Bonvolu entajpi ligilon/adreson de video:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Bonvolu entajpi ligilon/adreson de sono:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Markfrazo:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Kie vi estas nun?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Sendi per retpoŝto" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "permesoj" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "vidi plengrande" - -#: ../../include/text.php:297 +#: include/text.php:304 msgid "newer" msgstr "pli nova" -#: ../../include/text.php:299 +#: include/text.php:306 msgid "older" msgstr "pli malnova" -#: ../../include/text.php:304 +#: include/text.php:311 msgid "prev" msgstr "antaŭa" -#: ../../include/text.php:306 +#: include/text.php:313 msgid "first" msgstr "unua" -#: ../../include/text.php:338 +#: include/text.php:345 msgid "last" msgstr "lasta" -#: ../../include/text.php:341 +#: include/text.php:348 msgid "next" msgstr "sekvanta" -#: ../../include/text.php:855 +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 msgid "No contacts" msgstr "Neniu kontaktoj" -#: ../../include/text.php:864 +#: include/text.php:912 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakto" msgstr[1] "%d Kontaktoj" -#: ../../include/text.php:1005 +#: include/text.php:925 +msgid "View Contacts" +msgstr "Vidi Kontaktojn" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Konservi" + +#: include/text.php:1076 msgid "poke" msgstr "" -#: ../../include/text.php:1006 +#: include/text.php:1076 +msgid "poked" +msgstr "" + +#: include/text.php:1077 msgid "ping" msgstr "" -#: ../../include/text.php:1006 +#: include/text.php:1077 msgid "pinged" msgstr "" -#: ../../include/text.php:1007 +#: include/text.php:1078 msgid "prod" msgstr "" -#: ../../include/text.php:1007 +#: include/text.php:1078 msgid "prodded" msgstr "" -#: ../../include/text.php:1008 +#: include/text.php:1079 msgid "slap" msgstr "" -#: ../../include/text.php:1008 +#: include/text.php:1079 msgid "slapped" msgstr "" -#: ../../include/text.php:1009 +#: include/text.php:1080 msgid "finger" msgstr "" -#: ../../include/text.php:1009 +#: include/text.php:1080 msgid "fingered" msgstr "" -#: ../../include/text.php:1010 +#: include/text.php:1081 msgid "rebuff" msgstr "" -#: ../../include/text.php:1010 +#: include/text.php:1081 msgid "rebuffed" msgstr "" -#: ../../include/text.php:1024 +#: include/text.php:1095 msgid "happy" msgstr "" -#: ../../include/text.php:1025 +#: include/text.php:1096 msgid "sad" msgstr "" -#: ../../include/text.php:1026 +#: include/text.php:1097 msgid "mellow" msgstr "" -#: ../../include/text.php:1027 +#: include/text.php:1098 msgid "tired" msgstr "" -#: ../../include/text.php:1028 +#: include/text.php:1099 msgid "perky" msgstr "" -#: ../../include/text.php:1029 +#: include/text.php:1100 msgid "angry" msgstr "" -#: ../../include/text.php:1030 +#: include/text.php:1101 msgid "stupified" msgstr "" -#: ../../include/text.php:1031 +#: include/text.php:1102 msgid "puzzled" msgstr "" -#: ../../include/text.php:1032 +#: include/text.php:1103 msgid "interested" msgstr "" -#: ../../include/text.php:1033 +#: include/text.php:1104 msgid "bitter" msgstr "" -#: ../../include/text.php:1034 +#: include/text.php:1105 msgid "cheerful" msgstr "" -#: ../../include/text.php:1035 +#: include/text.php:1106 msgid "alive" msgstr "" -#: ../../include/text.php:1036 +#: include/text.php:1107 msgid "annoyed" msgstr "" -#: ../../include/text.php:1037 +#: include/text.php:1108 msgid "anxious" msgstr "" -#: ../../include/text.php:1038 +#: include/text.php:1109 msgid "cranky" msgstr "" -#: ../../include/text.php:1039 +#: include/text.php:1110 msgid "disturbed" msgstr "" -#: ../../include/text.php:1040 +#: include/text.php:1111 msgid "frustrated" msgstr "" -#: ../../include/text.php:1041 +#: include/text.php:1112 msgid "motivated" msgstr "" -#: ../../include/text.php:1042 +#: include/text.php:1113 msgid "relaxed" msgstr "" -#: ../../include/text.php:1043 +#: include/text.php:1114 msgid "surprised" msgstr "" -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Lundo" +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "" -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Mardo" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Merkredo" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Ĵaŭdo" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Vendredo" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Sabato" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Dimanĉo" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Januaro" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Februaro" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Marto" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "Aprilo" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Majo" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Junio" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Julio" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Aŭgusto" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "Septembro" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Oktobro" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "Novembro" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Decembro" - -#: ../../include/text.php:1437 +#: include/text.php:1356 msgid "bytes" msgstr "bajtoj" -#: ../../include/text.php:1461 ../../include/text.php:1473 +#: include/text.php:1388 include/text.php:1400 msgid "Click to open/close" msgstr "Klaku por malfermi/fermi" -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "defaŭlta" +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Elekti alian lingvon" +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" -#: ../../include/text.php:1970 +#: include/text.php:1806 msgid "activity" msgstr "aktiveco" -#: ../../include/text.php:1973 +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "komento" + +#: include/text.php:1809 msgid "post" msgstr "afiŝo" -#: ../../include/text.php:2141 +#: include/text.php:1977 msgid "Item filed" msgstr "Enarkivigis elementon " -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Bildo" +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." -#: ../../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 skribis:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(neniu temo)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "nerespondi" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Ne trovis DNS informojn por datumbaza servilo '%s'." - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Nekonata | Nekatorigita" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloki tuj" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Suspekta, spamisto, memmerkatisto" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Konata al mi, sed mi ne havas opinion" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, verŝajne sendanĝera" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Fidinda laŭ mi" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ĉiusemajne" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Ĉiumonate" - -#: ../../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/Tujmesaĝilo" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr " ĉe Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Ekas:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Finas:" - -#: ../../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 "Naskiĝtago:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Aĝo:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Markoj:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religio:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Ŝatokupoj/Interesoj:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformoj kaj Interkonaj Retejoj:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Muzaikaj interesoj:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libroj, literaturo:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televido:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Filmoj/dancoj/arto/amuzaĵoj:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amo/romanco:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Laboro:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Lernejo/eduko:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Klaku ĉi tie por ĝisdatigi." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Tia ago preterpasas la limojn de via abono." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Tia ago ne estas permesita laŭ via abono." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Fini ĉi-tiun seancon" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Viaj afiŝoj kaj komunikadoj" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Via profilo" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Viaj bildoj" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Viaj okazoj" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Personaj notoj" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Ensaluti" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Hejmpaĝo" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Krei konton" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Helpo kaj dokumentado" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Programoj" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Kromprogramoj, utilaĵoj, ludiloj" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Serĉu la retejon" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Konversacioj je ĉi-tiu retejo" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Katalogo" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Katalogo de homoj" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Konversacioj de viaj amikoj" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Kontaktpetoj" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Vidu ĉiujn atentigojn" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Marki ĉiujn atentigojn legita" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Privata poŝto" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Enirkesto" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Elirkesto" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Administri" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Administri aliajn paĝojn" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Konto" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Administri/redakti amikojn kaj kontaktojn" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Agordoj pri la retejo" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Site map" -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 "" - -#: ../../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 "" - -#: ../../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 +#: include/user.php:48 msgid "An invitation is required." msgstr "Invio bezonata." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "Ne povis kontroli la inviton." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "Nevalida OpenID adreso" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "Bonvolu entajpi la bezonatajn informojn." -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "Bonvolu uzi pli mallongan nomon." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "Nomo estas tro mallonga." -#: ../../include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "Tio ŝajne ne estas via plena (persona, familia) nomo." -#: ../../include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "Via retpoŝtodomajno ne estas permesita ĉi tie." -#: ../../include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "Nevalida retpoŝtadreso." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "Neuzebla retpoŝtadreso." -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Via kaŝnomo nur povas enhavi \"a-z\", \"0-9\", \"-\", kaj \"_\". Ĝi ankaŭ devas komenci kun litero." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian." -#: ../../include/user.php:148 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian." -#: ../../include/user.php:164 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis." -#: ../../include/user.php:222 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "Eraro okazis dum registrado. Bonvolu provi denove." -#: ../../include/user.php:257 +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "defaŭlta" + +#: include/user.php:266 msgid "An error occurred creating your default profile. Please try again." msgstr "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove." -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amikoj" +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Profilbildoj" -#: ../../include/user.php:377 +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 #, php-format msgid "" "\n" @@ -7082,7 +3052,7 @@ msgid "" "\t" msgstr "" -#: ../../include/user.php:381 +#: include/user.php:438 #, php-format msgid "" "\n" @@ -7112,762 +3082,5821 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Antentigo pri kunhavigado de la Diaspora reto" +#: include/user.php:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Detaloj de la registrado por %s" -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Kunsendaĵoj:" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Sukcese afiŝita." -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Atingo nepermesita." + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Bonvenon ĉe %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Ne pli da sistemaj atentigoj." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Sistemaj Atentigoj" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Forviŝu terminon" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Publika atingo ne permesita." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." msgstr "" -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Arkivoj" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Vira" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Ina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Nuntempe Vira" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Nuntempe Ina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Ĉefe Vira" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Ĉefe Ina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgenra" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksa" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksa" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neŭtra" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nespecifa" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Alia" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nedecida" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Viroj" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Inoj" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Geja" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesba" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Neniu Prefero" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Ambaŭseksema" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Memseksema" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinema" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgulino" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Devia" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetiĉo" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Amasa" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Neseksa" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Sola" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Soleca" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Havebla" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nehavebla" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Sekrete enamiĝinta" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Blinda amo" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Rendevuanta" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Malfidela" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Seksmaniulo" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amikoj/Avantaĝoj" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Neformala" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Fianĉiginta" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Edziĝinta" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Image edziĝinta" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Geparuloj" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Kunloĝanta" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Registrita partnereco " - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliĉa" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Ne interesiĝis" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Trompita" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Disiĝinta" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Malfirma" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Eksedziĝinta" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Image eksedziĝinta" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vidva" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Ne certa" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Estas komplika" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Egala" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Demandu min" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Atentigo" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Dankon," - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administranto" - -#: ../../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:Atentigo] Ricevis novan retpoŝton ĉe %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendis al vi %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "privatan mesaĝon" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s komentis pri [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 komentis pri [url=%2$s]%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 komentis pri [url=%2$s]via %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Atentigo] Komento pri konversacio #%1$d de %2$s" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." - -#: ../../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 "Bonvolu viziti %s por vidi aŭ respondi la konversacion." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Atentigo] %s afiŝis al via profilmuro" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s skribis al via profilmuro ĉe %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Atentigo] %s markis vin" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s markis vin ĉe %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]markis vin[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" +#: mod/search.php:124 +msgid "Too Many Requests" msgstr "" -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: ../../include/enotify.php:190 +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Nenion trovita." + +#: mod/search.php:230 #, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." +msgid "Items tagged with: %s" msgstr "" -#: ../../include/enotify.php:202 +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 #, php-format -msgid "[Friendica:Notify] %1$s poked you" +msgid "Results for: %s" msgstr "" -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Tio estas Friendica en la versio" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "instalita ĉe la adreso" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica" + +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" msgstr "" -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com" -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Atentigo] %s markis vian afiŝon" +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "Instalitaj kromprogramoj/programoj:" -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s markis vian afiŝon ĉe %2$s" +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Neniom da instalitaj aldonaĵoj/programoj" -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s markis [url=%2$s]vian afiŝon[/url]" +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Ne trovis validan konton." -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Atentigo] Ricevis prezenton" +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." - -#: ../../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:Atentigo] Ricevis amikosugeston" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" - -#: ../../include/enotify.php:272 +#: mod/lostpass.php:42 #, php-format msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nomo:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Bildo:" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" +"\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 "" -#: ../../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 +#: mod/lostpass.php:53 #, 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." +"\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 "" -#: ../../include/enotify.php:309 +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Pasvorta riparado petita je %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." + +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Pasvorta riparado" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Via pasvorto estis riparita laŭ via peto." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Via nova pasvorto estas" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Memorigi vian novan pasvorton - kaj poste" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "klaku ĉi tie por ensaluti" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." + +#: mod/lostpass.php:125 #, php-format msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " +"\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 "" -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 +#: mod/lostpass.php:131 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +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 "" -#: ../../include/enotify.php:324 +#: mod/lostpass.php:147 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgid "Your password has been changed at %s" msgstr "" -#: ../../include/enotify.php:327 +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Ĉu vi forgesis vian pasvorton?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." + +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Salutnomo aŭ retpoŝtadreso: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Repari" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Neniu profilo" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Helpo:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Ne trovita" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Paĝo ne trovita" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informoj pri fora privateca ne estas disponebla." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Videbla al:" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Eraro en OpenID protokolo. Ne resendis identecon." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie." + +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." + +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgid "Visit %s's profile [%s]" +msgstr "Viziti la profilon de %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Redakti kontakton" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Kontaktoj kiuj ne estas en iu grupo" + +#: mod/uexport.php:29 +msgid "Export account" msgstr "" -#: ../../include/enotify.php:330 +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Eksporto" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:49 #, php-format -msgid "Please visit %s to approve or reject the request." +msgid "%s : Not a valid email address." +msgstr "%s: Ne estas valida retpoŝtadreso." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Bonvolu aliĝi kun ni ĉe Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Enigita enhavo" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Malŝaltita enigitado" - -#: ../../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 +#: mod/invite.php:89 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "" +msgid "%s : Message delivery failed." +msgstr "%s: La livero de la mesaĝo malsukcesis." -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:220 +#: mod/invite.php:93 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "Sendis %d mesaĝon." +msgstr[1] "Sendis %d mesaĝojn." -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Vi ne plu disponeblas invitaĵojn" + +#: 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 "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." + +#: 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 "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Sendi invitojn" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Via mesaĝo:" + +#: 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 "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: " + +#: 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 "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com" + +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Sendi" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Dosieroj" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Malpermesita" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Nevaliada profila identigilo." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Redaktilo por profila videbleco." + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Klaku kontakton por aldoni aŭ forviŝi." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Videbla Al" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Marko forviŝita" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Forviŝi markon" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Elektu forviŝontan markon:" + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Forviŝi" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" msgstr "" -#: ../../index.php:428 -msgid "toggle mobile" +#: mod/repair_ostatus.php:30 +msgid "Error" msgstr "" -#: ../../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 +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Ne trovis delegiteblajn paĝojn." + +#: 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 "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Estantaj Administrantoj de la Paĝo" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Estantaj Delegitoj de la Paĝo" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Eblaj Delegitoj" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Aldoni" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Neniom da afiŝoj." + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- elekti -" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Elemento ne disponeblas." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Elemento ne trovita." + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Programoj" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Neniom da instalitaj programoj." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bonvenon ĉe Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Kontrololisto por Novaj Membroj" + +#: 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 "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: 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 "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." + +#: 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 "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Alŝuti profilbildon" + +#: 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 "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: 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 "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: 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 "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "" + +#: mod/newmember.php:51 +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 "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:53 +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 "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:55 +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 "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "" + +#: mod/newmember.php:57 +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 "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:65 +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 "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: mod/newmember.php:68 +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 "" + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Forigi Mian Konton" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Elemento ne trovita" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Redakti afiŝon" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Konverto de tempo" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC horo: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuala horzono: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Konvertita loka horo: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bonvolu elekti vian horzonon:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Grupo estas kreita." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Ne povas krei grupon." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Grupo ne estas trovita." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "La nomo de la grupo estas ŝanĝita." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Krei grupon da kontaktoj/amikoj." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Grupo estas forviŝita." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Ne eblas forviŝi grupon." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Grupa redaktilo" + +#: mod/group.php:190 +msgid "Members" +msgstr "Anoj" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Ĉiuj Kontaktoj" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Grupo estas malplena" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis." + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Neniom da ricevontoj." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Ne eblas kontroli vian hejmlokon." + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Ne povas sendi la mesaĝon." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Malsukcese provis kolekti mesaĝojn." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Mesaĝo estas sendita." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Neniom da ricevontoj." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Sendi Privatan Mesaĝon" + +#: 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 vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj." + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Al:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Temo:" + +#: mod/share.php:38 +msgid "link" +msgstr "ligilo" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Rajtigi programkonekton" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Reiru al via programo kaj entajpu la securecan kodon:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Bonvolu ensaluti por pluigi." + +#: 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 "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Ne" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Fontkodo (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Fontokodo (Diaspora) konvertota al BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Fontoenigo:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: 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 "Fontoenigo (Diaspora formato):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Ne eblas trovi kontaktajn informojn." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Mesaĝo estas forviŝita." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Dialogo estas forviŝita." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Neniom da mesaĝoj." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Mesaĝo nedisponebla." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Forviŝu mesaĝon" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Forviŝi dialogon" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto." + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Respondi" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Nekonata sendanto - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Vi kaj %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s kaj vi" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mesaĝo" +msgstr[1] "%d mesaĝoj" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Administri identecojn kaj/aŭ paĝojn." + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Elektu identencon por administrado:" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Kontaktagordoj estas konservita." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Ĝisdatigo de kontakto malsukcesis." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Kontakto ne trovita." + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Reen al kontakta redaktilo" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Nomo" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Kaŝnomo de la konto" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Marknomo - Transpasas nomon/kaŝnomon" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "Adreso de la konto" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Kontaktpeta adreso" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "Kontaktkonfirma adreso" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Finpunkta adreso por atentigoj" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Adreso de fluo" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nova bildo el tiu adreso" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Grupo ne estas trovita" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komento" +msgstr[1] "%d komentoj" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Privata mesaĝo" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Mi ŝatas tion (ŝalti)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "ŝati" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Mi malŝatas tion(ŝalti)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "malŝati" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Kunhavigi ĉi tiun" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "kunhavigi" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Tiu estas vi" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Komenti" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Grasa" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Kursiva" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Substreki" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Citaĵo" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Kodo" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Bildo" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Ligilo" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Redakti" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "aldoni stelon" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "forpreni stelon" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "ŝalti/malŝalti steloŝtato" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "steligita" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "aldoni markon" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "konservi en dosierujo" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "al" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Muro-al-Muro" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "per Muro-al-Muro:" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Amikosugesto sendita." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugesti amikojn" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugesti amikon por %s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Malsukcesis malpligrandigi [%s] la bildon." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Ne eblas procezi bildon." + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Ne eblas procedi la bildon." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Alŝuti dosieron:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Alŝuti" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "aŭ" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "Preterpasi tian paŝon" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "elekti bildon el viaj albumoj" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Stuci Bildon" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Finigi Redaktado" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Bildo estas sukcese enŝutita." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Alŝuto de bildo malsukcesis." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto aprobita." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registraĵo por %s senvalidigita." + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Bonvolu ensaluti." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Nevalida peta identigilo." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Forviŝi" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignori" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Retaj Atentigoj" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Personaj Atentigoj" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Hejmrilataj atentigoj" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Montri ignoritajn petojn" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Kaŝi ignoritajn petojn" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Tipo de atentigo:" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "sugestita de %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Kaŝi ĉi tiun kontakton al aliaj" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Afiŝi novan amikecan aktivecon" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "se aplikebla" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Aprobi" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Pensas ke vi konas ilin:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "jes" + +#: mod/notifications.php:196 +msgid "no" +msgstr "ne" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Amiko" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Kunhaviganto" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fanatikulo/Admiranto" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Neniom da prezentoj" + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Profilo ne trovita." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilo forviŝita." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profilo-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Nova profilo kreita." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Ne eblas kopii profilon." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Nomo de profilo estas bezonata." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Amrilata Stato" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Kora Partnero" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Laboro" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Religio" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Politikaj Opinioj" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Sekso" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Seksa Prefero" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Hejmpaĝo" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Interesoj" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Adreso" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Loko" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Profilo ĝisdatigita." + +#: mod/profiles.php:564 +msgid " and " +msgstr " kaj " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "publika profilo" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ŝanĝis %2$s al “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Vizitu la %2$s de %1$s" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s havas ĝisdatigigan %2$s, ŝanĝas %3$s." + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Redakti Detalojn de Profilo" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Vidi la profilon." + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Krei novan profilon kun tiaj agordoj" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Kopii ĉi tiun profilon" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Forviŝi ĉi tiun profilon" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Via Sekso:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Civita Stato:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Ekzemple: fiŝkapti fotografio programaro" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Nomo de Profilo:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Bezonata" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. " + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Via Plena Nomo:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Titolo/Priskribo:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Adreso:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Urbo:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Ŝtato:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Poŝtkodo:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Lando:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Kiu (se aplikeble):" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Ekzemploj: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Ekde [dato]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Diru al ni pri vi..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Adreso de Hejmpaĝo:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Religiaj Opinioj:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Publikaj ŝlosilvortoj:" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Por sugesti amikoj. Videbla al aliaj.)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Privataj ŝlosilvortoj:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Muzikaj interesoj" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Libroj, literaturo" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Televido" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Filmoj/dancoj/arto/amuzaĵoj" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Ŝatokupoj/Interesoj" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Amo/romanco" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Laboro" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Lernejo/eduko" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Redakti/administri Profilojn" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Neniom da amiko al montri." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Atingo al ĉi tio profilo estas limitigita" + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "antaŭa" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "sekva" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Neniom da komunaj kontaktoj." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Komunaj Amikoj" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Ne disponebla." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Tutmonda Katalogo" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Trovi en ĉi retejo" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Reteja Katalogo" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Nenio estas trovita" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Elemento estas forviŝita." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Titolo kaj starttempo estas bezonataj por la okazo." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Krei novan okazon" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Detaloj de okazo" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Okazo startas:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Okazo finas:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Agordi al horzono de la leganto" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Priskribo" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Kunhavigi la okazon" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "interesiĝas pri:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Kongrua profilo" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Konsilo por novaj membroj" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignori/Kaŝi" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Enigita enhavo - reŝargu paĝon por spekti ĝin]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "̂Ĵusaj bildoj" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Alŝuti novajn bildojn" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "ĉiuj" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Kontaktoj informoj ne disponeblas" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Albumo ne trovita." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Forviŝi albumon" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Forviŝi bildon" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Bilddosiero estas malplena." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Neniu bildoj elektita" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Atingo al tio elemento estas limigita." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo." + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Alŝuti bildojn" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nomo por nova albumo:" + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "aŭ nomo de estanta albumo:" + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Ne kreu statan afiŝon por tio alŝuto." + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Redakti albumon" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Vidi bildon" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "La bildo ne disponeblas" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Vidi bildon" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Redakti bildon" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Uzi kiel profilbildo" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Vidi plengrande " + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Markoj:" + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Forviŝi iun markon]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nova nomo de albumo" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Apudskribo" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Aldoni markon" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Turni horloĝdirekte (dekstren)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Vidi albumon" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj." + +#: mod/register.php:98 +#, 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 "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Mi ne povas prilabori vian registradon." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Via registrado bezonas apropbon de la administranto." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vi ankaŭ (nedeviga) povas plenigi la formularon per OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "Via OpenID (nedeviga):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Aldoni vian profilon al la membrokatalogo?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Membriĝi ĉi tie nur eblas laŭ invito." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Via invita idento: " + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Registrado" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Via Retpoŝtadreso: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nova pasvorto:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Konfirmi:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@$sitename'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Elektu kaŝnomon: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Konto" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Kromprogramoj" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Konektitaj programoj" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Forigi konton" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Mankas importantaj datumoj!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Ĝisdatigi" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Retpoŝtagordoj ĝisdatigita" + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Pasvorto ŝanĝita." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Bonvolu uzi pli mallongan nomon." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Nomo estas tro mallonga." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Repoŝtadreso ne validas." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr " Ne povas ŝanĝi al tio retpoŝtadreso." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata." + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon." + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Agordoj ĝisdatigita." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Aldoni programon" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Ŝlosilo de kliento" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Sekreto de kliento" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Alidirekto" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "Piktograma adreso" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Ĉi tio programo ne estas redaktebla." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Konektitaj Programoj" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Ŝlosilo de kliento komencas kun" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Neniu nomo" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Forviŝi rajtigon" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Neniom da kromprogramoagordoj farita" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Kromprogramoagordoj" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Integrita subteno por %s koneto estas %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "ŝaltita" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "malŝaltita" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "Retpoŝta atingo ne disponeblas ĉi tie." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Agordoj pri Retpoŝto" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Nomo de IMAP servilo:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Numero de IMAP pordo:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Sekureco:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Nenio" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Retpoŝta salutnomo:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Retpoŝta pasvorto:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Responda adreso (Reply-to):" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Ago post la importado:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Movi al dosierujo" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Movi al dosierujo:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Ekranagordoj" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Vidiga etoso:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Maksimume 100 eroj" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "Ne montru ridetulojn" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Agordoj pri la etoso" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Agordi la regrandignivelo por bildoj en afiŝoj kaj komentoj (larĝo kaj alto)" +#: mod/settings.php:1099 +msgid "Account Types" +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 "Agordi la tiparan grandon por afiŝoj kaj komentoj" +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Agordi la larĝo por la etoso" +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Kolorskemo" +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Agordi la linigrandon por afiŝoj kaj komentoj" +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Agordi Kolorskemon" +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" -#: ../../view/theme/quattro/config.php:67 +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Normala Kontopaĝo" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Tiu konto estas normala persona profilo" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Soapbox Paĝo" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj" + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Aŭtomata Amiko Paĝo" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Privata Forumo [eksperimenta]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Privata forumo - nur por aprobitaj membroj" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Ĉu amikoj povu afiŝi al via profilo?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Profilo ne estas publika." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Detalaj agordoj rilate al senvalidiĝo" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Detala senvalidiĝo" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Senvalidigi afiŝojn:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Senvalidigi personajn notojn:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Senvalidigi steligitajn afiŝojn:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Senvalidigi bildojn:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Nur senvalidigi afiŝojn de aliaj: " + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Kontoagordoj" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Agordoj pri Pasvorto" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Bazaj Agordoj" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Retpoŝtadreso:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Via Horzono:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Defaŭlta Loko por Afiŝoj:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Uzu Lokon laŭ Retesplorilo:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Agordoj pri Sekureco kaj Privateco" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Taga maksimumo da kontaktpetoj:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(por malhelpi spamaĵojn)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Defaŭltaj permesoj por afiŝoj" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(klaku por malfermi/fermi)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Taga maksimumo da privataj mesaĝoj." + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Agordoj pri Atentigoj" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Defaŭlte afiŝi statmesaĝon okaze de:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "akcepti kontaktpeton" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "aliĝi forumon/komunumon" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "fari interesan profilŝanĝon" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Sendu atentiga repoŝton se:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Vi ricevas inviton" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Viaj prezentoj estas konfirmata." + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Iu skribas je via profila muro." + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Iu skribas sekvan komenton" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Vi ricevas privatan mesaĝon." + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Vi ricevas amikosugeston" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Vi estas markita en afiŝon" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Agordi la teniĝon de la konto en specialaj situacioj" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Alŝutado malsukcesis." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Gisdatigis agordojn pri etosoj." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Retejo" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Uzantoj" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Etosoj" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "DB ĝisdatigoj" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Protokoloj" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Kromprogramaj Trajtoj" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Uzantaj registradoj atendante konfirmon" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Administrado" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Normala konto" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Soapbox Konto" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Komunuma/eminentula Konto" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Aŭtomata Amika Konto" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Blogkonto" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Privata Forumo" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Mesaĝvicoj" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Resumo" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Registrataj uzantoj" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Okazontaj registradoj" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Versio" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Ŝaltitaj kromprogramoj" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Ĝisdatigis retejaj agordoj." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Neniam" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:907 +msgid "One year" +msgstr "" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Ferma" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Bezonas aprobon" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Malferma" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo." + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Devigi ke ĉiuj ligiloj uzu SSL." + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)" + +#: mod/admin.php:957 +msgid "File upload" +msgstr "Alŝuto" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Politiko" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Nomo de retejo" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Emblemo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Sistema lingvo" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Sistema etoso" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Strategio por SSL ligiloj" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL." + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Maksimuma bildgrando" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Interkonsento pri registrado" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:986 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Interkonsento teksto" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Tio estos eminente montrata en la registro paĝo." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Kontoj forlasitaj post x tagoj" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Permesitaj amikaj domainoj" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Permesitaj retpoŝtaj domajnoj" + +#: mod/admin.php:990 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Bloki publike" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita." + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Devigi publikigon" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo." + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:996 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Bloki pluroblajn registradojn." + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj." + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Subteno por OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "Subteni OpenID por registrado kaj ensaluto." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Kontroli plenan nomon" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo." + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 regulaj exprimoj" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Uzi PHP UTF8 regulajn esprimojn." + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Ŝalti subtenon por OStatus" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Ŝalti subtenon por Diaspora" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provizi integritan Diaspora subtenon." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Nur permesigi Friendica kontaktojn" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita." + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Kontroli SSL" + +#: mod/admin.php:1014 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj." + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Uzantnomo por retperanto" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "URL adreso de retperanto" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Reta tempolimo" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)." + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "Intervalo de liverado" + +#: mod/admin.php:1018 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Enketintervalo" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon." + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Maksimuma Meza Sistemŝargo" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50." + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Ĝisdatigo estas markita sukcesa" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Sukcese aplikis la ĝisdatigo %s." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Ĝisdatigo %s ne liveris elirstaton. " + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Neniom da malsukcesaj ĝisdatigoj." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Malsukcesaj Ĝisdatigoj" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "Blokis/malblokis %s uzanton" +msgstr[1] "Blokis/malblokis %s uzantojn" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s uzanto forviŝita" +msgstr[1] "%s uzanto forviŝitaj" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Uzanto '%s' forviŝita" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Uzanto '%s' malblokita" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Uzanto '%s' blokita" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Dato de registrado" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Plej ĵusa ensaluto" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Plej ĵusa elemento" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "elekti ĉiujn" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Registriĝoj atendante aprobon" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Dato de peto" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Neniom da registriĝoj." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Negi" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Bloki" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Malbloki" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" + +#: mod/admin.php:1428 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Kromprogramo %s estas malŝaltita." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Kromprogramo %s estas ŝaltita." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Malŝalti" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Ŝalti" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Ŝalti/Malŝalti" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Aŭtoro: " + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Prizorganto: " + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Ne trovis etosojn." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Ekrankopio" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Eksperimenta]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Nesubtenata]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Protokolagordoj ĝisdatigitaj." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Forviŝi" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Protokolo" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Protokolnivelo" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Ne eblis atingi kontaktrikordo." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Ne trovis elektitan profilon." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Kontakto estas ĝisdatigita." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Kontakto estas blokita." + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Kontakto estas malblokita." + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Kontakto estas ignorita." + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Kontakto estas malignorita." + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Enarkivigis kontakton" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Elarkivigis kontakton" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Kontakto estas forigita." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Vi estas reciproka amiko de %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Vi kunhavigas kun %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s kunhavigas kun vi" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Ĝisdatigo sukcesis.)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Ĝisdatigo malsukcesis.)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Sugesti amikojn" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Reta tipo: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Mi perdis la kommunikadon kun tiu kontakto!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Videbleco de profilo" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon." + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Kontaktaj informoj / Notoj" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Redakti kontaktnotojn" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Bloki/Malbloki kontakton" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignori kontakton" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Ripari URL agordoj" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Vidi konversaciojn" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Plej ĵusa ĝisdatigo:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Ĝisdatigi publikajn afiŝojn" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Ĝisdatigi nun" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Malignori" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Nuntempe blokata" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Nuntempe ignorata" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Nuntempe enarkivigita" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Sugestoj" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Sugesti amikojn" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Montri ĉiujn kontaktojn" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Malblokita" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Nur montri neblokitajn kontaktojn" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Blokita" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Nur montri blokitajn kontaktojn" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Ignorita" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Nur montri ignoritajn kontaktojn" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Enarkivigita" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Nur montri enarkivigitajn kontaktojn" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Kaŝita" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Nur montri kaŝitajn kontaktojn" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Serĉi viajn kontaktojn" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Enarkivigi" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Elarkivigi" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Vidi ĉiujn kontaktojn" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Specialaj Kontaktagordoj" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Reciproka amikeco" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "estas admiranto de vi" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "vi estas admiranto de" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Ŝalti/malŝalti Blokitan staton" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Ŝalti/malŝalti Ignoritan staton" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Ŝalti/malŝalti Enarkivigitan staton" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Forviŝi kontakton" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Ne komprenis la rispondon de la fora retejo." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Neatendita rispondo de la fora retejo:" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Konfirmo sukcese kompletigita." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "La fora retejo raportis:" + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Dumtempa eraro. Bonvolu atendi kaj provi refoje." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "La prezento malsukcesis au estas revokita." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Neeblas agordi la kontaktbildo." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Ne trovis uzanton '%s' " + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita." + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "Kontakto ne trovita por vi en via retejo." + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s." + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo." + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo." + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s aliĝis al %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Tia prezento jam estas akceptita" + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Averto: La adreso de la profilo ne enhavas bildon." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d bezonataj parametroj ne trovita ĉe la donata adreso." +msgstr[1] "%d bezonataj parametroj ne trovita ĉe la donata adreso." + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Prezento sukcesis." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Neĝustigebla eraro en protokolo." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profilo ne estas disponebla." + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hodiaŭ ricevis tro multe da konektpetoj." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Kontraŭspamilo estas aktivita." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Amikoj, vi bonvolu ripeti post 24 horoj." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Nevalida adreso." + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Nevalida repoŝtadreso." + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis." + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Vi vin jam prezentis tie." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Nevalida adreso de profilo." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Via prezento estas sendita." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Bonvolu ensaluti por jesigi la prezenton." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Konfirmi." + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Kaŝi tiun kontakton" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Bonvenon hejme, %s." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: " + +#: mod/dfrn_request.php:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Prezento / Konektpeto" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Bonvolu respondi:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "Ĉu %s konas vin?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Aldoni personan noton:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federaciaj interkonaj retejoj" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo." + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Via identeca adreso:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Sendi peton" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Aldonis kontakton" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Ne eblas konekti la datumbazon." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Ne eblas krei tabelon." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "La datumbazo de vi Friendica retjo estas instalita." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Bonvolu legi la dosieron \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Sistema kontrolo" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Ree kontroli" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Datumbaza konekto" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Nomo de datumbaza servilo." + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Salutnomo ĉe la datumbazo." + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Pasvorto ĉe la datumbazo." + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Nomo de la datumbazo." + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Retpoŝtadreso de la reteja administranto" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Bonvolu elekti defaŭltan horzonon por via retejo." + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Retejaj agordoj" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Komanda linia versio de PHP ne trovita en PATH de la retservilo." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "Vojo de la komanda linia versio de PHP" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "komanda linia versio de PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Tio estas bezonata por la livero de mesaĝoj." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn." + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php" + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Generi ĉifroŝlosilojn" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "PHP modulo libCurl" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "PHP modulo GD" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "PHP modulo OpenSSL" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "PHP modulo mysqli" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "PHP modulo mb_string" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modulo" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo." + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron \"INSTALL.txt\" por trovi instrukciojn." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php estas skribebla." + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite en .htaccess ne funkcias. Kontrolu la agordojn de la servilo." + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "URL rewrite funkcias." + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Kio sekvas nun?

                                              " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Ne eblas trovi originalan afiŝon." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Forviŝis malplenan afiŝon." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Sistema eraro. Afiŝo ne registrita." + +#: mod/item.php:992 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Vi povas viziti ilin rete ĉe %s" + +#: mod/item.php:995 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s publikigis afiŝon." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita." + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Nevalida kontakto." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Komenta Ordo" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Ordigi laŭ Dato de Komento" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Afiŝita Ordo" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Ordigi laŭ Dato de Afiŝado" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Afiŝoj menciantaj vin aŭ pri vi" + +#: mod/network.php:856 +msgid "New" +msgstr "Nova" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Fluo de Aktiveco - laŭ dato" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Kunhavigitaj Ligiloj" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Interesaj Ligiloj" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Steligita" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Favorigitaj Afiŝoj" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} volas amikiĝi kun vi" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} sendis mesaĝon al vi" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} petis registradon" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Neniu kontaktojn." + +#: object/Item.php:370 +msgid "via" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "Ĝisrandigo" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Left" msgstr "Maldekstren" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Center" msgstr "Centren" -#: ../../view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Kolorskemo" + +#: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "" -#: ../../view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:70 msgid "Textareas font size" msgstr "" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Agordi la distingivon por la meza kolumno" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Agordi Kolorskemon" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Agordi zoman faktoron de Tertavolo" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Agordi longitudon (X) por Tertavoloj" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Agordi latitudon (Y) por Tertavoloj" - -#: ../../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 "Komunumaj paĝoj" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Tertavoloj (Earth Layers)" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "Komunumaj Profiloj" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Helpu aŭ @NewHere ?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Konekti Servojn" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trovi Amikojn" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 msgid "Last users" msgstr "Ĵusaj uzantoj" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ĵusaj bildoj" +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Trovi Amikojn" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ĵusaj ŝatitaj elementoj" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Viaj kontaktoj" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Viaj personaj bildoj" - -#: ../../view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Loka Katalogo" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Agordi zoman faktoron por Tertavoloj" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Kaŝi/montri kestojn ĉe dekstra kolumno:" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Konekti Servojn" -#: ../../view/theme/vier/config.php:56 +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "" -#: ../../view/theme/duepuntozero/config.php:45 +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Komunumaj paĝoj" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Helpu aŭ @NewHere ?" + +#: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:46 msgid "purplezero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:47 msgid "easterbunny" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:48 msgid "darkzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:49 msgid "comix" msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:50 msgid "slackr" msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Forviŝi ĉi tiun elementon?" + +#: boot.php:973 +msgid "show fewer" +msgstr "montri malpli" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Krei Novan Konton" + +#: boot.php:1796 +msgid "Password: " +msgstr "Pasvorto:" + +#: boot.php:1797 +msgid "Remember me" +msgstr "" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Aŭ ensaluti per OpenID:" + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Ĉu vi vorgesis vian pasvorton?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "" + +#: boot.php:1810 +msgid "terms of service" +msgstr "" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "" + +#: index.php:451 +msgid "toggle mobile" +msgstr "" diff --git a/view/lang/eo/strings.php b/view/lang/eo/strings.php index cc8280251..afe143461 100644 --- a/view/lang/eo/strings.php +++ b/view/lang/eo/strings.php @@ -5,1298 +5,10 @@ function string_plural_select_eo($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Ne eblis atingi kontaktrikordo."; -$a->strings["Could not locate selected profile."] = "Ne trovis elektitan profilon."; -$a->strings["Contact updated."] = "Kontakto estas ĝisdatigita."; -$a->strings["Failed to update contact record."] = "Ĝisdatigo de via kontaktrikordo malsukcesis."; -$a->strings["Permission denied."] = "Malpermesita."; -$a->strings["Contact has been blocked"] = "Kontakto estas blokita."; -$a->strings["Contact has been unblocked"] = "Kontakto estas malblokita."; -$a->strings["Contact has been ignored"] = "Kontakto estas ignorita."; -$a->strings["Contact has been unignored"] = "Kontakto estas malignorita."; -$a->strings["Contact has been archived"] = "Enarkivigis kontakton"; -$a->strings["Contact has been unarchived"] = "Elarkivigis kontakton"; -$a->strings["Do you really want to delete this contact?"] = ""; -$a->strings["Yes"] = "Jes"; -$a->strings["Cancel"] = "Nuligi"; -$a->strings["Contact has been removed."] = "Kontakto estas forigita."; -$a->strings["You are mutual friends with %s"] = "Vi estas reciproka amiko de %s"; -$a->strings["You are sharing with %s"] = "Vi kunhavigas kun %s"; -$a->strings["%s is sharing with you"] = "%s kunhavigas kun vi"; -$a->strings["Private communications are not available for this contact."] = "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto."; -$a->strings["Never"] = "Neniam"; -$a->strings["(Update was successful)"] = "(Ĝisdatigo sukcesis.)"; -$a->strings["(Update was not successful)"] = "(Ĝisdatigo malsukcesis.)"; -$a->strings["Suggest friends"] = "Sugesti amikojn"; -$a->strings["Network type: %s"] = "Reta tipo: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d komuna kontakto", - 1 => "%d komunaj kontaktoj", -); -$a->strings["View all contacts"] = "Vidi ĉiujn kontaktojn"; -$a->strings["Unblock"] = "Malbloki"; -$a->strings["Block"] = "Bloki"; -$a->strings["Toggle Blocked status"] = "Ŝalti/malŝalti Blokitan staton"; -$a->strings["Unignore"] = "Malignori"; -$a->strings["Ignore"] = "Ignori"; -$a->strings["Toggle Ignored status"] = "Ŝalti/malŝalti Ignoritan staton"; -$a->strings["Unarchive"] = "Elarkivigi"; -$a->strings["Archive"] = "Enarkivigi"; -$a->strings["Toggle Archive status"] = "Ŝalti/malŝalti Enarkivigitan staton"; -$a->strings["Repair"] = "Ripari"; -$a->strings["Advanced Contact Settings"] = "Specialaj Kontaktagordoj"; -$a->strings["Communications lost with this contact!"] = "Mi perdis la kommunikadon kun tiu kontakto!"; -$a->strings["Contact Editor"] = "Kontakta redaktilo."; -$a->strings["Submit"] = "Sendi"; -$a->strings["Profile Visibility"] = "Videbleco de profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon."; -$a->strings["Contact Information / Notes"] = "Kontaktaj informoj / Notoj"; -$a->strings["Edit contact notes"] = "Redakti kontaktnotojn"; -$a->strings["Visit %s's profile [%s]"] = "Viziti la profilon de %s [%s]"; -$a->strings["Block/Unblock contact"] = "Bloki/Malbloki kontakton"; -$a->strings["Ignore contact"] = "Ignori kontakton"; -$a->strings["Repair URL settings"] = "Ripari URL agordoj"; -$a->strings["View conversations"] = "Vidi konversaciojn"; -$a->strings["Delete contact"] = "Forviŝi kontakton"; -$a->strings["Last update:"] = "Plej ĵusa ĝisdatigo:"; -$a->strings["Update public posts"] = "Ĝisdatigi publikajn afiŝojn"; -$a->strings["Update now"] = "Ĝisdatigi nun"; -$a->strings["Currently blocked"] = "Nuntempe blokata"; -$a->strings["Currently ignored"] = "Nuntempe ignorata"; -$a->strings["Currently archived"] = "Nuntempe enarkivigita"; -$a->strings["Hide this contact from others"] = "Kaŝi ĉi tiun kontakton al aliaj"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla"; -$a->strings["Notification for new posts"] = ""; -$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"] = "Sugestoj"; -$a->strings["Suggest potential friends"] = "Sugesti amikojn"; -$a->strings["All Contacts"] = "Ĉiuj Kontaktoj"; -$a->strings["Show all contacts"] = "Montri ĉiujn kontaktojn"; -$a->strings["Unblocked"] = "Malblokita"; -$a->strings["Only show unblocked contacts"] = "Nur montri neblokitajn kontaktojn"; -$a->strings["Blocked"] = "Blokita"; -$a->strings["Only show blocked contacts"] = "Nur montri blokitajn kontaktojn"; -$a->strings["Ignored"] = "Ignorita"; -$a->strings["Only show ignored contacts"] = "Nur montri ignoritajn kontaktojn"; -$a->strings["Archived"] = "Enarkivigita"; -$a->strings["Only show archived contacts"] = "Nur montri enarkivigitajn kontaktojn"; -$a->strings["Hidden"] = "Kaŝita"; -$a->strings["Only show hidden contacts"] = "Nur montri kaŝitajn kontaktojn"; -$a->strings["Mutual Friendship"] = "Reciproka amikeco"; -$a->strings["is a fan of yours"] = "estas admiranto de vi"; -$a->strings["you are a fan of"] = "vi estas admiranto de"; -$a->strings["Edit contact"] = "Redakti kontakton"; -$a->strings["Contacts"] = "Kontaktoj"; -$a->strings["Search your contacts"] = "Serĉi viajn kontaktojn"; -$a->strings["Finding: "] = "Trovata:"; -$a->strings["Find"] = "Trovi"; -$a->strings["Update"] = "Ĝisdatigi"; -$a->strings["Delete"] = "Forviŝi"; -$a->strings["No profile"] = "Neniu profilo"; -$a->strings["Manage Identities and/or Pages"] = "Administri identecojn kaj/aŭ paĝojn."; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn."; -$a->strings["Select an identity to manage: "] = "Elektu identencon por administrado:"; -$a->strings["Post successful."] = "Sukcese afiŝita."; -$a->strings["Permission denied"] = "Malpermesita"; -$a->strings["Invalid profile identifier."] = "Nevaliada profila identigilo."; -$a->strings["Profile Visibility Editor"] = "Redaktilo por profila videbleco."; -$a->strings["Profile"] = "Profilo"; -$a->strings["Click on a contact to add or remove."] = "Klaku kontakton por aldoni aŭ forviŝi."; -$a->strings["Visible To"] = "Videbla Al"; -$a->strings["All Contacts (with secure profile access)"] = "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)"; -$a->strings["Item not found."] = "Elemento ne estas trovita."; -$a->strings["Public access denied."] = "Publika atingo ne permesita."; -$a->strings["Access to this profile has been restricted."] = "Atingo al ĉi tio profilo estas limitigita"; -$a->strings["Item has been removed."] = "Elemento estas forviŝita."; -$a->strings["Welcome to Friendica"] = "Bonvenon ĉe Friendica"; -$a->strings["New Member Checklist"] = "Kontrololisto por Novaj Membroj"; -$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."] = "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. "; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$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."] = ""; -$a->strings["Settings"] = "Agordoj"; -$a->strings["Go to Your Settings"] = ""; -$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."] = "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto."; -$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."] = "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin."; -$a->strings["Upload Profile Photo"] = "Alŝuti profilbildon"; -$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."] = "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo."; -$a->strings["Edit Your Profile"] = ""; -$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."] = "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj."; -$a->strings["Profile Keywords"] = ""; -$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."] = "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn."; -$a->strings["Connecting"] = ""; -$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."] = "Rajtigu la Facebook Konektilon se vi nuntempe havas Facebook konton, kaj ni (nedeviga) enportu viajn Facebook amikojn kaj konversaciojn."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Se ĉi tiu estas via propra TTT servilo, instali la Facebook kromprogramon eble plifaciligos la transpason al la libera interkona reto."; -$a->strings["Importing Emails"] = ""; -$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"] = "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto."; -$a->strings["Go to Your Contacts Page"] = ""; -$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."] = "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon."; -$a->strings["Go to Your Site's Directory"] = ""; -$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."] = "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin."; -$a->strings["Finding New People"] = ""; -$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."] = "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj."; -$a->strings["Groups"] = "Grupoj"; -$a->strings["Group Your 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."] = "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo."; -$a->strings["Why Aren't My Posts Public?"] = ""; -$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."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj."; -$a->strings["OpenID protocol error. No ID returned."] = "Eraro en OpenID protokolo. Ne resendis identecon."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie."; -$a->strings["Login failed."] = "Ensalutado malsukcesis."; -$a->strings["Image uploaded but image cropping failed."] = "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon."; -$a->strings["Profile Photos"] = "Profilbildoj"; -$a->strings["Image size reduction [%s] failed."] = "Malsukcesis malpligrandigi [%s] la bildon."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas."; -$a->strings["Unable to process image"] = "Ne eblas procezi bildon."; -$a->strings["Image exceeds size limit of %d"] = "Bildo estas pli granda ol la limito %d"; -$a->strings["Unable to process image."] = "Ne eblas procedi la bildon."; -$a->strings["Upload File:"] = "Alŝuti dosieron:"; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload"] = "Alŝuti"; -$a->strings["or"] = "aŭ"; -$a->strings["skip this step"] = "Preterpasi tian paŝon"; -$a->strings["select a photo from your photo albums"] = "elekti bildon el viaj albumoj"; -$a->strings["Crop Image"] = "Stuci Bildon"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Bonvolu agordi la stuco de la bildo por optimuma aspekto."; -$a->strings["Done Editing"] = "Finigi Redaktado"; -$a->strings["Image uploaded successfully."] = "Bildo estas sukcese enŝutita."; -$a->strings["Image upload failed."] = "Alŝuto de bildo malsukcesis."; -$a->strings["photo"] = "bildo"; -$a->strings["status"] = "staton"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Tag removed"] = "Marko forviŝita"; -$a->strings["Remove Item Tag"] = "Forviŝi markon"; -$a->strings["Select a tag to remove: "] = "Elektu forviŝontan markon:"; -$a->strings["Remove"] = "Forviŝi"; -$a->strings["Save to Folder:"] = "Konservi en Dosierujo:"; -$a->strings["- select -"] = "- elekti -"; -$a->strings["Save"] = "Konservi"; -$a->strings["Contact added"] = "Aldonis kontakton"; -$a->strings["Unable to locate original post."] = "Ne eblas trovi originalan afiŝon."; -$a->strings["Empty post discarded."] = "Forviŝis malplenan afiŝon."; -$a->strings["Wall Photos"] = "Muraj Bildoj"; -$a->strings["System error. Post not saved."] = "Sistema eraro. Afiŝo ne registrita."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto."; -$a->strings["You may visit them online at %s"] = "Vi povas viziti ilin rete ĉe %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn."; -$a->strings["%s posted an update."] = "%s publikigis afiŝon."; -$a->strings["Group created."] = "Grupo estas kreita."; -$a->strings["Could not create group."] = "Ne povas krei grupon."; -$a->strings["Group not found."] = "Grupo ne estas trovita."; -$a->strings["Group name changed."] = "La nomo de la grupo estas ŝanĝita."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Krei grupon da kontaktoj/amikoj."; -$a->strings["Group Name: "] = "Nomo de la grupo:"; -$a->strings["Group removed."] = "Grupo estas forviŝita."; -$a->strings["Unable to remove group."] = "Ne eblas forviŝi grupon."; -$a->strings["Group Editor"] = "Grupa redaktilo"; -$a->strings["Members"] = "Anoj"; -$a->strings["You must be logged in to use addons. "] = ""; -$a->strings["Applications"] = "Programoj"; -$a->strings["No installed applications."] = "Neniom da instalitaj programoj."; -$a->strings["Profile not found."] = "Profilo ne trovita."; -$a->strings["Contact not found."] = "Kontakto ne trovita."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita."; -$a->strings["Response from remote site was not understood."] = "Ne komprenis la rispondon de la fora retejo."; -$a->strings["Unexpected response from remote site: "] = "Neatendita rispondo de la fora retejo:"; -$a->strings["Confirmation completed successfully."] = "Konfirmo sukcese kompletigita."; -$a->strings["Remote site reported: "] = "La fora retejo raportis:"; -$a->strings["Temporary failure. Please wait and try again."] = "Dumtempa eraro. Bonvolu atendi kaj provi refoje."; -$a->strings["Introduction failed or was revoked."] = "La prezento malsukcesis au estas revokita."; -$a->strings["Unable to set contact photo."] = "Neeblas agordi la kontaktbildo."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s amikiĝis kun %2\$s"; -$a->strings["No user record found for '%s' "] = "Ne trovis uzanton '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson."; -$a->strings["Contact record was not found for you on our site."] = "Kontakto ne trovita por vi en via retejo."; -$a->strings["Site public key not available in contact record for URL %s."] = "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje."; -$a->strings["Unable to set your contact credentials on our system."] = "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo."; -$a->strings["Unable to update your contact profile details on our system"] = "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo."; -$a->strings["[Name Withheld]"] = "[Kaŝita nomo]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s aliĝis al %2\$s"; -$a->strings["Requested profile is not available."] = "La petita profilo ne disponeblas."; -$a->strings["Tips for New Members"] = "Konsilo por novaj membroj"; -$a->strings["No videos selected"] = ""; -$a->strings["Access to this item is restricted."] = "Atingo al tio elemento estas limigita."; -$a->strings["View Video"] = ""; -$a->strings["View Album"] = "Vidi albumon"; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s markis la %3\$s de %2\$s kun %4\$s"; -$a->strings["Friend suggestion sent."] = "Amikosugesto sendita."; -$a->strings["Suggest Friends"] = "Sugesti amikojn"; -$a->strings["Suggest a friend for %s"] = "Sugesti amikon por %s"; -$a->strings["No valid account found."] = "Ne trovis validan konton."; -$a->strings["Password reset request issued. Check your email."] = "Eldonis riparadon de pasvorto. Legu vian retpoŝton."; -$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"] = "Pasvorta riparado petita je %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis."; -$a->strings["Password Reset"] = "Pasvorta riparado"; -$a->strings["Your password has been reset as requested."] = "Via pasvorto estis riparita laŭ via peto."; -$a->strings["Your new password is"] = "Via nova pasvorto estas"; -$a->strings["Save or copy your new password - and then"] = "Memorigi vian novan pasvorton - kaj poste"; -$a->strings["click here to login"] = "klaku ĉi tie por ensaluti"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis."; -$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"] = ""; -$a->strings["Forgot your Password?"] = "Ĉu vi forgesis vian pasvorton?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn."; -$a->strings["Nickname or Email: "] = "Salutnomo aŭ retpoŝtadreso: "; -$a->strings["Reset"] = "Repari"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s ŝatas la %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s malŝatas la %3\$s de %2\$s"; -$a->strings["{0} wants to be your friend"] = "{0} volas amikiĝi kun vi"; -$a->strings["{0} sent you a message"] = "{0} sendis mesaĝon al vi"; -$a->strings["{0} requested registration"] = "{0} petis registradon"; -$a->strings["{0} commented %s's post"] = "{0} komentis pri la afiŝo de %s"; -$a->strings["{0} liked %s's post"] = "{0} satis la afiŝon de %s"; -$a->strings["{0} disliked %s's post"] = "{0} malŝatis la afiŝon de %s"; -$a->strings["{0} is now friends with %s"] = "{0} amikiĝis kun %s"; -$a->strings["{0} posted"] = "{0} afiŝis"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} markis la afiŝon de %s kun #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} menciis vin en afiŝo"; -$a->strings["No contacts."] = "Neniu kontaktojn."; -$a->strings["View Contacts"] = "Vidi Kontaktojn"; -$a->strings["Invalid request identifier."] = "Nevalida peta identigilo."; -$a->strings["Discard"] = "Forviŝi"; -$a->strings["System"] = "Sistemo"; -$a->strings["Network"] = "Reto"; -$a->strings["Personal"] = "Propra"; -$a->strings["Home"] = "Hejmo"; -$a->strings["Introductions"] = "Prezentoj"; -$a->strings["Show Ignored Requests"] = "Montri ignoritajn petojn"; -$a->strings["Hide Ignored Requests"] = "Kaŝi ignoritajn petojn"; -$a->strings["Notification type: "] = "Tipo de atentigo:"; -$a->strings["Friend Suggestion"] = "Amikosugestoj"; -$a->strings["suggested by %s"] = "sugestita de %s"; -$a->strings["Post a new friend activity"] = "Afiŝi novan amikecan aktivecon"; -$a->strings["if applicable"] = "se aplikebla"; -$a->strings["Approve"] = "Aprobi"; -$a->strings["Claims to be known to you: "] = "Pensas ke vi konas ilin:"; -$a->strings["yes"] = "jes"; -$a->strings["no"] = "ne"; -$a->strings["Approve as: "] = "Aprobi kiel:"; -$a->strings["Friend"] = "Amiko"; -$a->strings["Sharer"] = "Kunhaviganto"; -$a->strings["Fan/Admirer"] = "Fanatikulo/Admiranto"; -$a->strings["Friend/Connect Request"] = "Kontaktpeto"; -$a->strings["New Follower"] = "Nova abonanto"; -$a->strings["No introductions."] = "Neniom da prezentoj"; -$a->strings["Notifications"] = "Atentigoj"; -$a->strings["%s liked %s's post"] = "%s ŝatis la afiŝon de %s"; -$a->strings["%s disliked %s's post"] = "%s malŝatis la afiŝon de %s"; -$a->strings["%s is now friends with %s"] = "%s amikiĝis kun %s"; -$a->strings["%s created a new post"] = "%s kreis novan afiŝon"; -$a->strings["%s commented on %s's post"] = "%s komentis pri la afiŝo de %s"; -$a->strings["No more network notifications."] = "Ne pli da retaj atentigoj."; -$a->strings["Network Notifications"] = "Retaj Atentigoj"; -$a->strings["No more system notifications."] = "Ne pli da sistemaj atentigoj."; -$a->strings["System Notifications"] = "Sistemaj Atentigoj"; -$a->strings["No more personal notifications."] = "Ne pli da personaj atentigoj"; -$a->strings["Personal Notifications"] = "Personaj Atentigoj"; -$a->strings["No more home notifications."] = "Ne pli da hejmrilataj atentigoj."; -$a->strings["Home Notifications"] = "Hejmrilataj atentigoj"; -$a->strings["Source (bbcode) text:"] = "Fontkodo (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fontokodo (Diaspora) konvertota al BBcode:"; -$a->strings["Source input: "] = "Fontoenigo:"; -$a->strings["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): "] = "Fontoenigo (Diaspora formato):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Estas neniu nova ĉi tie"; -$a->strings["Clear notifications"] = ""; -$a->strings["New Message"] = "Nova Mesaĝo"; -$a->strings["No recipient selected."] = "Neniom da ricevontoj."; -$a->strings["Unable to locate contact information."] = "Ne eblas trovi kontaktajn informojn."; -$a->strings["Message could not be sent."] = "Ne povas sendi la mesaĝon."; -$a->strings["Message collection failure."] = "Malsukcese provis kolekti mesaĝojn."; -$a->strings["Message sent."] = "Mesaĝo estas sendita."; -$a->strings["Messages"] = "Mesaĝoj"; -$a->strings["Do you really want to delete this message?"] = ""; -$a->strings["Message deleted."] = "Mesaĝo estas forviŝita."; -$a->strings["Conversation removed."] = "Dialogo estas forviŝita."; -$a->strings["Please enter a link URL:"] = "Bonvolu entajpu adreson de ligilo:"; -$a->strings["Send Private Message"] = "Sendi Privatan Mesaĝon"; -$a->strings["To:"] = "Al:"; -$a->strings["Subject:"] = "Temo:"; -$a->strings["Your message:"] = "Via mesaĝo:"; -$a->strings["Upload photo"] = "Alŝuti bildon"; -$a->strings["Insert web link"] = "Enmeti retan adreson"; -$a->strings["Please wait"] = "Bonvolu atendi"; -$a->strings["No messages."] = "Neniom da mesaĝoj."; -$a->strings["Unknown sender - %s"] = "Nekonata sendanto - %s"; -$a->strings["You and %s"] = "Vi kaj %s"; -$a->strings["%s and You"] = "%s kaj vi"; -$a->strings["Delete conversation"] = "Forviŝi dialogon"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d mesaĝo", - 1 => "%d mesaĝoj", -); -$a->strings["Message not available."] = "Mesaĝo nedisponebla."; -$a->strings["Delete message"] = "Forviŝu mesaĝon"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto."; -$a->strings["Send Reply"] = "Respondi"; -$a->strings["[Embedded content - reload page to view]"] = "[Enigita enhavo - reŝargu paĝon por spekti ĝin]"; -$a->strings["Contact settings applied."] = "Kontaktagordoj estas konservita."; -$a->strings["Contact update failed."] = "Ĝisdatigo de kontakto malsukcesis."; -$a->strings["Repair Contact Settings"] = "Ripari kontaktagordoj."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie."; -$a->strings["Return to contact editor"] = "Reen al kontakta redaktilo"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Name"] = "Nomo"; -$a->strings["Account Nickname"] = "Kaŝnomo de la konto"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Marknomo - Transpasas nomon/kaŝnomon"; -$a->strings["Account URL"] = "Adreso de la konto"; -$a->strings["Friend Request URL"] = "Kontaktpeta adreso"; -$a->strings["Friend Confirm URL"] = "Kontaktkonfirma adreso"; -$a->strings["Notification Endpoint URL"] = "Finpunkta adreso por atentigoj"; -$a->strings["Poll/Feed URL"] = "Adreso de fluo"; -$a->strings["New photo from this URL"] = "Nova bildo el tiu adreso"; -$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"] = "Ensaluti"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Atingo nepermesita."; -$a->strings["People Search"] = "Serĉi Membrojn"; -$a->strings["No matches"] = "Nenio estas trovita"; -$a->strings["Photos"] = "Bildoj"; -$a->strings["Files"] = "Dosieroj"; -$a->strings["Contacts who are not members of a group"] = "Kontaktoj kiuj ne estas en iu grupo"; -$a->strings["Theme settings updated."] = "Gisdatigis agordojn pri etosoj."; -$a->strings["Site"] = "Retejo"; -$a->strings["Users"] = "Uzantoj"; -$a->strings["Plugins"] = "Kromprogramoj"; -$a->strings["Themes"] = "Etosoj"; -$a->strings["DB updates"] = "DB ĝisdatigoj"; -$a->strings["Logs"] = "Protokoloj"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Administrado"; -$a->strings["Plugin Features"] = "Kromprogramaj Trajtoj"; -$a->strings["diagnostics"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Uzantaj registradoj atendante konfirmon"; -$a->strings["Normal Account"] = "Normala konto"; -$a->strings["Soapbox Account"] = "Soapbox Konto"; -$a->strings["Community/Celebrity Account"] = "Komunuma/eminentula Konto"; -$a->strings["Automatic Friend Account"] = "Aŭtomata Amika Konto"; -$a->strings["Blog Account"] = "Blogkonto"; -$a->strings["Private Forum"] = "Privata Forumo"; -$a->strings["Message queues"] = "Mesaĝvicoj"; -$a->strings["Administration"] = "Administrado"; -$a->strings["Summary"] = "Resumo"; -$a->strings["Registered users"] = "Registrataj uzantoj"; -$a->strings["Pending registrations"] = "Okazontaj registradoj"; -$a->strings["Version"] = "Versio"; -$a->strings["Active plugins"] = "Ŝaltitaj kromprogramoj"; -$a->strings["Can not parse base url. Must have at least ://"] = ""; -$a->strings["Site settings updated."] = "Ĝisdatigis retejaj agordoj."; -$a->strings["No special theme for mobile devices"] = ""; -$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"] = "Ofte"; -$a->strings["Hourly"] = "Ĉiuhore"; -$a->strings["Twice daily"] = "Duope ĉiutage"; -$a->strings["Daily"] = "Ĉiutage"; -$a->strings["Multi user instance"] = ""; -$a->strings["Closed"] = "Ferma"; -$a->strings["Requires approval"] = "Bezonas aprobon"; -$a->strings["Open"] = "Malferma"; -$a->strings["No SSL policy, links will track page SSL state"] = "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo."; -$a->strings["Force all links to use SSL"] = "Devigi ke ĉiuj ligiloj uzu SSL."; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)"; -$a->strings["Save Settings"] = ""; -$a->strings["Registration"] = "Registrado"; -$a->strings["File upload"] = "Alŝuto"; -$a->strings["Policies"] = "Politiko"; -$a->strings["Advanced"] = "Altnivela"; -$a->strings["Performance"] = ""; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; -$a->strings["Site name"] = "Nomo de retejo"; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; -$a->strings["Banner/Logo"] = "Emblemo"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; -$a->strings["System language"] = "Sistema lingvo"; -$a->strings["System theme"] = "Sistema etoso"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj"; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["SSL link policy"] = "Strategio por SSL ligiloj"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Difinas ĉu generotaj ligiloj devige uzu 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["Old style 'Share'"] = ""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; -$a->strings["Hide help entry from navigation menu"] = ""; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; -$a->strings["Single user instance"] = ""; -$a->strings["Make this instance multi-user or single-user for the named user"] = ""; -$a->strings["Maximum image size"] = "Maksimuma bildgrando"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito."; -$a->strings["Maximum image length"] = ""; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; -$a->strings["JPEG image quality"] = ""; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; -$a->strings["Register policy"] = "Interkonsento pri registrado"; -$a->strings["Maximum Daily Registrations"] = ""; -$a->strings["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."] = ""; -$a->strings["Register text"] = "Interkonsento teksto"; -$a->strings["Will be displayed prominently on the registration page."] = "Tio estos eminente montrata en la registro paĝo."; -$a->strings["Accounts abandoned after x days"] = "Kontoj forlasitaj post x tagoj"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo."; -$a->strings["Allowed friend domains"] = "Permesitaj amikaj domainoj"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."; -$a->strings["Allowed email domains"] = "Permesitaj retpoŝtaj domajnoj"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."; -$a->strings["Block public"] = "Bloki publike"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita."; -$a->strings["Force publish"] = "Devigi publikigon"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo."; -$a->strings["Global directory update URL"] = "Ĝenerala adreso por ĝisdatigi la katalogon"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adreso por ĝisdatigi la tutmondan katalogon. Se ne agordita, la tutmonda katatolge tute ne disponeblas al la programo."; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$a->strings["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."] = ""; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["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."] = ""; -$a->strings["Allow Users to set remote_self"] = ""; -$a->strings["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."] = ""; -$a->strings["Block multiple registrations"] = "Bloki pluroblajn registradojn."; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj."; -$a->strings["OpenID support"] = "Subteno por OpenID"; -$a->strings["OpenID support for registration and logins."] = "Subteni OpenID por registrado kaj ensaluto."; -$a->strings["Fullname check"] = "Kontroli plenan nomon"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo."; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 regulaj exprimoj"; -$a->strings["Use PHP UTF8 regular expressions"] = "Uzi PHP UTF8 regulajn esprimojn."; -$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["Enable OStatus support"] = "Ŝalti subtenon por 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."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Enable Diaspora support"] = "Ŝalti subtenon por Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Provizi integritan Diaspora subtenon."; -$a->strings["Only allow Friendica contacts"] = "Nur permesigi Friendica kontaktojn"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita."; -$a->strings["Verify SSL"] = "Kontroli SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj."; -$a->strings["Proxy user"] = "Uzantnomo por retperanto"; -$a->strings["Proxy URL"] = "URL adreso de retperanto"; -$a->strings["Network timeout"] = "Reta tempolimo"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)."; -$a->strings["Delivery interval"] = "Intervalo de liverado"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj."; -$a->strings["Poll interval"] = "Enketintervalo"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon."; -$a->strings["Maximum Load Average"] = "Maksimuma Meza Sistemŝargo"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50."; -$a->strings["Use MySQL full text engine"] = ""; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; -$a->strings["Suppress Language"] = ""; -$a->strings["Suppress language information in meta information about a posting."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["Cache duration in seconds"] = ""; -$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."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Path for lock file"] = ""; -$a->strings["Temp path"] = ""; -$a->strings["Base path to installation"] = ""; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$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["New base url"] = ""; -$a->strings["Update has been marked successful"] = "Ĝisdatigo estas markita sukcesa"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = "Sukcese aplikis la ĝisdatigo %s."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Ĝisdatigo %s ne liveris elirstaton. "; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "Neniom da malsukcesaj ĝisdatigoj."; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = "Malsukcesaj Ĝisdatigoj"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton."; -$a->strings["Mark success (if update was manually applied)"] = "Marki sukcesa (se la ĝisdatigo estas instalita mane)"; -$a->strings["Attempt to execute this update step automatically"] = "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo."; -$a->strings["\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"] = "Detaloj de la registrado por %s"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "Blokis/malblokis %s uzanton", - 1 => "Blokis/malblokis %s uzantojn", -); -$a->strings["%s user deleted"] = array( - 0 => "%s uzanto forviŝita", - 1 => "%s uzanto forviŝitaj", -); -$a->strings["User '%s' deleted"] = "Uzanto '%s' forviŝita"; -$a->strings["User '%s' unblocked"] = "Uzanto '%s' malblokita"; -$a->strings["User '%s' blocked"] = "Uzanto '%s' blokita"; -$a->strings["Add User"] = ""; -$a->strings["select all"] = "elekti ĉiujn"; -$a->strings["User registrations waiting for confirm"] = "Registriĝoj atendante aprobon"; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = "Dato de peto"; -$a->strings["Email"] = "Retpoŝto"; -$a->strings["No registrations."] = "Neniom da registriĝoj."; -$a->strings["Deny"] = "Negi"; -$a->strings["Site admin"] = ""; -$a->strings["Account expired"] = ""; -$a->strings["New User"] = ""; -$a->strings["Register date"] = "Dato de registrado"; -$a->strings["Last login"] = "Plej ĵusa ensaluto"; -$a->strings["Last item"] = "Plej ĵusa elemento"; -$a->strings["Deleted since"] = ""; -$a->strings["Account"] = "Konto"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"; -$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?"] = "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; -$a->strings["Plugin %s disabled."] = "Kromprogramo %s estas malŝaltita."; -$a->strings["Plugin %s enabled."] = "Kromprogramo %s estas ŝaltita."; -$a->strings["Disable"] = "Malŝalti"; -$a->strings["Enable"] = "Ŝalti"; -$a->strings["Toggle"] = "Ŝalti/Malŝalti"; -$a->strings["Author: "] = "Aŭtoro: "; -$a->strings["Maintainer: "] = "Prizorganto: "; -$a->strings["No themes found."] = "Ne trovis etosojn."; -$a->strings["Screenshot"] = "Ekrankopio"; -$a->strings["[Experimental]"] = "[Eksperimenta]"; -$a->strings["[Unsupported]"] = "[Nesubtenata]"; -$a->strings["Log settings updated."] = "Protokolagordoj ĝisdatigitaj."; -$a->strings["Clear"] = "Forviŝi"; -$a->strings["Enable Debugging"] = ""; -$a->strings["Log file"] = "Protokolo"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo."; -$a->strings["Log level"] = "Protokolnivelo"; -$a->strings["Close"] = "Fermi"; -$a->strings["FTP Host"] = "FTP Servilo"; -$a->strings["FTP Path"] = "FTP Vojo"; -$a->strings["FTP User"] = "FTP Uzanto"; -$a->strings["FTP Password"] = "FTP Pasvorto"; -$a->strings["Search Results For:"] = "Rezultoj de la serĉado pri:"; -$a->strings["Remove term"] = "Forviŝu terminon"; -$a->strings["Saved Searches"] = "Konservitaj Serĉadoj"; -$a->strings["add"] = "aldoni"; -$a->strings["Commented Order"] = "Komenta Ordo"; -$a->strings["Sort by Comment Date"] = "Ordigi laŭ Dato de Komento"; -$a->strings["Posted Order"] = "Afiŝita Ordo"; -$a->strings["Sort by Post Date"] = "Ordigi laŭ Dato de Afiŝado"; -$a->strings["Posts that mention or involve you"] = "Afiŝoj menciantaj vin aŭ pri vi"; -$a->strings["New"] = "Nova"; -$a->strings["Activity Stream - by date"] = "Fluo de Aktiveco - laŭ dato"; -$a->strings["Shared Links"] = "Kunhavigitaj Ligiloj"; -$a->strings["Interesting Links"] = "Interesaj Ligiloj"; -$a->strings["Starred"] = "Steligita"; -$a->strings["Favourite Posts"] = "Favorigitaj Afiŝoj"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Averto: La grupo enhavas %s membron el nesekuraj retejoj.", - 1 => "Averto: La grupo enhavas %s membrojn el nesekuraj retejoj.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "La privateco de privataj mesaĝoj al ĉi tiu grupo ne ĉiam estas garantita."; -$a->strings["No such group"] = "Grupo ne estas trovita"; -$a->strings["Group is empty"] = "Grupo estas malplena"; -$a->strings["Group: "] = "Grupo:"; -$a->strings["Contact: "] = "Kontakto:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita."; -$a->strings["Invalid contact."] = "Nevalida kontakto."; -$a->strings["Friends of %s"] = "Amikoj de %s"; -$a->strings["No friends to display."] = "Neniom da amiko al montri."; -$a->strings["Event title and start time are required."] = "Titolo kaj starttempo estas bezonataj por la okazo."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Redakti okazon"; -$a->strings["link to source"] = "ligilo al fonto"; -$a->strings["Events"] = "Okazoj"; -$a->strings["Create New Event"] = "Krei novan okazon"; -$a->strings["Previous"] = "antaŭa"; -$a->strings["Next"] = "sekva"; -$a->strings["hour:minute"] = "horo:minuto"; -$a->strings["Event details"] = "Detaloj de okazo"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Format is %s %s. Titolo kaj starttempo estas bezonataj."; -$a->strings["Event Starts:"] = "Okazo startas:"; -$a->strings["Required"] = "Bezonata"; -$a->strings["Finish date/time is not known or not relevant"] = "Fina dato/tempo ne estas konata aŭ ne bezonata"; -$a->strings["Event Finishes:"] = "Okazo finas:"; -$a->strings["Adjust for viewer timezone"] = "Agordi al horzono de la leganto"; -$a->strings["Description:"] = "Priskribo"; -$a->strings["Location:"] = "Loko:"; -$a->strings["Title:"] = "Titolo:"; -$a->strings["Share this event"] = "Kunhavigi la okazon"; -$a->strings["Select"] = "Elekti"; -$a->strings["View %s's profile @ %s"] = "Vidi la profilon de %s ĉe %s"; -$a->strings["%s from %s"] = "%s de %s"; -$a->strings["View in context"] = "Vidi kun kunteksto"; -$a->strings["%d comment"] = array( - 0 => "%d komento", - 1 => "%d komentoj", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "komento", -); -$a->strings["show more"] = "montri pli"; -$a->strings["Private Message"] = "Privata mesaĝo"; -$a->strings["I like this (toggle)"] = "Mi ŝatas tion (ŝalti)"; -$a->strings["like"] = "ŝati"; -$a->strings["I don't like this (toggle)"] = "Mi malŝatas tion(ŝalti)"; -$a->strings["dislike"] = "malŝati"; -$a->strings["Share this"] = "Kunhavigi ĉi tiun"; -$a->strings["share"] = "kunhavigi"; -$a->strings["This is you"] = "Tiu estas vi"; -$a->strings["Comment"] = "Komenti"; -$a->strings["Bold"] = "Grasa"; -$a->strings["Italic"] = "Kursiva"; -$a->strings["Underline"] = "Substreki"; -$a->strings["Quote"] = "Citaĵo"; -$a->strings["Code"] = "Kodo"; -$a->strings["Image"] = "Bildo"; -$a->strings["Link"] = "Ligilo"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Antaŭrigardi"; -$a->strings["Edit"] = "Redakti"; -$a->strings["add star"] = "aldoni stelon"; -$a->strings["remove star"] = "forpreni stelon"; -$a->strings["toggle star status"] = "ŝalti/malŝalti steloŝtato"; -$a->strings["starred"] = "steligita"; -$a->strings["add tag"] = "aldoni markon"; -$a->strings["save to folder"] = "konservi en dosierujo"; -$a->strings["to"] = "al"; -$a->strings["Wall-to-Wall"] = "Muro-al-Muro"; -$a->strings["via Wall-To-Wall:"] = "per Muro-al-Muro:"; -$a->strings["Remove My Account"] = "Forigi Mian Konton"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla."; -$a->strings["Please enter your password for verification:"] = "Bonvolu entajpi vian pasvorton por kontrolado:"; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = "Ne eblas konekti la datumbazon."; -$a->strings["Could not create table."] = "Ne eblas krei tabelon."; -$a->strings["Your Friendica site database has been installed."] = "La datumbazo de vi Friendica retjo estas instalita."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Bonvolu legi la dosieron \"INSTALL.txt\"."; -$a->strings["System check"] = "Sistema kontrolo"; -$a->strings["Check again"] = "Ree kontroli"; -$a->strings["Database connection"] = "Datumbaza konekto"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi."; -$a->strings["Database Server Name"] = "Nomo de datumbaza servilo."; -$a->strings["Database Login Name"] = "Salutnomo ĉe la datumbazo."; -$a->strings["Database Login Password"] = "Pasvorto ĉe la datumbazo."; -$a->strings["Database Name"] = "Nomo de la datumbazo."; -$a->strings["Site administrator email address"] = "Retpoŝtadreso de la reteja administranto"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo."; -$a->strings["Please select a default timezone for your website"] = "Bonvolu elekti defaŭltan horzonon por via retejo."; -$a->strings["Site settings"] = "Retejaj agordoj"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komanda linia versio de PHP ne trovita en PATH de la retservilo."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Se vi ne havas komandlinian version de PHP sur la servilo, vi ne eblas plenumi fonan planitan enketon per cron. Bonvolu legi 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Vojo de la komanda linia versio de PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado."; -$a->strings["Command line PHP"] = "komanda linia versio de PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita."; -$a->strings["This is required for message delivery to work."] = "Tio estas bezonata por la livero de mesaĝoj."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn."; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php"; -$a->strings["Generate encryption keys"] = "Generi ĉifroŝlosilojn"; -$a->strings["libCurl PHP module"] = "PHP modulo libCurl"; -$a->strings["GD graphics PHP module"] = "PHP modulo GD"; -$a->strings["OpenSSL PHP module"] = "PHP modulo OpenSSL"; -$a->strings["mysqli PHP module"] = "PHP modulo mysqli"; -$a->strings["mb_string PHP module"] = "PHP modulo mb_string"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modulo"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita."; -$a->strings["Error: openssl PHP module required but not installed."] = "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita."; -$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."] = "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis."; -$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."] = "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi."; -$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."] = "Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron \"INSTALL.txt\" por trovi instrukciojn."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php estas skribebla."; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/smarty3 is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite en .htaccess ne funkcias. Kontrolu la agordojn de la servilo."; -$a->strings["Url rewrite is working"] = "URL rewrite funkcias."; -$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."] = "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo."; -$a->strings["

                                              What next

                                              "] = "

                                              Kio sekvas nun?

                                              "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis."; -$a->strings["Unable to check your home location."] = "Ne eblas kontroli vian hejmlokon."; -$a->strings["No recipient."] = "Neniom da ricevontoj."; -$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 vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj."; -$a->strings["Help:"] = "Helpo:"; -$a->strings["Help"] = "Helpo"; -$a->strings["Not Found"] = "Ne trovita"; -$a->strings["Page not found."] = "Paĝo ne trovita"; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Welcome to %s"] = "Bonvenon ĉe %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"] = "Dosiero estas pli granda ol la limito de %d"; -$a->strings["File upload failed."] = "Alŝutado malsukcesis."; -$a->strings["Profile Match"] = "Kongrua profilo"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo."; -$a->strings["is interested in:"] = "interesiĝas pri:"; -$a->strings["Connect"] = "Konekti"; -$a->strings["link"] = "ligilo"; -$a->strings["Not available."] = "Ne disponebla."; -$a->strings["Community"] = "Komunumo"; -$a->strings["No results."] = "Nenion trovita."; -$a->strings["everybody"] = "ĉiuj"; -$a->strings["Additional features"] = ""; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Delegations"] = ""; -$a->strings["Connected apps"] = "Konektitaj programoj"; -$a->strings["Export personal data"] = "Eksporto"; -$a->strings["Remove account"] = "Forigi konton"; -$a->strings["Missing some important data!"] = "Mankas importantaj datumoj!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj."; -$a->strings["Email settings updated."] = "Retpoŝtagordoj ĝisdatigita"; -$a->strings["Features updated"] = ""; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita."; -$a->strings["Wrong password."] = ""; -$a->strings["Password changed."] = "Pasvorto ŝanĝita."; -$a->strings["Password update failed. Please try again."] = "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje."; -$a->strings[" Please use a shorter name."] = " Bonvolu uzi pli mallongan nomon."; -$a->strings[" Name too short."] = " Nomo estas tro mallonga."; -$a->strings["Wrong Password"] = ""; -$a->strings[" Not valid email."] = " Repoŝtadreso ne validas."; -$a->strings[" Cannot change to that email."] = " Ne povas ŝanĝi al tio retpoŝtadreso."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon."; -$a->strings["Settings updated."] = "Agordoj ĝisdatigita."; -$a->strings["Add application"] = "Aldoni programon"; -$a->strings["Consumer Key"] = "Ŝlosilo de kliento"; -$a->strings["Consumer Secret"] = "Sekreto de kliento"; -$a->strings["Redirect"] = "Alidirekto"; -$a->strings["Icon url"] = "Piktograma adreso"; -$a->strings["You can't edit this application."] = "Ĉi tio programo ne estas redaktebla."; -$a->strings["Connected Apps"] = "Konektitaj Programoj"; -$a->strings["Client key starts with"] = "Ŝlosilo de kliento komencas kun"; -$a->strings["No name"] = "Neniu nomo"; -$a->strings["Remove authorization"] = "Forviŝi rajtigon"; -$a->strings["No Plugin settings configured"] = "Neniom da kromprogramoagordoj farita"; -$a->strings["Plugin Settings"] = "Kromprogramoagordoj"; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Integrita subteno por %s koneto estas %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "ŝaltita"; -$a->strings["disabled"] = "malŝaltita"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Retpoŝta atingo ne disponeblas ĉi tie."; -$a->strings["Email/Mailbox Setup"] = "Agordoj pri Retpoŝto"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton."; -$a->strings["Last successful email check:"] = "Plej ĵusa sukcesa kontrolo de poŝto:"; -$a->strings["IMAP server name:"] = "Nomo de IMAP servilo:"; -$a->strings["IMAP port:"] = "Numero de IMAP pordo:"; -$a->strings["Security:"] = "Sekureco:"; -$a->strings["None"] = "Nenio"; -$a->strings["Email login name:"] = "Retpoŝta salutnomo:"; -$a->strings["Email password:"] = "Retpoŝta pasvorto:"; -$a->strings["Reply-to address:"] = "Responda adreso (Reply-to):"; -$a->strings["Send public posts to all email contacts:"] = "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:"; -$a->strings["Action after import:"] = "Ago post la importado:"; -$a->strings["Mark as seen"] = "Marki kiel legita"; -$a->strings["Move to folder"] = "Movi al dosierujo"; -$a->strings["Move to folder:"] = "Movi al dosierujo:"; -$a->strings["Display Settings"] = "Ekranagordoj"; -$a->strings["Display Theme:"] = "Vidiga etoso:"; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimume 10 sekundoj, sen maksimumo"; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = "Maksimume 100 eroj"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = "Ne montru ridetulojn"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = "Normala Kontopaĝo"; -$a->strings["This account is a normal personal profile"] = "Tiu konto estas normala persona profilo"; -$a->strings["Soapbox Page"] = "Soapbox Paĝo"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj"; -$a->strings["Community Forum/Celebrity Account"] = "Komunuma Forumo/Eminentula Konto"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi"; -$a->strings["Automatic Friend Page"] = "Aŭtomata Amiko Paĝo"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj"; -$a->strings["Private Forum [Experimental]"] = "Privata Forumo [eksperimenta]"; -$a->strings["Private forum - approved members only"] = "Privata forumo - nur por aprobitaj membroj"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID."; -$a->strings["Publish your default profile in your local site directory?"] = "Publikigi vian defaŭltan profilon en la loka reteja katalogo?"; -$a->strings["No"] = "Ne"; -$a->strings["Publish your default profile in the global social directory?"] = "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?"; -$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?"] = "Ĉu amikoj povu afiŝi al via profilo?"; -$a->strings["Allow friends to tag your posts?"] = "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permesigi nekonatulojn sendi retpoŝton al vi?"; -$a->strings["Profile is not published."] = "Profilo ne estas publika."; -$a->strings["Your Identity Address is"] = "Via identeca adreso estas"; -$a->strings["Automatically expire posts after this many days:"] = "Automatike senvalidigi afiŝojn post tiom da tagoj:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata"; -$a->strings["Advanced expiration settings"] = "Detalaj agordoj rilate al senvalidiĝo"; -$a->strings["Advanced Expiration"] = "Detala senvalidiĝo"; -$a->strings["Expire posts:"] = "Senvalidigi afiŝojn:"; -$a->strings["Expire personal notes:"] = "Senvalidigi personajn notojn:"; -$a->strings["Expire starred posts:"] = "Senvalidigi steligitajn afiŝojn:"; -$a->strings["Expire photos:"] = "Senvalidigi bildojn:"; -$a->strings["Only expire posts by others:"] = "Nur senvalidigi afiŝojn de aliaj: "; -$a->strings["Account Settings"] = "Kontoagordoj"; -$a->strings["Password Settings"] = "Agordoj pri Pasvorto"; -$a->strings["New Password:"] = "Nova pasvorto:"; -$a->strings["Confirm:"] = "Konfirmi:"; -$a->strings["Leave password fields blank unless changing"] = "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton."; -$a->strings["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = ""; -$a->strings["Basic Settings"] = "Bazaj Agordoj"; -$a->strings["Full Name:"] = "Plena Nomo:"; -$a->strings["Email Address:"] = "Retpoŝtadreso:"; -$a->strings["Your Timezone:"] = "Via Horzono:"; -$a->strings["Default Post Location:"] = "Defaŭlta Loko por Afiŝoj:"; -$a->strings["Use Browser Location:"] = "Uzu Lokon laŭ Retesplorilo:"; -$a->strings["Security and Privacy Settings"] = "Agordoj pri Sekureco kaj Privateco"; -$a->strings["Maximum Friend Requests/Day:"] = "Taga maksimumo da kontaktpetoj:"; -$a->strings["(to prevent spam abuse)"] = "(por malhelpi spamaĵojn)"; -$a->strings["Default Post Permissions"] = "Defaŭltaj permesoj por afiŝoj"; -$a->strings["(click to open/close)"] = "(klaku por malfermi/fermi)"; -$a->strings["Show to Groups"] = ""; -$a->strings["Show to Contacts"] = ""; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = "Taga maksimumo da privataj mesaĝoj."; -$a->strings["Notification Settings"] = "Agordoj pri Atentigoj"; -$a->strings["By default post a status message when:"] = "Defaŭlte afiŝi statmesaĝon okaze de:"; -$a->strings["accepting a friend request"] = "akcepti kontaktpeton"; -$a->strings["joining a forum/community"] = "aliĝi forumon/komunumon"; -$a->strings["making an interesting profile change"] = "fari interesan profilŝanĝon"; -$a->strings["Send a notification email when:"] = "Sendu atentiga repoŝton se:"; -$a->strings["You receive an introduction"] = "Vi ricevas inviton"; -$a->strings["Your introductions are confirmed"] = "Viaj prezentoj estas konfirmata."; -$a->strings["Someone writes on your profile wall"] = "Iu skribas je via profila muro."; -$a->strings["Someone writes a followup comment"] = "Iu skribas sekvan komenton"; -$a->strings["You receive a private message"] = "Vi ricevas privatan mesaĝon."; -$a->strings["You receive a friend suggestion"] = "Vi ricevas amikosugeston"; -$a->strings["You are tagged in a post"] = "Vi estas markita en afiŝon"; -$a->strings["You are poked/prodded/etc. in a 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"] = "Detalaj Agordoj pri Tipo de Konto/Paĝo."; -$a->strings["Change the behaviour of this account for special situations"] = "Agordi la teniĝon de la konto en specialaj situacioj"; -$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."] = "Tia prezento jam estas akceptita"; -$a->strings["Profile location is not valid or does not contain profile information."] = "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Averto: La adreso de la profilo ne enhavas identeblan personan nomon."; -$a->strings["Warning: profile location has no profile photo."] = "Averto: La adreso de la profilo ne enhavas bildon."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d bezonataj parametroj ne trovita ĉe la donata adreso.", - 1 => "%d bezonataj parametroj ne trovita ĉe la donata adreso.", -); -$a->strings["Introduction complete."] = "Prezento sukcesis."; -$a->strings["Unrecoverable protocol error."] = "Neĝustigebla eraro en protokolo."; -$a->strings["Profile unavailable."] = "Profilo ne estas disponebla."; -$a->strings["%s has received too many connection requests today."] = "%s hodiaŭ ricevis tro multe da konektpetoj."; -$a->strings["Spam protection measures have been invoked."] = "Kontraŭspamilo estas aktivita."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Amikoj, vi bonvolu ripeti post 24 horoj."; -$a->strings["Invalid locator"] = "Nevalida adreso."; -$a->strings["Invalid email address."] = "Nevalida repoŝtadreso."; -$a->strings["This account has not been configured for email. Request failed."] = "La konto ne estas agordita por retpoŝto. La peto malsukcesis."; -$a->strings["Unable to resolve your name at the provided location."] = "Via nomo ne troveblas al la donita adreso."; -$a->strings["You have already introduced yourself here."] = "Vi vin jam prezentis tie."; -$a->strings["Apparently you are already friends with %s."] = "Ŝajnas kvazaŭ vi jam amikiĝis kun %s."; -$a->strings["Invalid profile URL."] = "Nevalida adreso de profilo."; -$a->strings["Disallowed profile URL."] = "Malpermesita adreso de profilo."; -$a->strings["Your introduction has been sent."] = "Via prezento estas sendita."; -$a->strings["Please login to confirm introduction."] = "Bonvolu ensaluti por jesigi la prezenton."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon."; -$a->strings["Hide this contact"] = "Kaŝi tiun kontakton"; -$a->strings["Welcome home %s."] = "Bonvenon hejme, %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bonvolu konfirmi vian prezenton / kontaktpeton al %s."; -$a->strings["Confirm"] = "Konfirmi."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: "; -$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 vi ne estas membro de la libra interkona reto, sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ."; -$a->strings["Friend/Connection Request"] = "Prezento / Konektpeto"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Bonvolu respondi:"; -$a->strings["Does %s know you?"] = "Ĉu %s konas vin?"; -$a->strings["Add a personal note:"] = "Aldoni personan noton:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federaciaj interkonaj retejoj"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo."; -$a->strings["Your Identity Address:"] = "Via identeca adreso:"; -$a->strings["Submit Request"] = "Sendi peton"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj."; -$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."] = "Mi ne povas prilabori vian registradon."; -$a->strings["Your registration is pending approval by the site owner."] = "Via registrado bezonas apropbon de la administranto."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vi ankaŭ (nedeviga) povas plenigi la formularon per OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn."; -$a->strings["Your OpenID (optional): "] = "Via OpenID (nedeviga):"; -$a->strings["Include your profile in member directory?"] = "Aldoni vian profilon al la membrokatalogo?"; -$a->strings["Membership on this site is by invitation only."] = "Membriĝi ĉi tie nur eblas laŭ invito."; -$a->strings["Your invitation ID: "] = "Via invita idento: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Via Plena Nomo (e.g. Joe Smith): "; -$a->strings["Your Email Address: "] = "Via Retpoŝtadreso: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@\$sitename'."; -$a->strings["Choose a nickname: "] = "Elektu kaŝnomon: "; -$a->strings["Register"] = "Registri"; -$a->strings["Import"] = ""; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["System down for maintenance"] = ""; -$a->strings["Search"] = "Serĉi"; -$a->strings["Global Directory"] = "Tutmonda Katalogo"; -$a->strings["Find on this site"] = "Trovi en ĉi retejo"; -$a->strings["Site Directory"] = "Reteja Katalogo"; -$a->strings["Age: "] = "Aĝo:"; -$a->strings["Gender: "] = "Sekso:"; -$a->strings["Gender:"] = "Sekso:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Hejmpaĝo:"; -$a->strings["About:"] = "Pri:"; -$a->strings["No entries (some entries may be hidden)."] = "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)."; -$a->strings["No potential page delegates located."] = "Ne trovis delegiteblajn paĝojn."; -$a->strings["Delegate Page Management"] = "Administrado de Delegitajn Paĝojn"; -$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."] = "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas."; -$a->strings["Existing Page Managers"] = "Estantaj Administrantoj de la Paĝo"; -$a->strings["Existing Page Delegates"] = "Estantaj Delegitoj de la Paĝo"; -$a->strings["Potential Delegates"] = "Eblaj Delegitoj"; -$a->strings["Add"] = "Aldoni"; -$a->strings["No entries."] = "Neniom da afiŝoj."; -$a->strings["Common Friends"] = "Komunaj Amikoj"; -$a->strings["No contacts in common."] = "Neniom da komunaj kontaktoj."; -$a->strings["Export 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."] = ""; -$a->strings["Export all"] = ""; -$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)"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Do you really want to delete this suggestion?"] = ""; -$a->strings["Friend Suggestions"] = "Amikosugestoj"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj."; -$a->strings["Ignore/Hide"] = "Ignori/Kaŝi"; -$a->strings["Profile deleted."] = "Profilo forviŝita."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Nova profilo kreita."; -$a->strings["Profile unavailable to clone."] = "Ne eblas kopii profilon."; -$a->strings["Profile Name is required."] = "Nomo de profilo estas bezonata."; -$a->strings["Marital Status"] = "Amrilata Stato"; -$a->strings["Romantic Partner"] = "Kora Partnero"; -$a->strings["Likes"] = "Ŝatoj"; -$a->strings["Dislikes"] = "Malŝatoj"; -$a->strings["Work/Employment"] = "Laboro"; -$a->strings["Religion"] = "Religio"; -$a->strings["Political Views"] = "Politikaj Opinioj"; -$a->strings["Gender"] = "Sekso"; -$a->strings["Sexual Preference"] = "Seksa Prefero"; -$a->strings["Homepage"] = "Hejmpaĝo"; -$a->strings["Interests"] = "Interesoj"; -$a->strings["Address"] = "Adreso"; -$a->strings["Location"] = "Loko"; -$a->strings["Profile updated."] = "Profilo ĝisdatigita."; -$a->strings[" and "] = " kaj "; -$a->strings["public profile"] = "publika profilo"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ŝanĝis %2\$s al “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Vizitu la %2\$s de %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s havas ĝisdatigigan %2\$s, ŝanĝas %3\$s."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?"; -$a->strings["Edit Profile Details"] = "Redakti Detalojn de Profilo"; -$a->strings["Change Profile Photo"] = ""; -$a->strings["View this profile"] = "Vidi la profilon."; -$a->strings["Create a new profile using these settings"] = "Krei novan profilon kun tiaj agordoj"; -$a->strings["Clone this profile"] = "Kopii ĉi tiun profilon"; -$a->strings["Delete this profile"] = "Forviŝi ĉi tiun profilon"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Nomo de Profilo:"; -$a->strings["Your Full Name:"] = "Via Plena Nomo:"; -$a->strings["Title/Description:"] = "Titolo/Priskribo:"; -$a->strings["Your Gender:"] = "Via Sekso:"; -$a->strings["Birthday (%s):"] = "Naskiĝtago (%s):"; -$a->strings["Street Address:"] = "Adreso:"; -$a->strings["Locality/City:"] = "Urbo:"; -$a->strings["Postal/Zip Code:"] = "Poŝtkodo:"; -$a->strings["Country:"] = "Lando:"; -$a->strings["Region/State:"] = "Ŝtato:"; -$a->strings[" Marital Status:"] = " Civita Stato:"; -$a->strings["Who: (if applicable)"] = "Kiu (se aplikeble):"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ekzemploj: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Ekde [dato]:"; -$a->strings["Sexual Preference:"] = "Seksa Prefero:"; -$a->strings["Homepage URL:"] = "Adreso de Hejmpaĝo:"; -$a->strings["Hometown:"] = "Hejmurbo:"; -$a->strings["Political Views:"] = "Politikaj Opinioj:"; -$a->strings["Religious Views:"] = "Religiaj Opinioj:"; -$a->strings["Public Keywords:"] = "Publikaj ŝlosilvortoj:"; -$a->strings["Private Keywords:"] = "Privataj ŝlosilvortoj:"; -$a->strings["Likes:"] = "Ŝatoj:"; -$a->strings["Dislikes:"] = "Malŝatoj:"; -$a->strings["Example: fishing photography software"] = "Ekzemple: fiŝkapti fotografio programaro"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Por sugesti amikoj. Videbla al aliaj.)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Por serĉi profilojn. Neniam videbla al aliaj.)"; -$a->strings["Tell us about yourself..."] = "Diru al ni pri vi..."; -$a->strings["Hobbies/Interests"] = "Ŝatokupoj/Interesoj"; -$a->strings["Contact information and Social Networks"] = "Kontaktaj informoj kaj Interkonaj Retejoj"; -$a->strings["Musical interests"] = "Muzikaj interesoj"; -$a->strings["Books, literature"] = "Libroj, literaturo"; -$a->strings["Television"] = "Televido"; -$a->strings["Film/dance/culture/entertainment"] = "Filmoj/dancoj/arto/amuzaĵoj"; -$a->strings["Love/romance"] = "Amo/romanco"; -$a->strings["Work/employment"] = "Laboro"; -$a->strings["School/education"] = "Lernejo/eduko"; -$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. "; -$a->strings["Edit/Manage Profiles"] = "Redakti/administri Profilojn"; -$a->strings["Change profile photo"] = "Ŝanĝi profilbildon"; -$a->strings["Create New Profile"] = "Krei novan profilon"; -$a->strings["Profile Image"] = "Profilbildo"; -$a->strings["visible to everybody"] = "videbla al ĉiuj"; -$a->strings["Edit visibility"] = "Redakti videblecon"; -$a->strings["Item not found"] = "Elemento ne trovita"; -$a->strings["Edit post"] = "Redakti afiŝon"; -$a->strings["upload photo"] = "alŝuti bildon"; -$a->strings["Attach file"] = "Kunligi dosieron"; -$a->strings["attach file"] = "kunsendi dosieron"; -$a->strings["web link"] = "TTT ligilo"; -$a->strings["Insert video link"] = "Alglui ligilon de video"; -$a->strings["video link"] = "video ligilo"; -$a->strings["Insert audio link"] = "Alglui ligilon de sono"; -$a->strings["audio link"] = "sono ligilo"; -$a->strings["Set your location"] = "Agordi vian lokon"; -$a->strings["set location"] = "agordi lokon"; -$a->strings["Clear browser location"] = "Forviŝu retesplorilan lokon"; -$a->strings["clear location"] = "forviŝi lokon"; -$a->strings["Permission settings"] = "Permesagordoj"; -$a->strings["CC: email addresses"] = "CC: retpoŝtadresojn"; -$a->strings["Public post"] = "Publika afiŝo"; -$a->strings["Set title"] = "Redakti titolon"; -$a->strings["Categories (comma-separated list)"] = "Kategorioj (disigita per komo)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Ekzemple: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Tio estas Friendica en la versio"; -$a->strings["running at web location"] = "instalita ĉe la adreso"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica"; -$a->strings["Bug reports and issues: please visit"] = "Cimraportoj kaj atendindaĵo: bonvolu iri al"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com"; -$a->strings["Installed plugins/addons/apps:"] = "Instalitaj kromprogramoj/programoj:"; -$a->strings["No installed plugins/addons/apps"] = "Neniom da instalitaj aldonaĵoj/programoj"; -$a->strings["Authorize application connection"] = "Rajtigi programkonekton"; -$a->strings["Return to your app and insert this Securty Code:"] = "Reiru al via programo kaj entajpu la securecan kodon:"; -$a->strings["Please login to continue."] = "Bonvolu ensaluti por pluigi."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"; -$a->strings["Remote privacy information not available."] = "Informoj pri fora privateca ne estas disponebla."; -$a->strings["Visible to:"] = "Videbla al:"; -$a->strings["Personal Notes"] = "Personaj Notoj"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Konverto de tempo"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj."; -$a->strings["UTC time: %s"] = "UTC horo: %s"; -$a->strings["Current timezone: %s"] = "Aktuala horzono: %s"; -$a->strings["Converted localtime: %s"] = "Konvertita loka horo: %s"; -$a->strings["Please select your timezone:"] = "Bonvolu elekti vian horzonon:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = "%s: Ne estas valida retpoŝtadreso."; -$a->strings["Please join us on Friendica"] = "Bonvolu aliĝi kun ni ĉe Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = "%s: La livero de la mesaĝo malsukcesis."; -$a->strings["%d message sent."] = array( - 0 => "Sendis %d mesaĝon.", - 1 => "Sendis %d mesaĝojn.", -); -$a->strings["You have no more invitations available"] = "Vi ne plu disponeblas invitaĵojn"; -$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."] = "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo."; -$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."] = "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn."; -$a->strings["Send invitations"] = "Sendi invitojn"; -$a->strings["Enter email addresses, one per line:"] = "Entajpu retpoŝtadresojn, po unu por ĉiu linio."; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vi bezonas ĉi-tiun invitkodon: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: "; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com"; -$a->strings["Photo Albums"] = "Bildalbumoj"; -$a->strings["Contact Photos"] = "Kontaktbildoj"; -$a->strings["Upload New Photos"] = "Alŝuti novajn bildojn"; -$a->strings["Contact information unavailable"] = "Kontaktoj informoj ne disponeblas"; -$a->strings["Album not found."] = "Albumo ne trovita."; -$a->strings["Delete Album"] = "Forviŝi albumon"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; -$a->strings["Delete Photo"] = "Forviŝi bildon"; -$a->strings["Do you really want to delete this photo?"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; -$a->strings["Image exceeds size limit of "] = "Bildo estas pli granda ol la limito de"; -$a->strings["Image file is empty."] = "Bilddosiero estas malplena."; -$a->strings["No photos selected"] = "Neniu bildoj elektita"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo."; -$a->strings["Upload Photos"] = "Alŝuti bildojn"; -$a->strings["New album name: "] = "Nomo por nova albumo:"; -$a->strings["or existing album name: "] = "aŭ nomo de estanta albumo:"; -$a->strings["Do not show a status post for this upload"] = "Ne kreu statan afiŝon por tio alŝuto."; -$a->strings["Permissions"] = "Permesoj"; -$a->strings["Private Photo"] = ""; -$a->strings["Public Photo"] = ""; -$a->strings["Edit Album"] = "Redakti albumon"; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; -$a->strings["View Photo"] = "Vidi bildon"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Malpermesita. Atingo al tio elemento eble estas limigita."; -$a->strings["Photo not available"] = "La bildo ne disponeblas"; -$a->strings["View photo"] = "Vidi bildon"; -$a->strings["Edit photo"] = "Redakti bildon"; -$a->strings["Use as profile photo"] = "Uzi kiel profilbildo"; -$a->strings["View Full Size"] = "Vidi plengrande "; -$a->strings["Tags: "] = "Markoj:"; -$a->strings["[Remove any tag]"] = "[Forviŝi iun markon]"; -$a->strings["Rotate CW (right)"] = "Turni horloĝdirekte (dekstren)"; -$a->strings["Rotate CCW (left)"] = "Turni kontraŭhorloĝdirekte (maldekstren)"; -$a->strings["New album name"] = "Nova nomo de albumo"; -$a->strings["Caption"] = "Apudskribo"; -$a->strings["Add a Tag"] = "Aldoni markon"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = ""; -$a->strings["Public photo"] = ""; -$a->strings["Share"] = "Kunhavigi"; -$a->strings["Recent Photos"] = "̂Ĵusaj bildoj"; -$a->strings["Account approved."] = "Konto aprobita."; -$a->strings["Registration revoked for %s"] = "Registraĵo por %s senvalidigita."; -$a->strings["Please login."] = "Bonvolu ensaluti."; -$a->strings["Move account"] = ""; -$a->strings["You can import an account from another Friendica server."] = ""; -$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."] = ""; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Item not available."] = "Elemento ne disponeblas."; -$a->strings["Item was not found."] = "Elemento ne trovita."; -$a->strings["Delete this item?"] = "Forviŝi ĉi tiun elementon?"; -$a->strings["show fewer"] = "montri malpli"; -$a->strings["Update %s failed. See error logs."] = "Malsukcesis ĝisdatigi %s. Vidu la protokolojn."; -$a->strings["Create a New Account"] = "Krei Novan Konton"; -$a->strings["Logout"] = "Elsaluti"; -$a->strings["Nickname or Email address: "] = "Kaŝnomo aŭ retpoŝtadreso:"; -$a->strings["Password: "] = "Pasvorto:"; -$a->strings["Remember me"] = ""; -$a->strings["Or login using OpenID: "] = "Aŭ ensaluti per OpenID:"; -$a->strings["Forgot your password?"] = "Ĉu vi vorgesis vian pasvorton?"; -$a->strings["Website Terms of Service"] = ""; -$a->strings["terms of service"] = ""; -$a->strings["Website Privacy Policy"] = ""; -$a->strings["privacy policy"] = ""; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Redakti profilon"; -$a->strings["Message"] = "Mesaĝo"; -$a->strings["Profiles"] = "Profiloj"; -$a->strings["Manage/edit profiles"] = "Administri/redakti profilojn"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[hodiaŭ]"; -$a->strings["Birthday Reminders"] = "Memorigilo pri naskiĝtagoj"; -$a->strings["Birthdays this week:"] = "Naskiĝtagoj ĉi-semajne:"; -$a->strings["[No description]"] = "[Neniu priskribo]"; -$a->strings["Event Reminders"] = "Memorigilo pri Okazoj"; -$a->strings["Events this week:"] = "Okazoj ĉi-semajne:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Ŝtatmesaĝoj kaj Afiŝoj"; -$a->strings["Profile Details"] = "Profildetaloj"; -$a->strings["Videos"] = ""; -$a->strings["Events and Calendar"] = "Okazoj kaj Kalendaro"; -$a->strings["Only You Can See This"] = "Nur Vi Povas Vidi Tiun"; -$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:"] = ""; -$a->strings["Filed under:"] = ""; -$a->strings["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."] = "Okazis eraroj dum la kreado de tabeloj en la datumbazo."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Elsalutita."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID."; -$a->strings["The error message was:"] = "La erarmesaĝo estis:"; $a->strings["Add New Contact"] = "Aldonu Novan Kontakton"; $a->strings["Enter address or web location"] = "Entajpu adreson aŭ retlokon"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ekzemple: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Konekti"; $a->strings["%d invitation available"] = array( 0 => "Disponeblas %d invito", 1 => "Disponeblas %d invitoj", @@ -1305,6 +17,8 @@ $a->strings["Find People"] = "Trovi Homojn"; $a->strings["Enter name or interest"] = "Entajpu nomon aŭ intereson"; $a->strings["Connect/Follow"] = "Konekti/Aboni"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Ekzemple: Robert Morgenstein, Fishing"; +$a->strings["Find"] = "Trovi"; +$a->strings["Friend Suggestions"] = "Amikosugestoj"; $a->strings["Similar Interests"] = "Similaj Interesoj"; $a->strings["Random Profile"] = "Hazarda Profilo"; $a->strings["Invite Friends"] = "Inviti amikojn"; @@ -1313,321 +27,13 @@ $a->strings["All Networks"] = "Ĉiuj Retoj"; $a->strings["Saved Folders"] = "Konservitaj Dosierujoj"; $a->strings["Everything"] = "Ĉio"; $a->strings["Categories"] = "Kategorioj"; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$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"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$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."] = "Ne ekzistas URL adreso por konekti."; -$a->strings["This site is not configured to allow communications with other networks."] = "Tiu retpaĝo ne permesas komunikadon kun aliaj retoj."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn."; -$a->strings["The profile address specified does not provide adequate information."] = "La specifita profiladreso ne enhavas sufiĉe da informoj."; -$a->strings["An author or name was not found."] = "Ne trovis aŭtoron aŭ nomon."; -$a->strings["No browser URL could be matched to this address."] = "Neniu retuma URL adreso kongruas al la adreso."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso."; -$a->strings["Use mailto: in front of address to force email check."] = "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. "; -$a->strings["Unable to retrieve contact information."] = "Ne eblas ricevi kontaktinformojn."; -$a->strings["following"] = "sekvanta"; -$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."] = "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo."; -$a->strings["Default privacy group for new contacts"] = "Defaŭlta privateca grupo por novaj kontaktoj"; -$a->strings["Everybody"] = "Ĉiuj"; -$a->strings["edit"] = "redakti"; -$a->strings["Edit group"] = "Redakti grupon"; -$a->strings["Create a new group"] = "Krei novan grupon"; -$a->strings["Contacts not in any group"] = "Kontaktoj en neniu grupo"; -$a->strings["Miscellaneous"] = "Diversaj"; -$a->strings["year"] = "jaro"; -$a->strings["month"] = "monato"; -$a->strings["day"] = "tago"; -$a->strings["never"] = "neniam"; -$a->strings["less than a second ago"] = "antaŭ malpli ol unu sekundo"; -$a->strings["years"] = "jaroj"; -$a->strings["months"] = "monatoj"; -$a->strings["week"] = "semajno"; -$a->strings["weeks"] = "semajnoj"; -$a->strings["days"] = "tagoj"; -$a->strings["hour"] = "horo"; -$a->strings["hours"] = "horoj"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minutoj"; -$a->strings["second"] = "sekundo"; -$a->strings["seconds"] = "sekundoj"; -$a->strings["%1\$d %2\$s ago"] = "antaŭ %1\$d %2\$s"; -$a->strings["%s's birthday"] = "Naskiĝtago de %s"; -$a->strings["Happy Birthday %s"] = "Feliĉan Naskiĝtagon al %s"; -$a->strings["Visible to everybody"] = "Videbla al ĉiuj"; -$a->strings["show"] = "montri"; -$a->strings["don't show"] = "kaŝi"; -$a->strings["[no subject]"] = "[neniu temo]"; -$a->strings["stopped following"] = "ne plu sekvas"; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = "Vidi Staton"; -$a->strings["View Profile"] = "Vidi Profilon"; -$a->strings["View Photos"] = "Vidi Bildojn"; -$a->strings["Network Posts"] = "Enretaj Afiŝoj"; -$a->strings["Edit Contact"] = "Redakti Kontakton"; -$a->strings["Drop Contact"] = ""; -$a->strings["Send PM"] = "Sendi PM"; -$a->strings["Welcome "] = "Bonvenon "; -$a->strings["Please upload a profile photo."] = "Bonvolu alŝuti profilbildon."; -$a->strings["Welcome back "] = "Bonvenon "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado."; -$a->strings["event"] = "okazo"; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["poked"] = ""; -$a->strings["post/item"] = "afiŝo/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markis la %3\$s de %2\$s kiel preferita."; -$a->strings["remove"] = "forviŝi"; -$a->strings["Delete Selected Items"] = "Forviŝi Elektitajn Elementojn"; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = "%s ŝatas tiun."; -$a->strings["%s doesn't like this."] = "%s malŝatas tiun."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["and"] = "kaj"; -$a->strings[", and %d other people"] = ", kaj %d aliaj homoj."; -$a->strings["%s like this."] = "%s ŝatas tiun."; -$a->strings["%s don't like this."] = "%s malŝatas tiun."; -$a->strings["Visible to everybody"] = "Videbla al ĉiuj"; -$a->strings["Please enter a video link/URL:"] = "Bonvolu entajpi ligilon/adreson de video:"; -$a->strings["Please enter an audio link/URL:"] = "Bonvolu entajpi ligilon/adreson de sono:"; -$a->strings["Tag term:"] = "Markfrazo:"; -$a->strings["Where are you right now?"] = "Kie vi estas nun?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["Post to Email"] = "Sendi per retpoŝto"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["permissions"] = "permesoj"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = ""; -$a->strings["view full size"] = "vidi plengrande"; -$a->strings["newer"] = "pli nova"; -$a->strings["older"] = "pli malnova"; -$a->strings["prev"] = "antaŭa"; -$a->strings["first"] = "unua"; -$a->strings["last"] = "lasta"; -$a->strings["next"] = "sekvanta"; -$a->strings["No contacts"] = "Neniu kontaktoj"; -$a->strings["%d Contact"] = array( - 0 => "%d Kontakto", - 1 => "%d Kontaktoj", +$a->strings["%d contact in common"] = array( + 0 => "%d komuna kontakto", + 1 => "%d komunaj kontaktoj", ); -$a->strings["poke"] = ""; -$a->strings["ping"] = ""; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = ""; -$a->strings["slapped"] = ""; -$a->strings["finger"] = ""; -$a->strings["fingered"] = ""; -$a->strings["rebuff"] = ""; -$a->strings["rebuffed"] = ""; -$a->strings["happy"] = ""; -$a->strings["sad"] = ""; -$a->strings["mellow"] = ""; -$a->strings["tired"] = ""; -$a->strings["perky"] = ""; -$a->strings["angry"] = ""; -$a->strings["stupified"] = ""; -$a->strings["puzzled"] = ""; -$a->strings["interested"] = ""; -$a->strings["bitter"] = ""; -$a->strings["cheerful"] = ""; -$a->strings["alive"] = ""; -$a->strings["annoyed"] = ""; -$a->strings["anxious"] = ""; -$a->strings["cranky"] = ""; -$a->strings["disturbed"] = ""; -$a->strings["frustrated"] = ""; -$a->strings["motivated"] = ""; -$a->strings["relaxed"] = ""; -$a->strings["surprised"] = ""; -$a->strings["Monday"] = "Lundo"; -$a->strings["Tuesday"] = "Mardo"; -$a->strings["Wednesday"] = "Merkredo"; -$a->strings["Thursday"] = "Ĵaŭdo"; -$a->strings["Friday"] = "Vendredo"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Sunday"] = "Dimanĉo"; -$a->strings["January"] = "Januaro"; -$a->strings["February"] = "Februaro"; -$a->strings["March"] = "Marto"; -$a->strings["April"] = "Aprilo"; -$a->strings["May"] = "Majo"; -$a->strings["June"] = "Junio"; -$a->strings["July"] = "Julio"; -$a->strings["August"] = "Aŭgusto"; -$a->strings["September"] = "Septembro"; -$a->strings["October"] = "Oktobro"; -$a->strings["November"] = "Novembro"; -$a->strings["December"] = "Decembro"; -$a->strings["bytes"] = "bajtoj"; -$a->strings["Click to open/close"] = "Klaku por malfermi/fermi"; -$a->strings["default"] = "defaŭlta"; -$a->strings["Select an alternate language"] = "Elekti alian lingvon"; -$a->strings["activity"] = "aktiveco"; -$a->strings["post"] = "afiŝo"; -$a->strings["Item filed"] = "Enarkivigis elementon "; -$a->strings["Image/photo"] = "Bildo"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 skribis:"; -$a->strings["Encrypted content"] = ""; -$a->strings["(no subject)"] = "(neniu temo)"; -$a->strings["noreply"] = "nerespondi"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Ne trovis DNS informojn por datumbaza servilo '%s'."; -$a->strings["Unknown | Not categorised"] = "Nekonata | Nekatorigita"; -$a->strings["Block immediately"] = "Bloki tuj"; -$a->strings["Shady, spammer, self-marketer"] = "Suspekta, spamisto, memmerkatisto"; -$a->strings["Known to me, but no opinion"] = "Konata al mi, sed mi ne havas opinion"; -$a->strings["OK, probably harmless"] = "OK, verŝajne sendanĝera"; -$a->strings["Reputable, has my trust"] = "Fidinda laŭ mi"; -$a->strings["Weekly"] = "Ĉiusemajne"; -$a->strings["Monthly"] = "Ĉiumonate"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Tujmesaĝilo"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = ""; -$a->strings["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; -$a->strings["App.net"] = ""; -$a->strings[" on Last.fm"] = " ĉe Last.fm"; -$a->strings["Starts:"] = "Ekas:"; -$a->strings["Finishes:"] = "Finas:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Naskiĝtago:"; -$a->strings["Age:"] = "Aĝo:"; -$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -$a->strings["Tags:"] = "Markoj:"; -$a->strings["Religion:"] = "Religio:"; -$a->strings["Hobbies/Interests:"] = "Ŝatokupoj/Interesoj:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformoj kaj Interkonaj Retejoj:"; -$a->strings["Musical interests:"] = "Muzaikaj interesoj:"; -$a->strings["Books, literature:"] = "Libroj, literaturo:"; -$a->strings["Television:"] = "Televido:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filmoj/dancoj/arto/amuzaĵoj:"; -$a->strings["Love/Romance:"] = "Amo/romanco:"; -$a->strings["Work/employment:"] = "Laboro:"; -$a->strings["School/education:"] = "Lernejo/eduko:"; -$a->strings["Click here to upgrade."] = "Klaku ĉi tie por ĝisdatigi."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Tia ago preterpasas la limojn de via abono."; -$a->strings["This action is not available under your subscription plan."] = "Tia ago ne estas permesita laŭ via abono."; -$a->strings["End this session"] = "Fini ĉi-tiun seancon"; -$a->strings["Your posts and conversations"] = "Viaj afiŝoj kaj komunikadoj"; -$a->strings["Your profile page"] = "Via profilo"; -$a->strings["Your photos"] = "Viaj bildoj"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Viaj okazoj"; -$a->strings["Personal notes"] = "Personaj notoj"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Ensaluti"; -$a->strings["Home Page"] = "Hejmpaĝo"; -$a->strings["Create an account"] = "Krei konton"; -$a->strings["Help and documentation"] = "Helpo kaj dokumentado"; -$a->strings["Apps"] = "Programoj"; -$a->strings["Addon applications, utilities, games"] = "Kromprogramoj, utilaĵoj, ludiloj"; -$a->strings["Search site content"] = "Serĉu la retejon"; -$a->strings["Conversations on this site"] = "Konversacioj je ĉi-tiu retejo"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Katalogo"; -$a->strings["People directory"] = "Katalogo de homoj"; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Konversacioj de viaj amikoj"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = "Kontaktpetoj"; -$a->strings["See all notifications"] = "Vidu ĉiujn atentigojn"; -$a->strings["Mark all system notifications seen"] = "Marki ĉiujn atentigojn legita"; -$a->strings["Private mail"] = "Privata poŝto"; -$a->strings["Inbox"] = "Enirkesto"; -$a->strings["Outbox"] = "Elirkesto"; -$a->strings["Manage"] = "Administri"; -$a->strings["Manage other pages"] = "Administri aliajn paĝojn"; -$a->strings["Account settings"] = "Konto"; -$a->strings["Manage/Edit Profiles"] = ""; -$a->strings["Manage/edit friends and contacts"] = "Administri/redakti amikojn kaj kontaktojn"; -$a->strings["Site setup and configuration"] = "Agordoj pri la retejo"; -$a->strings["Navigation"] = ""; -$a->strings["Site map"] = ""; -$a->strings["User not found."] = ""; -$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."] = ""; -$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."] = "Invio bezonata."; -$a->strings["Invitation could not be verified."] = "Ne povis kontroli la inviton."; -$a->strings["Invalid OpenID url"] = "Nevalida OpenID adreso"; -$a->strings["Please enter the required information."] = "Bonvolu entajpi la bezonatajn informojn."; -$a->strings["Please use a shorter name."] = "Bonvolu uzi pli mallongan nomon."; -$a->strings["Name too short."] = "Nomo estas tro mallonga."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Tio ŝajne ne estas via plena (persona, familia) nomo."; -$a->strings["Your email domain is not among those allowed on this site."] = "Via retpoŝtodomajno ne estas permesita ĉi tie."; -$a->strings["Not a valid email address."] = "Nevalida retpoŝtadreso."; -$a->strings["Cannot use that email."] = "Neuzebla retpoŝtadreso."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Via kaŝnomo nur povas enhavi \"a-z\", \"0-9\", \"-\", kaj \"_\". Ĝi ankaŭ devas komenci kun litero."; -$a->strings["Nickname is already registered. Please choose another."] = "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis."; -$a->strings["An error occurred during registration. Please try again."] = "Eraro okazis dum registrado. Bonvolu provi denove."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove."; -$a->strings["Friends"] = "Amikoj"; -$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"] = "Antentigo pri kunhavigado de la Diaspora reto"; -$a->strings["Attachments:"] = "Kunsendaĵoj:"; -$a->strings["Do you really want to delete this item?"] = ""; -$a->strings["Archives"] = "Arkivoj"; +$a->strings["show more"] = "montri pli"; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; $a->strings["Male"] = "Vira"; $a->strings["Female"] = "Ina"; $a->strings["Currently Male"] = "Nuntempe Vira"; @@ -1641,7 +47,10 @@ $a->strings["Hermaphrodite"] = "Hermafrodita"; $a->strings["Neuter"] = "Neŭtra"; $a->strings["Non-specific"] = "Nespecifa"; $a->strings["Other"] = "Alia"; -$a->strings["Undecided"] = "Nedecida"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); $a->strings["Males"] = "Viroj"; $a->strings["Females"] = "Inoj"; $a->strings["Gay"] = "Geja"; @@ -1664,6 +73,7 @@ $a->strings["Infatuated"] = "Blinda amo"; $a->strings["Dating"] = "Rendevuanta"; $a->strings["Unfaithful"] = "Malfidela"; $a->strings["Sex Addict"] = "Seksmaniulo"; +$a->strings["Friends"] = "Amikoj"; $a->strings["Friends/Benefits"] = "Amikoj/Avantaĝoj"; $a->strings["Casual"] = "Neformala"; $a->strings["Engaged"] = "Fianĉiginta"; @@ -1685,9 +95,113 @@ $a->strings["Uncertain"] = "Ne certa"; $a->strings["It's complicated"] = "Estas komplika"; $a->strings["Don't care"] = "Egala"; $a->strings["Ask me"] = "Demandu min"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Ne trovis DNS informojn por datumbaza servilo '%s'."; +$a->strings["Logged out."] = "Elsalutita."; +$a->strings["Login failed."] = "Ensalutado malsukcesis."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID."; +$a->strings["The error message was:"] = "La erarmesaĝo estis:"; +$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."] = "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo."; +$a->strings["Default privacy group for new contacts"] = "Defaŭlta privateca grupo por novaj kontaktoj"; +$a->strings["Everybody"] = "Ĉiuj"; +$a->strings["edit"] = "redakti"; +$a->strings["Groups"] = "Grupoj"; +$a->strings["Edit groups"] = ""; +$a->strings["Edit group"] = "Redakti grupon"; +$a->strings["Create a new group"] = "Krei novan grupon"; +$a->strings["Group Name: "] = "Nomo de la grupo:"; +$a->strings["Contacts not in any group"] = "Kontaktoj en neniu grupo"; +$a->strings["add"] = "aldoni"; +$a->strings["Unknown | Not categorised"] = "Nekonata | Nekatorigita"; +$a->strings["Block immediately"] = "Bloki tuj"; +$a->strings["Shady, spammer, self-marketer"] = "Suspekta, spamisto, memmerkatisto"; +$a->strings["Known to me, but no opinion"] = "Konata al mi, sed mi ne havas opinion"; +$a->strings["OK, probably harmless"] = "OK, verŝajne sendanĝera"; +$a->strings["Reputable, has my trust"] = "Fidinda laŭ mi"; +$a->strings["Frequently"] = "Ofte"; +$a->strings["Hourly"] = "Ĉiuhore"; +$a->strings["Twice daily"] = "Duope ĉiutage"; +$a->strings["Daily"] = "Ĉiutage"; +$a->strings["Weekly"] = "Ĉiusemajne"; +$a->strings["Monthly"] = "Ĉiumonate"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Retpoŝto"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Tujmesaĝilo"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = ""; +$a->strings["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$a->strings["Post to Email"] = "Sendi per retpoŝto"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?"; +$a->strings["Visible to everybody"] = "Videbla al ĉiuj"; +$a->strings["show"] = "montri"; +$a->strings["don't show"] = "kaŝi"; +$a->strings["CC: email addresses"] = "CC: retpoŝtadresojn"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Ekzemple: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permesoj"; +$a->strings["Close"] = "Fermi"; +$a->strings["photo"] = "bildo"; +$a->strings["status"] = "staton"; +$a->strings["event"] = "okazo"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s ŝatas la %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s malŝatas la %3\$s de %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[neniu temo]"; +$a->strings["Wall Photos"] = "Muraj Bildoj"; +$a->strings["Click here to upgrade."] = "Klaku ĉi tie por ĝisdatigi."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Tia ago preterpasas la limojn de via abono."; +$a->strings["This action is not available under your subscription plan."] = "Tia ago ne estas permesita laŭ via abono."; +$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!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Miscellaneous"] = "Diversaj"; +$a->strings["Birthday:"] = "Naskiĝtago:"; +$a->strings["Age: "] = "Aĝo:"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "neniam"; +$a->strings["less than a second ago"] = "antaŭ malpli ol unu sekundo"; +$a->strings["year"] = "jaro"; +$a->strings["years"] = "jaroj"; +$a->strings["month"] = "monato"; +$a->strings["months"] = "monatoj"; +$a->strings["week"] = "semajno"; +$a->strings["weeks"] = "semajnoj"; +$a->strings["day"] = "tago"; +$a->strings["days"] = "tagoj"; +$a->strings["hour"] = "horo"; +$a->strings["hours"] = "horoj"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutoj"; +$a->strings["second"] = "sekundo"; +$a->strings["seconds"] = "sekundoj"; +$a->strings["%1\$d %2\$s ago"] = "antaŭ %1\$d %2\$s"; +$a->strings["%s's birthday"] = "Naskiĝtago de %s"; +$a->strings["Happy Birthday %s"] = "Feliĉan Naskiĝtagon al %s"; $a->strings["Friendica Notification"] = "Friendica Atentigo"; $a->strings["Thank You,"] = "Dankon,"; $a->strings["%s Administrator"] = "%s Administranto"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$a->strings["noreply"] = "nerespondi"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sendis al vi novan privatan mesaĝon ĉe %2\$s."; @@ -1731,63 +245,1791 @@ $a->strings["Name:"] = "Nomo:"; $a->strings["Photo:"] = "Bildo:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston."; $a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["'%1\$s' has accepted 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["You are now mutual friends and may exchange status updates, photos, and email without 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["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; $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"] = "Enigita enhavo"; -$a->strings["Embedding disabled"] = "Malŝaltita enigitado"; -$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!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Ekas:"; +$a->strings["Finishes:"] = "Finas:"; +$a->strings["Location:"] = "Loko:"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Dimanĉo"; +$a->strings["Monday"] = "Lundo"; +$a->strings["Tuesday"] = "Mardo"; +$a->strings["Wednesday"] = "Merkredo"; +$a->strings["Thursday"] = "Ĵaŭdo"; +$a->strings["Friday"] = "Vendredo"; +$a->strings["Saturday"] = "Sabato"; +$a->strings["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Majo"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "Januaro"; +$a->strings["February"] = "Februaro"; +$a->strings["March"] = "Marto"; +$a->strings["April"] = "Aprilo"; +$a->strings["June"] = "Junio"; +$a->strings["July"] = "Julio"; +$a->strings["August"] = "Aŭgusto"; +$a->strings["September"] = "Septembro"; +$a->strings["October"] = "Oktobro"; +$a->strings["November"] = "Novembro"; +$a->strings["December"] = "Decembro"; +$a->strings["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Redakti okazon"; +$a->strings["link to source"] = "ligilo al fonto"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Estas neniu nova ĉi tie"; +$a->strings["Clear notifications"] = ""; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Elsaluti"; +$a->strings["End this session"] = "Fini ĉi-tiun seancon"; +$a->strings["Status"] = "Stato"; +$a->strings["Your posts and conversations"] = "Viaj afiŝoj kaj komunikadoj"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Your profile page"] = "Via profilo"; +$a->strings["Photos"] = "Bildoj"; +$a->strings["Your photos"] = "Viaj bildoj"; +$a->strings["Videos"] = ""; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = "Okazoj"; +$a->strings["Your events"] = "Viaj okazoj"; +$a->strings["Personal notes"] = "Personaj notoj"; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Ensaluti"; +$a->strings["Sign in"] = "Ensaluti"; +$a->strings["Home"] = "Hejmo"; +$a->strings["Home Page"] = "Hejmpaĝo"; +$a->strings["Register"] = "Registri"; +$a->strings["Create an account"] = "Krei konton"; +$a->strings["Help"] = "Helpo"; +$a->strings["Help and documentation"] = "Helpo kaj dokumentado"; +$a->strings["Apps"] = "Programoj"; +$a->strings["Addon applications, utilities, games"] = "Kromprogramoj, utilaĵoj, ludiloj"; +$a->strings["Search"] = "Serĉi"; +$a->strings["Search site content"] = "Serĉu la retejon"; +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Kontaktoj"; +$a->strings["Community"] = "Komunumo"; +$a->strings["Conversations on this site"] = "Konversacioj je ĉi-tiu retejo"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = "Okazoj kaj Kalendaro"; +$a->strings["Directory"] = "Katalogo"; +$a->strings["People directory"] = "Katalogo de homoj"; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Reto"; +$a->strings["Conversations from your friends"] = "Konversacioj de viaj amikoj"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Prezentoj"; +$a->strings["Friend Requests"] = "Kontaktpetoj"; +$a->strings["Notifications"] = "Atentigoj"; +$a->strings["See all notifications"] = "Vidu ĉiujn atentigojn"; +$a->strings["Mark as seen"] = "Marki kiel legita"; +$a->strings["Mark all system notifications seen"] = "Marki ĉiujn atentigojn legita"; +$a->strings["Messages"] = "Mesaĝoj"; +$a->strings["Private mail"] = "Privata poŝto"; +$a->strings["Inbox"] = "Enirkesto"; +$a->strings["Outbox"] = "Elirkesto"; +$a->strings["New Message"] = "Nova Mesaĝo"; +$a->strings["Manage"] = "Administri"; +$a->strings["Manage other pages"] = "Administri aliajn paĝojn"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = "Administrado de Delegitajn Paĝojn"; +$a->strings["Settings"] = "Agordoj"; +$a->strings["Account settings"] = "Konto"; +$a->strings["Profiles"] = "Profiloj"; +$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/edit friends and contacts"] = "Administri/redakti amikojn kaj kontaktojn"; +$a->strings["Admin"] = "Administrado"; +$a->strings["Site setup and configuration"] = "Agordoj pri la retejo"; +$a->strings["Navigation"] = ""; +$a->strings["Site map"] = ""; +$a->strings["Contact Photos"] = "Kontaktbildoj"; +$a->strings["Welcome "] = "Bonvenon "; +$a->strings["Please upload a profile photo."] = "Bonvolu alŝuti profilbildon."; +$a->strings["Welcome back "] = "Bonvenon "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado."; +$a->strings["System"] = "Sistemo"; +$a->strings["Personal"] = "Propra"; +$a->strings["%s commented on %s's post"] = "%s komentis pri la afiŝo de %s"; +$a->strings["%s created a new post"] = "%s kreis novan afiŝon"; +$a->strings["%s liked %s's post"] = "%s ŝatis la afiŝon de %s"; +$a->strings["%s disliked %s's post"] = "%s malŝatis la afiŝon de %s"; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s amikiĝis kun %s"; +$a->strings["Friend Suggestion"] = "Amikosugestoj"; +$a->strings["Friend/Connect Request"] = "Kontaktpeto"; +$a->strings["New Follower"] = "Nova abonanto"; +$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."] = "Okazis eraroj dum la kreado de tabeloj en la datumbazo."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(neniu temo)"; +$a->strings["Sharing notification from Diaspora network"] = "Antentigo pri kunhavigado de la Diaspora reto"; +$a->strings["Attachments:"] = "Kunsendaĵoj:"; +$a->strings["view full size"] = "vidi plengrande"; +$a->strings["View Profile"] = "Vidi Profilon"; +$a->strings["View Status"] = "Vidi Staton"; +$a->strings["View Photos"] = "Vidi Bildojn"; +$a->strings["Network Posts"] = "Enretaj Afiŝoj"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = ""; +$a->strings["Send PM"] = "Sendi PM"; +$a->strings["Poke"] = ""; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = ""; +$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["Image/photo"] = "Bildo"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 skribis:"; +$a->strings["Encrypted content"] = ""; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s amikiĝis kun %2\$s"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s markis la %3\$s de %2\$s kun %4\$s"; +$a->strings["post/item"] = "afiŝo/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markis la %3\$s de %2\$s kiel preferita."; +$a->strings["Likes"] = "Ŝatoj"; +$a->strings["Dislikes"] = "Malŝatoj"; +$a->strings["Attending"] = array( 0 => "", 1 => "", ); -$a->strings["Done. You can now login with your username and password"] = ""; -$a->strings["toggle mobile"] = ""; +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Select"] = "Elekti"; +$a->strings["Delete"] = "Forviŝi"; +$a->strings["View %s's profile @ %s"] = "Vidi la profilon de %s ĉe %s"; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["View in context"] = "Vidi kun kunteksto"; +$a->strings["Please wait"] = "Bonvolu atendi"; +$a->strings["remove"] = "forviŝi"; +$a->strings["Delete Selected Items"] = "Forviŝi Elektitajn Elementojn"; +$a->strings["Follow Thread"] = ""; +$a->strings["%s likes this."] = "%s ŝatas tiun."; +$a->strings["%s doesn't like this."] = "%s malŝatas tiun."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "kaj"; +$a->strings[", and %d other people"] = ", kaj %d aliaj homoj."; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Videbla al ĉiuj"; +$a->strings["Please enter a link URL:"] = "Bonvolu entajpu adreson de ligilo:"; +$a->strings["Please enter a video link/URL:"] = "Bonvolu entajpi ligilon/adreson de video:"; +$a->strings["Please enter an audio link/URL:"] = "Bonvolu entajpi ligilon/adreson de sono:"; +$a->strings["Tag term:"] = "Markfrazo:"; +$a->strings["Save to Folder:"] = "Konservi en Dosierujo:"; +$a->strings["Where are you right now?"] = "Kie vi estas nun?"; +$a->strings["Delete item(s)?"] = ""; +$a->strings["Share"] = "Kunhavigi"; +$a->strings["Upload photo"] = "Alŝuti bildon"; +$a->strings["upload photo"] = "alŝuti bildon"; +$a->strings["Attach file"] = "Kunligi dosieron"; +$a->strings["attach file"] = "kunsendi dosieron"; +$a->strings["Insert web link"] = "Enmeti retan adreson"; +$a->strings["web link"] = "TTT ligilo"; +$a->strings["Insert video link"] = "Alglui ligilon de video"; +$a->strings["video link"] = "video ligilo"; +$a->strings["Insert audio link"] = "Alglui ligilon de sono"; +$a->strings["audio link"] = "sono ligilo"; +$a->strings["Set your location"] = "Agordi vian lokon"; +$a->strings["set location"] = "agordi lokon"; +$a->strings["Clear browser location"] = "Forviŝu retesplorilan lokon"; +$a->strings["clear location"] = "forviŝi lokon"; +$a->strings["Set title"] = "Redakti titolon"; +$a->strings["Categories (comma-separated list)"] = "Kategorioj (disigita per komo)"; +$a->strings["Permission settings"] = "Permesagordoj"; +$a->strings["permissions"] = "permesoj"; +$a->strings["Public post"] = "Publika afiŝo"; +$a->strings["Preview"] = "Antaŭrigardi"; +$a->strings["Cancel"] = "Nuligi"; +$a->strings["Post to Groups"] = ""; +$a->strings["Post to Contacts"] = ""; +$a->strings["Private post"] = ""; +$a->strings["Message"] = "Mesaĝo"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Konservitaj Serĉadoj"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Malpermesita adreso de profilo."; +$a->strings["Connect URL missing."] = "Ne ekzistas URL adreso por konekti."; +$a->strings["This site is not configured to allow communications with other networks."] = "Tiu retpaĝo ne permesas komunikadon kun aliaj retoj."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn."; +$a->strings["The profile address specified does not provide adequate information."] = "La specifita profiladreso ne enhavas sufiĉe da informoj."; +$a->strings["An author or name was not found."] = "Ne trovis aŭtoron aŭ nomon."; +$a->strings["No browser URL could be matched to this address."] = "Neniu retuma URL adreso kongruas al la adreso."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso."; +$a->strings["Use mailto: in front of address to force email check."] = "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. "; +$a->strings["Unable to retrieve contact information."] = "Ne eblas ricevi kontaktinformojn."; +$a->strings["Requested account is not available."] = ""; +$a->strings["Requested profile is not available."] = "La petita profilo ne disponeblas."; +$a->strings["Edit profile"] = "Redakti profilon"; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = "Administri/redakti profilojn"; +$a->strings["Change profile photo"] = "Ŝanĝi profilbildon"; +$a->strings["Create New Profile"] = "Krei novan profilon"; +$a->strings["Profile Image"] = "Profilbildo"; +$a->strings["visible to everybody"] = "videbla al ĉiuj"; +$a->strings["Edit visibility"] = "Redakti videblecon"; +$a->strings["Gender:"] = "Sekso:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Hejmpaĝo:"; +$a->strings["About:"] = "Pri:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hodiaŭ]"; +$a->strings["Birthday Reminders"] = "Memorigilo pri naskiĝtagoj"; +$a->strings["Birthdays this week:"] = "Naskiĝtagoj ĉi-semajne:"; +$a->strings["[No description]"] = "[Neniu priskribo]"; +$a->strings["Event Reminders"] = "Memorigilo pri Okazoj"; +$a->strings["Events this week:"] = "Okazoj ĉi-semajne:"; +$a->strings["Full Name:"] = "Plena Nomo:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Aĝo:"; +$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksa Prefero:"; +$a->strings["Hometown:"] = "Hejmurbo:"; +$a->strings["Tags:"] = "Markoj:"; +$a->strings["Political Views:"] = "Politikaj Opinioj:"; +$a->strings["Religion:"] = "Religio:"; +$a->strings["Hobbies/Interests:"] = "Ŝatokupoj/Interesoj:"; +$a->strings["Likes:"] = "Ŝatoj:"; +$a->strings["Dislikes:"] = "Malŝatoj:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformoj kaj Interkonaj Retejoj:"; +$a->strings["Musical interests:"] = "Muzaikaj interesoj:"; +$a->strings["Books, literature:"] = "Libroj, literaturo:"; +$a->strings["Television:"] = "Televido:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filmoj/dancoj/arto/amuzaĵoj:"; +$a->strings["Love/Romance:"] = "Amo/romanco:"; +$a->strings["Work/employment:"] = "Laboro:"; +$a->strings["School/education:"] = "Lernejo/eduko:"; +$a->strings["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Altnivela"; +$a->strings["Status Messages and Posts"] = "Ŝtatmesaĝoj kaj Afiŝoj"; +$a->strings["Profile Details"] = "Profildetaloj"; +$a->strings["Photo Albums"] = "Bildalbumoj"; +$a->strings["Personal Notes"] = "Personaj Notoj"; +$a->strings["Only You Can See This"] = "Nur Vi Povas Vidi Tiun"; +$a->strings["[Name Withheld]"] = "[Kaŝita nomo]"; +$a->strings["Item not found."] = "Elemento ne estas trovita."; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Yes"] = "Jes"; +$a->strings["Permission denied."] = "Malpermesita."; +$a->strings["Archives"] = "Arkivoj"; +$a->strings["Embedded content"] = "Enigita enhavo"; +$a->strings["Embedding disabled"] = "Malŝaltita enigitado"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "sekvanta"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "ne plu sekvas"; +$a->strings["newer"] = "pli nova"; +$a->strings["older"] = "pli malnova"; +$a->strings["prev"] = "antaŭa"; +$a->strings["first"] = "unua"; +$a->strings["last"] = "lasta"; +$a->strings["next"] = "sekvanta"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Neniu kontaktoj"; +$a->strings["%d Contact"] = array( + 0 => "%d Kontakto", + 1 => "%d Kontaktoj", +); +$a->strings["View Contacts"] = "Vidi Kontaktojn"; +$a->strings["Save"] = "Konservi"; +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; +$a->strings["View Video"] = ""; +$a->strings["bytes"] = "bajtoj"; +$a->strings["Click to open/close"] = "Klaku por malfermi/fermi"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "aktiveco"; +$a->strings["comment"] = array( + 0 => "", + 1 => "komento", +); +$a->strings["post"] = "afiŝo"; +$a->strings["Item filed"] = "Enarkivigis elementon "; +$a->strings["Passwords do not match. Password unchanged."] = "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita."; +$a->strings["An invitation is required."] = "Invio bezonata."; +$a->strings["Invitation could not be verified."] = "Ne povis kontroli la inviton."; +$a->strings["Invalid OpenID url"] = "Nevalida OpenID adreso"; +$a->strings["Please enter the required information."] = "Bonvolu entajpi la bezonatajn informojn."; +$a->strings["Please use a shorter name."] = "Bonvolu uzi pli mallongan nomon."; +$a->strings["Name too short."] = "Nomo estas tro mallonga."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Tio ŝajne ne estas via plena (persona, familia) nomo."; +$a->strings["Your email domain is not among those allowed on this site."] = "Via retpoŝtodomajno ne estas permesita ĉi tie."; +$a->strings["Not a valid email address."] = "Nevalida retpoŝtadreso."; +$a->strings["Cannot use that email."] = "Neuzebla retpoŝtadreso."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis."; +$a->strings["An error occurred during registration. Please try again."] = "Eraro okazis dum registrado. Bonvolu provi denove."; +$a->strings["default"] = "defaŭlta"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove."; +$a->strings["Profile Photos"] = "Profilbildoj"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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"] = "Detaloj de la registrado por %s"; +$a->strings["Post successful."] = "Sukcese afiŝita."; +$a->strings["Access denied."] = "Atingo nepermesita."; +$a->strings["Welcome to %s"] = "Bonvenon ĉe %s"; +$a->strings["No more system notifications."] = "Ne pli da sistemaj atentigoj."; +$a->strings["System Notifications"] = "Sistemaj Atentigoj"; +$a->strings["Remove term"] = "Forviŝu terminon"; +$a->strings["Public access denied."] = "Publika atingo ne permesita."; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Nenion trovita."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$a->strings["This is Friendica, version"] = "Tio estas Friendica en la versio"; +$a->strings["running at web location"] = "instalita ĉe la adreso"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica"; +$a->strings["Bug reports and issues: please visit"] = "Cimraportoj kaj atendindaĵo: bonvolu iri al"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com"; +$a->strings["Installed plugins/addons/apps:"] = "Instalitaj kromprogramoj/programoj:"; +$a->strings["No installed plugins/addons/apps"] = "Neniom da instalitaj aldonaĵoj/programoj"; +$a->strings["No valid account found."] = "Ne trovis validan konton."; +$a->strings["Password reset request issued. Check your email."] = "Eldonis riparadon de pasvorto. Legu vian retpoŝton."; +$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"] = "Pasvorta riparado petita je %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis."; +$a->strings["Password Reset"] = "Pasvorta riparado"; +$a->strings["Your password has been reset as requested."] = "Via pasvorto estis riparita laŭ via peto."; +$a->strings["Your new password is"] = "Via nova pasvorto estas"; +$a->strings["Save or copy your new password - and then"] = "Memorigi vian novan pasvorton - kaj poste"; +$a->strings["click here to login"] = "klaku ĉi tie por ensaluti"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis."; +$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"] = ""; +$a->strings["Forgot your Password?"] = "Ĉu vi forgesis vian pasvorton?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn."; +$a->strings["Nickname or Email: "] = "Salutnomo aŭ retpoŝtadreso: "; +$a->strings["Reset"] = "Repari"; +$a->strings["No profile"] = "Neniu profilo"; +$a->strings["Help:"] = "Helpo:"; +$a->strings["Not Found"] = "Ne trovita"; +$a->strings["Page not found."] = "Paĝo ne trovita"; +$a->strings["Remote privacy information not available."] = "Informoj pri fora privateca ne estas disponebla."; +$a->strings["Visible to:"] = "Videbla al:"; +$a->strings["OpenID protocol error. No ID returned."] = "Eraro en OpenID protokolo. Ne resendis identecon."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ."; +$a->strings["Import"] = ""; +$a->strings["Move account"] = ""; +$a->strings["You can import an account from another Friendica server."] = ""; +$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."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Visit %s's profile [%s]"] = "Viziti la profilon de %s [%s]"; +$a->strings["Edit contact"] = "Redakti kontakton"; +$a->strings["Contacts who are not members of a group"] = "Kontaktoj kiuj ne estas en iu grupo"; +$a->strings["Export 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."] = ""; +$a->strings["Export all"] = ""; +$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)"] = ""; +$a->strings["Export personal data"] = "Eksporto"; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s: Ne estas valida retpoŝtadreso."; +$a->strings["Please join us on Friendica"] = "Bonvolu aliĝi kun ni ĉe Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s: La livero de la mesaĝo malsukcesis."; +$a->strings["%d message sent."] = array( + 0 => "Sendis %d mesaĝon.", + 1 => "Sendis %d mesaĝojn.", +); +$a->strings["You have no more invitations available"] = "Vi ne plu disponeblas invitaĵojn"; +$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."] = "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo."; +$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."] = "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn."; +$a->strings["Send invitations"] = "Sendi invitojn"; +$a->strings["Enter email addresses, one per line:"] = "Entajpu retpoŝtadresojn, po unu por ĉiu linio."; +$a->strings["Your message:"] = "Via mesaĝo:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vi bezonas ĉi-tiun invitkodon: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: "; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com"; +$a->strings["Submit"] = "Sendi"; +$a->strings["Files"] = "Dosieroj"; +$a->strings["Permission denied"] = "Malpermesita"; +$a->strings["Invalid profile identifier."] = "Nevaliada profila identigilo."; +$a->strings["Profile Visibility Editor"] = "Redaktilo por profila videbleco."; +$a->strings["Click on a contact to add or remove."] = "Klaku kontakton por aldoni aŭ forviŝi."; +$a->strings["Visible To"] = "Videbla Al"; +$a->strings["All Contacts (with secure profile access)"] = "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)"; +$a->strings["Tag removed"] = "Marko forviŝita"; +$a->strings["Remove Item Tag"] = "Forviŝi markon"; +$a->strings["Select a tag to remove: "] = "Elektu forviŝontan markon:"; +$a->strings["Remove"] = "Forviŝi"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = "Ne trovis delegiteblajn paĝojn."; +$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."] = "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas."; +$a->strings["Existing Page Managers"] = "Estantaj Administrantoj de la Paĝo"; +$a->strings["Existing Page Delegates"] = "Estantaj Delegitoj de la Paĝo"; +$a->strings["Potential Delegates"] = "Eblaj Delegitoj"; +$a->strings["Add"] = "Aldoni"; +$a->strings["No entries."] = "Neniom da afiŝoj."; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- elekti -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = "Elemento ne disponeblas."; +$a->strings["Item was not found."] = "Elemento ne trovita."; +$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["Applications"] = "Programoj"; +$a->strings["No installed applications."] = "Neniom da instalitaj programoj."; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = "Bonvenon ĉe Friendica"; +$a->strings["New Member Checklist"] = "Kontrololisto por Novaj Membroj"; +$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."] = "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. "; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$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."] = ""; +$a->strings["Go to Your Settings"] = ""; +$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."] = "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto."; +$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."] = "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin."; +$a->strings["Upload Profile Photo"] = "Alŝuti profilbildon"; +$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."] = "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo."; +$a->strings["Edit Your Profile"] = ""; +$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."] = "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj."; +$a->strings["Profile Keywords"] = ""; +$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."] = "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn."; +$a->strings["Connecting"] = ""; +$a->strings["Importing Emails"] = ""; +$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"] = "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto."; +$a->strings["Go to Your Contacts Page"] = ""; +$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."] = "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon."; +$a->strings["Go to Your Site's Directory"] = ""; +$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."] = "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin."; +$a->strings["Finding New People"] = ""; +$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."] = "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj."; +$a->strings["Group Your 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."] = "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo."; +$a->strings["Why Aren't My Posts Public?"] = ""; +$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."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj."; +$a->strings["Remove My Account"] = "Forigi Mian Konton"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla."; +$a->strings["Please enter your password for verification:"] = "Bonvolu entajpi vian pasvorton por kontrolado:"; +$a->strings["Item not found"] = "Elemento ne trovita"; +$a->strings["Edit post"] = "Redakti afiŝon"; +$a->strings["Time Conversion"] = "Konverto de tempo"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj."; +$a->strings["UTC time: %s"] = "UTC horo: %s"; +$a->strings["Current timezone: %s"] = "Aktuala horzono: %s"; +$a->strings["Converted localtime: %s"] = "Konvertita loka horo: %s"; +$a->strings["Please select your timezone:"] = "Bonvolu elekti vian horzonon:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Grupo estas kreita."; +$a->strings["Could not create group."] = "Ne povas krei grupon."; +$a->strings["Group not found."] = "Grupo ne estas trovita."; +$a->strings["Group name changed."] = "La nomo de la grupo estas ŝanĝita."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Krei grupon da kontaktoj/amikoj."; +$a->strings["Group removed."] = "Grupo estas forviŝita."; +$a->strings["Unable to remove group."] = "Ne eblas forviŝi grupon."; +$a->strings["Group Editor"] = "Grupa redaktilo"; +$a->strings["Members"] = "Anoj"; +$a->strings["All Contacts"] = "Ĉiuj Kontaktoj"; +$a->strings["Group is empty"] = "Grupo estas malplena"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis."; +$a->strings["No recipient selected."] = "Neniom da ricevontoj."; +$a->strings["Unable to check your home location."] = "Ne eblas kontroli vian hejmlokon."; +$a->strings["Message could not be sent."] = "Ne povas sendi la mesaĝon."; +$a->strings["Message collection failure."] = "Malsukcese provis kolekti mesaĝojn."; +$a->strings["Message sent."] = "Mesaĝo estas sendita."; +$a->strings["No recipient."] = "Neniom da ricevontoj."; +$a->strings["Send Private Message"] = "Sendi Privatan Mesaĝon"; +$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 vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj."; +$a->strings["To:"] = "Al:"; +$a->strings["Subject:"] = "Temo:"; +$a->strings["link"] = "ligilo"; +$a->strings["Authorize application connection"] = "Rajtigi programkonekton"; +$a->strings["Return to your app and insert this Securty Code:"] = "Reiru al via programo kaj entajpu la securecan kodon:"; +$a->strings["Please login to continue."] = "Bonvolu ensaluti por pluigi."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"; +$a->strings["No"] = "Ne"; +$a->strings["Source (bbcode) text:"] = "Fontkodo (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fontokodo (Diaspora) konvertota al BBcode:"; +$a->strings["Source input: "] = "Fontoenigo:"; +$a->strings["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): "] = "Fontoenigo (Diaspora formato):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Unable to locate contact information."] = "Ne eblas trovi kontaktajn informojn."; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = "Mesaĝo estas forviŝita."; +$a->strings["Conversation removed."] = "Dialogo estas forviŝita."; +$a->strings["No messages."] = "Neniom da mesaĝoj."; +$a->strings["Message not available."] = "Mesaĝo nedisponebla."; +$a->strings["Delete message"] = "Forviŝu mesaĝon"; +$a->strings["Delete conversation"] = "Forviŝi dialogon"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto."; +$a->strings["Send Reply"] = "Respondi"; +$a->strings["Unknown sender - %s"] = "Nekonata sendanto - %s"; +$a->strings["You and %s"] = "Vi kaj %s"; +$a->strings["%s and You"] = "%s kaj vi"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mesaĝo", + 1 => "%d mesaĝoj", +); +$a->strings["Manage Identities and/or Pages"] = "Administri identecojn kaj/aŭ paĝojn."; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn."; +$a->strings["Select an identity to manage: "] = "Elektu identencon por administrado:"; +$a->strings["Contact settings applied."] = "Kontaktagordoj estas konservita."; +$a->strings["Contact update failed."] = "Ĝisdatigo de kontakto malsukcesis."; +$a->strings["Contact not found."] = "Kontakto ne trovita."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = "Reen al kontakta redaktilo"; +$a->strings["Refetch contact data"] = ""; +$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["Name"] = "Nomo"; +$a->strings["Account Nickname"] = "Kaŝnomo de la konto"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Marknomo - Transpasas nomon/kaŝnomon"; +$a->strings["Account URL"] = "Adreso de la konto"; +$a->strings["Friend Request URL"] = "Kontaktpeta adreso"; +$a->strings["Friend Confirm URL"] = "Kontaktkonfirma adreso"; +$a->strings["Notification Endpoint URL"] = "Finpunkta adreso por atentigoj"; +$a->strings["Poll/Feed URL"] = "Adreso de fluo"; +$a->strings["New photo from this URL"] = "Nova bildo el tiu adreso"; +$a->strings["No such group"] = "Grupo ne estas trovita"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = ""; +$a->strings["%d comment"] = array( + 0 => "%d komento", + 1 => "%d komentoj", +); +$a->strings["Private Message"] = "Privata mesaĝo"; +$a->strings["I like this (toggle)"] = "Mi ŝatas tion (ŝalti)"; +$a->strings["like"] = "ŝati"; +$a->strings["I don't like this (toggle)"] = "Mi malŝatas tion(ŝalti)"; +$a->strings["dislike"] = "malŝati"; +$a->strings["Share this"] = "Kunhavigi ĉi tiun"; +$a->strings["share"] = "kunhavigi"; +$a->strings["This is you"] = "Tiu estas vi"; +$a->strings["Comment"] = "Komenti"; +$a->strings["Bold"] = "Grasa"; +$a->strings["Italic"] = "Kursiva"; +$a->strings["Underline"] = "Substreki"; +$a->strings["Quote"] = "Citaĵo"; +$a->strings["Code"] = "Kodo"; +$a->strings["Image"] = "Bildo"; +$a->strings["Link"] = "Ligilo"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Redakti"; +$a->strings["add star"] = "aldoni stelon"; +$a->strings["remove star"] = "forpreni stelon"; +$a->strings["toggle star status"] = "ŝalti/malŝalti steloŝtato"; +$a->strings["starred"] = "steligita"; +$a->strings["add tag"] = "aldoni markon"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "konservi en dosierujo"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "al"; +$a->strings["Wall-to-Wall"] = "Muro-al-Muro"; +$a->strings["via Wall-To-Wall:"] = "per Muro-al-Muro:"; +$a->strings["Friend suggestion sent."] = "Amikosugesto sendita."; +$a->strings["Suggest Friends"] = "Sugesti amikojn"; +$a->strings["Suggest a friend for %s"] = "Sugesti amikon por %s"; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Image uploaded but image cropping failed."] = "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon."; +$a->strings["Image size reduction [%s] failed."] = "Malsukcesis malpligrandigi [%s] la bildon."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas."; +$a->strings["Unable to process image"] = "Ne eblas procezi bildon."; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Ne eblas procedi la bildon."; +$a->strings["Upload File:"] = "Alŝuti dosieron:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "Alŝuti"; +$a->strings["or"] = "aŭ"; +$a->strings["skip this step"] = "Preterpasi tian paŝon"; +$a->strings["select a photo from your photo albums"] = "elekti bildon el viaj albumoj"; +$a->strings["Crop Image"] = "Stuci Bildon"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Bonvolu agordi la stuco de la bildo por optimuma aspekto."; +$a->strings["Done Editing"] = "Finigi Redaktado"; +$a->strings["Image uploaded successfully."] = "Bildo estas sukcese enŝutita."; +$a->strings["Image upload failed."] = "Alŝuto de bildo malsukcesis."; +$a->strings["Account approved."] = "Konto aprobita."; +$a->strings["Registration revoked for %s"] = "Registraĵo por %s senvalidigita."; +$a->strings["Please login."] = "Bonvolu ensaluti."; +$a->strings["Invalid request identifier."] = "Nevalida peta identigilo."; +$a->strings["Discard"] = "Forviŝi"; +$a->strings["Ignore"] = "Ignori"; +$a->strings["Network Notifications"] = "Retaj Atentigoj"; +$a->strings["Personal Notifications"] = "Personaj Atentigoj"; +$a->strings["Home Notifications"] = "Hejmrilataj atentigoj"; +$a->strings["Show Ignored Requests"] = "Montri ignoritajn petojn"; +$a->strings["Hide Ignored Requests"] = "Kaŝi ignoritajn petojn"; +$a->strings["Notification type: "] = "Tipo de atentigo:"; +$a->strings["suggested by %s"] = "sugestita de %s"; +$a->strings["Hide this contact from others"] = "Kaŝi ĉi tiun kontakton al aliaj"; +$a->strings["Post a new friend activity"] = "Afiŝi novan amikecan aktivecon"; +$a->strings["if applicable"] = "se aplikebla"; +$a->strings["Approve"] = "Aprobi"; +$a->strings["Claims to be known to you: "] = "Pensas ke vi konas ilin:"; +$a->strings["yes"] = "jes"; +$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"] = "Amiko"; +$a->strings["Sharer"] = "Kunhaviganto"; +$a->strings["Fan/Admirer"] = "Fanatikulo/Admiranto"; +$a->strings["Profile URL"] = ""; +$a->strings["No introductions."] = "Neniom da prezentoj"; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Profilo ne trovita."; +$a->strings["Profile deleted."] = "Profilo forviŝita."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Nova profilo kreita."; +$a->strings["Profile unavailable to clone."] = "Ne eblas kopii profilon."; +$a->strings["Profile Name is required."] = "Nomo de profilo estas bezonata."; +$a->strings["Marital Status"] = "Amrilata Stato"; +$a->strings["Romantic Partner"] = "Kora Partnero"; +$a->strings["Work/Employment"] = "Laboro"; +$a->strings["Religion"] = "Religio"; +$a->strings["Political Views"] = "Politikaj Opinioj"; +$a->strings["Gender"] = "Sekso"; +$a->strings["Sexual Preference"] = "Seksa Prefero"; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = "Hejmpaĝo"; +$a->strings["Interests"] = "Interesoj"; +$a->strings["Address"] = "Adreso"; +$a->strings["Location"] = "Loko"; +$a->strings["Profile updated."] = "Profilo ĝisdatigita."; +$a->strings[" and "] = " kaj "; +$a->strings["public profile"] = "publika profilo"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ŝanĝis %2\$s al “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Vizitu la %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s havas ĝisdatigigan %2\$s, ŝanĝas %3\$s."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Redakti Detalojn de Profilo"; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = "Vidi la profilon."; +$a->strings["Create a new profile using these settings"] = "Krei novan profilon kun tiaj agordoj"; +$a->strings["Clone this profile"] = "Kopii ĉi tiun profilon"; +$a->strings["Delete this profile"] = "Forviŝi ĉi tiun profilon"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Via Sekso:"; +$a->strings[" Marital Status:"] = " Civita Stato:"; +$a->strings["Example: fishing photography software"] = "Ekzemple: fiŝkapti fotografio programaro"; +$a->strings["Profile Name:"] = "Nomo de Profilo:"; +$a->strings["Required"] = "Bezonata"; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. "; +$a->strings["Your Full Name:"] = "Via Plena Nomo:"; +$a->strings["Title/Description:"] = "Titolo/Priskribo:"; +$a->strings["Street Address:"] = "Adreso:"; +$a->strings["Locality/City:"] = "Urbo:"; +$a->strings["Region/State:"] = "Ŝtato:"; +$a->strings["Postal/Zip Code:"] = "Poŝtkodo:"; +$a->strings["Country:"] = "Lando:"; +$a->strings["Who: (if applicable)"] = "Kiu (se aplikeble):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ekzemploj: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Ekde [dato]:"; +$a->strings["Tell us about yourself..."] = "Diru al ni pri vi..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Adreso de Hejmpaĝo:"; +$a->strings["Religious Views:"] = "Religiaj Opinioj:"; +$a->strings["Public Keywords:"] = "Publikaj ŝlosilvortoj:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Por sugesti amikoj. Videbla al aliaj.)"; +$a->strings["Private Keywords:"] = "Privataj ŝlosilvortoj:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Por serĉi profilojn. Neniam videbla al aliaj.)"; +$a->strings["Musical interests"] = "Muzikaj interesoj"; +$a->strings["Books, literature"] = "Libroj, literaturo"; +$a->strings["Television"] = "Televido"; +$a->strings["Film/dance/culture/entertainment"] = "Filmoj/dancoj/arto/amuzaĵoj"; +$a->strings["Hobbies/Interests"] = "Ŝatokupoj/Interesoj"; +$a->strings["Love/romance"] = "Amo/romanco"; +$a->strings["Work/employment"] = "Laboro"; +$a->strings["School/education"] = "Lernejo/eduko"; +$a->strings["Contact information and Social Networks"] = "Kontaktaj informoj kaj Interkonaj Retejoj"; +$a->strings["Edit/Manage Profiles"] = "Redakti/administri Profilojn"; +$a->strings["No friends to display."] = "Neniom da amiko al montri."; +$a->strings["Access to this profile has been restricted."] = "Atingo al ĉi tio profilo estas limitigita"; +$a->strings["View"] = ""; +$a->strings["Previous"] = "antaŭa"; +$a->strings["Next"] = "sekva"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Neniom da komunaj kontaktoj."; +$a->strings["Common Friends"] = "Komunaj Amikoj"; +$a->strings["Not available."] = "Ne disponebla."; +$a->strings["Global Directory"] = "Tutmonda Katalogo"; +$a->strings["Find on this site"] = "Trovi en ĉi retejo"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Reteja Katalogo"; +$a->strings["No entries (some entries may be hidden)."] = "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)."; +$a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; +$a->strings["No matches"] = "Nenio estas trovita"; +$a->strings["Item has been removed."] = "Elemento estas forviŝita."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Titolo kaj starttempo estas bezonataj por la okazo."; +$a->strings["Create New Event"] = "Krei novan okazon"; +$a->strings["Event details"] = "Detaloj de okazo"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Okazo startas:"; +$a->strings["Finish date/time is not known or not relevant"] = "Fina dato/tempo ne estas konata aŭ ne bezonata"; +$a->strings["Event Finishes:"] = "Okazo finas:"; +$a->strings["Adjust for viewer timezone"] = "Agordi al horzono de la leganto"; +$a->strings["Description:"] = "Priskribo"; +$a->strings["Title:"] = "Titolo:"; +$a->strings["Share this event"] = "Kunhavigi la okazon"; +$a->strings["System down for maintenance"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo."; +$a->strings["is interested in:"] = "interesiĝas pri:"; +$a->strings["Profile Match"] = "Kongrua profilo"; +$a->strings["Tips for New Members"] = "Konsilo por novaj membroj"; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj."; +$a->strings["Ignore/Hide"] = "Ignori/Kaŝi"; +$a->strings["[Embedded content - reload page to view]"] = "[Enigita enhavo - reŝargu paĝon por spekti ĝin]"; +$a->strings["Recent Photos"] = "̂Ĵusaj bildoj"; +$a->strings["Upload New Photos"] = "Alŝuti novajn bildojn"; +$a->strings["everybody"] = "ĉiuj"; +$a->strings["Contact information unavailable"] = "Kontaktoj informoj ne disponeblas"; +$a->strings["Album not found."] = "Albumo ne trovita."; +$a->strings["Delete Album"] = "Forviŝi albumon"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Delete Photo"] = "Forviŝi bildon"; +$a->strings["Do you really want to delete this photo?"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = ""; +$a->strings["Image file is empty."] = "Bilddosiero estas malplena."; +$a->strings["No photos selected"] = "Neniu bildoj elektita"; +$a->strings["Access to this item is restricted."] = "Atingo al tio elemento estas limigita."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo."; +$a->strings["Upload Photos"] = "Alŝuti bildojn"; +$a->strings["New album name: "] = "Nomo por nova albumo:"; +$a->strings["or existing album name: "] = "aŭ nomo de estanta albumo:"; +$a->strings["Do not show a status post for this upload"] = "Ne kreu statan afiŝon por tio alŝuto."; +$a->strings["Show to Groups"] = ""; +$a->strings["Show to Contacts"] = ""; +$a->strings["Private Photo"] = ""; +$a->strings["Public Photo"] = ""; +$a->strings["Edit Album"] = "Redakti albumon"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = "Vidi bildon"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Malpermesita. Atingo al tio elemento eble estas limigita."; +$a->strings["Photo not available"] = "La bildo ne disponeblas"; +$a->strings["View photo"] = "Vidi bildon"; +$a->strings["Edit photo"] = "Redakti bildon"; +$a->strings["Use as profile photo"] = "Uzi kiel profilbildo"; +$a->strings["View Full Size"] = "Vidi plengrande "; +$a->strings["Tags: "] = "Markoj:"; +$a->strings["[Remove any tag]"] = "[Forviŝi iun markon]"; +$a->strings["New album name"] = "Nova nomo de albumo"; +$a->strings["Caption"] = "Apudskribo"; +$a->strings["Add a Tag"] = "Aldoni markon"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Turni horloĝdirekte (dekstren)"; +$a->strings["Rotate CCW (left)"] = "Turni kontraŭhorloĝdirekte (maldekstren)"; +$a->strings["Private photo"] = ""; +$a->strings["Public photo"] = ""; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Vidi albumon"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Mi ne povas prilabori vian registradon."; +$a->strings["Your registration is pending approval by the site owner."] = "Via registrado bezonas apropbon de la administranto."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vi ankaŭ (nedeviga) povas plenigi la formularon per OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn."; +$a->strings["Your OpenID (optional): "] = "Via OpenID (nedeviga):"; +$a->strings["Include your profile in member directory?"] = "Aldoni vian profilon al la membrokatalogo?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Membriĝi ĉi tie nur eblas laŭ invito."; +$a->strings["Your invitation ID: "] = "Via invita idento: "; +$a->strings["Registration"] = "Registrado"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Via Retpoŝtadreso: "; +$a->strings["New Password:"] = "Nova pasvorto:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Konfirmi:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@\$sitename'."; +$a->strings["Choose a nickname: "] = "Elektu kaŝnomon: "; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Account"] = "Konto"; +$a->strings["Additional features"] = ""; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Plugins"] = "Kromprogramoj"; +$a->strings["Connected apps"] = "Konektitaj programoj"; +$a->strings["Remove account"] = "Forigi konton"; +$a->strings["Missing some important data!"] = "Mankas importantaj datumoj!"; +$a->strings["Update"] = "Ĝisdatigi"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj."; +$a->strings["Email settings updated."] = "Retpoŝtagordoj ĝisdatigita"; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita."; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = "Pasvorto ŝanĝita."; +$a->strings["Password update failed. Please try again."] = "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje."; +$a->strings[" Please use a shorter name."] = " Bonvolu uzi pli mallongan nomon."; +$a->strings[" Name too short."] = " Nomo estas tro mallonga."; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = " Repoŝtadreso ne validas."; +$a->strings[" Cannot change to that email."] = " Ne povas ŝanĝi al tio retpoŝtadreso."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon."; +$a->strings["Settings updated."] = "Agordoj ĝisdatigita."; +$a->strings["Add application"] = "Aldoni programon"; +$a->strings["Save Settings"] = ""; +$a->strings["Consumer Key"] = "Ŝlosilo de kliento"; +$a->strings["Consumer Secret"] = "Sekreto de kliento"; +$a->strings["Redirect"] = "Alidirekto"; +$a->strings["Icon url"] = "Piktograma adreso"; +$a->strings["You can't edit this application."] = "Ĉi tio programo ne estas redaktebla."; +$a->strings["Connected Apps"] = "Konektitaj Programoj"; +$a->strings["Client key starts with"] = "Ŝlosilo de kliento komencas kun"; +$a->strings["No name"] = "Neniu nomo"; +$a->strings["Remove authorization"] = "Forviŝi rajtigon"; +$a->strings["No Plugin settings configured"] = "Neniom da kromprogramoagordoj farita"; +$a->strings["Plugin Settings"] = "Kromprogramoagordoj"; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Integrita subteno por %s koneto estas %s"; +$a->strings["enabled"] = "ŝaltita"; +$a->strings["disabled"] = "malŝaltita"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "Retpoŝta atingo ne disponeblas ĉi tie."; +$a->strings["Email/Mailbox Setup"] = "Agordoj pri Retpoŝto"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton."; +$a->strings["Last successful email check:"] = "Plej ĵusa sukcesa kontrolo de poŝto:"; +$a->strings["IMAP server name:"] = "Nomo de IMAP servilo:"; +$a->strings["IMAP port:"] = "Numero de IMAP pordo:"; +$a->strings["Security:"] = "Sekureco:"; +$a->strings["None"] = "Nenio"; +$a->strings["Email login name:"] = "Retpoŝta salutnomo:"; +$a->strings["Email password:"] = "Retpoŝta pasvorto:"; +$a->strings["Reply-to address:"] = "Responda adreso (Reply-to):"; +$a->strings["Send public posts to all email contacts:"] = "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:"; +$a->strings["Action after import:"] = "Ago post la importado:"; +$a->strings["Move to folder"] = "Movi al dosierujo"; +$a->strings["Move to folder:"] = "Movi al dosierujo:"; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = "Ekranagordoj"; +$a->strings["Display Theme:"] = "Vidiga etoso:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Maksimume 100 eroj"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Ne montru ridetulojn"; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; $a->strings["Theme settings"] = "Agordoj pri la etoso"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Agordi la regrandignivelo por bildoj en afiŝoj kaj komentoj (larĝo kaj alto)"; -$a->strings["Set font-size for posts and comments"] = "Agordi la tiparan grandon por afiŝoj kaj komentoj"; -$a->strings["Set theme width"] = "Agordi la larĝo por la etoso"; -$a->strings["Color scheme"] = "Kolorskemo"; -$a->strings["Set line-height for posts and comments"] = "Agordi la linigrandon por afiŝoj kaj komentoj"; -$a->strings["Set colour scheme"] = "Agordi Kolorskemon"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = "Normala Kontopaĝo"; +$a->strings["This account is a normal personal profile"] = "Tiu konto estas normala persona profilo"; +$a->strings["Soapbox Page"] = "Soapbox Paĝo"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = "Aŭtomata Amiko Paĝo"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj"; +$a->strings["Private Forum [Experimental]"] = "Privata Forumo [eksperimenta]"; +$a->strings["Private forum - approved members only"] = "Privata forumo - nur por aprobitaj membroj"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Publikigi vian defaŭltan profilon en la loka reteja katalogo?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?"; +$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?"] = "Ĉu amikoj povu afiŝi al via profilo?"; +$a->strings["Allow friends to tag your posts?"] = "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permesigi nekonatulojn sendi retpoŝton al vi?"; +$a->strings["Profile is not published."] = "Profilo ne estas publika."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Automatike senvalidigi afiŝojn post tiom da tagoj:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata"; +$a->strings["Advanced expiration settings"] = "Detalaj agordoj rilate al senvalidiĝo"; +$a->strings["Advanced Expiration"] = "Detala senvalidiĝo"; +$a->strings["Expire posts:"] = "Senvalidigi afiŝojn:"; +$a->strings["Expire personal notes:"] = "Senvalidigi personajn notojn:"; +$a->strings["Expire starred posts:"] = "Senvalidigi steligitajn afiŝojn:"; +$a->strings["Expire photos:"] = "Senvalidigi bildojn:"; +$a->strings["Only expire posts by others:"] = "Nur senvalidigi afiŝojn de aliaj: "; +$a->strings["Account Settings"] = "Kontoagordoj"; +$a->strings["Password Settings"] = "Agordoj pri Pasvorto"; +$a->strings["Leave password fields blank unless changing"] = "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton."; +$a->strings["Current Password:"] = ""; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Bazaj Agordoj"; +$a->strings["Email Address:"] = "Retpoŝtadreso:"; +$a->strings["Your Timezone:"] = "Via Horzono:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Defaŭlta Loko por Afiŝoj:"; +$a->strings["Use Browser Location:"] = "Uzu Lokon laŭ Retesplorilo:"; +$a->strings["Security and Privacy Settings"] = "Agordoj pri Sekureco kaj Privateco"; +$a->strings["Maximum Friend Requests/Day:"] = "Taga maksimumo da kontaktpetoj:"; +$a->strings["(to prevent spam abuse)"] = "(por malhelpi spamaĵojn)"; +$a->strings["Default Post Permissions"] = "Defaŭltaj permesoj por afiŝoj"; +$a->strings["(click to open/close)"] = "(klaku por malfermi/fermi)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = "Taga maksimumo da privataj mesaĝoj."; +$a->strings["Notification Settings"] = "Agordoj pri Atentigoj"; +$a->strings["By default post a status message when:"] = "Defaŭlte afiŝi statmesaĝon okaze de:"; +$a->strings["accepting a friend request"] = "akcepti kontaktpeton"; +$a->strings["joining a forum/community"] = "aliĝi forumon/komunumon"; +$a->strings["making an interesting profile change"] = "fari interesan profilŝanĝon"; +$a->strings["Send a notification email when:"] = "Sendu atentiga repoŝton se:"; +$a->strings["You receive an introduction"] = "Vi ricevas inviton"; +$a->strings["Your introductions are confirmed"] = "Viaj prezentoj estas konfirmata."; +$a->strings["Someone writes on your profile wall"] = "Iu skribas je via profila muro."; +$a->strings["Someone writes a followup comment"] = "Iu skribas sekvan komenton"; +$a->strings["You receive a private message"] = "Vi ricevas privatan mesaĝon."; +$a->strings["You receive a friend suggestion"] = "Vi ricevas amikosugeston"; +$a->strings["You are tagged in a post"] = "Vi estas markita en afiŝon"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Detalaj Agordoj pri Tipo de Konto/Paĝo."; +$a->strings["Change the behaviour of this account for special situations"] = "Agordi la teniĝon de la konto en specialaj situacioj"; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = ""; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Invalid request."] = ""; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Alŝutado malsukcesis."; +$a->strings["Theme settings updated."] = "Gisdatigis agordojn pri etosoj."; +$a->strings["Site"] = "Retejo"; +$a->strings["Users"] = "Uzantoj"; +$a->strings["Themes"] = "Etosoj"; +$a->strings["DB updates"] = "DB ĝisdatigoj"; +$a->strings["Inspect Queue"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = "Protokoloj"; +$a->strings["View Logs"] = ""; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = "Kromprogramaj Trajtoj"; +$a->strings["diagnostics"] = ""; +$a->strings["User registrations waiting for confirmation"] = "Uzantaj registradoj atendante konfirmon"; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Administration"] = "Administrado"; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Normala konto"; +$a->strings["Soapbox Account"] = "Soapbox Konto"; +$a->strings["Community/Celebrity Account"] = "Komunuma/eminentula Konto"; +$a->strings["Automatic Friend Account"] = "Aŭtomata Amika Konto"; +$a->strings["Blog Account"] = "Blogkonto"; +$a->strings["Private Forum"] = "Privata Forumo"; +$a->strings["Message queues"] = "Mesaĝvicoj"; +$a->strings["Summary"] = "Resumo"; +$a->strings["Registered users"] = "Registrataj uzantoj"; +$a->strings["Pending registrations"] = "Okazontaj registradoj"; +$a->strings["Version"] = "Versio"; +$a->strings["Active plugins"] = "Ŝaltitaj kromprogramoj"; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["Site settings updated."] = "Ĝisdatigis retejaj agordoj."; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["Never"] = "Neniam"; +$a->strings["At post arrival"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = ""; +$a->strings["Three months"] = ""; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = ""; +$a->strings["Multi user instance"] = ""; +$a->strings["Closed"] = "Ferma"; +$a->strings["Requires approval"] = "Bezonas aprobon"; +$a->strings["Open"] = "Malferma"; +$a->strings["No SSL policy, links will track page SSL state"] = "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo."; +$a->strings["Force all links to use SSL"] = "Devigi ke ĉiuj ligiloj uzu SSL."; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)"; +$a->strings["File upload"] = "Alŝuto"; +$a->strings["Policies"] = "Politiko"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = ""; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "Nomo de retejo"; +$a->strings["Host name"] = ""; +$a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = "Emblemo"; +$a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = "Sistema lingvo"; +$a->strings["System theme"] = "Sistema etoso"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj"; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = "Strategio por SSL ligiloj"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Difinas ĉu generotaj ligiloj devige uzu 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["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = ""; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; +$a->strings["Single user instance"] = ""; +$a->strings["Make this instance multi-user or single-user for the named user"] = ""; +$a->strings["Maximum image size"] = "Maksimuma bildgrando"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito."; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = "Interkonsento pri registrado"; +$a->strings["Maximum Daily Registrations"] = ""; +$a->strings["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."] = ""; +$a->strings["Register text"] = "Interkonsento teksto"; +$a->strings["Will be displayed prominently on the registration page."] = "Tio estos eminente montrata en la registro paĝo."; +$a->strings["Accounts abandoned after x days"] = "Kontoj forlasitaj post x tagoj"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo."; +$a->strings["Allowed friend domains"] = "Permesitaj amikaj domainoj"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."; +$a->strings["Allowed email domains"] = "Permesitaj retpoŝtaj domajnoj"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."; +$a->strings["Block public"] = "Bloki publike"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita."; +$a->strings["Force publish"] = "Devigi publikigon"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo."; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["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."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["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."] = ""; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["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."] = ""; +$a->strings["Block multiple registrations"] = "Bloki pluroblajn registradojn."; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj."; +$a->strings["OpenID support"] = "Subteno por OpenID"; +$a->strings["OpenID support for registration and logins."] = "Subteni OpenID por registrado kaj ensaluto."; +$a->strings["Fullname check"] = "Kontroli plenan nomon"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo."; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 regulaj exprimoj"; +$a->strings["Use PHP UTF8 regular expressions"] = "Uzi PHP UTF8 regulajn esprimojn."; +$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["Enable OStatus support"] = "Ŝalti subtenon por 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."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = "Ŝalti subtenon por Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Provizi integritan Diaspora subtenon."; +$a->strings["Only allow Friendica contacts"] = "Nur permesigi Friendica kontaktojn"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita."; +$a->strings["Verify SSL"] = "Kontroli SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj."; +$a->strings["Proxy user"] = "Uzantnomo por retperanto"; +$a->strings["Proxy URL"] = "URL adreso de retperanto"; +$a->strings["Network timeout"] = "Reta tempolimo"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)."; +$a->strings["Delivery interval"] = "Intervalo de liverado"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj."; +$a->strings["Poll interval"] = "Enketintervalo"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon."; +$a->strings["Maximum Load Average"] = "Maksimuma Meza Sistemŝargo"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Use MySQL full text engine"] = ""; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; +$a->strings["Suppress Language"] = ""; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = ""; +$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."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Path for lock file"] = ""; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; +$a->strings["Temp path"] = ""; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$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["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = "Ĝisdatigo estas markita sukcesa"; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = "Sukcese aplikis la ĝisdatigo %s."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Ĝisdatigo %s ne liveris elirstaton. "; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "Neniom da malsukcesaj ĝisdatigoj."; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = "Malsukcesaj Ĝisdatigoj"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton."; +$a->strings["Mark success (if update was manually applied)"] = "Marki sukcesa (se la ĝisdatigo estas instalita mane)"; +$a->strings["Attempt to execute this update step automatically"] = "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo."; +$a->strings["\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["%s user blocked/unblocked"] = array( + 0 => "Blokis/malblokis %s uzanton", + 1 => "Blokis/malblokis %s uzantojn", +); +$a->strings["%s user deleted"] = array( + 0 => "%s uzanto forviŝita", + 1 => "%s uzanto forviŝitaj", +); +$a->strings["User '%s' deleted"] = "Uzanto '%s' forviŝita"; +$a->strings["User '%s' unblocked"] = "Uzanto '%s' malblokita"; +$a->strings["User '%s' blocked"] = "Uzanto '%s' blokita"; +$a->strings["Register date"] = "Dato de registrado"; +$a->strings["Last login"] = "Plej ĵusa ensaluto"; +$a->strings["Last item"] = "Plej ĵusa elemento"; +$a->strings["Add User"] = ""; +$a->strings["select all"] = "elekti ĉiujn"; +$a->strings["User registrations waiting for confirm"] = "Registriĝoj atendante aprobon"; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = "Dato de peto"; +$a->strings["No registrations."] = "Neniom da registriĝoj."; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = "Negi"; +$a->strings["Block"] = "Bloki"; +$a->strings["Unblock"] = "Malbloki"; +$a->strings["Site admin"] = ""; +$a->strings["Account expired"] = ""; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"; +$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?"] = "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = "Kromprogramo %s estas malŝaltita."; +$a->strings["Plugin %s enabled."] = "Kromprogramo %s estas ŝaltita."; +$a->strings["Disable"] = "Malŝalti"; +$a->strings["Enable"] = "Ŝalti"; +$a->strings["Toggle"] = "Ŝalti/Malŝalti"; +$a->strings["Author: "] = "Aŭtoro: "; +$a->strings["Maintainer: "] = "Prizorganto: "; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = "Ne trovis etosojn."; +$a->strings["Screenshot"] = "Ekrankopio"; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = "[Eksperimenta]"; +$a->strings["[Unsupported]"] = "[Nesubtenata]"; +$a->strings["Log settings updated."] = "Protokolagordoj ĝisdatigitaj."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = "Forviŝi"; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = "Protokolo"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo."; +$a->strings["Log level"] = "Protokolnivelo"; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", +); +$a->strings["Could not access contact record."] = "Ne eblis atingi kontaktrikordo."; +$a->strings["Could not locate selected profile."] = "Ne trovis elektitan profilon."; +$a->strings["Contact updated."] = "Kontakto estas ĝisdatigita."; +$a->strings["Failed to update contact record."] = "Ĝisdatigo de via kontaktrikordo malsukcesis."; +$a->strings["Contact has been blocked"] = "Kontakto estas blokita."; +$a->strings["Contact has been unblocked"] = "Kontakto estas malblokita."; +$a->strings["Contact has been ignored"] = "Kontakto estas ignorita."; +$a->strings["Contact has been unignored"] = "Kontakto estas malignorita."; +$a->strings["Contact has been archived"] = "Enarkivigis kontakton"; +$a->strings["Contact has been unarchived"] = "Elarkivigis kontakton"; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Contact has been removed."] = "Kontakto estas forigita."; +$a->strings["You are mutual friends with %s"] = "Vi estas reciproka amiko de %s"; +$a->strings["You are sharing with %s"] = "Vi kunhavigas kun %s"; +$a->strings["%s is sharing with you"] = "%s kunhavigas kun vi"; +$a->strings["Private communications are not available for this contact."] = "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto."; +$a->strings["(Update was successful)"] = "(Ĝisdatigo sukcesis.)"; +$a->strings["(Update was not successful)"] = "(Ĝisdatigo malsukcesis.)"; +$a->strings["Suggest friends"] = "Sugesti amikojn"; +$a->strings["Network type: %s"] = "Reta tipo: %s"; +$a->strings["Communications lost with this contact!"] = "Mi perdis la kommunikadon kun tiu kontakto!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Videbleco de profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon."; +$a->strings["Contact Information / Notes"] = "Kontaktaj informoj / Notoj"; +$a->strings["Edit contact notes"] = "Redakti kontaktnotojn"; +$a->strings["Block/Unblock contact"] = "Bloki/Malbloki kontakton"; +$a->strings["Ignore contact"] = "Ignori kontakton"; +$a->strings["Repair URL settings"] = "Ripari URL agordoj"; +$a->strings["View conversations"] = "Vidi konversaciojn"; +$a->strings["Last update:"] = "Plej ĵusa ĝisdatigo:"; +$a->strings["Update public posts"] = "Ĝisdatigi publikajn afiŝojn"; +$a->strings["Update now"] = "Ĝisdatigi nun"; +$a->strings["Unignore"] = "Malignori"; +$a->strings["Currently blocked"] = "Nuntempe blokata"; +$a->strings["Currently ignored"] = "Nuntempe ignorata"; +$a->strings["Currently archived"] = "Nuntempe enarkivigita"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Sugestoj"; +$a->strings["Suggest potential friends"] = "Sugesti amikojn"; +$a->strings["Show all contacts"] = "Montri ĉiujn kontaktojn"; +$a->strings["Unblocked"] = "Malblokita"; +$a->strings["Only show unblocked contacts"] = "Nur montri neblokitajn kontaktojn"; +$a->strings["Blocked"] = "Blokita"; +$a->strings["Only show blocked contacts"] = "Nur montri blokitajn kontaktojn"; +$a->strings["Ignored"] = "Ignorita"; +$a->strings["Only show ignored contacts"] = "Nur montri ignoritajn kontaktojn"; +$a->strings["Archived"] = "Enarkivigita"; +$a->strings["Only show archived contacts"] = "Nur montri enarkivigitajn kontaktojn"; +$a->strings["Hidden"] = "Kaŝita"; +$a->strings["Only show hidden contacts"] = "Nur montri kaŝitajn kontaktojn"; +$a->strings["Search your contacts"] = "Serĉi viajn kontaktojn"; +$a->strings["Archive"] = "Enarkivigi"; +$a->strings["Unarchive"] = "Elarkivigi"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Vidi ĉiujn kontaktojn"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Specialaj Kontaktagordoj"; +$a->strings["Mutual Friendship"] = "Reciproka amikeco"; +$a->strings["is a fan of yours"] = "estas admiranto de vi"; +$a->strings["you are a fan of"] = "vi estas admiranto de"; +$a->strings["Toggle Blocked status"] = "Ŝalti/malŝalti Blokitan staton"; +$a->strings["Toggle Ignored status"] = "Ŝalti/malŝalti Ignoritan staton"; +$a->strings["Toggle Archive status"] = "Ŝalti/malŝalti Enarkivigitan staton"; +$a->strings["Delete contact"] = "Forviŝi kontakton"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita."; +$a->strings["Response from remote site was not understood."] = "Ne komprenis la rispondon de la fora retejo."; +$a->strings["Unexpected response from remote site: "] = "Neatendita rispondo de la fora retejo:"; +$a->strings["Confirmation completed successfully."] = "Konfirmo sukcese kompletigita."; +$a->strings["Remote site reported: "] = "La fora retejo raportis:"; +$a->strings["Temporary failure. Please wait and try again."] = "Dumtempa eraro. Bonvolu atendi kaj provi refoje."; +$a->strings["Introduction failed or was revoked."] = "La prezento malsukcesis au estas revokita."; +$a->strings["Unable to set contact photo."] = "Neeblas agordi la kontaktbildo."; +$a->strings["No user record found for '%s' "] = "Ne trovis uzanton '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson."; +$a->strings["Contact record was not found for you on our site."] = "Kontakto ne trovita por vi en via retejo."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje."; +$a->strings["Unable to set your contact credentials on our system."] = "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo."; +$a->strings["Unable to update your contact profile details on our system"] = "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo."; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s aliĝis al %2\$s"; +$a->strings["This introduction has already been accepted."] = "Tia prezento jam estas akceptita"; +$a->strings["Profile location is not valid or does not contain profile information."] = "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Averto: La adreso de la profilo ne enhavas identeblan personan nomon."; +$a->strings["Warning: profile location has no profile photo."] = "Averto: La adreso de la profilo ne enhavas bildon."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d bezonataj parametroj ne trovita ĉe la donata adreso.", + 1 => "%d bezonataj parametroj ne trovita ĉe la donata adreso.", +); +$a->strings["Introduction complete."] = "Prezento sukcesis."; +$a->strings["Unrecoverable protocol error."] = "Neĝustigebla eraro en protokolo."; +$a->strings["Profile unavailable."] = "Profilo ne estas disponebla."; +$a->strings["%s has received too many connection requests today."] = "%s hodiaŭ ricevis tro multe da konektpetoj."; +$a->strings["Spam protection measures have been invoked."] = "Kontraŭspamilo estas aktivita."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Amikoj, vi bonvolu ripeti post 24 horoj."; +$a->strings["Invalid locator"] = "Nevalida adreso."; +$a->strings["Invalid email address."] = "Nevalida repoŝtadreso."; +$a->strings["This account has not been configured for email. Request failed."] = "La konto ne estas agordita por retpoŝto. La peto malsukcesis."; +$a->strings["You have already introduced yourself here."] = "Vi vin jam prezentis tie."; +$a->strings["Apparently you are already friends with %s."] = "Ŝajnas kvazaŭ vi jam amikiĝis kun %s."; +$a->strings["Invalid profile URL."] = "Nevalida adreso de profilo."; +$a->strings["Your introduction has been sent."] = "Via prezento estas sendita."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Bonvolu ensaluti por jesigi la prezenton."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon."; +$a->strings["Confirm"] = "Konfirmi."; +$a->strings["Hide this contact"] = "Kaŝi tiun kontakton"; +$a->strings["Welcome home %s."] = "Bonvenon hejme, %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bonvolu konfirmi vian prezenton / kontaktpeton al %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: "; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Prezento / Konektpeto"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bonvolu respondi:"; +$a->strings["Does %s know you?"] = "Ĉu %s konas vin?"; +$a->strings["Add a personal note:"] = "Aldoni personan noton:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federaciaj interkonaj retejoj"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo."; +$a->strings["Your Identity Address:"] = "Via identeca adreso:"; +$a->strings["Submit Request"] = "Sendi peton"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Aldonis kontakton"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Ne eblas konekti la datumbazon."; +$a->strings["Could not create table."] = "Ne eblas krei tabelon."; +$a->strings["Your Friendica site database has been installed."] = "La datumbazo de vi Friendica retjo estas instalita."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Bonvolu legi la dosieron \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Sistema kontrolo"; +$a->strings["Check again"] = "Ree kontroli"; +$a->strings["Database connection"] = "Datumbaza konekto"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi."; +$a->strings["Database Server Name"] = "Nomo de datumbaza servilo."; +$a->strings["Database Login Name"] = "Salutnomo ĉe la datumbazo."; +$a->strings["Database Login Password"] = "Pasvorto ĉe la datumbazo."; +$a->strings["Database Name"] = "Nomo de la datumbazo."; +$a->strings["Site administrator email address"] = "Retpoŝtadreso de la reteja administranto"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo."; +$a->strings["Please select a default timezone for your website"] = "Bonvolu elekti defaŭltan horzonon por via retejo."; +$a->strings["Site settings"] = "Retejaj agordoj"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komanda linia versio de PHP ne trovita en PATH de la retservilo."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "Vojo de la komanda linia versio de PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado."; +$a->strings["Command line PHP"] = "komanda linia versio de PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita."; +$a->strings["This is required for message delivery to work."] = "Tio estas bezonata por la livero de mesaĝoj."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php"; +$a->strings["Generate encryption keys"] = "Generi ĉifroŝlosilojn"; +$a->strings["libCurl PHP module"] = "PHP modulo libCurl"; +$a->strings["GD graphics PHP module"] = "PHP modulo GD"; +$a->strings["OpenSSL PHP module"] = "PHP modulo OpenSSL"; +$a->strings["mysqli PHP module"] = "PHP modulo mysqli"; +$a->strings["mb_string PHP module"] = "PHP modulo mb_string"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modulo"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita."; +$a->strings["Error: openssl PHP module required but not installed."] = "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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."] = "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis."; +$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."] = "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi."; +$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."] = "Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron \"INSTALL.txt\" por trovi instrukciojn."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php estas skribebla."; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite en .htaccess ne funkcias. Kontrolu la agordojn de la servilo."; +$a->strings["Url rewrite is working"] = "URL rewrite funkcias."; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo."; +$a->strings["

                                              What next

                                              "] = "

                                              Kio sekvas nun?

                                              "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller."; +$a->strings["Unable to locate original post."] = "Ne eblas trovi originalan afiŝon."; +$a->strings["Empty post discarded."] = "Forviŝis malplenan afiŝon."; +$a->strings["System error. Post not saved."] = "Sistema eraro. Afiŝo ne registrita."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto."; +$a->strings["You may visit them online at %s"] = "Vi povas viziti ilin rete ĉe %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn."; +$a->strings["%s posted an update."] = "%s publikigis afiŝon."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", +); +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita."; +$a->strings["Invalid contact."] = "Nevalida kontakto."; +$a->strings["Commented Order"] = "Komenta Ordo"; +$a->strings["Sort by Comment Date"] = "Ordigi laŭ Dato de Komento"; +$a->strings["Posted Order"] = "Afiŝita Ordo"; +$a->strings["Sort by Post Date"] = "Ordigi laŭ Dato de Afiŝado"; +$a->strings["Posts that mention or involve you"] = "Afiŝoj menciantaj vin aŭ pri vi"; +$a->strings["New"] = "Nova"; +$a->strings["Activity Stream - by date"] = "Fluo de Aktiveco - laŭ dato"; +$a->strings["Shared Links"] = "Kunhavigitaj Ligiloj"; +$a->strings["Interesting Links"] = "Interesaj Ligiloj"; +$a->strings["Starred"] = "Steligita"; +$a->strings["Favourite Posts"] = "Favorigitaj Afiŝoj"; +$a->strings["{0} wants to be your friend"] = "{0} volas amikiĝi kun vi"; +$a->strings["{0} sent you a message"] = "{0} sendis mesaĝon al vi"; +$a->strings["{0} requested registration"] = "{0} petis registradon"; +$a->strings["No contacts."] = "Neniu kontaktojn."; +$a->strings["via"] = ""; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; $a->strings["Alignment"] = "Ĝisrandigo"; $a->strings["Left"] = "Maldekstren"; $a->strings["Center"] = "Centren"; +$a->strings["Color scheme"] = "Kolorskemo"; $a->strings["Posts font size"] = ""; $a->strings["Textareas font size"] = ""; -$a->strings["Set resolution for middle column"] = "Agordi la distingivon por la meza kolumno"; -$a->strings["Set color scheme"] = "Agordi Kolorskemon"; -$a->strings["Set zoomfactor for Earth Layer"] = "Agordi zoman faktoron de Tertavolo"; -$a->strings["Set longitude (X) for Earth Layers"] = "Agordi longitudon (X) por Tertavoloj"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Agordi latitudon (Y) por Tertavoloj"; -$a->strings["Community Pages"] = "Komunumaj paĝoj"; -$a->strings["Earth Layers"] = "Tertavoloj (Earth Layers)"; $a->strings["Community Profiles"] = "Komunumaj Profiloj"; -$a->strings["Help or @NewHere ?"] = "Helpu aŭ @NewHere ?"; -$a->strings["Connect Services"] = "Konekti Servojn"; -$a->strings["Find Friends"] = "Trovi Amikojn"; $a->strings["Last users"] = "Ĵusaj uzantoj"; -$a->strings["Last photos"] = "Ĵusaj bildoj"; -$a->strings["Last likes"] = "Ĵusaj ŝatitaj elementoj"; -$a->strings["Your contacts"] = "Viaj kontaktoj"; -$a->strings["Your personal photos"] = "Viaj personaj bildoj"; +$a->strings["Find Friends"] = "Trovi Amikojn"; $a->strings["Local Directory"] = "Loka Katalogo"; -$a->strings["Set zoomfactor for Earth Layers"] = "Agordi zoman faktoron por Tertavoloj"; -$a->strings["Show/hide boxes at right-hand column:"] = "Kaŝi/montri kestojn ĉe dekstra kolumno:"; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = "Konekti Servojn"; +$a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = ""; +$a->strings["Community Pages"] = "Komunumaj paĝoj"; +$a->strings["Help or @NewHere ?"] = "Helpu aŭ @NewHere ?"; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; @@ -1795,3 +2037,16 @@ $a->strings["darkzero"] = ""; $a->strings["comix"] = ""; $a->strings["slackr"] = ""; $a->strings["Variations"] = ""; +$a->strings["Delete this item?"] = "Forviŝi ĉi tiun elementon?"; +$a->strings["show fewer"] = "montri malpli"; +$a->strings["Update %s failed. See error logs."] = "Malsukcesis ĝisdatigi %s. Vidu la protokolojn."; +$a->strings["Create a New Account"] = "Krei Novan Konton"; +$a->strings["Password: "] = "Pasvorto:"; +$a->strings["Remember me"] = ""; +$a->strings["Or login using OpenID: "] = "Aŭ ensaluti per OpenID:"; +$a->strings["Forgot your password?"] = "Ĉu vi vorgesis vian pasvorton?"; +$a->strings["Website Terms of Service"] = ""; +$a->strings["terms of service"] = ""; +$a->strings["Website Privacy Policy"] = ""; +$a->strings["privacy policy"] = ""; +$a->strings["toggle mobile"] = ""; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index bd6f52758..5bc126440 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-21 12:10+0200\n" -"PO-Revision-Date: 2016-09-24 04:22+0000\n" -"Last-Translator: Hypolite Petovan \n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,104 +32,6 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 -msgid "Miscellaneous" -msgstr "Divers" - -#: include/datetime.php:183 include/identity.php:627 -msgid "Birthday:" -msgstr "Anniversaire:" - -#: include/datetime.php:185 mod/profiles.php:721 -msgid "Age: " -msgstr "Age : " - -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" - -#: include/datetime.php:341 -msgid "never" -msgstr "jamais" - -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "il y a moins d'une seconde" - -#: include/datetime.php:357 -msgid "year" -msgstr "an" - -#: include/datetime.php:357 -msgid "years" -msgstr "ans" - -#: include/datetime.php:358 include/event.php:480 mod/cal.php:287 -#: mod/events.php:389 -msgid "month" -msgstr "mois" - -#: include/datetime.php:358 -msgid "months" -msgstr "mois" - -#: include/datetime.php:359 include/event.php:481 mod/cal.php:288 -#: mod/events.php:390 -msgid "week" -msgstr "semaine" - -#: include/datetime.php:359 -msgid "weeks" -msgstr "semaines" - -#: include/datetime.php:360 include/event.php:482 mod/cal.php:289 -#: mod/events.php:391 -msgid "day" -msgstr "jour" - -#: include/datetime.php:360 -msgid "days" -msgstr "jours" - -#: include/datetime.php:361 -msgid "hour" -msgstr "heure" - -#: include/datetime.php:361 -msgid "hours" -msgstr "heures" - -#: include/datetime.php:362 -msgid "minute" -msgstr "minute" - -#: include/datetime.php:362 -msgid "minutes" -msgstr "minutes" - -#: include/datetime.php:363 -msgid "second" -msgstr "seconde" - -#: include/datetime.php:363 -msgid "seconds" -msgstr "secondes" - -#: include/datetime.php:372 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s auparavant" - -#: include/datetime.php:578 -#, php-format -msgid "%s's birthday" -msgstr "Anniversaire de %s's" - -#: include/datetime.php:579 include/dfrn.php:1111 -#, php-format -msgid "Happy Birthday %s" -msgstr "Joyeux anniversaire, %s !" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Ajouter un nouveau contact" @@ -142,8 +44,9 @@ msgstr "Entrez son adresse ou sa localisation web" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemple: bob@example.com, http://example.com/barbara" -#: include/contact_widgets.php:10 include/identity.php:212 mod/match.php:87 -#: mod/allfriends.php:82 mod/suggest.php:101 mod/dirfind.php:201 +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 msgid "Connect" msgstr "Relier" @@ -162,10 +65,9 @@ msgstr "Trouver des personnes" msgid "Enter name or interest" msgstr "Entrez un nom ou un centre d'intérêt" -#: include/contact_widgets.php:32 include/Contact.php:324 -#: include/conversation.php:976 mod/match.php:72 mod/allfriends.php:66 -#: mod/follow.php:103 mod/suggest.php:83 mod/contacts.php:602 -#: mod/dirfind.php:204 +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 msgid "Connect/Follow" msgstr "Connecter/Suivre" @@ -173,17 +75,16 @@ msgstr "Connecter/Suivre" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pêche" -#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:796 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 msgid "Find" msgstr "Trouver" #: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527 +#: view/theme/vier/theme.php:203 msgid "Friend Suggestions" msgstr "Suggestions d'amitiés/contacts" #: include/contact_widgets.php:36 view/theme/vier/theme.php:202 -#: view/theme/diabook/theme.php:526 msgid "Similar Interests" msgstr "Intérêts similaires" @@ -192,7 +93,6 @@ msgid "Random Profile" msgstr "Profil au hasard" #: include/contact_widgets.php:38 view/theme/vier/theme.php:204 -#: view/theme/diabook/theme.php:528 msgid "Invite Friends" msgstr "Inviter des amis" @@ -204,7 +104,7 @@ msgstr "Réseaux" msgid "All Networks" msgstr "Tous réseaux" -#: include/contact_widgets.php:141 include/features.php:103 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Dossiers sauvegardés" @@ -224,11 +124,682 @@ msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" #: include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2122 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 boot.php:904 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 msgid "show more" msgstr "montrer plus" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "Forums" + +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "Lien sortant vers le forum" + +#: 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 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indécis" +msgstr[1] "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:280 include/user.php:284 +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/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/auth.php:45 +msgid "Logged out." +msgstr "Déconnecté." + +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Échec de connexion." + +#: include/auth.php:132 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "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:132 include/user.php:75 +msgid "The error message was:" +msgstr "Le message d'erreur était :" + +#: 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:209 +msgid "Default privacy group for new contacts" +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Tout le monde" + +#: include/group.php:265 +msgid "edit" +msgstr "éditer" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Groupes" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "Modifier les groupes" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Editer groupe" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nom du groupe: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Contacts n'appartenant à aucun groupe" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "ajouter" + +#: 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:890 +msgid "Frequently" +msgstr "Fréquemment" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Toutes les heures" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Deux fois par jour" + +#: include/contact_selectors.php:59 mod/admin.php:893 +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:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Courriel" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "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 "GNU Social" +msgstr "GNU Social" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "Hubzilla/Redmatrix" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Publier aux courriels" + +#: include/acl_selectors.php:332 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Les connecteurs sont désactivés parce que \"%s\" est activé." + +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "montrer" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "cacher" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Permissions" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Fermer" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "photo" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "le statut" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "évènement" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" + +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" + +#: include/like.php:186 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s participe à %3$s de %2$s" + +#: include/like.php:188 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s ne participe pas à %3$s de %2$s" + +#: include/like.php:190 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s participera peut-être à %3$s de %2$s" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[pas de sujet]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Photos du mur" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: include/plugin.php:534 +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:539 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre abonnement." + +#: 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:173 +msgid "User profile creation error" +msgstr "Erreur de création du profil utilisateur" + +#: include/uimport.php:222 +#, 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:292 +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/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Divers" + +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Anniversaire:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Age : " + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-JJ ou MM-JJ" + +#: include/datetime.php:341 +msgid "never" +msgstr "jamais" + +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "il y a moins d'une seconde" + +#: include/datetime.php:350 +msgid "year" +msgstr "an" + +#: include/datetime.php:350 +msgid "years" +msgstr "ans" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "mois" + +#: include/datetime.php:351 +msgid "months" +msgstr "mois" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "semaine" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "semaines" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "jour" + +#: include/datetime.php:353 +msgid "days" +msgstr "jours" + +#: include/datetime.php:354 +msgid "hour" +msgstr "heure" + +#: include/datetime.php:354 +msgid "hours" +msgstr "heures" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minute" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minutes" + +#: include/datetime.php:356 +msgid "second" +msgstr "seconde" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "secondes" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "il y a %1$d %2$s " + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "Anniversaire de %s's" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Joyeux anniversaire, %s !" + #: include/enotify.php:24 msgid "Friendica Notification" msgstr "Notification Friendica" @@ -247,7 +818,7 @@ msgstr "L'administrateur de %s" msgid "%1$s, %2$s Administrator" msgstr "%1$s,, l'administrateur de %2$s" -#: include/enotify.php:43 include/delivery.php:450 +#: include/enotify.php:43 include/delivery.php:457 msgid "noreply" msgstr "noreply" @@ -514,7 +1085,7 @@ msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s" #: include/enotify.php:343 #, 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." +msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]." #: include/enotify.php:347 #, php-format @@ -526,14 +1097,501 @@ msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" msgid "Please visit %s to approve or reject the request." msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: include/ForumManager.php:114 include/nav.php:130 include/text.php:1007 -#: view/theme/vier/theme.php:255 -msgid "Forums" -msgstr "Forums" +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" -msgstr "Lien sortant vers le forum" +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Débute:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Finit:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Localisation:" + +#: include/event.php:441 +msgid "Sun" +msgstr "Dim" + +#: include/event.php:442 +msgid "Mon" +msgstr "Lun" + +#: include/event.php:443 +msgid "Tue" +msgstr "Mar" + +#: include/event.php:444 +msgid "Wed" +msgstr "Mer" + +#: include/event.php:445 +msgid "Thu" +msgstr "Jeu" + +#: include/event.php:446 +msgid "Fri" +msgstr "Ven" + +#: include/event.php:447 +msgid "Sat" +msgstr "Sam" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Dimanche" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Lundi" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Mardi" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Mercredi" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Jeudi" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Vendredi" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Samedi" + +#: include/event.php:455 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:456 +msgid "Feb" +msgstr "Fév" + +#: include/event.php:457 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:458 +msgid "Apr" +msgstr "Avr" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Mai" + +#: include/event.php:460 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:461 +msgid "Jul" +msgstr "Jul" + +#: include/event.php:462 +msgid "Aug" +msgstr "Aoû" + +#: include/event.php:463 +msgid "Sept" +msgstr "Sep" + +#: include/event.php:464 +msgid "Oct" +msgstr "Oct" + +#: include/event.php:465 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:466 +msgid "Dec" +msgstr "Déc" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Janvier" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Février" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Mars" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Avril" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Juin" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Juillet" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Août" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Septembre" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Octobre" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Novembre" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Décembre" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "aujourd'hui" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Editer l'événement" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "lien original" + +#: include/event.php:850 +msgid "Export" +msgstr "Exporter" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "Exporter au format iCal" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "Exporter au format CSV" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Rien de neuf ici" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Effacer les notifications" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "@nom, !forum, #tags, contenu" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Se déconnecter" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Mettre fin à cette session" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Statut" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profil" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Votre page de profil" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Photos" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Vos photos" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Vidéos" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "Vos vidéos" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Événements" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Vos événements" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Notes personnelles" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Vos notes personnelles" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Connexion" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Se connecter" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Profil" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Page d'accueil" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "S'inscrire" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Créer un compte" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Aide" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Applications" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Applications supplémentaires, utilitaires, jeux" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Recherche" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Rechercher dans le contenu du site" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "Texte Entier" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "Tags" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Contacts" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Communauté" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Conversations ayant cours sur ce site" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Conversations sur le réseau" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Événements et agenda" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Annuaire" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Annuaire des utilisateurs" + +#: include/nav.php:154 +msgid "Information" +msgstr "Information" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Information au sujet de cette instance de friendica" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Réseau" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Conversations de vos amis" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Réinitialiser le réseau" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Chargement des pages du réseau sans filtre" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Introductions" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Demande d'amitié" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notifications" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Voir toute notification" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Marquer comme vu" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme 'vues'" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Messages" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Messages privés" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Messages entrants" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Messages sortants" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nouveau message" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Gérer" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Gérer les autres pages" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Délégations" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Déléguer la gestion de la page" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Réglages" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Compte" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profils" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Gérer/Éditer les profiles" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Gérer/éditer les amitiés et contacts" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Admin" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Démarrage et configuration du site" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Carte du site" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Photos du contact" #: include/security.php:22 msgid "Welcome " @@ -547,353 +1605,1360 @@ msgstr "Merci d'illustrer votre profil d'une image." msgid "Welcome back " msgstr "Bienvenue à nouveau, " -#: include/security.php:375 +#: include/security.php:373 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/profile_selectors.php:6 -msgid "Male" -msgstr "Masculin" +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Système" -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Féminin" +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Personnel" -#: 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 include/conversation.php:1475 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: 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:299 include/user.php:303 -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/bb2diaspora.php:148 include/event.php:16 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: include/bb2diaspora.php:154 include/event.php:33 include/event.php:51 -msgid "Starts:" -msgstr "Débute:" - -#: include/bb2diaspora.php:162 include/event.php:36 include/event.php:57 -msgid "Finishes:" -msgstr "Finit:" - -#: include/bb2diaspora.php:170 include/event.php:39 include/event.php:63 -#: include/identity.php:329 mod/directory.php:145 mod/contacts.php:628 -#: mod/events.php:495 mod/notifications.php:232 -msgid "Location:" -msgstr "Localisation:" - -#: include/oembed.php:229 -msgid "Embedded content" -msgstr "Contenu incorporé" - -#: include/oembed.php:238 -msgid "Embedding disabled" -msgstr "Incorporation désactivée" - -#: include/dba_pdo.php:72 include/dba.php:56 +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 #, 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'" +msgid "%s commented on %s's post" +msgstr "%s a commenté la publication de %s" -#: include/auth.php:45 -msgid "Logged out." -msgstr "Déconnecté." +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s a créé une nouvelle publication" -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "Échec de connexion." +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a aimé la publication de %s" -#: include/auth.php:132 include/user.php:75 +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s n'a pas aimé la publication de %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s participe à l'événement de %s" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s ne participe pas à l'événement de %s" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s participera peut-être à l'événement de %s" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s est désormais ami(e) avec %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Suggestion d'amitié/contact" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Demande de connexion/relation" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nouvel abonné" + +#: include/dbstructure.php:26 +#, php-format 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." +"\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/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: include/group.php:25 +#: include/dbstructure.php:31 +#, php-format 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." +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Le message d’erreur est\n[pre]%s[/pre]" -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Des erreurs ont été signalées lors de la création des tables." -#: include/group.php:242 -msgid "Everybody" -msgstr "Tout le monde" +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." -#: include/group.php:265 -msgid "edit" -msgstr "éditer" - -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "Groupes" - -#: include/group.php:288 -msgid "Edit groups" -msgstr "Modifier les groupes" - -#: include/group.php:290 -msgid "Edit group" -msgstr "Editer groupe" - -#: include/group.php:291 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" - -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "Nom du groupe: " - -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "Contacts n'appartenant à aucun groupe" - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "ajouter" - -#: include/Photo.php:996 include/Photo.php:1011 include/Photo.php:1018 -#: include/Photo.php:1040 include/message.php:145 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:472 -msgid "Wall Photos" -msgstr "Photos du mur" - -#: include/delivery.php:439 +#: include/delivery.php:446 msgid "(no subject)" msgstr "(sans titre)" -#: include/user.php:39 mod/settings.php:370 +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Notification de partage du réseau Diaspora" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Pièces jointes : " + +#: include/network.php:595 +msgid "view full size" +msgstr "voir en pleine taille" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Voir le profil" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Voir les statuts" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Voir les photos" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Publications du réseau" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Supprimer le contact" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Message privé" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Sollicitations (pokes)" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "Forum" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." + +#: include/api.php:1038 +#, 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:1059 +#, 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/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Image/photo" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 a écrit:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s participe à %3$s de %2$s" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s ne participe pas à %3$s de %2$s" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s participe peut-être à %3$s de %2$s" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s est désormais lié à %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a sollicité %2$s" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s est d'humeur %2$s" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "publication/élément" + +#: include/conversation.php:304 +#, 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:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Derniers \"J'aime\"" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Derniers \"Je n'aime pas\"" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participe" +msgstr[1] "Participent" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "Ne participe pas" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "Participera peut-être" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Sélectionner" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Supprimer" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Catégories:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Rangé sous:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Voir dans le contexte" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Patientez" + +#: include/conversation.php:870 +msgid "remove" +msgstr "enlever" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Suivre le fil" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "%s participe" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "%s ne participe pas" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "%s participe peut-être" + +#: include/conversation.php:1119 +msgid "and" +msgstr "et" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", et %d autres personnes" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personnes aiment ça" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "%s aime ça." + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personnes n'aiment pas ça" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "%s n'aiment pas ça." + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d personnes participent" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "%s participent." + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d personnes ne participent pas" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "%s ne participent pas." + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d personnes vont peut-être participer" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "%s participent peut-être." + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Entrez un lien web:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Entrez un lien/URL video :" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Entrez un lien/URL audio :" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Terme d'étiquette:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Sauver dans le Dossier:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Où êtes-vous présentemment?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Supprimer les élément(s) ?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Partager" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Joindre photo" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "envoi image" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Joindre fichier" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "ajout fichier" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "lien web" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Insérer un lien video" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "lien vidéo" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Insérer un lien audio" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "lien audio" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Définir votre localisation" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "spéc. localisation" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "supp. localisation" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Définir un titre" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Réglages des permissions" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "permissions" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Publication publique" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Aperçu" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Annuler" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Publier aux groupes" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Publier aux contacts" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Message privé" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Message" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "Navigateur" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "Voir tout" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Like" +msgstr[1] "Likes" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Dislike" +msgstr[1] "Dislikes" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Ne participe pas" +msgstr[1] "Ne participent pas" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "Anniversaire de %s" + +#: include/features.php:70 +msgid "General Features" +msgstr "Fonctions générales" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "Profils multiples" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "Possibilité de créer plusieurs profils" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "Lieu de prise de la photo" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte." + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "Exporter le Calendrier Public" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "Les visiteurs peuvent télécharger le calendrier public" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "Caractéristiques de composition de publication" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "Éditeur de texte enrichi" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "Activer l'éditeur de texte enrichi" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "Aperçu de la publication" + +#: include/features.php:81 +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:82 +msgid "Auto-mention Forums" +msgstr "Mentionner automatiquement les Forums" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication." + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "Widgets réseau pour barre latérale" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Rechercher par Date" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "Capacité de sélectionner les publications par intervalles de dates" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "Liste des forums" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "Activer le widget pour afficher les forums auxquels vous êtes connecté" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "Filtre de groupe" + +#: include/features.php:90 +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:91 +msgid "Network Filter" +msgstr "Filtre de réseau" + +#: include/features.php:91 +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:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Recherches" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "Sauvegarder la recherche pour une utilisation ultérieure" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "Onglets Réseau" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "Onglet Réseau Personnel" + +#: include/features.php:98 +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:99 +msgid "Network New Tab" +msgstr "Nouvel onglet réseaux" + +#: include/features.php:99 +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:100 +msgid "Network Shared Links Tab" +msgstr "Onglet réseau partagé" + +#: include/features.php:100 +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:105 +msgid "Post/Comment Tools" +msgstr "outils de publication/commentaire" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "Suppression multiple" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "Éditer les publications envoyées" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "Éditer et corriger les publications et commentaires après l'envoi" + +#: include/features.php:108 +msgid "Tagging" +msgstr "Étiquettage" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "Possibilité d'étiqueter les publications existantes" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "Catégories des publications" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "Ajouter des catégories à vos publications" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "Possibilité d'afficher les publications sous les répertoires" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "Publications non aimées" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "Possibilité de ne pas aimer les publications/commentaires" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "Publications spéciales" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "Possibilité de marquer les publications spéciales d'une étoile" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "Ignorer les notifications du post" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "Permettre d'ignorer les notifications d'un fil de discussion" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "Paramètres Avancés du Profil" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "URL de profil interdite." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "URL de connexion manquante." + +#: include/follow.php:113 +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:114 include/follow.php:134 +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:132 +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:136 +msgid "An author or name was not found." +msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Aucune URL de navigation ne correspond à cette adresse." + +#: include/follow.php:140 +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:141 +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:147 +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:157 +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:258 +msgid "Unable to retrieve contact information." +msgstr "Impossible de récupérer les informations du contact." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Le compte demandé n'est pas disponible." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Le profil demandé n'est pas disponible." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Editer le profil" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "Flux Atom" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Gérer/éditer les profils" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Changer de photo de profil" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Image du profil" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "visible par tous" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Changer la visibilité" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Genre:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Statut:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Page personnelle:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "À propos:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Réseau" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A | F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "F d" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Rappels d'anniversaires" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Anniversaires cette semaine:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Sans description]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Rappels d'événements" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Evénements cette semaine :" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Nom complet:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Age:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Préférence sexuelle:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr " Ville d'origine:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Étiquette:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Opinions politiques:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Passe-temps/Centres d'intérêt:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "J'aime :" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Je n'aime pas :" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées/Réseaux sociaux:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Goûts musicaux:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Lectures:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Télévision:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/Danse/Culture/Divertissement:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Amour/Romance:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Activité professionnelle/Occupation:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Études/Formation:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "Forums :" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "Simple" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Avancé" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Détails du profil" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Albums photo" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Notes personnelles" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Vous seul pouvez voir ça" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Nom non-publié]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Élément introuvable." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Voulez-vous vraiment supprimer cet élément ?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Oui" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Permission refusée." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Archives" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Contenu incorporé" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Incorporation désactivée" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "following" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "retiré de la liste de suivi" + +#: include/text.php:304 +msgid "newer" +msgstr "Plus récent" + +#: include/text.php:306 +msgid "older" +msgstr "Plus ancien" + +#: include/text.php:311 +msgid "prev" +msgstr "précédent" + +#: include/text.php:313 +msgid "first" +msgstr "premier" + +#: include/text.php:345 +msgid "last" +msgstr "dernier" + +#: include/text.php:348 +msgid "next" +msgstr "suivant" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Chargement de résultats supplémentaires..." + +#: include/text.php:404 +msgid "The end" +msgstr "Fin" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Aucun contact" + +#: include/text.php:912 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: include/text.php:925 +msgid "View Contacts" +msgstr "Voir les contacts" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Sauver" + +#: include/text.php:1076 +msgid "poke" +msgstr "titiller" + +#: include/text.php:1076 +msgid "poked" +msgstr "a titillé" + +#: include/text.php:1077 +msgid "ping" +msgstr "attirer l'attention" + +#: include/text.php:1077 +msgid "pinged" +msgstr "a attiré l'attention de" + +#: include/text.php:1078 +msgid "prod" +msgstr "aiguillonner" + +#: include/text.php:1078 +msgid "prodded" +msgstr "a aiguillonné" + +#: include/text.php:1079 +msgid "slap" +msgstr "gifler" + +#: include/text.php:1079 +msgid "slapped" +msgstr "a giflé" + +#: include/text.php:1080 +msgid "finger" +msgstr "tripoter" + +#: include/text.php:1080 +msgid "fingered" +msgstr "a tripoté" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "rabrouer" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "a rabroué" + +#: include/text.php:1095 +msgid "happy" +msgstr "heureuse" + +#: include/text.php:1096 +msgid "sad" +msgstr "triste" + +#: include/text.php:1097 +msgid "mellow" +msgstr "suave" + +#: include/text.php:1098 +msgid "tired" +msgstr "fatiguée" + +#: include/text.php:1099 +msgid "perky" +msgstr "guillerette" + +#: include/text.php:1100 +msgid "angry" +msgstr "colérique" + +#: include/text.php:1101 +msgid "stupified" +msgstr "stupéfaite" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "perplexe" + +#: include/text.php:1103 +msgid "interested" +msgstr "intéressée" + +#: include/text.php:1104 +msgid "bitter" +msgstr "amère" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "entraînante" + +#: include/text.php:1106 +msgid "alive" +msgstr "vivante" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "ennuyée" + +#: include/text.php:1108 +msgid "anxious" +msgstr "anxieuse" + +#: include/text.php:1109 +msgid "cranky" +msgstr "excentrique" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "dérangée" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "frustré" + +#: include/text.php:1112 +msgid "motivated" +msgstr "motivée" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "détendue" + +#: include/text.php:1114 +msgid "surprised" +msgstr "surprise" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Regarder la vidéo" + +#: include/text.php:1356 +msgid "bytes" +msgstr "octets" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "Voir dans une nouvelle page" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "voir dans une nouvelle page" + +#: include/text.php:1806 +msgid "activity" +msgstr "activité" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commentaire" + +#: include/text.php:1809 +msgid "post" +msgstr "publication" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "Élément classé" + +#: include/user.php:39 mod/settings.php:373 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." @@ -967,16 +3032,30 @@ msgstr "défaut" 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:345 include/user.php:352 include/user.php:359 +#: include/user.php:326 include/user.php:333 include/user.php:340 #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:79 mod/photos.php:193 -#: mod/photos.php:770 mod/photos.php:1233 mod/photos.php:1256 -#: mod/photos.php:1849 view/theme/diabook/theme.php:500 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 msgid "Profile Photos" msgstr "Photos du profil" -#: include/user.php:387 +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 #, php-format msgid "" "\n" @@ -985,7 +3064,7 @@ msgid "" "\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:391 +#: include/user.php:438 #, php-format msgid "" "\n" @@ -1015,2058 +3094,15 @@ msgid "" "\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:423 mod/admin.php:1182 +#: include/user.php:470 mod/admin.php:1213 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: include/features.php:63 -msgid "General Features" -msgstr "Fonctions générales" - -#: include/features.php:65 -msgid "Multiple Profiles" -msgstr "Profils multiples" - -#: include/features.php:65 -msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" - -#: include/features.php:66 -msgid "Photo Location" -msgstr "Lieu de prise de la photo" - -#: include/features.php:66 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte." - -#: include/features.php:67 -msgid "Export Public Calendar" -msgstr "Exporter le Calendrier Public" - -#: include/features.php:67 -msgid "Ability for visitors to download the public calendar" -msgstr "Les visiteurs peuvent télécharger le calendrier public" - -#: include/features.php:72 -msgid "Post Composition Features" -msgstr "Caractéristiques de composition de publication" - -#: include/features.php:73 -msgid "Richtext Editor" -msgstr "Éditeur de texte enrichi" - -#: include/features.php:73 -msgid "Enable richtext editor" -msgstr "Activer l'éditeur de texte enrichi" - -#: include/features.php:74 -msgid "Post Preview" -msgstr "Aperçu de la publication" - -#: include/features.php:74 -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:75 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:75 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: include/features.php:80 -msgid "Network Sidebar Widgets" -msgstr "Widgets réseau pour barre latérale" - -#: include/features.php:81 -msgid "Search by Date" -msgstr "Rechercher par Date" - -#: include/features.php:81 -msgid "Ability to select posts by date ranges" -msgstr "Capacité de sélectionner les publications par intervalles de dates" - -#: include/features.php:82 include/features.php:112 -msgid "List Forums" -msgstr "Liste des forums" - -#: include/features.php:82 -msgid "Enable widget to display the forums your are connected with" -msgstr "Activer le widget pour afficher les forums auxquels vous êtes connecté" - -#: include/features.php:83 -msgid "Group Filter" -msgstr "Filtre de groupe" - -#: include/features.php:83 -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:84 -msgid "Network Filter" -msgstr "Filtre de réseau" - -#: include/features.php:84 -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:85 mod/search.php:34 mod/network.php:200 -msgid "Saved Searches" -msgstr "Recherches" - -#: include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Sauvegarder la recherche pour une utilisation ultérieure" - -#: include/features.php:90 -msgid "Network Tabs" -msgstr "Onglets Réseau" - -#: include/features.php:91 -msgid "Network Personal Tab" -msgstr "Onglet Réseau Personnel" - -#: include/features.php:91 -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:92 -msgid "Network New Tab" -msgstr "Nouvel onglet réseaux" - -#: include/features.php:92 -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:93 -msgid "Network Shared Links Tab" -msgstr "Onglet réseau partagé" - -#: include/features.php:93 -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:98 -msgid "Post/Comment Tools" -msgstr "outils de publication/commentaire" - -#: include/features.php:99 -msgid "Multiple Deletion" -msgstr "Suppression multiple" - -#: include/features.php:99 -msgid "Select and delete multiple posts/comments at once" -msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" - -#: include/features.php:100 -msgid "Edit Sent Posts" -msgstr "Éditer les publications envoyées" - -#: include/features.php:100 -msgid "Edit and correct posts and comments after sending" -msgstr "Éditer et corriger les publications et commentaires après l'envoi" - -#: include/features.php:101 -msgid "Tagging" -msgstr "Étiquettage" - -#: include/features.php:101 -msgid "Ability to tag existing posts" -msgstr "Possibilité d'étiqueter les publications existantes" - -#: include/features.php:102 -msgid "Post Categories" -msgstr "Catégories des publications" - -#: include/features.php:102 -msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" - -#: include/features.php:103 -msgid "Ability to file posts under folders" -msgstr "Possibilité d'afficher les publications sous les répertoires" - -#: include/features.php:104 -msgid "Dislike Posts" -msgstr "Publications non aimées" - -#: include/features.php:104 -msgid "Ability to dislike posts/comments" -msgstr "Possibilité de ne pas aimer les publications/commentaires" - -#: include/features.php:105 -msgid "Star Posts" -msgstr "Publications spéciales" - -#: include/features.php:105 -msgid "Ability to mark special posts with a star indicator" -msgstr "Possibilité de marquer les publications spéciales d'une étoile" - -#: include/features.php:106 -msgid "Mute Post Notifications" -msgstr "Ignorer les notifications du post" - -#: include/features.php:106 -msgid "Ability to mute notifications for a thread" -msgstr "Permettre d'ignorer les notifications d'un fil de discussion" - -#: include/features.php:111 -msgid "Advanced Profile Settings" -msgstr "Paramètres Avancés du Profil" - -#: include/features.php:112 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Rien de neuf ici" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Effacer les notifications" - -#: include/nav.php:40 include/text.php:997 -msgid "@name, !forum, #tags, content" -msgstr "@nom, !forum, #tags, contenu" - -#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1704 -msgid "Logout" -msgstr "Se déconnecter" - -#: include/nav.php:75 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "Mettre fin à cette session" - -#: include/nav.php:78 include/identity.php:712 mod/contacts.php:635 -#: mod/contacts.php:831 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Statut" - -#: include/nav.php:78 include/nav.php:163 view/theme/frio/theme.php:246 -#: view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" - -#: include/nav.php:79 include/identity.php:603 include/identity.php:689 -#: include/identity.php:720 mod/profperm.php:104 mod/newmember.php:32 -#: mod/contacts.php:637 mod/contacts.php:839 view/theme/frio/theme.php:247 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: include/nav.php:79 view/theme/frio/theme.php:247 -#: view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Votre page de profil" - -#: include/nav.php:80 include/identity.php:728 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Photos" - -#: include/nav.php:80 view/theme/frio/theme.php:248 -#: view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Vos photos" - -#: include/nav.php:81 include/identity.php:736 include/identity.php:739 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Vidéos" - -#: include/nav.php:81 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "Vos vidéos" - -#: include/nav.php:82 include/nav.php:146 include/identity.php:748 -#: include/identity.php:759 mod/cal.php:278 mod/events.php:379 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Événements" - -#: include/nav.php:82 view/theme/frio/theme.php:250 -#: view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Vos événements" - -#: include/nav.php:83 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Notes personnelles" - -#: include/nav.php:83 -msgid "Your personal notes" -msgstr "Vos notes personnelles" - -#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1705 -msgid "Login" -msgstr "Connexion" - -#: include/nav.php:94 -msgid "Sign in" -msgstr "Se connecter" - -#: include/nav.php:107 include/nav.php:163 -#: include/NotificationsManager.php:174 view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Profil" - -#: include/nav.php:107 -msgid "Home Page" -msgstr "Page d'accueil" - -#: include/nav.php:111 mod/register.php:280 boot.php:1680 -msgid "Register" -msgstr "S'inscrire" - -#: include/nav.php:111 -msgid "Create an account" -msgstr "Créer un compte" - -#: include/nav.php:116 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Aide" - -#: include/nav.php:116 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Applications" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Applications supplémentaires, utilitaires, jeux" - -#: include/nav.php:122 include/text.php:994 mod/search.php:149 -msgid "Search" -msgstr "Recherche" - -#: include/nav.php:122 -msgid "Search site content" -msgstr "Rechercher dans le contenu du site" - -#: include/nav.php:125 include/text.php:1002 -msgid "Full Text" -msgstr "Texte Entier" - -#: include/nav.php:126 include/text.php:1003 -msgid "Tags" -msgstr "Tags" - -#: include/nav.php:127 include/nav.php:193 include/text.php:1004 -#: include/identity.php:781 include/identity.php:784 mod/viewcontacts.php:116 -#: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257 -#: view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contacts" - -#: include/nav.php:141 include/nav.php:143 mod/community.php:36 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Communauté" - -#: include/nav.php:141 -msgid "Conversations on this site" -msgstr "Conversations ayant cours sur ce site" - -#: include/nav.php:143 -msgid "Conversations on the network" -msgstr "Conversations sur le réseau" - -#: include/nav.php:146 include/identity.php:751 include/identity.php:762 -#: view/theme/frio/theme.php:254 -msgid "Events and Calendar" -msgstr "Événements et agenda" - -#: include/nav.php:148 -msgid "Directory" -msgstr "Annuaire" - -#: include/nav.php:148 -msgid "People directory" -msgstr "Annuaire des utilisateurs" - -#: include/nav.php:150 -msgid "Information" -msgstr "Information" - -#: include/nav.php:150 -msgid "Information about this friendica instance" -msgstr "Information au sujet de cette instance de friendica" - -#: include/nav.php:160 include/NotificationsManager.php:160 mod/admin.php:402 -#: view/theme/frio/theme.php:253 -msgid "Network" -msgstr "Réseau" - -#: include/nav.php:160 view/theme/frio/theme.php:253 -msgid "Conversations from your friends" -msgstr "Conversations de vos amis" - -#: include/nav.php:161 -msgid "Network Reset" -msgstr "Réinitialiser le réseau" - -#: include/nav.php:161 -msgid "Load Network page with no filters" -msgstr "Chargement des pages du réseau sans filtre" - -#: include/nav.php:168 include/NotificationsManager.php:181 -msgid "Introductions" -msgstr "Introductions" - -#: include/nav.php:168 -msgid "Friend Requests" -msgstr "Demande d'amitié" - -#: include/nav.php:171 mod/notifications.php:96 -msgid "Notifications" -msgstr "Notifications" - -#: include/nav.php:172 -msgid "See all notifications" -msgstr "Voir toute notification" - -#: include/nav.php:173 mod/settings.php:887 -msgid "Mark as seen" -msgstr "Marquer comme vu" - -#: include/nav.php:173 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme 'vues'" - -#: include/nav.php:177 mod/message.php:190 view/theme/frio/theme.php:255 -msgid "Messages" -msgstr "Messages" - -#: include/nav.php:177 view/theme/frio/theme.php:255 -msgid "Private mail" -msgstr "Messages privés" - -#: include/nav.php:178 -msgid "Inbox" -msgstr "Messages entrants" - -#: include/nav.php:179 -msgid "Outbox" -msgstr "Messages sortants" - -#: include/nav.php:180 mod/message.php:16 -msgid "New Message" -msgstr "Nouveau message" - -#: include/nav.php:183 -msgid "Manage" -msgstr "Gérer" - -#: include/nav.php:183 -msgid "Manage other pages" -msgstr "Gérer les autres pages" - -#: include/nav.php:186 mod/settings.php:81 -msgid "Delegations" -msgstr "Délégations" - -#: include/nav.php:186 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Déléguer la gestion de la page" - -#: include/nav.php:188 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1502 mod/admin.php:1760 view/theme/frio/theme.php:256 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Réglages" - -#: include/nav.php:188 view/theme/frio/theme.php:256 -msgid "Account settings" -msgstr "Compte" - -#: include/nav.php:191 include/identity.php:276 -msgid "Profiles" -msgstr "Profils" - -#: include/nav.php:191 -msgid "Manage/Edit Profiles" -msgstr "Gérer/Éditer les profiles" - -#: include/nav.php:193 view/theme/frio/theme.php:257 -msgid "Manage/edit friends and contacts" -msgstr "Gérer/éditer les amitiés et contacts" - -#: include/nav.php:200 mod/admin.php:186 -msgid "Admin" -msgstr "Admin" - -#: include/nav.php:200 -msgid "Site setup and configuration" -msgstr "Démarrage et configuration du site" - -#: include/nav.php:204 -msgid "Navigation" -msgstr "Navigation" - -#: include/nav.php:204 -msgid "Site map" -msgstr "Carte du site" - -#: 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:862 -msgid "Frequently" -msgstr "Fréquemment" - -#: include/contact_selectors.php:57 mod/admin.php:863 -msgid "Hourly" -msgstr "Toutes les heures" - -#: include/contact_selectors.php:58 mod/admin.php:864 -msgid "Twice daily" -msgstr "Deux fois par jour" - -#: include/contact_selectors.php:59 mod/admin.php:865 -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:867 -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:1375 mod/admin.php:1388 mod/admin.php:1400 mod/admin.php:1418 -msgid "Email" -msgstr "Courriel" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:869 -#: mod/settings.php:827 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: 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 "GNU Social" -msgstr "GNU Social" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - -#: include/network.php:595 -msgid "view full size" -msgstr "voir en pleine taille" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "retiré de la liste de suivi" - -#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 -#: include/conversation.php:964 include/conversation.php:978 -#: mod/directory.php:163 mod/match.php:71 mod/allfriends.php:65 -#: mod/suggest.php:82 mod/dirfind.php:203 -msgid "View Profile" -msgstr "Voir le profil" - -#: include/Contact.php:364 include/conversation.php:963 -msgid "View Status" -msgstr "Voir les statuts" - -#: include/Contact.php:366 include/conversation.php:965 -msgid "View Photos" -msgstr "Voir les photos" - -#: include/Contact.php:367 include/conversation.php:966 -msgid "Network Posts" -msgstr "Publications du réseau" - -#: include/Contact.php:368 include/conversation.php:967 -msgid "Edit Contact" -msgstr "Éditer le contact" - -#: include/Contact.php:369 -msgid "Drop Contact" -msgstr "Supprimer le contact" - -#: include/Contact.php:370 include/conversation.php:968 -msgid "Send PM" -msgstr "Message privé" - -#: include/Contact.php:371 include/conversation.php:972 -msgid "Poke" -msgstr "Sollicitations (pokes)" - -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Publier aux courriels" - -#: include/acl_selectors.php:332 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Les connecteurs sont désactivés parce que \"%s\" est activé." - -#: include/acl_selectors.php:333 mod/settings.php:1131 -msgid "Hide your profile details from unknown viewers?" -msgstr "Cacher les détails du profil aux visiteurs inconnus?" - -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -msgid "show" -msgstr "montrer" - -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -msgid "don't show" -msgstr "cacher" - -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: adresses de courriel" - -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@exemple.com, mary@exemple.com" - -#: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1562 -#: mod/events.php:510 -msgid "Permissions" -msgstr "Permissions" - -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Fermer" - -#: include/dfrn.php:1110 -#, php-format -msgid "%s\\'s birthday" -msgstr "Anniversaire de %s" - -#: include/follow.php:77 mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "URL de profil interdite." - -#: include/follow.php:82 -msgid "Connect URL missing." -msgstr "URL de connexion manquante." - -#: include/follow.php:109 -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:110 include/follow.php:130 -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:128 -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:132 -msgid "An author or name was not found." -msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." - -#: include/follow.php:134 -msgid "No browser URL could be matched to this address." -msgstr "Aucune URL de navigation ne correspond à cette adresse." - -#: include/follow.php:136 -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:137 -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:143 -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:153 -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:254 -msgid "Unable to retrieve contact information." -msgstr "Impossible de récupérer les informations du contact." - -#: include/follow.php:287 -msgid "following" -msgstr "following" - -#: include/items.php:1447 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726 -msgid "[Name Withheld]" -msgstr "[Nom non-publié]" - -#: include/items.php:1805 mod/viewsrc.php:15 mod/display.php:104 -#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 mod/admin.php:234 -#: mod/admin.php:1449 mod/admin.php:1683 -msgid "Item not found." -msgstr "Élément introuvable." - -#: include/items.php:1844 -msgid "Do you really want to delete this item?" -msgstr "Voulez-vous vraiment supprimer cet élément ?" - -#: include/items.php:1846 mod/follow.php:110 mod/suggest.php:29 -#: mod/api.php:105 mod/message.php:217 mod/dfrn_request.php:861 -#: mod/contacts.php:442 mod/profiles.php:641 mod/profiles.php:644 -#: mod/profiles.php:670 mod/register.php:238 mod/settings.php:1113 -#: mod/settings.php:1119 mod/settings.php:1127 mod/settings.php:1131 -#: mod/settings.php:1136 mod/settings.php:1142 mod/settings.php:1148 -#: mod/settings.php:1154 mod/settings.php:1180 mod/settings.php:1181 -#: mod/settings.php:1182 mod/settings.php:1183 mod/settings.php:1184 -msgid "Yes" -msgstr "Oui" - -#: include/items.php:1849 include/conversation.php:1272 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121 -#: mod/suggest.php:32 mod/editpost.php:148 mod/message.php:220 -#: mod/dfrn_request.php:875 mod/contacts.php:445 mod/settings.php:664 -#: mod/settings.php:690 mod/videos.php:131 mod/photos.php:248 -#: mod/photos.php:337 -msgid "Cancel" -msgstr "Annuler" - -#: include/items.php:2011 mod/wall_upload.php:77 mod/wall_upload.php:80 -#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15 -#: mod/invite.php:101 mod/viewcontacts.php:45 mod/wall_attach.php:67 -#: mod/wall_attach.php:70 mod/allfriends.php:12 mod/repair_ostatus.php:9 -#: mod/delegate.php:12 mod/attach.php:33 mod/follow.php:11 mod/follow.php:73 -#: mod/follow.php:155 mod/suggest.php:58 mod/display.php:474 mod/common.php:18 -#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 -#: mod/ostatus_subscribe.php:9 mod/message.php:46 mod/message.php:182 -#: mod/manage.php:96 mod/crepair.php:100 mod/contacts.php:350 -#: mod/dfrn_confirm.php:57 mod/dirfind.php:11 mod/fsuggest.php:78 -#: mod/item.php:185 mod/item.php:197 mod/mood.php:114 mod/poke.php:150 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/profiles.php:166 -#: mod/profiles.php:598 mod/register.php:42 mod/regmod.php:110 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:650 -#: mod/photos.php:172 mod/photos.php:1093 mod/cal.php:308 mod/events.php:190 -#: mod/notifications.php:71 index.php:397 -msgid "Permission denied." -msgstr "Permission refusée." - -#: include/items.php:2116 -msgid "Archives" -msgstr "Archives" - -#: include/like.php:163 include/text.php:1790 include/conversation.php:130 -#: include/conversation.php:266 mod/subthread.php:87 mod/tagger.php:62 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "photo" - -#: include/like.php:163 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 include/diaspora.php:1402 mod/subthread.php:87 -#: mod/tagger.php:62 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "le statut" - -#: include/like.php:165 include/text.php:1788 include/conversation.php:122 -#: include/conversation.php:258 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "évènement" - -#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1398 -#: 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" - -#: include/like.php:184 include/conversation.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s n'aime pas %3$s de %2$s" - -#: include/like.php:186 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s participe à %3$s de %2$s" - -#: include/like.php:188 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s ne participe pas à %3$s de %2$s" - -#: include/like.php:190 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s participera peut-être à %3$s de %2$s" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[pas de sujet]" - -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: include/plugin.php:534 -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:539 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre abonnement." - -#: include/text.php:304 -msgid "newer" -msgstr "Plus récent" - -#: include/text.php:306 -msgid "older" -msgstr "Plus ancien" - -#: include/text.php:311 -msgid "prev" -msgstr "précédent" - -#: include/text.php:313 -msgid "first" -msgstr "premier" - -#: include/text.php:345 -msgid "last" -msgstr "dernier" - -#: include/text.php:348 -msgid "next" -msgstr "suivant" - -#: include/text.php:403 -msgid "Loading more entries..." -msgstr "Chargement de résultats supplémentaires..." - -#: include/text.php:404 -msgid "The end" -msgstr "Fin" - -#: include/text.php:871 -msgid "No contacts" -msgstr "Aucun contact" - -#: include/text.php:894 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: include/text.php:907 -msgid "View Contacts" -msgstr "Voir les contacts" - -#: include/text.php:995 mod/notes.php:61 mod/filer.php:31 mod/editpost.php:109 -msgid "Save" -msgstr "Sauver" - -#: include/text.php:1058 -msgid "poke" -msgstr "titiller" - -#: include/text.php:1058 -msgid "poked" -msgstr "a titillé" - -#: include/text.php:1059 -msgid "ping" -msgstr "attirer l'attention" - -#: include/text.php:1059 -msgid "pinged" -msgstr "a attiré l'attention de" - -#: include/text.php:1060 -msgid "prod" -msgstr "aiguillonner" - -#: include/text.php:1060 -msgid "prodded" -msgstr "a aiguillonné" - -#: include/text.php:1061 -msgid "slap" -msgstr "gifler" - -#: include/text.php:1061 -msgid "slapped" -msgstr "a giflé" - -#: include/text.php:1062 -msgid "finger" -msgstr "tripoter" - -#: include/text.php:1062 -msgid "fingered" -msgstr "a tripoté" - -#: include/text.php:1063 -msgid "rebuff" -msgstr "rabrouer" - -#: include/text.php:1063 -msgid "rebuffed" -msgstr "a rabroué" - -#: include/text.php:1077 -msgid "happy" -msgstr "heureuse" - -#: include/text.php:1078 -msgid "sad" -msgstr "triste" - -#: include/text.php:1079 -msgid "mellow" -msgstr "suave" - -#: include/text.php:1080 -msgid "tired" -msgstr "fatiguée" - -#: include/text.php:1081 -msgid "perky" -msgstr "guillerette" - -#: include/text.php:1082 -msgid "angry" -msgstr "colérique" - -#: include/text.php:1083 -msgid "stupified" -msgstr "stupéfaite" - -#: include/text.php:1084 -msgid "puzzled" -msgstr "perplexe" - -#: include/text.php:1085 -msgid "interested" -msgstr "intéressée" - -#: include/text.php:1086 -msgid "bitter" -msgstr "amère" - -#: include/text.php:1087 -msgid "cheerful" -msgstr "entraînante" - -#: include/text.php:1088 -msgid "alive" -msgstr "vivante" - -#: include/text.php:1089 -msgid "annoyed" -msgstr "ennuyée" - -#: include/text.php:1090 -msgid "anxious" -msgstr "anxieuse" - -#: include/text.php:1091 -msgid "cranky" -msgstr "excentrique" - -#: include/text.php:1092 -msgid "disturbed" -msgstr "dérangée" - -#: include/text.php:1093 -msgid "frustrated" -msgstr "frustrée" - -#: include/text.php:1094 -msgid "motivated" -msgstr "motivée" - -#: include/text.php:1095 -msgid "relaxed" -msgstr "détendue" - -#: include/text.php:1096 -msgid "surprised" -msgstr "surprise" - -#: include/text.php:1112 include/event.php:449 mod/settings.php:955 -msgid "Monday" -msgstr "Lundi" - -#: include/text.php:1112 include/event.php:450 -msgid "Tuesday" -msgstr "Mardi" - -#: include/text.php:1112 include/event.php:451 -msgid "Wednesday" -msgstr "Mercredi" - -#: include/text.php:1112 include/event.php:452 -msgid "Thursday" -msgstr "Jeudi" - -#: include/text.php:1112 include/event.php:453 -msgid "Friday" -msgstr "Vendredi" - -#: include/text.php:1112 include/event.php:454 -msgid "Saturday" -msgstr "Samedi" - -#: include/text.php:1112 include/event.php:448 mod/settings.php:955 -msgid "Sunday" -msgstr "Dimanche" - -#: include/text.php:1116 include/event.php:467 -msgid "January" -msgstr "Janvier" - -#: include/text.php:1116 include/event.php:468 -msgid "February" -msgstr "Février" - -#: include/text.php:1116 include/event.php:469 -msgid "March" -msgstr "Mars" - -#: include/text.php:1116 include/event.php:470 -msgid "April" -msgstr "Avril" - -#: include/text.php:1116 include/event.php:459 include/event.php:471 -msgid "May" -msgstr "Mai" - -#: include/text.php:1116 include/event.php:472 -msgid "June" -msgstr "Juin" - -#: include/text.php:1116 include/event.php:473 -msgid "July" -msgstr "Juillet" - -#: include/text.php:1116 include/event.php:474 -msgid "August" -msgstr "Août" - -#: include/text.php:1116 include/event.php:475 -msgid "September" -msgstr "Septembre" - -#: include/text.php:1116 include/event.php:476 -msgid "October" -msgstr "Octobre" - -#: include/text.php:1116 include/event.php:477 -msgid "November" -msgstr "Novembre" - -#: include/text.php:1116 include/event.php:478 -msgid "December" -msgstr "Décembre" - -#: include/text.php:1310 mod/videos.php:383 -msgid "View Video" -msgstr "Regarder la vidéo" - -#: include/text.php:1342 -msgid "bytes" -msgstr "octets" - -#: include/text.php:1374 include/text.php:1386 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: include/text.php:1512 -msgid "View on separate page" -msgstr "Voir dans une nouvelle page" - -#: include/text.php:1513 -msgid "view on separate page" -msgstr "voir dans une nouvelle page" - -#: include/text.php:1518 include/text.php:1525 include/event.php:608 -msgid "link to source" -msgstr "lien original" - -#: include/text.php:1792 -msgid "activity" -msgstr "activité" - -#: include/text.php:1794 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commentaire" - -#: include/text.php:1795 -msgid "post" -msgstr "publication" - -#: include/text.php:1963 -msgid "Item filed" -msgstr "Élément classé" - -#: 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:173 -msgid "User profile creation error" -msgstr "Erreur de création du profil utilisateur" - -#: include/uimport.php:222 -#, 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:292 -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/NotificationsManager.php:153 -msgid "System" -msgstr "Système" - -#: include/NotificationsManager.php:167 mod/network.php:844 -#: mod/profiles.php:696 -msgid "Personal" -msgstr "Personnel" - -#: include/NotificationsManager.php:234 include/NotificationsManager.php:245 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s a commenté la publication de %s" - -#: include/NotificationsManager.php:244 -#, php-format -msgid "%s created a new post" -msgstr "%s a créé une nouvelle publication" - -#: include/NotificationsManager.php:258 -#, php-format -msgid "%s liked %s's post" -msgstr "%s a aimé la publication de %s" - -#: include/NotificationsManager.php:269 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s n'a pas aimé la publication de %s" - -#: include/NotificationsManager.php:280 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s participe à l'événement de %s" - -#: include/NotificationsManager.php:291 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s ne participe pas à l'événement de %s" - -#: include/NotificationsManager.php:302 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s participera peut-être à l'événement de %s" - -#: include/NotificationsManager.php:317 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s est désormais ami(e) avec %s" - -#: include/NotificationsManager.php:750 -msgid "Friend Suggestion" -msgstr "Suggestion d'amitié/contact" - -#: include/NotificationsManager.php:783 -msgid "Friend/Connect Request" -msgstr "Demande de connexion/relation" - -#: include/NotificationsManager.php:783 -msgid "New Follower" -msgstr "Nouvel abonné" - -#: include/api.php:975 -#, 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:995 -#, 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:1016 -#, 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/bbcode.php:348 include/bbcode.php:1056 include/bbcode.php:1057 -msgid "Image/photo" -msgstr "Image/photo" - -#: include/bbcode.php:465 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1016 include/bbcode.php:1036 -msgid "$1 wrote:" -msgstr "$1 a écrit:" - -#: include/bbcode.php:1065 include/bbcode.php:1066 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s participe à %3$s de %2$s" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s ne participe pas à %3$s de %2$s" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s participe peut-être à %3$s de %2$s" - -#: include/conversation.php:185 mod/dfrn_confirm.php:473 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s est désormais lié à %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a sollicité %2$s" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s est d'humeur %2$s" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "publication/élément" - -#: include/conversation.php:304 -#, 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:585 mod/content.php:372 mod/profiles.php:345 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "Derniers \"J'aime\"" - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:349 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "Derniers \"Je n'aime pas\"" - -#: include/conversation.php:586 include/conversation.php:1469 -#: mod/content.php:373 mod/photos.php:1635 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1635 -msgid "Not attending" -msgstr "Ne participe pas" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1635 -msgid "Might attend" -msgstr "Participera peut-être" - -#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1709 object/Item.php:133 -msgid "Select" -msgstr "Sélectionner" - -#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 -#: mod/content.php:759 mod/contacts.php:806 mod/contacts.php:1021 -#: mod/settings.php:726 mod/photos.php:1710 mod/admin.php:1392 -#: object/Item.php:134 -msgid "Delete" -msgstr "Supprimer" - -#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" - -#: include/conversation.php:765 object/Item.php:355 -msgid "Categories:" -msgstr "Catégories:" - -#: include/conversation.php:766 object/Item.php:356 -msgid "Filed under:" -msgstr "Rangé sous:" - -#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: include/conversation.php:789 mod/content.php:513 -msgid "View in context" -msgstr "Voir dans le contexte" - -#: include/conversation.php:791 include/conversation.php:1253 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 mod/content.php:515 mod/content.php:948 -#: mod/photos.php:1597 object/Item.php:406 -msgid "Please wait" -msgstr "Patientez" - -#: include/conversation.php:870 -msgid "remove" -msgstr "enlever" - -#: include/conversation.php:874 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments sélectionnés" - -#: include/conversation.php:962 -msgid "Follow Thread" -msgstr "Suivre le fil" - -#: include/conversation.php:1086 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." - -#: include/conversation.php:1089 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." - -#: include/conversation.php:1092 -#, php-format -msgid "%s attends." -msgstr "%s participe" - -#: include/conversation.php:1095 -#, php-format -msgid "%s doesn't attend." -msgstr "%s ne participe pas" - -#: include/conversation.php:1098 -#, php-format -msgid "%s attends maybe." -msgstr "%s participe peut-être" - -#: include/conversation.php:1108 -msgid "and" -msgstr "et" - -#: include/conversation.php:1114 -#, php-format -msgid ", and %d other people" -msgstr ", et %d autres personnes" - -#: include/conversation.php:1123 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" - -#: include/conversation.php:1124 -#, php-format -msgid "%s like this." -msgstr "%s aime ça." - -#: include/conversation.php:1127 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" - -#: include/conversation.php:1128 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aiment pas ça." - -#: include/conversation.php:1131 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d personnes participent" - -#: include/conversation.php:1132 -#, php-format -msgid "%s attend." -msgstr "%s participent." - -#: include/conversation.php:1135 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d personnes ne participent pas" - -#: include/conversation.php:1136 -#, php-format -msgid "%s don't attend." -msgstr "%s ne participent pas." - -#: include/conversation.php:1139 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "%2$d personnes participeront peut-être" - -#: include/conversation.php:1140 -#, php-format -msgid "%s anttend maybe." -msgstr "%s participent peut-être." - -#: include/conversation.php:1179 include/conversation.php:1197 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: include/conversation.php:1180 include/conversation.php:1198 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" -msgstr "Entrez un lien web:" - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Please enter a video link/URL:" -msgstr "Entrez un lien/URL video :" - -#: include/conversation.php:1182 include/conversation.php:1200 -msgid "Please enter an audio link/URL:" -msgstr "Entrez un lien/URL audio :" - -#: include/conversation.php:1183 include/conversation.php:1201 -msgid "Tag term:" -msgstr "Terme d'étiquette:" - -#: include/conversation.php:1184 include/conversation.php:1202 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Sauver dans le Dossier:" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Where are you right now?" -msgstr "Où êtes-vous présentemment?" - -#: include/conversation.php:1186 -msgid "Delete item(s)?" -msgstr "Supprimer les élément(s) ?" - -#: include/conversation.php:1234 mod/photos.php:1596 -msgid "Share" -msgstr "Partager" - -#: include/conversation.php:1235 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Joindre photo" - -#: include/conversation.php:1236 mod/editpost.php:111 -msgid "upload photo" -msgstr "envoi image" - -#: include/conversation.php:1237 mod/editpost.php:112 -msgid "Attach file" -msgstr "Joindre fichier" - -#: include/conversation.php:1238 mod/editpost.php:113 -msgid "attach file" -msgstr "ajout fichier" - -#: include/conversation.php:1239 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: include/conversation.php:1240 mod/editpost.php:115 -msgid "web link" -msgstr "lien web" - -#: include/conversation.php:1241 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Insérer un lien video" - -#: include/conversation.php:1242 mod/editpost.php:117 -msgid "video link" -msgstr "lien vidéo" - -#: include/conversation.php:1243 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: include/conversation.php:1244 mod/editpost.php:119 -msgid "audio link" -msgstr "lien audio" - -#: include/conversation.php:1245 mod/editpost.php:120 -msgid "Set your location" -msgstr "Définir votre localisation" - -#: include/conversation.php:1246 mod/editpost.php:121 -msgid "set location" -msgstr "spéc. localisation" - -#: include/conversation.php:1247 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" - -#: include/conversation.php:1248 mod/editpost.php:123 -msgid "clear location" -msgstr "supp. localisation" - -#: include/conversation.php:1250 mod/editpost.php:137 -msgid "Set title" -msgstr "Définir un titre" - -#: include/conversation.php:1252 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: include/conversation.php:1254 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Réglages des permissions" - -#: include/conversation.php:1255 mod/editpost.php:154 -msgid "permissions" -msgstr "permissions" - -#: include/conversation.php:1263 mod/editpost.php:134 -msgid "Public post" -msgstr "Publication publique" - -#: include/conversation.php:1268 mod/editpost.php:145 mod/content.php:737 -#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 -#: mod/events.php:505 object/Item.php:729 -msgid "Preview" -msgstr "Aperçu" - -#: include/conversation.php:1278 -msgid "Post to Groups" -msgstr "Publier aux groupes" - -#: include/conversation.php:1279 -msgid "Post to Contacts" -msgstr "Publier aux contacts" - -#: include/conversation.php:1280 -msgid "Private post" -msgstr "Message privé" - -#: include/conversation.php:1285 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "Message" - -#: include/conversation.php:1286 mod/editpost.php:153 -msgid "Browser" -msgstr "Navigateur" - -#: include/conversation.php:1441 -msgid "View all" -msgstr "Voir tout" - -#: include/conversation.php:1463 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1466 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1472 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: 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:153 -msgid "Errors encountered creating database tables." -msgstr "Des erreurs ont été signalées lors de la création des tables." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." - -#: include/diaspora.php:1954 -msgid "Sharing notification from Diaspora network" -msgstr "Notification de partage du réseau Diaspora" - -#: include/diaspora.php:2854 -msgid "Attachments:" -msgstr "Pièces jointes : " - -#: include/event.php:441 -msgid "Sun" -msgstr "Dim" - -#: include/event.php:442 -msgid "Mon" -msgstr "Lun" - -#: include/event.php:443 -msgid "Tue" -msgstr "Mar" - -#: include/event.php:444 -msgid "Wed" -msgstr "Mer" - -#: include/event.php:445 -msgid "Thu" -msgstr "Jeu" - -#: include/event.php:446 -msgid "Fri" -msgstr "Ven" - -#: include/event.php:447 -msgid "Sat" -msgstr "Sam" - -#: include/event.php:455 -msgid "Jan" -msgstr "Jan" - -#: include/event.php:456 -msgid "Feb" -msgstr "Fév" - -#: include/event.php:457 -msgid "Mar" -msgstr "Mar" - -#: include/event.php:458 -msgid "Apr" -msgstr "Avr" - -#: include/event.php:460 -msgid "Jun" -msgstr "Jun" - -#: include/event.php:461 -msgid "Jul" -msgstr "Jul" - -#: include/event.php:462 -msgid "Aug" -msgstr "Aoû" - -#: include/event.php:463 -msgid "Sept" -msgstr "Sep" - -#: include/event.php:464 -msgid "Oct" -msgstr "Oct" - -#: include/event.php:465 -msgid "Nov" -msgstr "Nov" - -#: include/event.php:466 -msgid "Dec" -msgstr "Déc" - -#: include/event.php:479 mod/cal.php:286 mod/events.php:388 -msgid "today" -msgstr "aujourd'hui" - -#: include/event.php:567 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:586 -msgid "Edit event" -msgstr "Editer l'événement" - -#: include/event.php:843 -msgid "Export" -msgstr "Exporter" - -#: include/event.php:844 -msgid "Export calendar as ical" -msgstr "Exporter au format iCal" - -#: include/event.php:845 -msgid "Export calendar as csv" -msgstr "Exporter au format CSV" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "Le compte demandé n'est pas disponible." - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Le profil demandé n'est pas disponible." - -#: include/identity.php:95 include/identity.php:305 include/identity.php:686 -msgid "Edit profile" -msgstr "Editer le profil" - -#: include/identity.php:245 -msgid "Atom feed" -msgstr "Flux Atom" - -#: include/identity.php:276 -msgid "Manage/edit profiles" -msgstr "Gérer/éditer les profils" - -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "Changer de photo de profil" - -#: include/identity.php:282 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: include/identity.php:292 mod/profiles.php:777 -msgid "Profile Image" -msgstr "Image du profil" - -#: include/identity.php:295 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "visible par tous" - -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "Changer la visibilité" - -#: include/identity.php:319 mod/directory.php:174 mod/match.php:84 -#: mod/viewcontacts.php:105 mod/allfriends.php:79 mod/suggest.php:98 -#: mod/hovercard.php:80 mod/common.php:123 mod/network.php:517 -#: mod/contacts.php:51 mod/contacts.php:626 mod/contacts.php:953 -#: mod/dirfind.php:223 mod/videos.php:37 mod/photos.php:42 mod/cal.php:44 -msgid "Forum" -msgstr "Forum" - -#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 -#: mod/notifications.php:238 -msgid "Gender:" -msgstr "Genre:" - -#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 -msgid "Status:" -msgstr "Statut:" - -#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 -msgid "Homepage:" -msgstr "Page personnelle:" - -#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 -#: mod/contacts.php:630 mod/notifications.php:234 -msgid "About:" -msgstr "À propos:" - -#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246 -msgid "Network:" -msgstr "Réseau" - -#: include/identity.php:449 include/identity.php:533 -msgid "g A l F d" -msgstr "g A | F d" - -#: include/identity.php:450 include/identity.php:534 -msgid "F d" -msgstr "F d" - -#: include/identity.php:495 include/identity.php:580 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: include/identity.php:507 -msgid "Birthday Reminders" -msgstr "Rappels d'anniversaires" - -#: include/identity.php:508 -msgid "Birthdays this week:" -msgstr "Anniversaires cette semaine:" - -#: include/identity.php:567 -msgid "[No description]" -msgstr "[Sans description]" - -#: include/identity.php:591 -msgid "Event Reminders" -msgstr "Rappels d'événements" - -#: include/identity.php:592 -msgid "Events this week:" -msgstr "Evénements cette semaine :" - -#: include/identity.php:612 mod/settings.php:1229 -msgid "Full Name:" -msgstr "Nom complet:" - -#: include/identity.php:619 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:620 -msgid "j F" -msgstr "j F" - -#: include/identity.php:631 -msgid "Age:" -msgstr "Age:" - -#: include/identity.php:640 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" - -#: include/identity.php:643 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "Préférence sexuelle:" - -#: include/identity.php:647 mod/profiles.php:729 -msgid "Hometown:" -msgstr " Ville d'origine:" - -#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 -#: mod/notifications.php:236 -msgid "Tags:" -msgstr "Étiquette:" - -#: include/identity.php:651 mod/profiles.php:730 -msgid "Political Views:" -msgstr "Opinions politiques:" - -#: include/identity.php:653 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:657 -msgid "Hobbies/Interests:" -msgstr "Passe-temps/Centres d'intérêt:" - -#: include/identity.php:659 mod/profiles.php:734 -msgid "Likes:" -msgstr "J'aime :" - -#: include/identity.php:661 mod/profiles.php:735 -msgid "Dislikes:" -msgstr "Je n'aime pas :" - -#: include/identity.php:664 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées/Réseaux sociaux:" - -#: include/identity.php:666 -msgid "Musical interests:" -msgstr "Goûts musicaux:" - -#: include/identity.php:668 -msgid "Books, literature:" -msgstr "Lectures:" - -#: include/identity.php:670 -msgid "Television:" -msgstr "Télévision:" - -#: include/identity.php:672 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/Danse/Culture/Divertissement:" - -#: include/identity.php:674 -msgid "Love/Romance:" -msgstr "Amour/Romance:" - -#: include/identity.php:676 -msgid "Work/employment:" -msgstr "Activité professionnelle/Occupation:" - -#: include/identity.php:678 -msgid "School/education:" -msgstr "Études/Formation:" - -#: include/identity.php:682 -msgid "Forums:" -msgstr "Forums :" - -#: include/identity.php:690 mod/events.php:508 -msgid "Basic" -msgstr "Simple" - -#: include/identity.php:691 mod/contacts.php:868 mod/events.php:509 -#: mod/admin.php:931 -msgid "Advanced" -msgstr "Avancé" - -#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 -msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" - -#: include/identity.php:723 mod/contacts.php:842 -msgid "Profile Details" -msgstr "Détails du profil" - -#: include/identity.php:731 mod/photos.php:100 -msgid "Photo Albums" -msgstr "Albums photo" - -#: include/identity.php:770 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Notes personnelles" - -#: include/identity.php:773 -msgid "Only You Can See This" -msgstr "Vous seul pouvez voir ça" - #: mod/oexchange.php:25 msgid "Post successful." msgstr "Publication réussie." -#: mod/update_community.php:18 mod/update_notes.php:37 -#: mod/update_display.php:22 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/viewsrc.php:7 msgid "Access denied." msgstr "Accès refusé." @@ -3088,9 +3124,9 @@ msgstr "Notifications du système" msgid "Remove term" msgstr "Retirer le terme" -#: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/display.php:199 mod/community.php:22 -#: mod/dfrn_request.php:790 mod/videos.php:197 mod/photos.php:964 +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 msgid "Public access denied." msgstr "Accès public refusé." @@ -3115,7 +3151,7 @@ msgstr "Aucun résultat." msgid "Items tagged with: %s" msgstr "Éléments taggés %s" -#: mod/search.php:232 mod/network.php:146 mod/contacts.php:795 +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 #, php-format msgid "Results for: %s" msgstr "Résultats pour : %s" @@ -3208,7 +3244,7 @@ msgid "" "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:1719 +#: mod/lostpass.php:109 boot.php:1807 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" @@ -3274,7 +3310,7 @@ msgid "" "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 boot.php:1707 +#: mod/lostpass.php:161 boot.php:1795 msgid "Nickname or Email: " msgstr "Pseudo ou eMail : " @@ -3291,33 +3327,14 @@ msgid "Help:" msgstr "Aide :" #: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 -#: mod/fetch.php:39 mod/fetch.php:48 index.php:284 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 msgid "Not Found" msgstr "Non trouvé" -#: mod/help.php:56 index.php:287 +#: mod/help.php:56 index.php:291 msgid "Page not found." msgstr "Page introuvable." -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 -msgid "Invalid request." -msgstr "Requête invalide." - -#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:806 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "L'image dépasse la taille limite de %s" - -#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:846 -msgid "Unable to process image." -msgstr "Impossible de traiter l'image." - -#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:873 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - #: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." msgstr "Informations de confidentialité indisponibles." @@ -3326,27 +3343,6 @@ msgstr "Informations de confidentialité indisponibles." msgid "Visible to:" msgstr "Visible par:" -#: mod/directory.php:205 view/theme/vier/theme.php:201 -#: view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Annuaire global" - -#: mod/directory.php:207 -msgid "Find on this site" -msgstr "Trouver sur ce site" - -#: mod/directory.php:209 -msgid "Results for:" -msgstr "Résultats pour :" - -#: mod/directory.php:211 -msgid "Site Directory" -msgstr "Annuaire local" - -#: mod/directory.php:218 -msgid "No entries (some entries may be hidden)." -msgstr "Aucune entrée (certaines peuvent être cachées)." - #: mod/openid.php:24 msgid "OpenID protocol error. No ID returned." msgstr "Erreur de protocole OpenID. Pas d'ID en retour." @@ -3356,13 +3352,13 @@ 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/uimport.php:50 mod/register.php:191 +#: mod/uimport.php:50 mod/register.php:198 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." -#: mod/uimport.php:64 mod/register.php:286 +#: mod/uimport.php:64 mod/register.php:295 msgid "Import" msgstr "Importer" @@ -3397,13 +3393,13 @@ msgid "" "select \"Export account\"" msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" -#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586 -#: mod/contacts.php:944 +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: mod/nogroup.php:42 mod/contacts.php:945 +#: mod/nogroup.php:42 mod/contacts.php:931 msgid "Edit contact" msgstr "Éditer le contact" @@ -3411,22 +3407,6 @@ msgstr "Éditer le contact" msgid "Contacts who are not members of a group" msgstr "Contacts qui n’appartiennent à aucun groupe" -#: mod/match.php:33 -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:86 -msgid "is interested in:" -msgstr "s'intéresse à :" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: mod/match.php:107 mod/dirfind.php:240 -msgid "No matches" -msgstr "Aucune correspondance" - #: mod/uexport.php:29 msgid "Export account" msgstr "Exporter le compte" @@ -3551,34 +3531,21 @@ msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyon #: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 #: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 -#: mod/content.php:728 mod/contacts.php:577 mod/fsuggest.php:107 -#: mod/mood.php:137 mod/poke.php:199 mod/profiles.php:681 mod/install.php:272 -#: mod/install.php:312 mod/photos.php:1125 mod/photos.php:1249 -#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 -#: mod/photos.php:1753 mod/events.php:507 object/Item.php:720 -#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80 -#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70 -#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633 -#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Envoyer" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:63 -#: mod/photos.php:193 mod/photos.php:1107 mod/photos.php:1233 -#: mod/photos.php:1256 mod/photos.php:1825 mod/photos.php:1837 -#: view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Photos du contact" - #: mod/fbrowser.php:133 msgid "Files" msgstr "Fichiers" -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Système indisponible pour cause de maintenance" - -#: mod/profperm.php:19 mod/group.php:72 index.php:396 +#: mod/profperm.php:19 mod/group.php:72 index.php:400 msgid "Permission denied" msgstr "Permission refusée" @@ -3602,10 +3569,6 @@ msgstr "Visible par" msgid "All Contacts (with secure profile access)" msgstr "Tous les contacts (ayant un accès sécurisé)" -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Aucun contact." - #: mod/tagrm.php:41 msgid "Tag removed" msgstr "Étiquette supprimée" @@ -3622,27 +3585,6 @@ msgstr "Sélectionner une étiquette à supprimer: " msgid "Remove" msgstr "Utiliser comme photo de profil" -#: mod/wall_attach.php:94 -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:94 -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:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "La taille du fichier dépasse la limite de %s" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Le téléversement a échoué." - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." - #: mod/repair_ostatus.php:14 msgid "Resubscribing to OStatus contacts" msgstr "Réinscription aux contacts OStatus" @@ -3718,62 +3660,7 @@ msgstr "Elément non disponible." msgid "Item was not found." msgstr "Element introuvable." -#: mod/follow.php:19 mod/dfrn_request.php:874 -msgid "Submit Request" -msgstr "Envoyer la requête" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Vous avez déjà ajouté ce contact." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté." - -#: mod/follow.php:109 mod/dfrn_request.php:860 -msgid "Please answer the following:" -msgstr "Merci de répondre à ce qui suit:" - -#: mod/follow.php:110 mod/dfrn_request.php:861 -#, php-format -msgid "Does %s know you?" -msgstr "Est-ce que %s vous connaît?" - -#: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861 -#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670 -#: mod/register.php:239 mod/settings.php:1113 mod/settings.php:1119 -#: mod/settings.php:1127 mod/settings.php:1131 mod/settings.php:1136 -#: mod/settings.php:1142 mod/settings.php:1148 mod/settings.php:1154 -#: mod/settings.php:1180 mod/settings.php:1181 mod/settings.php:1182 -#: mod/settings.php:1183 mod/settings.php:1184 -msgid "No" -msgstr "Non" - -#: mod/follow.php:111 mod/dfrn_request.php:865 -msgid "Add a personal note:" -msgstr "Ajouter une note personnelle:" - -#: mod/follow.php:117 mod/dfrn_request.php:871 -msgid "Your Identity Address:" -msgstr "Votre adresse d'identité:" - -#: mod/follow.php:126 mod/contacts.php:624 mod/notifications.php:243 -msgid "Profile URL" -msgstr "URL du Profil" - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Contact ajouté" - -#: mod/apps.php:7 index.php:240 +#: mod/apps.php:7 index.php:244 msgid "You must be logged in to use addons. " msgstr "Vous devez être connecté pour utiliser les greffons." @@ -3785,40 +3672,10 @@ msgstr "Applications" msgid "No installed applications." msgstr "Pas d'application installée." -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Voulez-vous vraiment supprimer cette suggestion ?" - -#: mod/suggest.php:71 -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:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignorer/cacher" - #: mod/p.php:9 msgid "Not Extended" msgstr "" -#: mod/display.php:328 mod/profile.php:155 mod/cal.php:152 -msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." - -#: mod/display.php:471 -msgid "Item has been removed." -msgstr "Cet élément a été enlevé." - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Pas de contacts en commun." - -#: mod/common.php:134 mod/contacts.php:861 -msgid "Common Friends" -msgstr "Amis communs" - #: mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "Bienvenue sur Friendica" @@ -3869,7 +3726,7 @@ msgid "" "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 mod/profile_photo.php:250 mod/profiles.php:700 +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 msgid "Upload Profile Photo" msgstr "Téléverser une photo de profil" @@ -4010,87 +3867,6 @@ msgstr "Élément introuvable" msgid "Edit post" msgstr "Éditer la publication" -#: mod/network.php:398 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." -msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." - -#: mod/network.php:401 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." - -#: mod/network.php:468 mod/content.php:119 -msgid "No such group" -msgstr "Groupe inexistant" - -#: mod/network.php:495 mod/group.php:193 mod/content.php:130 -msgid "Group is empty" -msgstr "Groupe vide" - -#: mod/network.php:499 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Group : %s" - -#: mod/network.php:527 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." - -#: mod/network.php:532 -msgid "Invalid contact." -msgstr "Contact invalide." - -#: mod/network.php:825 -msgid "Commented Order" -msgstr "Tri par commentaires" - -#: mod/network.php:828 -msgid "Sort by Comment Date" -msgstr "Trier par date de commentaire" - -#: mod/network.php:833 -msgid "Posted Order" -msgstr "Tri des publications" - -#: mod/network.php:836 -msgid "Sort by Post Date" -msgstr "Trier par date de publication" - -#: mod/network.php:847 -msgid "Posts that mention or involve you" -msgstr "Publications qui vous concernent" - -#: mod/network.php:855 -msgid "New" -msgstr "Nouveau" - -#: mod/network.php:858 -msgid "Activity Stream - by date" -msgstr "Flux d'activités - par date" - -#: mod/network.php:866 -msgid "Shared Links" -msgstr "Liens partagés" - -#: mod/network.php:869 -msgid "Interesting Links" -msgstr "Liens intéressants" - -#: mod/network.php:877 -msgid "Starred" -msgstr "Mis en avant" - -#: mod/network.php:880 -msgid "Favourite Posts" -msgstr "Publications favorites" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Indisponible." - #: mod/localtime.php:24 msgid "Time Conversion" msgstr "Conversion temporelle" @@ -4164,10 +3940,14 @@ msgstr "Éditeur de groupe" msgid "Members" msgstr "Membres" -#: mod/group.php:192 mod/contacts.php:690 +#: mod/group.php:192 mod/contacts.php:692 msgid "All Contacts" msgstr "Tous les contacts" +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Groupe vide" + #: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." @@ -4238,6 +4018,16 @@ msgid "" " 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/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Non" + #: mod/babel.php:17 msgid "Source (bbcode) text:" msgstr "Texte source (bbcode) :" @@ -4319,10 +4109,6 @@ msgstr "ignoré" msgid "%1$s welcomes %2$s" msgstr "%1$s accueille %2$s" -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Conseils aux nouveaux venus" - #: mod/message.php:75 msgid "Unable to locate contact information." msgstr "Impossible de localiser les informations du contact." @@ -4413,8 +4199,8 @@ msgstr "Réglages du contact appliqués." msgid "Contact update failed." msgstr "Impossible d'appliquer les réglages." -#: mod/crepair.php:114 mod/dfrn_confirm.php:122 mod/fsuggest.php:20 -#: mod/fsuggest.php:92 +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 msgid "Contact not found." msgstr "Contact introuvable." @@ -4464,8 +4250,8 @@ msgid "" "entries from this contact." msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: mod/crepair.php:165 mod/settings.php:665 mod/settings.php:691 -#: mod/admin.php:1375 mod/admin.php:1388 mod/admin.php:1400 mod/admin.php:1416 +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 msgid "Name" msgstr "Nom" @@ -4501,155 +4287,14 @@ msgstr "Téléverser des photos" msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: mod/dfrn_request.php:100 -msgid "This introduction has already been accepted." -msgstr "Cette introduction a déjà été acceptée." +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Groupe inexistant" -#: mod/dfrn_request.php:123 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:128 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:130 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:133 mod/dfrn_request.php:528 +#: mod/content.php:135 mod/network.php:500 #, 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:178 -msgid "Introduction complete." -msgstr "Phase d'introduction achevée." - -#: mod/dfrn_request.php:220 -msgid "Unrecoverable protocol error." -msgstr "Erreur de protocole non-récupérable." - -#: mod/dfrn_request.php:248 -msgid "Profile unavailable." -msgstr "Profil indisponible." - -#: mod/dfrn_request.php:273 -#, 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:274 -msgid "Spam protection measures have been invoked." -msgstr "Des mesures de protection contre le spam ont été déclenchées." - -#: mod/dfrn_request.php:275 -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:337 -msgid "Invalid locator" -msgstr "Localisateur invalide" - -#: mod/dfrn_request.php:346 -msgid "Invalid email address." -msgstr "Adresse courriel invalide." - -#: mod/dfrn_request.php:373 -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: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:579 mod/contacts.php:208 -msgid "Failed to update contact record." -msgstr "Échec de mise à jour du contact." - -#: mod/dfrn_request.php:600 -msgid "Your introduction has been sent." -msgstr "Votre introduction a été envoyée." - -#: mod/dfrn_request.php:640 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:663 -msgid "Please login to confirm introduction." -msgstr "Connectez-vous pour confirmer l'introduction." - -#: mod/dfrn_request.php:673 -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:687 mod/dfrn_request.php:704 -msgid "Confirm" -msgstr "Confirmer" - -#: mod/dfrn_request.php:699 -msgid "Hide this contact" -msgstr "Cacher ce contact" - -#: mod/dfrn_request.php:702 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenue chez vous, %s." - -#: mod/dfrn_request.php:703 -#, 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:832 -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:853 -#, php-format -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:858 -msgid "Friend/Connection Request" -msgstr "Requête de relation/amitié" - -#: mod/dfrn_request.php:859 -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:868 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:870 -#, 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." +msgid "Group: %s" +msgstr "Group : %s" #: mod/content.php:325 object/Item.php:95 msgid "This entry was edited" @@ -4662,11 +4307,11 @@ msgid_plural "%d comments" msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" -#: mod/content.php:638 mod/photos.php:1405 object/Item.php:117 +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 msgid "Private Message" msgstr "Message privé" -#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 msgid "I like this (toggle)" msgstr "J'aime" @@ -4674,7 +4319,7 @@ msgstr "J'aime" msgid "like" msgstr "aime" -#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264 +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" @@ -4690,14 +4335,14 @@ msgstr "Partager" msgid "share" msgstr "partager" -#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662 -#: mod/photos.php:1750 object/Item.php:717 +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 msgid "This is you" msgstr "C'est vous" -#: mod/content.php:727 mod/content.php:945 mod/photos.php:1616 -#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403 -#: object/Item.php:719 boot.php:903 +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 msgid "Comment" msgstr "Commenter" @@ -4733,7 +4378,7 @@ msgstr "Lien" msgid "Video" msgstr "Vidéo" -#: mod/content.php:746 mod/settings.php:725 object/Item.php:122 +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Éditer" @@ -4798,12 +4443,3199 @@ msgstr "Inter-mur" msgid "via Wall-To-Wall:" msgstr "en Inter-mur:" +#: 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/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/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/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image envoyée, mais impossible de la retailler." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Réduction de la taille de l'image [%s] échouée." + +#: mod/profile_photo.php:124 +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." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "L'image dépasse la taille limite de %s" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Fichier à téléverser:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Choisir un profil:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Téléverser" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "ou" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "ignorer cette étape" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "choisissez une photo depuis vos albums" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "(Re)cadrer l'image" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ajustez le cadre de l'image pour une visualisation optimale." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Édition terminée" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Image téléversée avec succès." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: 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/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Identifiant de demande invalide." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Rejeter" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignorer" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Notifications du réseau" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Notifications personnelles" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Notifications de page d'accueil" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Voir les demandes ignorées" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Cacher les demandes ignorées" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Type de notification: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "suggéré(e) par %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Cacher ce contact aux autres" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Poster une nouvelle avtivité d'ami" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "si possible" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Approuver" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Prétend que vous le connaissez: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "oui" + +#: mod/notifications.php:196 +msgid "no" +msgstr "non" + +#: mod/notifications.php:197 +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 "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" + +#: mod/notifications.php:200 +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 "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" + +#: mod/notifications.php:209 +msgid "Friend" +msgstr "Ami" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Initiateur du partage" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Admirateur" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "URL du Profil" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Aucune demande d'introduction." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "Afficher non-lus" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "Tout afficher" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "Aucune notification de %s" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Profil introuvable." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil supprimé." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Nouveau profil créé." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Ce profil ne peut être cloné." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Le nom du profil est requis." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Statut marital" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Partenaire / conjoint" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Travail / Occupation" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Religion" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Tendance politique" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Sexe" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Préférence sexuelle" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Site internet" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Centres d'intérêt" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Adresse" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Localisation" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: mod/profiles.php:564 +msgid " and " +msgstr " et " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "profil public" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "Visiter le %2$s de %1$s" + +#: mod/profiles.php:579 +#, 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:645 +msgid "Hide contacts and friends:" +msgstr "Cacher mes contacts et amis :" + +#: mod/profiles.php:650 +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:674 +msgid "Show more profile fields:" +msgstr "Afficher plus d'infos de profil:" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "Actions de Profil" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Éditer les détails du profil" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Changer la photo du profil" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Voir ce profil" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil en utilisant ces réglages" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Cloner ce profil" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Supprimer ce profil" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "Information de base" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "Image de profil" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "Préférences" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "Information sur le statut" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "Information additionnelle" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "Relation" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Votre genre :" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Statut marital :" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Exemple : football dessin programmation" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Nom du profil :" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Requis" + +#: mod/profiles.php:718 +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:719 +msgid "Your Full Name:" +msgstr "Votre nom complet :" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Titre / Description :" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Adresse postale :" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Ville / Localité :" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Région / État :" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Code postal :" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Pays :" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Qui : (si pertinent)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Depuis [date] :" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Parlez-nous de vous..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Page personnelle :" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Opinions religieuses :" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Mots-clés publics :" + +#: mod/profiles.php:740 +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:741 +msgid "Private Keywords:" +msgstr "Mots-clés privés :" + +#: mod/profiles.php:741 +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:744 +msgid "Musical interests" +msgstr "Goûts musicaux" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Lectures" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Télévision" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Cinéma / Danse / Culture / Divertissement" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Passe-temps / Centres d'intérêt" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Amour / Romance" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Activité professionnelle / Occupation" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Études / Formation" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Coordonnées / Réseaux sociaux" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Editer / gérer les profils" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "Vue" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Précédent" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Suivant" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "Utilisateur introuvable" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "Format de calendrier inconnu" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "Rien à exporter" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "calendrier" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Pas de contacts en commun." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Amis communs" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Indisponible." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Annuaire global" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Trouver sur ce site" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "Résultats pour :" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Annuaire local" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Aucune entrée (certaines peuvent être cachées)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Recherche de personne - %s" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "Recherche de Forum - %s" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Aucune correspondance" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Cet élément a été enlevé." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "L'événement ne peut pas se terminer avant d'avoir commencé." + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Vous devez donner un nom et un horaire de début à l'événement." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Créer un nouvel événement" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Détails de l'événement" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "La date de début et le titre sont requis." + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Début de l'événement :" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Date / heure de fin inconnue ou sans objet" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Fin de l'événement:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Ajuster à la zone horaire du visiteur" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Titre :" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Partager cet événement" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Système indisponible pour cause de maintenance" + +#: mod/match.php:33 +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:86 +msgid "is interested in:" +msgstr "s'intéresse à :" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Correpondance de profils" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Conseils aux nouveaux venus" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Voulez-vous vraiment supprimer cette suggestion ?" + +#: mod/suggest.php:71 +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:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignorer/cacher" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[contenu incorporé - rechargez la page pour le voir]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Téléverser de nouvelles photos" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "tout le monde" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Informations de contact indisponibles" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Album introuvable." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Effacer l'album" + +#: mod/photos.php:230 +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:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Effacer la photo" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Voulez-vous vraiment supprimer cette photo ?" + +#: mod/photos.php:688 +#, 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:688 +msgid "a photo" +msgstr "une photo" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Fichier image vide." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Aucune photo sélectionnée" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Accès restreint à cet élément." + +#: mod/photos.php:1114 +#, 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:1148 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nom du nouvel album: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "ou nom d'un album existant: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Ne pas publier de notice de statut pour cet envoi" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Montrer aux groupes" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Montrer aux Contacts" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Photo privée" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Photo publique" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Éditer l'album" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Plus récent d'abord" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Plus ancien d'abord" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Voir la photo" + +#: mod/photos.php:1315 +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:1317 +msgid "Photo not available" +msgstr "Photo indisponible" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Voir photo" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Éditer la photo" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Utiliser comme photo de profil" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Étiquettes:" + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Retirer toutes les étiquettes]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nom du nouvel album" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Titre" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "Pas de rotation" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Photo privée" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Photo publique" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "Carte" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Voir l'album" + +#: mod/register.php:93 +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:98 +#, 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 "Registration successful." +msgstr "Inscription réussie." + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traitée." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription attend une validation du propriétaire du site." + +#: mod/register.php:226 +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:227 +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:228 +msgid "Your OpenID (optional): " +msgstr "Votre OpenID (facultatif): " + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Inclure votre profil dans l'annuaire des membres?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Votre ID d'invitation: " + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Inscription" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Votre nom complet (p. ex. Michel Dupont):" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Votre adresse courriel: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nouveau mot de passe:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Confirmer:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'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:286 +msgid "Choose a nickname: " +msgstr "Choisir un pseudo: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "Importer votre profile dans cette instance de friendica" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Compte" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Fonctions supplémentaires" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Afficher" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "Réseaux sociaux" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Extensions" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Applications connectées" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Supprimer le compte" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Il manque certaines informations importantes!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Mises-à-jour" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossible de se connecter au compte courriel configuré." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Réglages de courriel mis-à-jour." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Fonctionnalités mises à jour" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "Un message de relocalisation a été envoyé à vos contacts." + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Mauvais mot de passe." + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Mots de passe changés." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Merci d'utiliser un nom plus court." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Nom trop court." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Mauvais mot de passe" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Email invalide." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr " Impossible de changer pour cet email." + +#: mod/settings.php:557 +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:561 +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:601 +msgid "Settings updated." +msgstr "Réglages mis à jour." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Ajouter une application" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Sauvegarder les paramétres" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Clé utilisateur" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Secret utilisateur" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Rediriger" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "URL de l'icône" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Vous ne pouvez pas éditer cette application." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "La clé cliente commence par" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Sans nom" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Pas de réglages d'extensions configurés" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Extensions" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Éteint" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Allumé" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Fonctions supplémentaires" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "Paramètres généraux des réseaux sociaux" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "Désactiver la réduction d'URL" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica." + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu." + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "Groupe par défaut pour les contacts OStatus" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "Le compte GNU Social que vous avez déjà" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé." + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "Réparer les abonnements OStatus" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Le support natif pour la connectivité %s est %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "activé" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "désactivé" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "L'accès courriel est désactivé sur ce site." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Réglages de courriel/boîte à lettre" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Dernière vérification réussie des courriels:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Nom du serveur IMAP:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Sécurité:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Aucun(e)" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Nom de connexion:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Mot de passe:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Adresse de réponse:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Envoyer les publications publiques à tous les contacts courriels:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Action après import:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Déplacer vers" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Déplacer vers:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "Pas de thème particulier pour les terminaux mobiles" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Affichage" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Thème d'affichage:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Thème mobile:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Nombre d’éléments par page:" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Maximum de 100 éléments" + +#: mod/settings.php:1005 +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:1006 +msgid "Don't show emoticons" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "Calendrier" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "Début de la semaine :" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "Ne plus afficher les avis" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "Défilement infini" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "Mises à jour automatiques seulement en haut de la page du réseau." + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "Paramètres généraux de thème" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "Paramètres personnalisés de thème" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "Paramètres de contenu" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Réglages du thème graphique" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Compte normal" + +#: mod/settings.php:1125 +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:1128 +msgid "Soapbox Page" +msgstr "Compte \"boîte à savon\"" + +#: mod/settings.php:1129 +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:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Compte d'\"amitié automatique\"" + +#: mod/settings.php:1137 +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:1140 +msgid "Private Forum [Experimental]" +msgstr "Forum privé [expérimental]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Forum privé - modéré en inscription" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." + +#: mod/settings.php:1163 +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:1169 +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:1177 +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:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Si activé, il est impossible de publier les messages publics sur Diaspora et autres réseaux." + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Autoriser vos amis à publier sur votre profil?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Autoriser vos amis à étiqueter vos publications?" + +#: mod/settings.php:1198 +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:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Autoriser les messages privés d'inconnus?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Ce profil n'est pas publié." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "L’adresse de votre identité est '%s' or '%s'." + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Les publications expirent automatiquement après (en jours) :" + +#: mod/settings.php:1227 +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:1228 +msgid "Advanced expiration settings" +msgstr "Réglages avancés de l'expiration" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Expiration (avancé)" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Faire expirer les publications:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Faire expirer les notes personnelles:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Faire expirer les publications marqués:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Faire expirer les photos:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Faire expirer seulement les publications des autres:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Compte" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Réglages de mot de passe" + +#: mod/settings.php:1272 +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:1273 +msgid "Current Password:" +msgstr "Mot de passe actuel:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "Votre mot de passe actuel pour confirmer les modifications" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Mot de passe:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Réglages basiques" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Adresse courriel:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Votre fuseau horaire:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "Votre langue :" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Emplacement de publication par défaut:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Utiliser la localisation géographique du navigateur:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Réglages de sécurité et vie privée" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximal de requêtes d'amitié/jour:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(pour limiter l'impact du spam)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Permissions de publication par défaut" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Message privé par défaut" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Message publique par défaut" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Permissions par défaut pour les nouvelles publications" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de messages privés d'inconnus par jour:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Réglages de notification" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Par défaut, poster un statut quand:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "j'accepte un ami" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "joignant un forum/une communauté" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "je fais une modification intéressante de mon profil" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Vous recevez une introduction" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Vos introductions sont confirmées" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un écrit sur votre mur" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un vous commente" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Vous avez reçu une suggestion d'ami" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Vous avez été étiquetté dans une publication" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous avez été sollicité dans une publication" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "Activer les notifications de bureau" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "Afficher dans des pops-ups les nouvelles notifications" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "Courriels de notification en format texte" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "Envoyer le texte des courriels de notification, sans la composante html" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/page" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifier le comportement de ce compte dans certaines situations" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "Relocaliser" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "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:1349 +msgid "Resend relocate message to contacts" +msgstr "Renvoyer un message de relocalisation aux contacts." + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "Voulez-vous vraiment supprimer cette vidéo?" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "Supprimer la vidéo" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Pas de vidéo sélectionné" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Vidéos récente" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Téléversé une nouvelle vidéo" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "Requête invalide." + +#: mod/wall_attach.php:94 +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:94 +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:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "La taille du fichier dépasse la limite de %s" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Le téléversement a échoué." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Réglages du thème sauvés." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Site" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Utilisateurs" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Thèmes" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Mise-à-jour de la base" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "Inspecter la file d'attente" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "Statistiques Federation" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Journaux" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "Voir les logs" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "Tester une adresse" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "vérification de webfinger" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Propriétés des extensions" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "diagnostic" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Inscriptions en attente de confirmation" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance." + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "En activant la fonctionnalité Répertoire de Contacts Découverts Automatiquement, cela améliorera la qualité des chiffres présentés ici." + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Administration" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "Actuellement cette instance est en relation avec %d autres instances des plate-formes suivantes :" + +#: mod/admin.php:408 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "Nom du destinataire" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "Profil du destinataire" + +#: mod/admin.php:412 +msgid "Created" +msgstr "Créé" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "Dernier essai" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente." + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Compte normal" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Compte \"boîte à savon\"" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Compte auto-amical" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Compte de blog" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Forum privé" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Files d'attente des messages" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Résumé" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Utilisateurs inscrits" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Inscriptions en attente" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Versio" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Extensions activés" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins ://" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 a besoin du module php mcrypt pour fonctionner." + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Réglages du site mis-à-jour." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "Aucune page de communauté" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "Publications publiques des utilisateurs de ce site" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "Page de la communauté globale" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Jamais" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "A l'arrivé d'une publication" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "Désactivé" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "Utilisateurs, Contacts Globaux" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "Utilisateurs, Contacts Globaux/alternative" + +#: mod/admin.php:904 +msgid "One month" +msgstr "Un mois" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "Trois mois" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "Six mois" + +#: mod/admin.php:907 +msgid "One year" +msgstr "Un an" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Instance multi-utilisateurs" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Fermé" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Demande une apptrobation" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Ouvert" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Forcer tous les liens à utiliser SSL" + +#: mod/admin.php:943 +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:957 +msgid "File upload" +msgstr "Téléversement de fichier" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Politiques" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "Répertoire de Contacts Découverts Automatiquement" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "Worker" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible." + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Nom du site" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "Nom de la machine hôte" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "Courriel de l'émetteur" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels." + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Bannière/Logo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "Icône de raccourci" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "Icône pour systèmes tactiles" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles." + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "Informations supplémentaires" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo." + +#: mod/admin.php:973 +msgid "System language" +msgstr "Langue du système" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Thème du système" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "Thème mobile" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Thème pour les terminaux mobiles" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Politique SSL pour les liens" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "SSL obligatoire" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies." + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "Anciens style 'Partage'" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles." + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "Cacher l'aide du menu de navigation" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "Instance mono-utilisateur" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Taille maximale des images" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "Longueur maximale des images" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "Qualité JPEG des images" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Politique d'inscription" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Inscriptions maximum par jour" + +#: mod/admin.php:986 +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 "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Texte d'inscription" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Sera affiché de manière bien visible sur la page d'accueil." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Les comptes sont abandonnés après x jours" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Domaines autorisés" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Domaines courriel autorisés" + +#: mod/admin.php:990 +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 de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Interdire la publication globale" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Forcer la publication globale" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "URL de l'annuaire global" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application." + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "autoriser le suivi des éléments par fil conducteur" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "Permettre une imbrication infinie des commentaires." + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "Publications privées par défaut pour les nouveaux utilisateurs" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" + +#: mod/admin.php:996 +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 "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "Ne pas miniaturiser les images privées dans les publications" + +#: mod/admin.php:998 +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 "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "Autoriser les utilisateurs à définir remote_self" + +#: mod/admin.php:999 +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 "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Interdire les inscriptions multiples" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Support OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "Supporter OpenID pour les inscriptions et connexions." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Vérification du \"Prénom Nom\"" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "Regex UTF-8" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Utiliser les expressions rationnelles de PHP en UTF8" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "Style de la page de communauté" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Type de page de la communauté à afficher. « Communauté globale » montre toutes les publications publiques des réseaux distribués ouverts qui arrivent sur ce serveur." + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour " + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)." + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Activer le support d'OStatus" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "Achèvement de l'intervalle de conversation OStatus " + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources." + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "Importer seulement les fils OStatus de nos contacts" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée." + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire." + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Activer le support de Diaspora" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fournir une compatibilité Diaspora intégrée." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "N'autoriser que les contacts Friendica" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Vérifier SSL" + +#: mod/admin.php:1014 +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 "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Utilisateur du proxy" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "URL du proxy" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Dépassement du délai d'attente du réseau" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "Intervalle de transmission" + +#: mod/admin.php:1018 +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 "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Intervalle de réception" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Plafond de la charge moyenne" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "Plafond de la charge moyenne (frontale)" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Limite de charge système pour le rendu des pages - défaut 50." + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "Limite de taille de table pour l'optimisation" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "Limite de taille de table (en Mo) pour l'optimisation automatique - défaut 100 Mo. -1 pour désactiver la limite." + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "Seuil de fragmentation" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "Seuil de fragmentation pour que l'optimisation automatique se déclenche - défaut 30%." + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "Vérification périodique des contacts globaux" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux." + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "Nombre de jours entre les requêtes" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur." + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "Découvrir des contacts des autres serveurs" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "Fréquence de récupération des contacts globaux" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Quand la découverte de contacts est activée, cette valeur détermine la fréquence de récupération des données des contacts globaux présents sur d'autres serveurs." + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "Chercher dans le répertoire local" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée." + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "Publier les informations du serveur" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur the-federation.info." + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "Utiliser le moteur de recherche plein texte de MySQL" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "Supprimer un langage" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "Supprimer les informations de langue dans les métadonnées des publications." + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "Masquer les tags" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Ne pas afficher la liste des hashtags à la fin d’un message." + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "Chemin vers le cache des objets." + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "Durée du cache en secondes" + +#: mod/admin.php:1037 +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 "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1." + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "Nombre maximum de commentaires par publication" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "Chemin vers le ficher de verrouillage" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Chemin des fichiers temporaires" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "Chemin de base de l'installation" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "Désactiver le proxy image " + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante." + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "Rechercher seulement dans les étiquettes" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "Nouvelle URL de base" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Changer d'URL de base pour ce serveur. Envoie un message de relocalisation à tous les contacts des réseaux distribués d'amis et de relations (DFRN) de tous les utilisateurs." + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "Chiffrement RINO" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "Couche de chiffrement entre les nœuds du réseau." + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "Clé API d'Embedly" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "Nombre maximum de processus simultanés" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "Sur un hébergement partagé, mettez 2. Sur des serveurs plus puissants, 10 est une bonne idée. Le défaut est 4." + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "Ne pas utiliser 'proc_open' pour les tâches de fond" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "Activez ceci si votre hébergement ne vous permet pas d'utiliser 'proc_open'. Cela arrive le plus souvent dans les hébergements partagés. Si vous l'activez, pensez à augmenter la fréquence de l'exécution des tâches de fond dans votre crontab." + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Mise-à-jour validée comme 'réussie'" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "L'exécution %s a échoué avec l'erreur: %s" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Mise-à-jour %s appliquée avec succès." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Pas de mises-à-jour échouées." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "Vérifier la structure de la base de données" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Mises-à-jour échouées" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Tenter d'éxecuter cette étape automatiquement" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte." + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +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:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utilisateur a (dé)bloqué" +msgstr[1] "%s utilisateurs ont (dé)bloqué" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilisateur supprimé" +msgstr[1] "%s utilisateurs supprimés" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Utilisateur '%s' supprimé" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utilisateur '%s' débloqué" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Utilisateur '%s' bloqué" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Date d'inscription" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Dernière connexion" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Dernier élément" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "Ajouter l'utilisateur" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "tout sélectionner" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Inscriptions d'utilisateurs en attente de confirmation" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "Utilisateur en attente de suppression définitive" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Date de la demande" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Pas d'inscriptions." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Rejetter" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Bloquer" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Débloquer" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Administration du Site" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Compte expiré" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "Nouvel utilisateur" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "Supprimé depuis" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "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?" + +#: mod/admin.php:1428 +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'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "Nom du nouvel utilisateur." + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "Pseudo" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "Pseudo du nouvel utilisateur." + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "Adresse mail du nouvel utilisateur." + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extension %s désactivée." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extension %s activée." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Désactiver" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Activer" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Activer/Désactiver" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Auteur: " + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Mainteneur: " + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "Recharger les extensions actives" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Capture d'écran" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "Recharger les thèmes actifs" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Expérimental]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Non supporté]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Réglages des journaux mis-à-jour." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "Log PHP actuellement activé." + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "Log PHP actuellement desactivé." + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Effacer" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "Activer le déboggage" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Fichier de journaux" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Niveau de journalisaton" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "Log PHP" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "Verouiller la fonctionnalité %s" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "Gérer les fonctionnalités avancées" + #: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d contact mis à jour." +msgstr[1] "%d contacts mis à jour." #: mod/contacts.php:159 mod/contacts.php:368 msgid "Could not access contact record." @@ -4817,6 +7649,10 @@ msgstr "Impossible de localiser le profil séléctionné." msgid "Contact updated." msgstr "Contact mis à jour." +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Échec de mise à jour du contact." + #: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" @@ -4845,7 +7681,7 @@ msgstr "Contact désarchivé" msgid "Drop contact" msgstr "Supprimer contact" -#: mod/contacts.php:440 mod/contacts.php:799 +#: mod/contacts.php:440 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" @@ -4872,10 +7708,6 @@ msgstr "%s partage avec vous" msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: mod/contacts.php:530 mod/admin.php:860 -msgid "Never" -msgstr "Jamais" - #: mod/contacts.php:534 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" @@ -4884,7 +7716,7 @@ msgstr "(Mise à jour effectuée avec succès)" msgid "(Update was not successful)" msgstr "(Échec de la mise à jour)" -#: mod/contacts.php:536 mod/contacts.php:978 +#: mod/contacts.php:536 mod/contacts.php:964 msgid "Suggest friends" msgstr "Suggérer amitié/contact" @@ -4901,10 +7733,6 @@ msgstr "Communications perdues avec ce contact !" msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: mod/contacts.php:557 mod/admin.php:869 -msgid "Disabled" -msgstr "Désactivé" - #: mod/contacts.php:557 msgid "Fetch information" msgstr "Récupérer informations" @@ -4960,30 +7788,14 @@ msgstr "Dernière mise-à-jour :" msgid "Update public posts" msgstr "Mettre à jour les publications publiques:" -#: mod/contacts.php:600 mod/contacts.php:988 +#: mod/contacts.php:600 mod/contacts.php:974 msgid "Update now" msgstr "Mettre à jour" -#: mod/contacts.php:605 mod/contacts.php:803 mod/contacts.php:997 -#: mod/admin.php:1394 -msgid "Unblock" -msgstr "Débloquer" - -#: mod/contacts.php:605 mod/contacts.php:803 mod/contacts.php:997 -#: mod/admin.php:1393 -msgid "Block" -msgstr "Bloquer" - -#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 msgid "Unignore" msgstr "Ne plus ignorer" -#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 -msgid "Ignore" -msgstr "Ignorer" - #: mod/contacts.php:610 msgid "Currently blocked" msgstr "Actuellement bloqué" @@ -4996,10 +7808,6 @@ msgstr "Actuellement ignoré" msgid "Currently archived" msgstr "Actuellement archivé" -#: mod/contacts.php:613 mod/notifications.php:172 mod/notifications.php:239 -msgid "Hide this contact from others" -msgstr "Cacher ce contact aux autres" - #: mod/contacts.php:613 msgid "" "Replies/likes to your public posts may still be visible" @@ -5023,1470 +7831,383 @@ msgid "" "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:633 +#: mod/contacts.php:635 msgid "Actions" msgstr "Actions" -#: mod/contacts.php:636 +#: mod/contacts.php:638 msgid "Contact Settings" msgstr "Paramètres du Contact" -#: mod/contacts.php:682 +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Suggestions" -#: mod/contacts.php:685 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: mod/contacts.php:693 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: mod/contacts.php:698 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Non-bloqués" -#: mod/contacts.php:701 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: mod/contacts.php:707 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Bloqués" -#: mod/contacts.php:710 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: mod/contacts.php:716 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignorés" -#: mod/contacts.php:719 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: mod/contacts.php:725 +#: mod/contacts.php:727 msgid "Archived" msgstr "Archivés" -#: mod/contacts.php:728 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: mod/contacts.php:734 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Cachés" -#: mod/contacts.php:737 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: mod/contacts.php:794 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: mod/contacts.php:802 mod/settings.php:158 mod/settings.php:689 -msgid "Update" -msgstr "Mises-à-jour" - -#: mod/contacts.php:805 mod/contacts.php:1013 +#: mod/contacts.php:807 mod/contacts.php:999 msgid "Archive" msgstr "Archiver" -#: mod/contacts.php:805 mod/contacts.php:1013 +#: mod/contacts.php:807 mod/contacts.php:999 msgid "Unarchive" msgstr "Désarchiver" -#: mod/contacts.php:808 +#: mod/contacts.php:810 msgid "Batch Actions" msgstr "Actions multiples" -#: mod/contacts.php:854 +#: mod/contacts.php:856 msgid "View all contacts" msgstr "Voir tous les contacts" -#: mod/contacts.php:864 +#: mod/contacts.php:866 msgid "View all common friends" msgstr "Voir tous les amis communs" -#: mod/contacts.php:871 +#: mod/contacts.php:873 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: mod/contacts.php:916 +#: mod/contacts.php:907 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: mod/contacts.php:920 +#: mod/contacts.php:911 msgid "is a fan of yours" msgstr "Vous suit" -#: mod/contacts.php:924 +#: mod/contacts.php:915 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: mod/contacts.php:999 +#: mod/contacts.php:985 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: mod/contacts.php:1007 +#: mod/contacts.php:993 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: mod/contacts.php:1015 +#: mod/contacts.php:1001 msgid "Toggle Archive status" msgstr "(dés)activer l'état \"archivé\"" -#: mod/contacts.php:1023 +#: mod/contacts.php:1009 msgid "Delete contact" msgstr "Effacer ce contact" -#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134 -#: mod/profiles.php:180 mod/profiles.php:610 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: mod/dfrn_confirm.php:123 +#: mod/dfrn_confirm.php:127 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é." -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:246 msgid "Response from remote site was not understood." msgstr "Réponse du site distant incomprise." -#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256 +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 msgid "Unexpected response from remote site: " msgstr "Réponse inattendue du site distant : " -#: mod/dfrn_confirm.php:265 +#: mod/dfrn_confirm.php:269 msgid "Confirmation completed successfully." msgstr "Confirmation achevée avec succès." -#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288 +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 msgid "Remote site reported: " msgstr "Alerte du site distant : " -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:283 msgid "Temporary failure. Please wait and try again." msgstr "Échec temporaire. Merci de recommencer ultérieurement." -#: mod/dfrn_confirm.php:286 +#: mod/dfrn_confirm.php:290 msgid "Introduction failed or was revoked." msgstr "Introduction échouée ou annulée." -#: mod/dfrn_confirm.php:415 +#: mod/dfrn_confirm.php:419 msgid "Unable to set contact photo." msgstr "Impossible de définir la photo du contact." -#: mod/dfrn_confirm.php:553 +#: mod/dfrn_confirm.php:557 #, php-format msgid "No user record found for '%s' " msgstr "Pas d'utilisateur trouvé pour '%s' " -#: mod/dfrn_confirm.php:563 +#: mod/dfrn_confirm.php:567 msgid "Our site encryption key is apparently messed up." msgstr "Notre clé de chiffrement de site est apparemment corrompue." -#: mod/dfrn_confirm.php:574 +#: mod/dfrn_confirm.php:578 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:595 +#: mod/dfrn_confirm.php:599 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:609 +#: mod/dfrn_confirm.php:613 #, 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:629 +#: mod/dfrn_confirm.php:633 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." -#: mod/dfrn_confirm.php:640 +#: mod/dfrn_confirm.php:644 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:699 +#: mod/dfrn_confirm.php:703 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:771 +#: mod/dfrn_confirm.php:775 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s a rejoint %2$s" -#: mod/dirfind.php:36 +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Cette introduction a déjà été acceptée." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +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:129 mod/dfrn_request.php:525 +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:131 mod/dfrn_request.php:527 +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:134 mod/dfrn_request.php:530 #, php-format -msgid "People Search - %s" -msgstr "Recherche de personne - %s" +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d 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/dirfind.php:47 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Phase d'introduction achevée." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Erreur de protocole non-récupérable." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profil indisponible." + +#: mod/dfrn_request.php:277 #, php-format -msgid "Forum Search - %s" -msgstr "Recherche de Forum - %s" +msgid "%s has received too many connection requests today." +msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggestion d'amitié/contact envoyée." +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Des mesures de protection contre le spam ont été déclenchées." -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggérer des amis/contacts" +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." -#: mod/fsuggest.php:99 +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Localisateur invalide" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Adresse courriel invalide." + +#: mod/dfrn_request.php:375 +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:478 +msgid "You have already introduced yourself here." +msgstr "Vous vous êtes déjà présenté ici." + +#: mod/dfrn_request.php:482 #, php-format -msgid "Suggest a friend for %s" -msgstr "Suggérer un ami/contact pour %s" +msgid "Apparently you are already friends with %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication originale." +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "URL de profil invalide." -#: mod/item.php:334 -msgid "Empty post discarded." -msgstr "Publication vide rejetée." +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Votre introduction a été envoyée." -#: mod/item.php:867 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvée." +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" -#: mod/item.php:993 +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Connectez-vous pour confirmer l'introduction." + +#: mod/dfrn_request.php:674 +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:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Confirmer" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Cacher ce contact" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenue chez vous, %s." + +#: mod/dfrn_request.php:704 +#, 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:833 +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:854 #, 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." +"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/item.php:995 -#, php-format -msgid "You may visit them online at %s" -msgstr "Vous pouvez leur rendre visite sur %s" +#: mod/dfrn_request.php:859 +msgid "Friend/Connection Request" +msgstr "Requête de relation/amitié" -#: mod/item.php:996 +#: mod/dfrn_request.php:860 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." +"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/item.php:1000 +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Merci de répondre à ce qui suit:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 #, php-format -msgid "%s posted an update." -msgstr "%s a publié une mise à jour." +msgid "Does %s know you?" +msgstr "Est-ce que %s vous connaît?" -#: mod/mood.php:133 -msgid "Mood" -msgstr "Humeur" +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Ajouter une note personnelle:" -#: 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/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: 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/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Image envoyée, mais impossible de la retailler." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Réduction de la taille de l'image [%s] échouée." - -#: mod/profile_photo.php:124 -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." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Fichier à téléverser:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Choisir un profil:" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Téléverser" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "ou" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "ignorer cette étape" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "choisissez une photo depuis vos albums" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "(Re)cadrer l'image" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ajustez le cadre de l'image pour une visualisation optimale." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Édition terminée" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." - -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: mod/profiles.php:56 mod/profiles.php:90 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:75 mod/profiles.php:118 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "Ce profil ne peut être cloné." - -#: mod/profiles.php:190 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." - -#: mod/profiles.php:337 -msgid "Marital Status" -msgstr "Statut marital" - -#: mod/profiles.php:341 -msgid "Romantic Partner" -msgstr "Partenaire / conjoint" - -#: mod/profiles.php:353 -msgid "Work/Employment" -msgstr "Travail / Occupation" - -#: mod/profiles.php:356 -msgid "Religion" -msgstr "Religion" - -#: mod/profiles.php:360 -msgid "Political Views" -msgstr "Tendance politique" - -#: mod/profiles.php:364 -msgid "Gender" -msgstr "Sexe" - -#: mod/profiles.php:368 -msgid "Sexual Preference" -msgstr "Préférence sexuelle" - -#: mod/profiles.php:372 -msgid "Homepage" -msgstr "Site internet" - -#: mod/profiles.php:376 mod/profiles.php:695 -msgid "Interests" -msgstr "Centres d'intérêt" - -#: mod/profiles.php:380 -msgid "Address" -msgstr "Adresse" - -#: mod/profiles.php:387 mod/profiles.php:691 -msgid "Location" -msgstr "Localisation" - -#: mod/profiles.php:470 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: mod/profiles.php:557 -msgid " and " -msgstr " et " - -#: mod/profiles.php:565 -msgid "public profile" -msgstr "profil public" - -#: mod/profiles.php:568 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: mod/profiles.php:569 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "Visiter le %2$s de %1$s" - -#: mod/profiles.php:572 -#, 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:638 -msgid "Hide contacts and friends:" -msgstr "Cacher mes contacts et amis :" - -#: mod/profiles.php:643 -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:667 -msgid "Show more profile fields:" -msgstr "Afficher plus d'infos de profil:" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "Actions de Profil" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "Changer la photo du profil" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "Voir ce profil" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil en utilisant ces réglages" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Cloner ce profil" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "Supprimer ce profil" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "Information de base" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "Image de profil" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "Préférences" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "Information sur le statut" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "Information additionnelle" - -#: mod/profiles.php:697 -msgid "Relation" -msgstr "Relation" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "Votre genre :" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr " Statut marital :" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "Exemple : football dessin programmation" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "Nom du profil :" - -#: mod/profiles.php:709 mod/events.php:485 mod/events.php:497 -msgid "Required" -msgstr "Requis" - -#: mod/profiles.php:711 -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:712 -msgid "Your Full Name:" -msgstr "Votre nom complet :" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "Titre / Description :" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "Adresse postale :" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "Ville / Localité :" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "Région / État :" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "Code postal :" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "Pays :" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "Qui : (si pertinent)" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "Depuis [date] :" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "Parlez-nous de vous..." - -#: mod/profiles.php:728 -msgid "Homepage URL:" -msgstr "Page personnelle :" - -#: mod/profiles.php:731 -msgid "Religious Views:" -msgstr "Opinions religieuses :" - -#: mod/profiles.php:732 -msgid "Public Keywords:" -msgstr "Mots-clés publics :" - -#: mod/profiles.php:732 -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:733 -msgid "Private Keywords:" -msgstr "Mots-clés privés :" - -#: mod/profiles.php:733 -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:736 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: mod/profiles.php:737 -msgid "Books, literature" -msgstr "Lectures" - -#: mod/profiles.php:738 -msgid "Television" -msgstr "Télévision" - -#: mod/profiles.php:739 -msgid "Film/dance/culture/entertainment" -msgstr "Cinéma / Danse / Culture / Divertissement" - -#: mod/profiles.php:740 -msgid "Hobbies/Interests" -msgstr "Passe-temps / Centres d'intérêt" - -#: mod/profiles.php:741 -msgid "Love/romance" -msgstr "Amour / Romance" - -#: mod/profiles.php:742 -msgid "Work/employment" -msgstr "Activité professionnelle / Occupation" - -#: mod/profiles.php:743 -msgid "School/education" -msgstr "Études / Formation" - -#: mod/profiles.php:744 -msgid "Contact information and Social Networks" -msgstr "Coordonnées / Réseaux sociaux" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "Editer / gérer les profils" - -#: mod/register.php:92 -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:97 +#: mod/dfrn_request.php:871 #, 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é." +" - 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/register.php:104 -msgid "Registration successful." -msgstr "Inscription réussie." +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Votre adresse d'identité:" -#: mod/register.php:110 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traitée." +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Envoyer la requête" -#: mod/register.php:153 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription attend une validation du propriétaire du site." +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Vous avez déjà ajouté ce contact." -#: mod/register.php:219 -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/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté." -#: mod/register.php:220 -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/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté." -#: mod/register.php:221 -msgid "Your OpenID (optional): " -msgstr "Votre OpenID (facultatif): " +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté." -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Inclure votre profil dans l'annuaire des membres?" - -#: mod/register.php:259 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." - -#: mod/register.php:260 -msgid "Your invitation ID: " -msgstr "Votre ID d'invitation: " - -#: mod/register.php:263 mod/admin.php:928 -msgid "Registration" -msgstr "Inscription" - -#: mod/register.php:271 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Votre nom complet (p. ex. Michel Dupont):" - -#: mod/register.php:272 -msgid "Your Email Address: " -msgstr "Votre adresse courriel: " - -#: mod/register.php:274 mod/settings.php:1221 -msgid "New Password:" -msgstr "Nouveau mot de passe:" - -#: mod/register.php:274 -msgid "Leave empty for an auto generated password." -msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." - -#: mod/register.php:275 mod/settings.php:1222 -msgid "Confirm:" -msgstr "Confirmer:" - -#: mod/register.php:276 -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:277 -msgid "Choose a nickname: " -msgstr "Choisir un pseudo: " - -#: mod/register.php:287 -msgid "Import your profile to this friendica instance" -msgstr "Importer votre profile dans cette instance de friendica" - -#: 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/settings.php:36 mod/photos.php:118 -msgid "everybody" -msgstr "tout le monde" - -#: mod/settings.php:43 mod/admin.php:1375 -msgid "Account" -msgstr "Compte" - -#: mod/settings.php:52 mod/admin.php:160 -msgid "Additional features" -msgstr "Fonctions supplémentaires" - -#: mod/settings.php:60 -msgid "Display" -msgstr "Afficher" - -#: mod/settings.php:67 mod/settings.php:871 -msgid "Social Networks" -msgstr "Réseaux sociaux" - -#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1500 mod/admin.php:1560 -msgid "Plugins" -msgstr "Extensions" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "Applications connectées" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "Supprimer le compte" - -#: mod/settings.php:155 -msgid "Missing some important data!" -msgstr "Il manque certaines informations importantes!" - -#: mod/settings.php:269 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." - -#: mod/settings.php:274 -msgid "Email settings updated." -msgstr "Réglages de courriel mis-à-jour." - -#: mod/settings.php:289 -msgid "Features updated" -msgstr "Fonctionnalités mises à jour" - -#: mod/settings.php:356 -msgid "Relocate message has been send to your contacts" -msgstr "Un message de relocalisation a été envoyé à vos contacts." - -#: mod/settings.php:375 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." - -#: mod/settings.php:383 -msgid "Wrong password." -msgstr "Mauvais mot de passe." - -#: mod/settings.php:394 -msgid "Password changed." -msgstr "Mots de passe changés." - -#: mod/settings.php:396 -msgid "Password update failed. Please try again." -msgstr "Le changement de mot de passe a échoué. Merci de recommencer." - -#: mod/settings.php:465 -msgid " Please use a shorter name." -msgstr " Merci d'utiliser un nom plus court." - -#: mod/settings.php:467 -msgid " Name too short." -msgstr " Nom trop court." - -#: mod/settings.php:476 -msgid "Wrong Password" -msgstr "Mauvais mot de passe" - -#: mod/settings.php:481 -msgid " Not valid email." -msgstr " Email invalide." - -#: mod/settings.php:487 -msgid " Cannot change to that email." -msgstr " Impossible de changer pour cet email." - -#: mod/settings.php:543 -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:547 -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:586 -msgid "Settings updated." -msgstr "Réglages mis à jour." - -#: mod/settings.php:662 mod/settings.php:688 mod/settings.php:724 -msgid "Add application" -msgstr "Ajouter une application" - -#: mod/settings.php:663 mod/settings.php:773 mod/settings.php:820 -#: mod/settings.php:889 mod/settings.php:976 mod/settings.php:1214 -#: mod/admin.php:927 mod/admin.php:1561 mod/admin.php:1809 mod/admin.php:1883 -#: mod/admin.php:2033 -msgid "Save Settings" -msgstr "Sauvegarder les paramétres" - -#: mod/settings.php:666 mod/settings.php:692 -msgid "Consumer Key" -msgstr "Clé utilisateur" - -#: mod/settings.php:667 mod/settings.php:693 -msgid "Consumer Secret" -msgstr "Secret utilisateur" - -#: mod/settings.php:668 mod/settings.php:694 -msgid "Redirect" -msgstr "Rediriger" - -#: mod/settings.php:669 mod/settings.php:695 -msgid "Icon url" -msgstr "URL de l'icône" - -#: mod/settings.php:680 -msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." - -#: mod/settings.php:723 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: mod/settings.php:727 -msgid "Client key starts with" -msgstr "La clé cliente commence par" - -#: mod/settings.php:728 -msgid "No name" -msgstr "Sans nom" - -#: mod/settings.php:729 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: mod/settings.php:741 -msgid "No Plugin settings configured" -msgstr "Pas de réglages d'extensions configurés" - -#: mod/settings.php:749 -msgid "Plugin Settings" -msgstr "Extensions" - -#: mod/settings.php:763 mod/admin.php:2022 mod/admin.php:2023 -msgid "Off" -msgstr "Éteint" - -#: mod/settings.php:763 mod/admin.php:2022 mod/admin.php:2023 -msgid "On" -msgstr "Allumé" - -#: mod/settings.php:771 -msgid "Additional Features" -msgstr "Fonctions supplémentaires" - -#: mod/settings.php:781 mod/settings.php:785 -msgid "General Social Media Settings" -msgstr "Paramètres généraux des réseaux sociaux" - -#: mod/settings.php:791 -msgid "Disable intelligent shortening" -msgstr "Désactiver la réduction d'URL" - -#: mod/settings.php:793 -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 "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica." - -#: mod/settings.php:799 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)" - -#: mod/settings.php:801 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu." - -#: mod/settings.php:807 -msgid "Default group for OStatus contacts" -msgstr "Groupe par défaut pour les contacts OStatus" - -#: mod/settings.php:813 -msgid "Your legacy GNU Social account" -msgstr "Le compte GNU Social que vous avez déjà" - -#: mod/settings.php:815 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé." - -#: mod/settings.php:818 -msgid "Repair OStatus subscriptions" -msgstr "Réparer les abonnements OStatus" - -#: mod/settings.php:827 mod/settings.php:828 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" - -#: mod/settings.php:827 mod/settings.php:828 -msgid "enabled" -msgstr "activé" - -#: mod/settings.php:827 mod/settings.php:828 -msgid "disabled" -msgstr "désactivé" - -#: mod/settings.php:828 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:864 -msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." - -#: mod/settings.php:876 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" - -#: mod/settings.php:877 -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:878 -msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels:" - -#: mod/settings.php:880 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP:" - -#: mod/settings.php:881 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:882 -msgid "Security:" -msgstr "Sécurité:" - -#: mod/settings.php:882 mod/settings.php:887 -msgid "None" -msgstr "Aucun(e)" - -#: mod/settings.php:883 -msgid "Email login name:" -msgstr "Nom de connexion:" - -#: mod/settings.php:884 -msgid "Email password:" -msgstr "Mot de passe:" - -#: mod/settings.php:885 -msgid "Reply-to address:" -msgstr "Adresse de réponse:" - -#: mod/settings.php:886 -msgid "Send public posts to all email contacts:" -msgstr "Envoyer les publications publiques à tous les contacts courriels:" - -#: mod/settings.php:887 -msgid "Action after import:" -msgstr "Action après import:" - -#: mod/settings.php:887 -msgid "Move to folder" -msgstr "Déplacer vers" - -#: mod/settings.php:888 -msgid "Move to folder:" -msgstr "Déplacer vers:" - -#: mod/settings.php:919 mod/admin.php:834 -msgid "No special theme for mobile devices" -msgstr "Pas de thème particulier pour les terminaux mobiles" - -#: mod/settings.php:974 -msgid "Display Settings" -msgstr "Affichage" - -#: mod/settings.php:980 mod/settings.php:1001 -msgid "Display Theme:" -msgstr "Thème d'affichage:" - -#: mod/settings.php:981 -msgid "Mobile Theme:" -msgstr "Thème mobile:" - -#: mod/settings.php:982 -msgid "Update browser every xx seconds" -msgstr "Mettre-à-jour l'affichage toutes les xx secondes" - -#: mod/settings.php:982 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." - -#: mod/settings.php:983 -msgid "Number of items to display per page:" -msgstr "Nombre d’éléments par page:" - -#: mod/settings.php:983 mod/settings.php:984 -msgid "Maximum of 100 items" -msgstr "Maximum de 100 éléments" - -#: mod/settings.php:984 -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:985 -msgid "Don't show emoticons" -msgstr "Ne pas afficher les émoticônes (smileys grahiques)" - -#: mod/settings.php:986 -msgid "Calendar" -msgstr "Calendrier" - -#: mod/settings.php:987 -msgid "Beginning of week:" -msgstr "Début de la semaine :" - -#: mod/settings.php:988 -msgid "Don't show notices" -msgstr "Ne plus afficher les avis" - -#: mod/settings.php:989 -msgid "Infinite scroll" -msgstr "Défilement infini" - -#: mod/settings.php:990 -msgid "Automatic updates only at the top of the network page" -msgstr "Mises à jour automatiques seulement en haut de la page du réseau." - -#: mod/settings.php:992 -msgid "General Theme Settings" -msgstr "Paramètres généraux de thème" - -#: mod/settings.php:993 -msgid "Custom Theme Settings" -msgstr "Paramètres personnalisés de thème" - -#: mod/settings.php:994 -msgid "Content Settings" -msgstr "Paramètres de contenu" - -#: mod/settings.php:995 view/theme/frio/config.php:61 -#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66 -#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109 -#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Réglages du thème graphique" - -#: mod/settings.php:1072 -msgid "User Types" -msgstr "Types d'utilisateurs" - -#: mod/settings.php:1073 -msgid "Community Types" -msgstr "Genre de communautés" - -#: mod/settings.php:1074 -msgid "Normal Account Page" -msgstr "Compte normal" - -#: mod/settings.php:1075 -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:1078 -msgid "Soapbox Page" -msgstr "Compte \"boîte à savon\"" - -#: mod/settings.php:1079 -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:1082 -msgid "Community Forum/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: mod/settings.php:1083 -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:1086 -msgid "Automatic Friend Page" -msgstr "Compte d'\"amitié automatique\"" - -#: mod/settings.php:1087 -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:1090 -msgid "Private Forum [Experimental]" -msgstr "Forum privé [expérimental]" - -#: mod/settings.php:1091 -msgid "Private forum - approved members only" -msgstr "Forum privé - modéré en inscription" - -#: mod/settings.php:1103 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1103 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." - -#: mod/settings.php:1113 -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:1119 -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:1127 -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:1131 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Si activé, il est impossible de publier les messages publics sur Diaspora et autres réseaux." - -#: mod/settings.php:1136 -msgid "Allow friends to post to your profile page?" -msgstr "Autoriser vos amis à publier sur votre profil?" - -#: mod/settings.php:1142 -msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos amis à étiqueter vos publications?" - -#: mod/settings.php:1148 -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:1154 -msgid "Permit unknown people to send you private mail?" -msgstr "Autoriser les messages privés d'inconnus?" - -#: mod/settings.php:1162 -msgid "Profile is not published." -msgstr "Ce profil n'est pas publié." - -#: mod/settings.php:1170 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "L’adresse de votre identité est '%s' or '%s'." - -#: mod/settings.php:1177 -msgid "Automatically expire posts after this many days:" -msgstr "Les publications expirent automatiquement après (en jours) :" - -#: mod/settings.php:1177 -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:1178 -msgid "Advanced expiration settings" -msgstr "Réglages avancés de l'expiration" - -#: mod/settings.php:1179 -msgid "Advanced Expiration" -msgstr "Expiration (avancé)" - -#: mod/settings.php:1180 -msgid "Expire posts:" -msgstr "Faire expirer les publications:" - -#: mod/settings.php:1181 -msgid "Expire personal notes:" -msgstr "Faire expirer les notes personnelles:" - -#: mod/settings.php:1182 -msgid "Expire starred posts:" -msgstr "Faire expirer les publications marqués:" - -#: mod/settings.php:1183 -msgid "Expire photos:" -msgstr "Faire expirer les photos:" - -#: mod/settings.php:1184 -msgid "Only expire posts by others:" -msgstr "Faire expirer seulement les publications des autres:" - -#: mod/settings.php:1212 -msgid "Account Settings" -msgstr "Compte" - -#: mod/settings.php:1220 -msgid "Password Settings" -msgstr "Réglages de mot de passe" - -#: mod/settings.php:1222 -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:1223 -msgid "Current Password:" -msgstr "Mot de passe actuel:" - -#: mod/settings.php:1223 mod/settings.php:1224 -msgid "Your current password to confirm the changes" -msgstr "Votre mot de passe actuel pour confirmer les modifications" - -#: mod/settings.php:1224 -msgid "Password:" -msgstr "Mot de passe:" - -#: mod/settings.php:1228 -msgid "Basic Settings" -msgstr "Réglages basiques" - -#: mod/settings.php:1230 -msgid "Email Address:" -msgstr "Adresse courriel:" - -#: mod/settings.php:1231 -msgid "Your Timezone:" -msgstr "Votre fuseau horaire:" - -#: mod/settings.php:1232 -msgid "Your Language:" -msgstr "Votre langue :" - -#: mod/settings.php:1232 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" - -#: mod/settings.php:1233 -msgid "Default Post Location:" -msgstr "Emplacement de publication par défaut:" - -#: mod/settings.php:1234 -msgid "Use Browser Location:" -msgstr "Utiliser la localisation géographique du navigateur:" - -#: mod/settings.php:1237 -msgid "Security and Privacy Settings" -msgstr "Réglages de sécurité et vie privée" - -#: mod/settings.php:1239 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximal de requêtes d'amitié/jour:" - -#: mod/settings.php:1239 mod/settings.php:1269 -msgid "(to prevent spam abuse)" -msgstr "(pour limiter l'impact du spam)" - -#: mod/settings.php:1240 -msgid "Default Post Permissions" -msgstr "Permissions de publication par défaut" - -#: mod/settings.php:1241 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: mod/settings.php:1250 mod/photos.php:1187 mod/photos.php:1571 -msgid "Show to Groups" -msgstr "Montrer aux groupes" - -#: mod/settings.php:1251 mod/photos.php:1188 mod/photos.php:1572 -msgid "Show to Contacts" -msgstr "Montrer aux Contacts" - -#: mod/settings.php:1252 -msgid "Default Private Post" -msgstr "Message privé par défaut" - -#: mod/settings.php:1253 -msgid "Default Public Post" -msgstr "Message publique par défaut" - -#: mod/settings.php:1257 -msgid "Default Permissions for New Posts" -msgstr "Permissions par défaut pour les nouvelles publications" - -#: mod/settings.php:1269 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum de messages privés d'inconnus par jour:" - -#: mod/settings.php:1272 -msgid "Notification Settings" -msgstr "Réglages de notification" - -#: mod/settings.php:1273 -msgid "By default post a status message when:" -msgstr "Par défaut, poster un statut quand:" - -#: mod/settings.php:1274 -msgid "accepting a friend request" -msgstr "j'accepte un ami" - -#: mod/settings.php:1275 -msgid "joining a forum/community" -msgstr "joignant un forum/une communauté" - -#: mod/settings.php:1276 -msgid "making an interesting profile change" -msgstr "je fais une modification intéressante de mon profil" - -#: mod/settings.php:1277 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" - -#: mod/settings.php:1278 -msgid "You receive an introduction" -msgstr "Vous recevez une introduction" - -#: mod/settings.php:1279 -msgid "Your introductions are confirmed" -msgstr "Vos introductions sont confirmées" - -#: mod/settings.php:1280 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un écrit sur votre mur" - -#: mod/settings.php:1281 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un vous commente" - -#: mod/settings.php:1282 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: mod/settings.php:1283 -msgid "You receive a friend suggestion" -msgstr "Vous avez reçu une suggestion d'ami" - -#: mod/settings.php:1284 -msgid "You are tagged in a post" -msgstr "Vous avez été étiquetté dans une publication" - -#: mod/settings.php:1285 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous avez été sollicité dans une publication" - -#: mod/settings.php:1287 -msgid "Activate desktop notifications" -msgstr "Activer les notifications de bureau" - -#: mod/settings.php:1287 -msgid "Show desktop popup on new notifications" -msgstr "Afficher dans des pops-ups les nouvelles notifications" - -#: mod/settings.php:1289 -msgid "Text-only notification emails" -msgstr "Courriels de notification en format texte" - -#: mod/settings.php:1291 -msgid "Send text only notification emails, without the html part" -msgstr "Envoyer le texte des courriels de notification, sans la composante html" - -#: mod/settings.php:1293 -msgid "Advanced Account/Page Type Settings" -msgstr "Paramètres avancés de compte/page" - -#: mod/settings.php:1294 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifier le comportement de ce compte dans certaines situations" - -#: mod/settings.php:1297 -msgid "Relocate" -msgstr "Relocaliser" - -#: mod/settings.php:1298 -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:1299 -msgid "Resend relocate message to contacts" -msgstr "Renvoyer un message de relocalisation aux contacts." - -#: mod/videos.php:123 -msgid "Do you really want to delete this video?" -msgstr "Voulez-vous vraiment supprimer cette vidéo?" - -#: mod/videos.php:128 -msgid "Delete Video" -msgstr "Supprimer la vidéo" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Pas de vidéo sélectionné" - -#: mod/videos.php:308 mod/photos.php:1075 -msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." - -#: mod/videos.php:390 mod/photos.php:1877 -msgid "View Album" -msgstr "Voir l'album" - -#: mod/videos.php:399 -msgid "Recent Videos" -msgstr "Vidéos récente" - -#: mod/videos.php:401 -msgid "Upload New Videos" -msgstr "Téléversé une nouvelle vidéo" +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Contact ajouté" #: mod/install.php:139 msgid "Friendica Communications Server - Setup" @@ -6510,7 +8231,7 @@ msgid "" "or mysql." msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." -#: mod/install.php:161 mod/install.php:230 mod/install.php:602 +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 msgid "Please see the file \"INSTALL.txt\"." msgstr "Référez-vous au fichier \"INSTALL.txt\"." @@ -6522,10 +8243,6 @@ msgstr "Base de données déjà en cours d'utilisation." msgid "System check" msgstr "Vérifications système" -#: mod/install.php:231 mod/cal.php:281 mod/events.php:383 -msgid "Next" -msgstr "Suivant" - #: mod/install.php:232 msgid "Check again" msgstr "Vérifier à nouveau" @@ -6820,1711 +8537,152 @@ msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Véri msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne." -#: mod/install.php:551 +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 msgid "ImageMagick PHP extension is installed" msgstr "L’extension PHP ImageMagick est installée" -#: mod/install.php:553 +#: mod/install.php:557 msgid "ImageMagick supports GIF" msgstr "ImageMagick supporte le format GIF" -#: mod/install.php:561 +#: mod/install.php:566 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "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." -#: mod/install.php:600 +#: mod/install.php:605 msgid "

                                              What next

                                              " msgstr "

                                              Ensuite

                                              " -#: mod/install.php:601 +#: mod/install.php:606 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\"." -#: mod/photos.php:101 mod/photos.php:1886 -msgid "Recent Photos" -msgstr "Photos récentes" +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication originale." -#: mod/photos.php:104 mod/photos.php:1308 mod/photos.php:1888 -msgid "Upload New Photos" -msgstr "Téléverser de nouvelles photos" +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Publication vide rejetée." -#: mod/photos.php:182 -msgid "Contact information unavailable" -msgstr "Informations de contact indisponibles" +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvée." -#: mod/photos.php:203 -msgid "Album not found." -msgstr "Album introuvable." - -#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1250 -msgid "Delete Album" -msgstr "Effacer l'album" - -#: mod/photos.php:243 -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:323 mod/photos.php:334 mod/photos.php:1567 -msgid "Delete Photo" -msgstr "Effacer la photo" - -#: mod/photos.php:332 -msgid "Do you really want to delete this photo?" -msgstr "Voulez-vous vraiment supprimer cette photo ?" - -#: mod/photos.php:707 +#: mod/item.php:992 #, 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:707 -msgid "a photo" -msgstr "une photo" - -#: mod/photos.php:814 -msgid "Image file is empty." -msgstr "Fichier image vide." - -#: mod/photos.php:974 -msgid "No photos selected" -msgstr "Aucune photo sélectionnée" - -#: mod/photos.php:1135 -#, 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:1170 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: mod/photos.php:1174 mod/photos.php:1245 -msgid "New album name: " -msgstr "Nom du nouvel album: " - -#: mod/photos.php:1175 -msgid "or existing album name: " -msgstr "ou nom d'un album existant: " - -#: mod/photos.php:1176 -msgid "Do not show a status post for this upload" -msgstr "Ne pas publier de notice de statut pour cet envoi" - -#: mod/photos.php:1189 -msgid "Private Photo" -msgstr "Photo privée" - -#: mod/photos.php:1190 -msgid "Public Photo" -msgstr "Photo publique" - -#: mod/photos.php:1258 -msgid "Edit Album" -msgstr "Éditer l'album" - -#: mod/photos.php:1264 -msgid "Show Newest First" -msgstr "Plus récent d'abord" - -#: mod/photos.php:1266 -msgid "Show Oldest First" -msgstr "Plus ancien d'abord" - -#: mod/photos.php:1294 mod/photos.php:1871 -msgid "View Photo" -msgstr "Voir la photo" - -#: mod/photos.php:1340 -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:1342 -msgid "Photo not available" -msgstr "Photo indisponible" - -#: mod/photos.php:1398 -msgid "View photo" -msgstr "Voir photo" - -#: mod/photos.php:1398 -msgid "Edit photo" -msgstr "Éditer la photo" - -#: mod/photos.php:1399 -msgid "Use as profile photo" -msgstr "Utiliser comme photo de profil" - -#: mod/photos.php:1424 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: mod/photos.php:1510 -msgid "Tags: " -msgstr "Étiquettes:" - -#: mod/photos.php:1513 -msgid "[Remove any tag]" -msgstr "[Retirer toutes les étiquettes]" - -#: mod/photos.php:1553 -msgid "New album name" -msgstr "Nom du nouvel album" - -#: mod/photos.php:1554 -msgid "Caption" -msgstr "Titre" - -#: mod/photos.php:1555 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: mod/photos.php:1555 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" +"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/photos.php:1556 -msgid "Do not rotate" -msgstr "Pas de rotation" - -#: mod/photos.php:1557 -msgid "Rotate CW (right)" -msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" - -#: mod/photos.php:1558 -msgid "Rotate CCW (left)" -msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" - -#: mod/photos.php:1573 -msgid "Private photo" -msgstr "Photo privée" - -#: mod/photos.php:1574 -msgid "Public photo" -msgstr "Photo publique" - -#: mod/photos.php:1800 -msgid "Map" -msgstr "Carte" - -#: mod/cal.php:279 mod/events.php:380 -msgid "View" -msgstr "Vue" - -#: mod/cal.php:280 mod/events.php:382 -msgid "Previous" -msgstr "Précédent" - -#: mod/cal.php:301 -msgid "User not found" -msgstr "Utilisateur introuvable" - -#: mod/cal.php:317 -msgid "This calendar format is not supported" -msgstr "Format de calendrier inconnu" - -#: mod/cal.php:319 -msgid "No exportable data found" -msgstr "Rien à exporter" - -#: mod/cal.php:334 -msgid "calendar" -msgstr "calendrier" - -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "L'événement ne peut pas se terminer avant d'avoir commencé." - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "Vous devez donner un nom et un horaire de début à l'événement." - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Créer un nouvel événement" - -#: mod/events.php:483 -msgid "Event details" -msgstr "Détails de l'événement" - -#: mod/events.php:484 -msgid "Starting date and Title are required." -msgstr "La date de début et le titre sont requis." - -#: mod/events.php:485 mod/events.php:486 -msgid "Event Starts:" -msgstr "Début de l'événement :" - -#: mod/events.php:487 mod/events.php:503 -msgid "Finish date/time is not known or not relevant" -msgstr "Date / heure de fin inconnue ou sans objet" - -#: mod/events.php:489 mod/events.php:490 -msgid "Event Finishes:" -msgstr "Fin de l'événement:" - -#: mod/events.php:491 mod/events.php:504 -msgid "Adjust for viewer timezone" -msgstr "Ajuster à la zone horaire du visiteur" - -#: mod/events.php:493 -msgid "Description:" -msgstr "Description:" - -#: mod/events.php:497 mod/events.php:499 -msgid "Title:" -msgstr "Titre :" - -#: mod/events.php:500 mod/events.php:501 -msgid "Share this event" -msgstr "Partager cet événement" - -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Identifiant de demande invalide." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "Rejeter" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Notifications du réseau" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Notifications personnelles" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Notifications de page d'accueil" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Voir les demandes ignorées" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Cacher les demandes ignorées" - -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " -msgstr "Type de notification: " - -#: mod/notifications.php:167 +#: mod/item.php:994 #, php-format -msgid "suggested by %s" -msgstr "suggéré(e) par %s" +msgid "You may visit them online at %s" +msgstr "Vous pouvez leur rendre visite sur %s" -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "Poster une nouvelle avtivité d'ami" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "si possible" - -#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1390 -msgid "Approve" -msgstr "Approuver" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Prétend que vous le connaissez: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "oui" - -#: mod/notifications.php:196 -msgid "no" -msgstr "non" - -#: mod/notifications.php:197 +#: mod/item.php:995 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 "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" +"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/notifications.php:200 -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 "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "Ami" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "Initiateur du partage" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fan/Admirateur" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "Aucune demande d'introduction." - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "Afficher non-lus" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "Tout afficher" - -#: mod/notifications.php:305 +#: mod/item.php:999 #, php-format -msgid "No more %s notifications." -msgstr "Aucune notification de %s" +msgid "%s posted an update." +msgstr "%s a publié une mise à jour." -#: mod/ping.php:234 +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Contact invalide." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Tri par commentaires" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Trier par date de commentaire" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Tri des publications" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Trier par date de publication" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Publications qui vous concernent" + +#: mod/network.php:856 +msgid "New" +msgstr "Nouveau" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Flux d'activités - par date" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Liens partagés" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Liens intéressants" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Mis en avant" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Publications favorites" + +#: mod/ping.php:261 msgid "{0} wants to be your friend" msgstr "{0} souhaite être votre ami(e)" -#: mod/ping.php:249 +#: mod/ping.php:276 msgid "{0} sent you a message" msgstr "{0} vous a envoyé un message" -#: mod/ping.php:264 +#: mod/ping.php:291 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Réglages du thème sauvés." - -#: mod/admin.php:156 mod/admin.php:926 -msgid "Site" -msgstr "Site" - -#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1383 mod/admin.php:1398 -msgid "Users" -msgstr "Utilisateurs" - -#: mod/admin.php:159 mod/admin.php:1758 mod/admin.php:1808 -msgid "Themes" -msgstr "Thèmes" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "Mise-à-jour de la base" - -#: mod/admin.php:162 mod/admin.php:397 -msgid "Inspect Queue" -msgstr "Inspecter la file d'attente" - -#: mod/admin.php:163 mod/admin.php:363 -msgid "Federation Statistics" -msgstr "Statistiques Federation" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1882 -msgid "Logs" -msgstr "Journaux" - -#: mod/admin.php:178 mod/admin.php:1950 -msgid "View Logs" -msgstr "Voir les logs" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "Tester une adresse" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "vérification de webfinger" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Propriétés des extensions" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "diagnostic" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Inscriptions en attente de confirmation" - -#: mod/admin.php:356 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance." - -#: mod/admin.php:357 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "En activant la fonctionnalité Répertoire de Contacts Découverts Automatiquement, cela améliorera la qualité des chiffres présentés ici." - -#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925 -#: mod/admin.php:1382 mod/admin.php:1499 mod/admin.php:1559 mod/admin.php:1757 -#: mod/admin.php:1807 mod/admin.php:1881 mod/admin.php:1949 -msgid "Administration" -msgstr "Administration" - -#: mod/admin.php:369 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "Actuellement cette instance est en relation avec %d autres instances des plate-formes suivantes :" - -#: mod/admin.php:399 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:400 -msgid "Recipient Name" -msgstr "Nom du destinataire" - -#: mod/admin.php:401 -msgid "Recipient Profile" -msgstr "Profil du destinataire" - -#: mod/admin.php:403 -msgid "Created" -msgstr "Créé" - -#: mod/admin.php:404 -msgid "Last Tried" -msgstr "Dernier essai" - -#: mod/admin.php:405 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente." - -#: mod/admin.php:424 mod/admin.php:1331 -msgid "Normal Account" -msgstr "Compte normal" - -#: mod/admin.php:425 mod/admin.php:1332 -msgid "Soapbox Account" -msgstr "Compte \"boîte à savon\"" - -#: mod/admin.php:426 mod/admin.php:1333 -msgid "Community/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: mod/admin.php:427 mod/admin.php:1334 -msgid "Automatic Friend Account" -msgstr "Compte auto-amical" - -#: mod/admin.php:428 -msgid "Blog Account" -msgstr "Compte de blog" - -#: mod/admin.php:429 -msgid "Private Forum" -msgstr "Forum privé" - -#: mod/admin.php:455 -msgid "Message queues" -msgstr "Files d'attente des messages" - -#: mod/admin.php:461 -msgid "Summary" -msgstr "Résumé" - -#: mod/admin.php:464 -msgid "Registered users" -msgstr "Utilisateurs inscrits" - -#: mod/admin.php:466 -msgid "Pending registrations" -msgstr "Inscriptions en attente" - -#: mod/admin.php:467 -msgid "Version" -msgstr "Versio" - -#: mod/admin.php:472 -msgid "Active plugins" -msgstr "Extensions activés" - -#: mod/admin.php:495 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins ://" - -#: mod/admin.php:798 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "RINO2 a besoin du module php mcrypt pour fonctionner." - -#: mod/admin.php:806 -msgid "Site settings updated." -msgstr "Réglages du site mis-à-jour." - -#: mod/admin.php:853 -msgid "No community page" -msgstr "Aucune page de communauté" - -#: mod/admin.php:854 -msgid "Public postings from users of this site" -msgstr "Publications publiques des utilisateurs de ce site" - -#: mod/admin.php:855 -msgid "Global community page" -msgstr "Page de la communauté globale" - -#: mod/admin.php:861 -msgid "At post arrival" -msgstr "A l'arrivé d'une publication" - -#: mod/admin.php:871 -msgid "Users, Global Contacts" -msgstr "Utilisateurs, Contacts Globaux" - -#: mod/admin.php:872 -msgid "Users, Global Contacts/fallback" -msgstr "Utilisateurs, Contacts Globaux/alternative" - -#: mod/admin.php:876 -msgid "One month" -msgstr "Un mois" - -#: mod/admin.php:877 -msgid "Three months" -msgstr "Trois mois" - -#: mod/admin.php:878 -msgid "Half a year" -msgstr "Six mois" - -#: mod/admin.php:879 -msgid "One year" -msgstr "Un an" - -#: mod/admin.php:884 -msgid "Multi user instance" -msgstr "Instance multi-utilisateurs" - -#: mod/admin.php:907 -msgid "Closed" -msgstr "Fermé" - -#: mod/admin.php:908 -msgid "Requires approval" -msgstr "Demande une apptrobation" - -#: mod/admin.php:909 -msgid "Open" -msgstr "Ouvert" - -#: mod/admin.php:913 -msgid "No SSL policy, links will track page SSL state" -msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" - -#: mod/admin.php:914 -msgid "Force all links to use SSL" -msgstr "Forcer tous les liens à utiliser SSL" - -#: mod/admin.php:915 -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:929 -msgid "File upload" -msgstr "Téléversement de fichier" - -#: mod/admin.php:930 -msgid "Policies" -msgstr "Politiques" - -#: mod/admin.php:932 -msgid "Auto Discovered Contact Directory" -msgstr "Répertoire de Contacts Découverts Automatiquement" - -#: mod/admin.php:933 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:934 -msgid "Worker" -msgstr "Worker" - -#: mod/admin.php:935 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible." - -#: mod/admin.php:938 -msgid "Site name" -msgstr "Nom du site" - -#: mod/admin.php:939 -msgid "Host name" -msgstr "Nom de la machine hôte" - -#: mod/admin.php:940 -msgid "Sender Email" -msgstr "Courriel de l'émetteur" - -#: mod/admin.php:940 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels." - -#: mod/admin.php:941 -msgid "Banner/Logo" -msgstr "Bannière/Logo" - -#: mod/admin.php:942 -msgid "Shortcut icon" -msgstr "Icône de raccourci" - -#: mod/admin.php:942 -msgid "Link to an icon that will be used for browsers." -msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." - -#: mod/admin.php:943 -msgid "Touch icon" -msgstr "Icône pour systèmes tactiles" - -#: mod/admin.php:943 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles." - -#: mod/admin.php:944 -msgid "Additional Info" -msgstr "Informations supplémentaires" - -#: mod/admin.php:944 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo." - -#: mod/admin.php:945 -msgid "System language" -msgstr "Langue du système" - -#: mod/admin.php:946 -msgid "System theme" -msgstr "Thème du système" - -#: mod/admin.php:946 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" - -#: mod/admin.php:947 -msgid "Mobile system theme" -msgstr "Thème mobile" - -#: mod/admin.php:947 -msgid "Theme for mobile devices" -msgstr "Thème pour les terminaux mobiles" - -#: mod/admin.php:948 -msgid "SSL link policy" -msgstr "Politique SSL pour les liens" - -#: mod/admin.php:948 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" - -#: mod/admin.php:949 -msgid "Force SSL" -msgstr "SSL obligatoire" - -#: mod/admin.php:949 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies." - -#: mod/admin.php:950 -msgid "Old style 'Share'" -msgstr "Anciens style 'Partage'" - -#: mod/admin.php:950 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles." - -#: mod/admin.php:951 -msgid "Hide help entry from navigation menu" -msgstr "Cacher l'aide du menu de navigation" - -#: mod/admin.php:951 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." - -#: mod/admin.php:952 -msgid "Single user instance" -msgstr "Instance mono-utilisateur" - -#: mod/admin.php:952 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." - -#: mod/admin.php:953 -msgid "Maximum image size" -msgstr "Taille maximale des images" - -#: mod/admin.php:953 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." - -#: mod/admin.php:954 -msgid "Maximum image length" -msgstr "Longueur maximale des images" - -#: mod/admin.php:954 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." - -#: mod/admin.php:955 -msgid "JPEG image quality" -msgstr "Qualité JPEG des images" - -#: mod/admin.php:955 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." - -#: mod/admin.php:957 -msgid "Register policy" -msgstr "Politique d'inscription" - -#: mod/admin.php:958 -msgid "Maximum Daily Registrations" -msgstr "Inscriptions maximum par jour" - -#: mod/admin.php:958 -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 "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." - -#: mod/admin.php:959 -msgid "Register text" -msgstr "Texte d'inscription" - -#: mod/admin.php:959 -msgid "Will be displayed prominently on the registration page." -msgstr "Sera affiché de manière bien visible sur la page d'accueil." - -#: mod/admin.php:960 -msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" - -#: mod/admin.php:960 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." - -#: mod/admin.php:961 -msgid "Allowed friend domains" -msgstr "Domaines autorisés" - -#: mod/admin.php:961 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" - -#: mod/admin.php:962 -msgid "Allowed email domains" -msgstr "Domaines courriel autorisés" - -#: mod/admin.php:962 -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 de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" - -#: mod/admin.php:963 -msgid "Block public" -msgstr "Interdire la publication globale" - -#: mod/admin.php:963 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." - -#: mod/admin.php:964 -msgid "Force publish" -msgstr "Forcer la publication globale" - -#: mod/admin.php:964 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." - -#: mod/admin.php:965 -msgid "Global directory URL" -msgstr "URL de l'annuaire global" - -#: mod/admin.php:965 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application." - -#: mod/admin.php:966 -msgid "Allow threaded items" -msgstr "autoriser le suivi des éléments par fil conducteur" - -#: mod/admin.php:966 -msgid "Allow infinite level threading for items on this site." -msgstr "Permettre une imbrication infinie des commentaires." - -#: mod/admin.php:967 -msgid "Private posts by default for new users" -msgstr "Publications privées par défaut pour les nouveaux utilisateurs" - -#: mod/admin.php:967 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." - -#: mod/admin.php:968 -msgid "Don't include post content in email notifications" -msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" - -#: mod/admin.php:968 -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 "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." - -#: mod/admin.php:969 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." - -#: mod/admin.php:969 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." - -#: mod/admin.php:970 -msgid "Don't embed private images in posts" -msgstr "Ne pas miniaturiser les images privées dans les publications" - -#: mod/admin.php:970 -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 "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." - -#: mod/admin.php:971 -msgid "Allow Users to set remote_self" -msgstr "Autoriser les utilisateurs à définir remote_self" - -#: mod/admin.php:971 -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 "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." - -#: mod/admin.php:972 -msgid "Block multiple registrations" -msgstr "Interdire les inscriptions multiples" - -#: mod/admin.php:972 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." - -#: mod/admin.php:973 -msgid "OpenID support" -msgstr "Support OpenID" - -#: mod/admin.php:973 -msgid "OpenID support for registration and logins." -msgstr "Supporter OpenID pour les inscriptions et connexions." - -#: mod/admin.php:974 -msgid "Fullname check" -msgstr "Vérification du \"Prénom Nom\"" - -#: mod/admin.php:974 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" - -#: mod/admin.php:975 -msgid "UTF-8 Regular expressions" -msgstr "Regex UTF-8" - -#: mod/admin.php:975 -msgid "Use PHP UTF8 regular expressions" -msgstr "Utiliser les expressions rationnelles de PHP en UTF8" - -#: mod/admin.php:976 -msgid "Community Page Style" -msgstr "Style de la page de communauté" - -#: mod/admin.php:976 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Type de page de la communauté à afficher. « Communauté globale » montre toutes les publications publiques des réseaux distribués ouverts qui arrivent sur ce serveur." - -#: mod/admin.php:977 -msgid "Posts per user on community page" -msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour " - -#: mod/admin.php:977 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)." - -#: mod/admin.php:978 -msgid "Enable OStatus support" -msgstr "Activer le support d'OStatus" - -#: mod/admin.php:978 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." - -#: mod/admin.php:979 -msgid "OStatus conversation completion interval" -msgstr "Achèvement de l'intervalle de conversation OStatus " - -#: mod/admin.php:979 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources." - -#: mod/admin.php:980 -msgid "Only import OStatus threads from our contacts" -msgstr "Importer seulement les fils OStatus de nos contacts" - -#: mod/admin.php:980 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:981 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée." - -#: mod/admin.php:983 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire." - -#: mod/admin.php:984 -msgid "Enable Diaspora support" -msgstr "Activer le support de Diaspora" - -#: mod/admin.php:984 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fournir une compatibilité Diaspora intégrée." - -#: mod/admin.php:985 -msgid "Only allow Friendica contacts" -msgstr "N'autoriser que les contacts Friendica" - -#: mod/admin.php:985 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." - -#: mod/admin.php:986 -msgid "Verify SSL" -msgstr "Vérifier SSL" - -#: mod/admin.php:986 -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 "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." - -#: mod/admin.php:987 -msgid "Proxy user" -msgstr "Utilisateur du proxy" - -#: mod/admin.php:988 -msgid "Proxy URL" -msgstr "URL du proxy" - -#: mod/admin.php:989 -msgid "Network timeout" -msgstr "Dépassement du délai d'attente du réseau" - -#: mod/admin.php:989 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." - -#: mod/admin.php:990 -msgid "Delivery interval" -msgstr "Intervalle de transmission" - -#: mod/admin.php:990 -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 "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." - -#: mod/admin.php:991 -msgid "Poll interval" -msgstr "Intervalle de réception" - -#: mod/admin.php:991 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." - -#: mod/admin.php:992 -msgid "Maximum Load Average" -msgstr "Plafond de la charge moyenne" - -#: mod/admin.php:992 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." - -#: mod/admin.php:993 -msgid "Maximum Load Average (Frontend)" -msgstr "Plafond de la charge moyenne (frontale)" - -#: mod/admin.php:993 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Limite de charge système pour le rendu des pages - défaut 50." - -#: mod/admin.php:994 -msgid "Maximum table size for optimization" -msgstr "Limite de taille de table pour l'optimisation" - -#: mod/admin.php:994 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "Limite de taille de table (en Mo) pour l'optimisation automatique - défaut 100 Mo. -1 pour désactiver la limite." - -#: mod/admin.php:995 -msgid "Minimum level of fragmentation" -msgstr "Seuil de fragmentation" - -#: mod/admin.php:995 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Seuil de fragmentation pour que l'optimisation automatique se déclenche - défaut 30%." - -#: mod/admin.php:997 -msgid "Periodical check of global contacts" -msgstr "Vérification périodique des contacts globaux" - -#: mod/admin.php:997 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux." - -#: mod/admin.php:998 -msgid "Days between requery" -msgstr "Nombre de jours entre les requêtes" - -#: mod/admin.php:998 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur." - -#: mod/admin.php:999 -msgid "Discover contacts from other servers" -msgstr "Découvrir des contacts des autres serveurs" - -#: mod/admin.php:999 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1000 -msgid "Timeframe for fetching global contacts" -msgstr "Fréquence de récupération des contacts globaux" - -#: mod/admin.php:1000 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Quand la découverte de contacts est activée, cette valeur détermine la fréquence de récupération des données des contacts globaux présents sur d'autres serveurs." - -#: mod/admin.php:1001 -msgid "Search the local directory" -msgstr "Chercher dans le répertoire local" - -#: mod/admin.php:1001 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée." - -#: mod/admin.php:1003 -msgid "Publish server information" -msgstr "Publier les informations du serveur" - -#: mod/admin.php:1003 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur the-federation.info." - -#: mod/admin.php:1005 -msgid "Use MySQL full text engine" -msgstr "Utiliser le moteur de recherche plein texte de MySQL" - -#: mod/admin.php:1005 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." - -#: mod/admin.php:1006 -msgid "Suppress Language" -msgstr "Supprimer un langage" - -#: mod/admin.php:1006 -msgid "Suppress language information in meta information about a posting." -msgstr "Supprimer les informations de langue dans les métadonnées des publications." - -#: mod/admin.php:1007 -msgid "Suppress Tags" -msgstr "Masquer les tags" - -#: mod/admin.php:1007 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Ne pas afficher la liste des hashtags à la fin d’un message." - -#: mod/admin.php:1008 -msgid "Path to item cache" -msgstr "Chemin vers le cache des objets." - -#: mod/admin.php:1008 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1009 -msgid "Cache duration in seconds" -msgstr "Durée du cache en secondes" - -#: mod/admin.php:1009 -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 "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1." - -#: mod/admin.php:1010 -msgid "Maximum numbers of comments per post" -msgstr "Nombre maximum de commentaires par publication" - -#: mod/admin.php:1010 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." - -#: mod/admin.php:1011 -msgid "Path for lock file" -msgstr "Chemin vers le ficher de verrouillage" - -#: mod/admin.php:1011 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:1012 -msgid "Temp path" -msgstr "Chemin des fichiers temporaires" - -#: mod/admin.php:1012 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1013 -msgid "Base path to installation" -msgstr "Chemin de base de l'installation" - -#: mod/admin.php:1013 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:1014 -msgid "Disable picture proxy" -msgstr "Désactiver le proxy image " - -#: mod/admin.php:1014 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante." - -#: mod/admin.php:1015 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:1015 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:1016 -msgid "Only search in tags" -msgstr "Rechercher seulement dans les étiquettes" - -#: mod/admin.php:1016 -msgid "On large systems the text search can slow down the system extremely." -msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." - -#: mod/admin.php:1018 -msgid "New base url" -msgstr "Nouvelle URL de base" - -#: mod/admin.php:1018 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Changer d'URL de base pour ce serveur. Envoie un message de relocalisation à tous les contacts des réseaux distribués d'amis et de relations (DFRN) de tous les utilisateurs." - -#: mod/admin.php:1020 -msgid "RINO Encryption" -msgstr "Chiffrement RINO" - -#: mod/admin.php:1020 -msgid "Encryption layer between nodes." -msgstr "Couche de chiffrement entre les nœuds du réseau." - -#: mod/admin.php:1021 -msgid "Embedly API key" -msgstr "Clé API d'Embedly" - -#: mod/admin.php:1021 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1023 -msgid "Enable 'worker' background processing" -msgstr "" - -#: mod/admin.php:1023 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." -msgstr "" - -#: mod/admin.php:1024 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1024 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1025 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1025 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." -msgstr "" - -#: mod/admin.php:1026 -msgid "Enable fastlane" -msgstr "" - -#: mod/admin.php:1026 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1055 -msgid "Update has been marked successful" -msgstr "Mise-à-jour validée comme 'réussie'" - -#: mod/admin.php:1063 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." - -#: mod/admin.php:1066 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" - -#: mod/admin.php:1078 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "L'exécution %s a échoué avec l'erreur: %s" - -#: mod/admin.php:1081 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Mise-à-jour %s appliquée avec succès." - -#: mod/admin.php:1085 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." - -#: mod/admin.php:1087 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" - -#: mod/admin.php:1106 -msgid "No failed updates." -msgstr "Pas de mises-à-jour échouées." - -#: mod/admin.php:1107 -msgid "Check database structure" -msgstr "Vérifier la structure de la base de données" - -#: mod/admin.php:1112 -msgid "Failed Updates" -msgstr "Mises-à-jour échouées" - -#: mod/admin.php:1113 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." - -#: mod/admin.php:1114 -msgid "Mark success (if update was manually applied)" -msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" - -#: mod/admin.php:1115 -msgid "Attempt to execute this update step automatically" -msgstr "Tenter d'éxecuter cette étape automatiquement" - -#: mod/admin.php:1147 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte." - -#: mod/admin.php:1150 -#, php-format -msgid "" -"\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." -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:1194 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utilisateur a (dé)bloqué" -msgstr[1] "%s utilisateurs ont (dé)bloqué" - -#: mod/admin.php:1201 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utilisateur supprimé" -msgstr[1] "%s utilisateurs supprimés" - -#: mod/admin.php:1248 -#, php-format -msgid "User '%s' deleted" -msgstr "Utilisateur '%s' supprimé" - -#: mod/admin.php:1256 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utilisateur '%s' débloqué" - -#: mod/admin.php:1256 -#, php-format -msgid "User '%s' blocked" -msgstr "Utilisateur '%s' bloqué" - -#: mod/admin.php:1375 mod/admin.php:1400 -msgid "Register date" -msgstr "Date d'inscription" - -#: mod/admin.php:1375 mod/admin.php:1400 -msgid "Last login" -msgstr "Dernière connexion" - -#: mod/admin.php:1375 mod/admin.php:1400 -msgid "Last item" -msgstr "Dernier élément" - -#: mod/admin.php:1384 -msgid "Add User" -msgstr "Ajouter l'utilisateur" - -#: mod/admin.php:1385 -msgid "select all" -msgstr "tout sélectionner" - -#: mod/admin.php:1386 -msgid "User registrations waiting for confirm" -msgstr "Inscriptions d'utilisateurs en attente de confirmation" - -#: mod/admin.php:1387 -msgid "User waiting for permanent deletion" -msgstr "Utilisateur en attente de suppression définitive" - -#: mod/admin.php:1388 -msgid "Request date" -msgstr "Date de la demande" - -#: mod/admin.php:1389 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: mod/admin.php:1391 -msgid "Deny" -msgstr "Rejetter" - -#: mod/admin.php:1395 -msgid "Site admin" -msgstr "Administration du Site" - -#: mod/admin.php:1396 -msgid "Account expired" -msgstr "Compte expiré" - -#: mod/admin.php:1399 -msgid "New User" -msgstr "Nouvel utilisateur" - -#: mod/admin.php:1400 -msgid "Deleted since" -msgstr "Supprimé depuis" - -#: mod/admin.php:1405 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "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?" - -#: mod/admin.php:1406 -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'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" - -#: mod/admin.php:1416 -msgid "Name of the new user." -msgstr "Nom du nouvel utilisateur." - -#: mod/admin.php:1417 -msgid "Nickname" -msgstr "Pseudo" - -#: mod/admin.php:1417 -msgid "Nickname of the new user." -msgstr "Pseudo du nouvel utilisateur." - -#: mod/admin.php:1418 -msgid "Email address of the new user." -msgstr "Adresse mail du nouvel utilisateur." - -#: mod/admin.php:1461 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extension %s désactivée." - -#: mod/admin.php:1465 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extension %s activée." - -#: mod/admin.php:1476 mod/admin.php:1712 -msgid "Disable" -msgstr "Désactiver" - -#: mod/admin.php:1478 mod/admin.php:1714 -msgid "Enable" -msgstr "Activer" - -#: mod/admin.php:1501 mod/admin.php:1759 -msgid "Toggle" -msgstr "Activer/Désactiver" - -#: mod/admin.php:1509 mod/admin.php:1768 -msgid "Author: " -msgstr "Auteur: " - -#: mod/admin.php:1510 mod/admin.php:1769 -msgid "Maintainer: " -msgstr "Mainteneur: " - -#: mod/admin.php:1562 -msgid "Reload active plugins" -msgstr "Recharger les extensions actives" - -#: mod/admin.php:1567 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" -msgstr "" - -#: mod/admin.php:1672 -msgid "No themes found." -msgstr "Aucun thème trouvé." - -#: mod/admin.php:1750 -msgid "Screenshot" -msgstr "Capture d'écran" - -#: mod/admin.php:1810 -msgid "Reload active themes" -msgstr "Recharger les thèmes actifs" - -#: mod/admin.php:1815 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" -msgstr "" - -#: mod/admin.php:1816 -msgid "[Experimental]" -msgstr "[Expérimental]" - -#: mod/admin.php:1817 -msgid "[Unsupported]" -msgstr "[Non supporté]" - -#: mod/admin.php:1841 -msgid "Log settings updated." -msgstr "Réglages des journaux mis-à-jour." - -#: mod/admin.php:1873 -msgid "PHP log currently enabled." -msgstr "" - -#: mod/admin.php:1875 -msgid "PHP log currently disabled." -msgstr "" - -#: mod/admin.php:1884 -msgid "Clear" -msgstr "Effacer" - -#: mod/admin.php:1889 -msgid "Enable Debugging" -msgstr "Activer le déboggage" - -#: mod/admin.php:1890 -msgid "Log file" -msgstr "Fichier de journaux" - -#: mod/admin.php:1890 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." - -#: mod/admin.php:1891 -msgid "Log level" -msgstr "Niveau de journalisaton" - -#: mod/admin.php:1894 -msgid "PHP logging" -msgstr "" - -#: mod/admin.php:1895 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2023 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:2031 -msgid "Manage Additional Features" -msgstr "" +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Aucun contact." #: object/Item.php:370 msgid "via" @@ -8532,100 +8690,83 @@ msgstr "via" #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" -msgstr "" +msgstr "Répéter l'image de fond" #: view/theme/frio/php/Image.php:23 msgid "Will repeat your image to fill the background." -msgstr "" +msgstr "Répète l'image pour couvrir l'arrière-plan." #: view/theme/frio/php/Image.php:25 msgid "Stretch" -msgstr "" +msgstr "Etirer" #: view/theme/frio/php/Image.php:25 msgid "Will stretch to width/height of the image." -msgstr "" +msgstr "Etire l'image source pour coller à l'aspect cible." #: view/theme/frio/php/Image.php:27 msgid "Resize fill and-clip" -msgstr "" +msgstr "Découpe de gabarit" #: view/theme/frio/php/Image.php:27 msgid "Resize to fill and retain aspect ratio." -msgstr "" +msgstr "Redimensionne en coupant pour coller à l'aspect cible." #: view/theme/frio/php/Image.php:29 msgid "Resize best fit" -msgstr "" +msgstr "Maintenir l'aspect sans couper" #: view/theme/frio/php/Image.php:29 msgid "Resize to best fit and retain aspect ratio." -msgstr "" +msgstr "Redimensionne en conservant l'aspect sans couper." #: view/theme/frio/config.php:42 msgid "Default" -msgstr "" +msgstr "Défaut" #: view/theme/frio/config.php:54 msgid "Note: " -msgstr "" +msgstr "Note: " #: view/theme/frio/config.php:54 msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" +msgstr "Vérifiez que tous les utilisateurs du site sont autorisé à accéder à l'image." #: view/theme/frio/config.php:62 msgid "Select scheme" -msgstr "" +msgstr "Sélectionnez la palette" #: view/theme/frio/config.php:63 msgid "Navigation bar background color" -msgstr "" +msgstr "Couleur d'arrière-plan de la barre de navigation" #: view/theme/frio/config.php:64 msgid "Navigation bar icon color " -msgstr "" +msgstr "Couleur des icônes de la barre de navigation" #: view/theme/frio/config.php:65 msgid "Link color" -msgstr "" +msgstr "Couleur des liens" #: view/theme/frio/config.php:66 msgid "Set the background color" -msgstr "" +msgstr "Couleur d'arrière-plan" #: view/theme/frio/config.php:67 msgid "Content background transparency" -msgstr "" +msgstr "Opacité de l'arrière-plan du contenu" #: view/theme/frio/config.php:68 msgid "Set the background image" -msgstr "" +msgstr "Image d'arrière-plan" -#: view/theme/frio/theme.php:226 +#: view/theme/frio/theme.php:229 msgid "Guest" -msgstr "" +msgstr "Invité" -#: view/theme/frio/theme.php:232 +#: view/theme/frio/theme.php:235 msgid "Visitor" -msgstr "" - -#: 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" +msgstr "Visiteur" #: view/theme/quattro/config.php:67 msgid "Alignment" @@ -8639,6 +8780,10 @@ msgstr "Gauche" msgid "Center" msgstr "Centre" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Palette de couleurs" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Taille de texte des publications" @@ -8647,33 +8792,19 @@ msgstr "Taille de texte des publications" msgid "Textareas font size" msgstr "Taille de police des zones de texte" -#: 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/vier/theme.php:152 view/theme/vier/config.php:112 -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 msgid "Community Profiles" msgstr "Profils communautaires" #: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 msgid "Last users" msgstr "Derniers utilisateurs" #: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 msgid "Find Friends" msgstr "Trouver des amis" -#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Annuaire local" @@ -8682,158 +8813,102 @@ msgid "Quick Start" msgstr "Démarrage rapide" #: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 msgid "Connect Services" msgstr "Connecter des services" #: view/theme/vier/config.php:64 msgid "Comma separated list of helper forums" -msgstr "" +msgstr "Liste de forums d'aide, séparés par des virgules" #: view/theme/vier/config.php:110 msgid "Set style" msgstr "Définir le style" -#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -#: view/theme/diabook/config.php:158 +#: view/theme/vier/config.php:111 msgid "Community Pages" msgstr "Pages de Communauté" -#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161 +#: view/theme/vier/config.php:113 msgid "Help or @NewHere ?" msgstr "Aide ou @NewHere?" -#: 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:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Dernièrement aimé" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Dernières photos" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Géolocalisation" - -#: 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:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Régler la longitude (X) pour la géolocalisation" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Régler la latitude (Y) 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/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/duepuntozero/config.php:45 msgid "greenzero" -msgstr "" +msgstr "greenzero" #: view/theme/duepuntozero/config.php:46 msgid "purplezero" -msgstr "" +msgstr "purplezero" #: view/theme/duepuntozero/config.php:47 msgid "easterbunny" -msgstr "" +msgstr "easterbunny" #: view/theme/duepuntozero/config.php:48 msgid "darkzero" -msgstr "" +msgstr "darkzero" #: view/theme/duepuntozero/config.php:49 msgid "comix" -msgstr "" +msgstr "comix" #: view/theme/duepuntozero/config.php:50 msgid "slackr" -msgstr "" +msgstr "slackr" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "Variations" -#: boot.php:902 +#: boot.php:970 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: boot.php:905 +#: boot.php:973 msgid "show fewer" msgstr "montrer moins" -#: boot.php:1567 +#: boot.php:1655 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: boot.php:1679 +#: boot.php:1767 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: boot.php:1708 +#: boot.php:1796 msgid "Password: " msgstr "Mot de passe: " -#: boot.php:1709 +#: boot.php:1797 msgid "Remember me" msgstr "Se souvenir de moi" -#: boot.php:1712 +#: boot.php:1800 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: boot.php:1718 +#: boot.php:1806 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: boot.php:1721 +#: boot.php:1809 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: boot.php:1722 +#: boot.php:1810 msgid "terms of service" msgstr "conditions d'utilisation" -#: boot.php:1724 +#: boot.php:1812 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: boot.php:1725 +#: boot.php:1813 msgid "privacy policy" msgstr "politique de confidentialité" -#: index.php:447 +#: index.php:451 msgid "toggle mobile" msgstr "activ. mobile" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index c0cb973d3..512e397a8 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -5,29 +5,6 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; -$a->strings["Miscellaneous"] = "Divers"; -$a->strings["Birthday:"] = "Anniversaire:"; -$a->strings["Age: "] = "Age : "; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; -$a->strings["never"] = "jamais"; -$a->strings["less than a second ago"] = "il y a moins d'une seconde"; -$a->strings["year"] = "an"; -$a->strings["years"] = "ans"; -$a->strings["month"] = "mois"; -$a->strings["months"] = "mois"; -$a->strings["week"] = "semaine"; -$a->strings["weeks"] = "semaines"; -$a->strings["day"] = "jour"; -$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["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"; @@ -55,6 +32,171 @@ $a->strings["%d contact in common"] = array( 1 => "%d contacts en commun", ); $a->strings["show more"] = "montrer plus"; +$a->strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "Lien sortant vers le forum"; +$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"] = array( + 0 => "Indécis", + 1 => "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["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["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["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 groups"] = "Modifier les groupes"; +$a->strings["Edit group"] = "Editer groupe"; +$a->strings["Create a new group"] = "Créer un nouveau groupe"; +$a->strings["Group Name: "] = "Nom du groupe: "; +$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; +$a->strings["add"] = "ajouter"; +$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["GNU Social"] = "GNU Social"; +$a->strings["App.net"] = "App.net"; +$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; +$a->strings["Post to Email"] = "Publier aux courriels"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé."; +$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["show"] = "montrer"; +$a->strings["don't show"] = "cacher"; +$a->strings["CC: email addresses"] = "CC: adresses de courriel"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Close"] = "Fermer"; +$a->strings["photo"] = "photo"; +$a->strings["status"] = "le statut"; +$a->strings["event"] = "évènement"; +$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["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participera peut-être à %3\$s de %2\$s"; +$a->strings["[no subject]"] = "[pas de sujet]"; +$a->strings["Wall Photos"] = "Photos du mur"; +$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["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["Miscellaneous"] = "Divers"; +$a->strings["Birthday:"] = "Anniversaire:"; +$a->strings["Age: "] = "Age : "; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; +$a->strings["never"] = "jamais"; +$a->strings["less than a second ago"] = "il y a moins d'une seconde"; +$a->strings["year"] = "an"; +$a->strings["years"] = "ans"; +$a->strings["month"] = "mois"; +$a->strings["months"] = "mois"; +$a->strings["week"] = "semaine"; +$a->strings["weeks"] = "semaines"; +$a->strings["day"] = "jour"; +$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"] = "il y a %1\$d %2\$s "; +$a->strings["%s's birthday"] = "Anniversaire de %s's"; +$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; $a->strings["Friendica Notification"] = "Notification Friendica"; $a->strings["Thank You,"] = "Merci, "; $a->strings["%s Administrator"] = "L'administrateur de %s"; @@ -112,172 +254,59 @@ $a->strings["'%1\$s' may choose to extend this into a two-way or more permissive $a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Veuillez visiter %s si vous souhaitez modifier cette relation."; $a->strings["[Friendica System:Notify] registration request"] = "[Système Friendica:Notification] demande d'inscription"; $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Vous avez reçu une demande d'inscription de %1\$s sur %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["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "%2\$s vous a envoyé une [url=%1\$s]demande de création de compte[/url]."; $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["Forums"] = "Forums"; -$a->strings["External link to forum"] = "Lien sortant vers le forum"; -$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["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"] = array( - 0 => "", - 1 => "", -); -$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["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["Location:"] = "Localisation:"; -$a->strings["Embedded content"] = "Contenu incorporé"; -$a->strings["Embedding disabled"] = "Incorporation désactivée"; -$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["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["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 groups"] = "Modifier les groupes"; -$a->strings["Edit group"] = "Editer groupe"; -$a->strings["Create a new group"] = "Créer un nouveau groupe"; -$a->strings["Group Name: "] = "Nom du 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["(no subject)"] = "(sans titre)"; -$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; -$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 \"_\"."] = "Votre \"pseudonyme\" peut seulement contenir les caractères \"a-z\", \"0-9\" et \"_\"."; -$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["default"] = "défaut"; -$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["Profile Photos"] = "Photos du profil"; -$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["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["Photo Location"] = "Lieu de prise de la photo"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte."; -$a->strings["Export Public Calendar"] = "Exporter le Calendrier Public"; -$a->strings["Ability for visitors to download the public calendar"] = "Les visiteurs peuvent télécharger le calendrier public"; -$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["List Forums"] = "Liste des forums"; -$a->strings["Enable widget to display the forums your are connected with"] = "Activer le widget pour afficher les forums auxquels vous êtes connecté"; -$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["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"] = "Ignorer les notifications du post"; -$a->strings["Ability to mute notifications for a thread"] = "Permettre d'ignorer les notifications d'un fil de discussion"; -$a->strings["Advanced Profile Settings"] = "Paramètres Avancés du Profil"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé"; +$a->strings["Sun"] = "Dim"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mer"; +$a->strings["Thu"] = "Jeu"; +$a->strings["Fri"] = "Ven"; +$a->strings["Sat"] = "Sam"; +$a->strings["Sunday"] = "Dimanche"; +$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["Jan"] = "Jan"; +$a->strings["Feb"] = "Fév"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Avr"; +$a->strings["May"] = "Mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aoû"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Déc"; +$a->strings["January"] = "Janvier"; +$a->strings["February"] = "Février"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Avril"; +$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["today"] = "aujourd'hui"; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$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["Export"] = "Exporter"; +$a->strings["Export calendar as ical"] = "Exporter au format iCal"; +$a->strings["Export calendar as csv"] = "Exporter au format CSV"; $a->strings["Nothing new here"] = "Rien de neuf ici"; $a->strings["Clear notifications"] = "Effacer les notifications"; $a->strings["@name, !forum, #tags, content"] = "@nom, !forum, #tags, contenu"; @@ -346,56 +375,196 @@ $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["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["GNU Social"] = "GNU Social"; -$a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; +$a->strings["Contact Photos"] = "Photos du contact"; +$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["System"] = "Système"; +$a->strings["Personal"] = "Personnel"; +$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s"; +$a->strings["%s created a new post"] = "%s a créé une nouvelle publication"; +$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 attending %s's event"] = "%s participe à l'événement de %s"; +$a->strings["%s is not attending %s's event"] = "%s ne participe pas à l'événement de %s"; +$a->strings["%s may attend %s's event"] = "%s participera peut-être à l'événement de %s"; +$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; +$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; +$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; +$a->strings["New Follower"] = "Nouvel abonné"; +$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["(no subject)"] = "(sans titre)"; +$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; +$a->strings["Attachments:"] = "Pièces jointes : "; $a->strings["view full size"] = "voir en pleine taille"; -$a->strings["stopped following"] = "retiré de la liste de suivi"; $a->strings["View Profile"] = "Voir le profil"; $a->strings["View Status"] = "Voir les statuts"; $a->strings["View Photos"] = "Voir les photos"; $a->strings["Network Posts"] = "Publications du réseau"; -$a->strings["Edit Contact"] = "Éditer le contact"; +$a->strings["View Contact"] = ""; $a->strings["Drop Contact"] = "Supprimer le contact"; $a->strings["Send PM"] = "Message privé"; $a->strings["Poke"] = "Sollicitations (pokes)"; -$a->strings["Post to Email"] = "Publier aux courriels"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé."; -$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$a->strings["show"] = "montrer"; -$a->strings["don't show"] = "cacher"; -$a->strings["CC: email addresses"] = "CC: adresses de courriel"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Close"] = "Fermer"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = "Forum"; +$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["Image/photo"] = "Image/photo"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 a écrit:"; +$a->strings["Encrypted content"] = "Contenu chiffré"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %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["Likes"] = "Derniers \"J'aime\""; +$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; +$a->strings["Attending"] = array( + 0 => "Participe", + 1 => "Participent", +); +$a->strings["Not attending"] = "Ne participe pas"; +$a->strings["Might attend"] = "Participera peut-être"; +$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["%s attends."] = "%s participe"; +$a->strings["%s doesn't attend."] = "%s ne participe pas"; +$a->strings["%s attends maybe."] = "%s participe peut-être"; +$a->strings["and"] = "et"; +$a->strings[", and %d other people"] = ", et %d autres personnes"; +$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; +$a->strings["%s like this."] = "%s aime ça."; +$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$a->strings["%s don't like this."] = "%s n'aiment pas ça."; +$a->strings["%2\$d people attend"] = "%2\$d personnes participent"; +$a->strings["%s attend."] = "%s participent."; +$a->strings["%2\$d people don't attend"] = "%2\$d personnes ne participent pas"; +$a->strings["%s don't attend."] = "%s ne participent pas."; +$a->strings["%2\$d people attend maybe"] = "%2\$d personnes vont peut-être participer"; +$a->strings["%s anttend maybe."] = "%s participent peut-être."; +$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["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["Public post"] = "Publication publique"; +$a->strings["Preview"] = "Aperçu"; +$a->strings["Cancel"] = "Annuler"; +$a->strings["Post to Groups"] = "Publier aux groupes"; +$a->strings["Post to Contacts"] = "Publier aux contacts"; +$a->strings["Private post"] = "Message privé"; +$a->strings["Message"] = "Message"; +$a->strings["Browser"] = "Navigateur"; +$a->strings["View all"] = "Voir tout"; +$a->strings["Like"] = array( + 0 => "Like", + 1 => "Likes", +); +$a->strings["Dislike"] = array( + 0 => "Dislike", + 1 => "Dislikes", +); +$a->strings["Not Attending"] = array( + 0 => "Ne participe pas", + 1 => "Ne participent pas", +); $a->strings["%s\\'s birthday"] = "Anniversaire de %s"; +$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["Photo Location"] = "Lieu de prise de la photo"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte."; +$a->strings["Export Public Calendar"] = "Exporter le Calendrier Public"; +$a->strings["Ability for visitors to download the public calendar"] = "Les visiteurs peuvent télécharger le calendrier public"; +$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"] = "Mentionner automatiquement les Forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication."; +$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["List Forums"] = "Liste des forums"; +$a->strings["Enable widget to display the forums your are connected with"] = "Activer le widget pour afficher les forums auxquels vous êtes connecté"; +$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["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"] = "Ignorer les notifications du post"; +$a->strings["Ability to mute notifications for a thread"] = "Permettre d'ignorer les notifications d'un fil de discussion"; +$a->strings["Advanced Profile Settings"] = "Paramètres Avancés du Profil"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé"; $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."; @@ -408,26 +577,71 @@ $a->strings["Use mailto: in front of address to force email check."] = "Utilisez $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["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["Atom feed"] = "Flux Atom"; +$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["Gender:"] = "Genre:"; +$a->strings["Status:"] = "Statut:"; +$a->strings["Homepage:"] = "Page personnelle:"; +$a->strings["About:"] = "À propos:"; +$a->strings["XMPP:"] = ""; +$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["Full Name:"] = "Nom complet:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$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["Forums:"] = "Forums :"; +$a->strings["Basic"] = "Simple"; +$a->strings["Advanced"] = "Avancé"; +$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["Personal Notes"] = "Notes personnelles"; +$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; $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["Permission denied."] = "Permission refusée."; $a->strings["Archives"] = "Archives"; -$a->strings["photo"] = "photo"; -$a->strings["status"] = "le statut"; -$a->strings["event"] = "évènement"; -$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["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participera peut-être à %3\$s de %2\$s"; -$a->strings["[no subject]"] = "[pas de sujet]"; -$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["Embedded content"] = "Contenu incorporé"; +$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "following"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "retiré de la liste de suivi"; $a->strings["newer"] = "Plus récent"; $a->strings["older"] = "Plus ancien"; $a->strings["prev"] = "précédent"; @@ -471,35 +685,15 @@ $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["frustrated"] = "frustré"; $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["View on separate page"] = "Voir dans une nouvelle page"; $a->strings["view on separate page"] = "voir dans une nouvelle page"; -$a->strings["link to source"] = "lien original"; $a->strings["activity"] = "activité"; $a->strings["comment"] = array( 0 => "", @@ -507,214 +701,31 @@ $a->strings["comment"] = array( ); $a->strings["post"] = "publication"; $a->strings["Item filed"] = "Élément classé"; -$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["System"] = "Système"; -$a->strings["Personal"] = "Personnel"; -$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s"; -$a->strings["%s created a new post"] = "%s a créé une nouvelle publication"; -$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 attending %s's event"] = "%s participe à l'événement de %s"; -$a->strings["%s is not attending %s's event"] = "%s ne participe pas à l'événement de %s"; -$a->strings["%s may attend %s's event"] = "%s participera peut-être à l'événement de %s"; -$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; -$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; -$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; -$a->strings["New Follower"] = "Nouvel abonné"; -$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["Image/photo"] = "Image/photo"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 a écrit:"; -$a->strings["Encrypted content"] = "Contenu chiffré"; -$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %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["Likes"] = "Derniers \"J'aime\""; -$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; -$a->strings["Attending"] = array( - 0 => "", - 1 => "", -); -$a->strings["Not attending"] = "Ne participe pas"; -$a->strings["Might attend"] = "Participera peut-être"; -$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["%s attends."] = "%s participe"; -$a->strings["%s doesn't attend."] = "%s ne participe pas"; -$a->strings["%s attends maybe."] = "%s participe peut-être"; -$a->strings["and"] = "et"; -$a->strings[", and %d other people"] = ", et %d autres personnes"; -$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; -$a->strings["%s like this."] = "%s aime ça."; -$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; -$a->strings["%s don't like this."] = "%s n'aiment pas ça."; -$a->strings["%2\$d people attend"] = "%2\$d personnes participent"; -$a->strings["%s attend."] = "%s participent."; -$a->strings["%2\$d people don't attend"] = "%2\$d personnes ne participent pas"; -$a->strings["%s don't attend."] = "%s ne participent pas."; -$a->strings["%2\$d people anttend maybe"] = "%2\$d personnes participeront peut-être"; -$a->strings["%s anttend maybe."] = "%s participent peut-être."; -$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["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["Public post"] = "Publication publique"; -$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["Message"] = "Message"; -$a->strings["Browser"] = "Navigateur"; -$a->strings["View all"] = "Voir tout"; -$a->strings["Like"] = array( - 0 => "", - 1 => "", -); -$a->strings["Dislike"] = array( - 0 => "", - 1 => "", -); -$a->strings["Not Attending"] = array( - 0 => "", - 1 => "", -); -$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["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; -$a->strings["Attachments:"] = "Pièces jointes : "; -$a->strings["Sun"] = "Dim"; -$a->strings["Mon"] = "Lun"; -$a->strings["Tue"] = "Mar"; -$a->strings["Wed"] = "Mer"; -$a->strings["Thu"] = "Jeu"; -$a->strings["Fri"] = "Ven"; -$a->strings["Sat"] = "Sam"; -$a->strings["Jan"] = "Jan"; -$a->strings["Feb"] = "Fév"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Avr"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Jul"; -$a->strings["Aug"] = "Aoû"; -$a->strings["Sept"] = "Sep"; -$a->strings["Oct"] = "Oct"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Déc"; -$a->strings["today"] = "aujourd'hui"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editer l'événement"; -$a->strings["Export"] = "Exporter"; -$a->strings["Export calendar as ical"] = "Exporter au format iCal"; -$a->strings["Export calendar as csv"] = "Exporter au format CSV"; -$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["Atom feed"] = "Flux Atom"; -$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["Forum"] = "Forum"; -$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["Full Name:"] = "Nom complet:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$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["Forums:"] = "Forums :"; -$a->strings["Basic"] = "Simple"; -$a->strings["Advanced"] = "Avancé"; -$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["Personal Notes"] = "Notes personnelles"; -$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; +$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; +$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 \"_\"."] = "Votre \"pseudonyme\" peut seulement contenir les caractères \"a-z\", \"0-9\" et \"_\"."; +$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["default"] = "défaut"; +$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["Profile Photos"] = "Photos du profil"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\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["Post successful."] = "Publication réussie."; -$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; $a->strings["Access denied."] = "Accès refusé."; $a->strings["Welcome to %s"] = "Bienvenue sur %s"; $a->strings["No more system notifications."] = "Pas plus de notifications système."; @@ -758,17 +769,8 @@ $a->strings["No profile"] = "Aucun profil"; $a->strings["Help:"] = "Aide :"; $a->strings["Not Found"] = "Non trouvé"; $a->strings["Page not found."] = "Page introuvable."; -$a->strings["Invalid request."] = "Requête invalide."; -$a->strings["Image exceeds size limit of %s"] = "L'image dépasse la taille limite de %s"; -$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["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; $a->strings["Visible to:"] = "Visible par:"; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Find on this site"] = "Trouver sur ce site"; -$a->strings["Results for:"] = "Résultats pour :"; -$a->strings["Site Directory"] = "Annuaire local"; -$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; $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["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."; @@ -782,10 +784,6 @@ $a->strings["To export your account, go to \"Settings->Export your personal data $a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; $a->strings["Edit contact"] = "Éditer le contact"; $a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; -$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["Profile Match"] = "Correpondance de profils"; -$a->strings["No matches"] = "Aucune correspondance"; $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"; @@ -813,25 +811,17 @@ $a->strings["You will need to supply this invitation code: \$invite_code"] = "Vo $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["Submit"] = "Envoyer"; -$a->strings["Contact Photos"] = "Photos du contact"; $a->strings["Files"] = "Fichiers"; -$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; $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["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["No contacts."] = "Aucun contact."; $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["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 %s"] = "La taille du fichier dépasse la limite de %s"; -$a->strings["File upload failed."] = "Le téléversement a échoué."; -$a->strings["No friends to display."] = "Pas d'amis à afficher."; $a->strings["Resubscribing to OStatus contacts"] = "Réinscription aux contacts OStatus"; $a->strings["Error"] = "Erreur"; $a->strings["Done"] = "Terminé"; @@ -849,29 +839,10 @@ $a->strings["- select -"] = "- choisir -"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; $a->strings["Item not available."] = "Elément non disponible."; $a->strings["Item was not found."] = "Element introuvable."; -$a->strings["Submit Request"] = "Envoyer la requête"; -$a->strings["You already added this contact."] = "Vous avez déjà ajouté ce contact."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."; -$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["No"] = "Non"; -$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; -$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Profile URL"] = "URL du Profil"; -$a->strings["Contact added"] = "Contact ajouté"; $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["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["Not Extended"] = ""; -$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["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["Common Friends"] = "Amis communs"; $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."; @@ -908,28 +879,6 @@ $a->strings["This will completely remove your account. Once this has been done i $a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :"; $a->strings["Item not found"] = "Élément introuvable"; $a->strings["Edit post"] = "Éditer la publication"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.", - 1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; -$a->strings["No such group"] = "Groupe inexistant"; -$a->strings["Group is empty"] = "Groupe vide"; -$a->strings["Group: %s"] = "Group : %s"; -$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["Commented Order"] = "Tri par commentaires"; -$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; -$a->strings["Posted Order"] = "Tri des publications"; -$a->strings["Sort by Post Date"] = "Trier par date de publication"; -$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent"; -$a->strings["New"] = "Nouveau"; -$a->strings["Activity Stream - by date"] = "Flux d'activités - par date"; -$a->strings["Shared Links"] = "Liens partagés"; -$a->strings["Interesting Links"] = "Liens intéressants"; -$a->strings["Starred"] = "Mis en avant"; -$a->strings["Favourite Posts"] = "Publications favorites"; -$a->strings["Not available."] = "Indisponible."; $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"; @@ -948,6 +897,7 @@ $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["Group is empty"] = "Groupe vide"; $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."; @@ -964,6 +914,7 @@ $a->strings["Authorize application connection"] = "Autoriser l'application à se $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["No"] = "Non"; $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 : "; @@ -984,7 +935,6 @@ $a->strings["success"] = "réussite"; $a->strings["failed"] = "échec"; $a->strings["ignored"] = "ignoré"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; -$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; $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é."; @@ -1028,41 +978,8 @@ $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["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["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["Failed to update contact record."] = "Échec de mise à jour du contact."; -$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; -$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["Confirm"] = "Confirmer"; -$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["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["No such group"] = "Groupe inexistant"; +$a->strings["Group: %s"] = "Group : %s"; $a->strings["This entry was edited"] = "Cette entrée à été édité"; $a->strings["%d comment"] = array( 0 => "%d commentaire", @@ -1101,121 +1018,9 @@ $a->strings["I might attend"] = "Je vais peut-être participer"; $a->strings["to"] = "à"; $a->strings["Wall-to-Wall"] = "Inter-mur"; $a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; -$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; -$a->strings["Contact updated."] = "Contact mis à jour."; -$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é"; -$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["Drop contact"] = "Supprimer contact"; -$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?"; -$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"; -$a->strings["%s is sharing with you"] = "%s partage avec vous"; -$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; -$a->strings["Never"] = "Jamais"; -$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; -$a->strings["(Update was not successful)"] = "(Échec de la mise à jour)"; -$a->strings["Suggest friends"] = "Suggérer amitié/contact"; -$a->strings["Network type: %s"] = "Type de réseau %s"; -$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"] = "Contact"; -$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"; -$a->strings["Edit contact notes"] = "Éditer les notes des contacts"; -$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact"; -$a->strings["Ignore contact"] = "Ignorer ce contact"; -$a->strings["Repair URL settings"] = "Réglages de réparation des URL"; -$a->strings["View conversations"] = "Voir les conversations"; -$a->strings["Last update:"] = "Dernière mise-à-jour :"; -$a->strings["Update public posts"] = "Mettre à jour les publications publiques:"; -$a->strings["Update now"] = "Mettre à jour"; -$a->strings["Unblock"] = "Débloquer"; -$a->strings["Block"] = "Bloquer"; -$a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Ignore"] = "Ignorer"; -$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["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["Actions"] = "Actions"; -$a->strings["Contact Settings"] = "Paramètres du Contact"; -$a->strings["Suggestions"] = "Suggestions"; -$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; -$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"; -$a->strings["Blocked"] = "Bloqués"; -$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués"; -$a->strings["Ignored"] = "Ignorés"; -$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés"; -$a->strings["Archived"] = "Archivés"; -$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés"; -$a->strings["Hidden"] = "Cachés"; -$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués"; -$a->strings["Search your contacts"] = "Rechercher dans vos contacts"; -$a->strings["Update"] = "Mises-à-jour"; -$a->strings["Archive"] = "Archiver"; -$a->strings["Unarchive"] = "Désarchiver"; -$a->strings["Batch Actions"] = "Actions multiples"; -$a->strings["View all contacts"] = "Voir tous les contacts"; -$a->strings["View all common friends"] = "Voir tous les amis communs"; -$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; -$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["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; -$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; -$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; -$a->strings["Delete contact"] = "Effacer ce contact"; -$a->strings["Profile not found."] = "Profil 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["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["People Search - %s"] = "Recherche de personne - %s"; -$a->strings["Forum Search - %s"] = "Recherche de Forum - %s"; $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["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["Mood"] = "Humeur"; $a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; $a->strings["Poke/Prod"] = "Solliciter"; @@ -1227,6 +1032,8 @@ $a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais $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 %s"] = "L'image dépasse la taille limite de %s"; +$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"; @@ -1237,6 +1044,38 @@ $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["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["Invalid request identifier."] = "Identifiant de demande invalide."; +$a->strings["Discard"] = "Rejeter"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["Network Notifications"] = "Notifications du réseau"; +$a->strings["Personal Notifications"] = "Notifications personnelles"; +$a->strings["Home Notifications"] = "Notifications de page d'accueil"; +$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["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: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"; +$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: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"; +$a->strings["Friend"] = "Ami"; +$a->strings["Sharer"] = "Initiateur du partage"; +$a->strings["Fan/Admirer"] = "Fan/Admirateur"; +$a->strings["Profile URL"] = "URL du Profil"; +$a->strings["No introductions."] = "Aucune demande d'introduction."; +$a->strings["Show unread"] = "Afficher non-lus"; +$a->strings["Show all"] = "Tout afficher"; +$a->strings["No more %s notifications."] = "Aucune notification de %s"; +$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éé."; @@ -1249,6 +1088,7 @@ $a->strings["Religion"] = "Religion"; $a->strings["Political Views"] = "Tendance politique"; $a->strings["Gender"] = "Sexe"; $a->strings["Sexual Preference"] = "Préférence sexuelle"; +$a->strings["XMPP"] = ""; $a->strings["Homepage"] = "Site internet"; $a->strings["Interests"] = "Centres d'intérêt"; $a->strings["Address"] = "Adresse"; @@ -1292,6 +1132,8 @@ $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["Tell us about yourself..."] = "Parlez-nous de vous..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; $a->strings["Homepage URL:"] = "Page personnelle :"; $a->strings["Religious Views:"] = "Opinions religieuses :"; $a->strings["Public Keywords:"] = "Mots-clés publics :"; @@ -1308,6 +1150,95 @@ $a->strings["Work/employment"] = "Activité professionnelle / Occupation"; $a->strings["School/education"] = "Études / Formation"; $a->strings["Contact information and Social Networks"] = "Coordonnées / Réseaux sociaux"; $a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils"; +$a->strings["No friends to display."] = "Pas d'amis à afficher."; +$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; +$a->strings["View"] = "Vue"; +$a->strings["Previous"] = "Précédent"; +$a->strings["Next"] = "Suivant"; +$a->strings["list"] = ""; +$a->strings["User not found"] = "Utilisateur introuvable"; +$a->strings["This calendar format is not supported"] = "Format de calendrier inconnu"; +$a->strings["No exportable data found"] = "Rien à exporter"; +$a->strings["calendar"] = "calendrier"; +$a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["Not available."] = "Indisponible."; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Find on this site"] = "Trouver sur ce site"; +$a->strings["Results for:"] = "Résultats pour :"; +$a->strings["Site Directory"] = "Annuaire local"; +$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; +$a->strings["People Search - %s"] = "Recherche de personne - %s"; +$a->strings["Forum Search - %s"] = "Recherche de Forum - %s"; +$a->strings["No matches"] = "Aucune correspondance"; +$a->strings["Item has been removed."] = "Cet élément a été enlevé."; +$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé."; +$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["Create New Event"] = "Créer un nouvel événement"; +$a->strings["Event details"] = "Détails de l'événement"; +$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis."; +$a->strings["Event Starts:"] = "Début de l'événement :"; +$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:"; +$a->strings["Title:"] = "Titre :"; +$a->strings["Share this event"] = "Partager cet événement"; +$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; +$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["Profile Match"] = "Correpondance de profils"; +$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; +$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["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; +$a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; +$a->strings["everybody"] = "tout le monde"; +$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 file is empty."] = "Fichier image vide."; +$a->strings["No photos selected"] = "Aucune photo sélectionnée"; +$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; +$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["Show to Groups"] = "Montrer aux groupes"; +$a->strings["Show to Contacts"] = "Montrer aux Contacts"; +$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["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["Do not rotate"] = "Pas de rotation"; +$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["Private photo"] = "Photo privée"; +$a->strings["Public photo"] = "Photo publique"; +$a->strings["Map"] = "Carte"; +$a->strings["View Album"] = "Voir l'album"; $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["Registration successful."] = "Inscription réussie."; @@ -1317,6 +1248,8 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your $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["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; $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"; @@ -1328,10 +1261,6 @@ $a->strings["Confirm:"] = "Confirmer:"; $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 your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; -$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["everybody"] = "tout le monde"; $a->strings["Account"] = "Compte"; $a->strings["Additional features"] = "Fonctions supplémentaires"; $a->strings["Display"] = "Afficher"; @@ -1340,6 +1269,7 @@ $a->strings["Plugins"] = "Extensions"; $a->strings["Connected apps"] = "Applications connectées"; $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"; @@ -1404,6 +1334,8 @@ $a->strings["No special theme for mobile devices"] = "Pas de thème particulier $a->strings["Display Settings"] = "Affichage"; $a->strings["Display Theme:"] = "Thème d'affichage:"; $a->strings["Mobile Theme:"] = "Thème mobile:"; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum de 10 secondes. Saisir -1 pour désactiver."; $a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; @@ -1415,18 +1347,29 @@ $a->strings["Beginning of week:"] = "Début de la semaine :"; $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"] = "Mises à jour automatiques seulement en haut de la page du réseau."; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; $a->strings["General Theme Settings"] = "Paramètres généraux de thème"; $a->strings["Custom Theme Settings"] = "Paramètres personnalisés de thème"; $a->strings["Content Settings"] = "Paramètres de contenu"; $a->strings["Theme settings"] = "Réglages du thème graphique"; -$a->strings["User Types"] = "Types d'utilisateurs"; -$a->strings["Community Types"] = "Genre de communautés"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; $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["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; $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]"; @@ -1470,8 +1413,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'ami $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"; @@ -1502,172 +1443,13 @@ $a->strings["Resend relocate message to contacts"] = "Renvoyer un message de rel $a->strings["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?"; $a->strings["Delete Video"] = "Supprimer la vidéo"; $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 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["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."; -$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Base de données déjà en cours d'utilisation."; -$a->strings["System check"] = "Vérifications système"; -$a->strings["Next"] = "Suivant"; -$a->strings["Check again"] = "Vérifier à nouveau"; -$a->strings["Database connection"] = "Connexion à la base de données"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."; -$a->strings["Database Server Name"] = "Serveur de base de données"; -$a->strings["Database Login Name"] = "Nom d'utilisateur de la base"; -$a->strings["Database Login Password"] = "Mot de passe de la base"; -$a->strings["Database Name"] = "Nom de la base"; -$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."; -$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; -$a->strings["Site settings"] = "Réglages du site"; -$a->strings["System Language:"] = "Langue système:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Si vous n'avez pas une version en ligne de commande de PHP sur votre serveur, vous ne pourrez pas exécuter l'attente active ou « polling » en arrière-plan via cron. Voir 'Setup the poller'."; -$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."; -$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Version de PHP:"; -$a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."; -$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement"; -$a->strings["libCurl PHP module"] = "Module libCurl de PHP"; -$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP"; -$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["mcrypt PHP module"] = "Module PHP mcrypt"; -$a->strings["XML PHP module"] = "Module PHP XML"; -$a->strings["iconv module"] = "Module iconv"; -$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: mcrypt PHP module required but not installed."] = "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé."; -$a->strings["Error: iconv PHP module required but not installed."] = "Erreur : Le module PHP iconv requis est absent."; -$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Si vous utilisez php_cli, veuillez vous assurer que le module mcrypt est activé dans le fichier de configuration"; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La fonction mcrypt_create_iv() n'est pas définie. Elle est requise pour activer le chiffrement RINO2."; -$a->strings["mcrypt_create_iv() function"] = "fonction mcrypt_create_iv()"; -$a->strings["Error, XML PHP module required but not installed."] = "Erreur : le module PHP XML requis est absent."; -$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."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."; -$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; -$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; -$a->strings["ImageMagick PHP extension is installed"] = "L’extension PHP ImageMagick est installée"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick supporte le format GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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["Recent Photos"] = "Photos récentes"; -$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 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["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["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["Do not rotate"] = "Pas de rotation"; -$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["Private photo"] = "Photo privée"; -$a->strings["Public photo"] = "Photo publique"; -$a->strings["Map"] = "Carte"; -$a->strings["View"] = "Vue"; -$a->strings["Previous"] = "Précédent"; -$a->strings["User not found"] = "Utilisateur introuvable"; -$a->strings["This calendar format is not supported"] = "Format de calendrier inconnu"; -$a->strings["No exportable data found"] = "Rien à exporter"; -$a->strings["calendar"] = "calendrier"; -$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé."; -$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["Create New Event"] = "Créer un nouvel événement"; -$a->strings["Event details"] = "Détails de l'événement"; -$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis."; -$a->strings["Event Starts:"] = "Début de l'événement :"; -$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:"; -$a->strings["Title:"] = "Titre :"; -$a->strings["Share this event"] = "Partager cet événement"; -$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; -$a->strings["Discard"] = "Rejeter"; -$a->strings["Network Notifications"] = "Notifications du réseau"; -$a->strings["Personal Notifications"] = "Notifications personnelles"; -$a->strings["Home Notifications"] = "Notifications de page d'accueil"; -$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["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["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: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"; -$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: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"; -$a->strings["Friend"] = "Ami"; -$a->strings["Sharer"] = "Initiateur du partage"; -$a->strings["Fan/Admirer"] = "Fan/Admirateur"; -$a->strings["No introductions."] = "Aucune demande d'introduction."; -$a->strings["Show unread"] = "Afficher non-lus"; -$a->strings["Show all"] = "Tout afficher"; -$a->strings["No more %s notifications."] = "Aucune notification de %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["Invalid request."] = "Requête invalide."; +$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 %s"] = "La taille du fichier dépasse la limite de %s"; +$a->strings["File upload failed."] = "Le téléversement a échoué."; $a->strings["Theme settings updated."] = "Réglages du thème sauvés."; $a->strings["Site"] = "Site"; $a->strings["Users"] = "Utilisateurs"; @@ -1682,6 +1464,7 @@ $a->strings["check webfinger"] = "vérification de webfinger"; $a->strings["Plugin Features"] = "Propriétés des extensions"; $a->strings["diagnostics"] = "diagnostic"; $a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; +$a->strings["unknown"] = ""; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance."; $a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "En activant la fonctionnalité Répertoire de Contacts Découverts Automatiquement, cela améliorera la qualité des chiffres présentés ici."; $a->strings["Administration"] = "Administration"; @@ -1692,6 +1475,8 @@ $a->strings["Recipient Profile"] = "Profil du destinataire"; $a->strings["Created"] = "Créé"; $a->strings["Last Tried"] = "Dernier essai"; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente."; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; $a->strings["Normal Account"] = "Compte normal"; $a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; $a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; @@ -1710,7 +1495,9 @@ $a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; $a->strings["No community page"] = "Aucune page de communauté"; $a->strings["Public postings from users of this site"] = "Publications publiques des utilisateurs de ce site"; $a->strings["Global community page"] = "Page de la communauté globale"; +$a->strings["Never"] = "Jamais"; $a->strings["At post arrival"] = "A l'arrivé d'une publication"; +$a->strings["Disabled"] = "Désactivé"; $a->strings["Users, Global Contacts"] = "Utilisateurs, Contacts Globaux"; $a->strings["Users, Global Contacts/fallback"] = "Utilisateurs, Contacts Globaux/alternative"; $a->strings["One month"] = "Un mois"; @@ -1877,12 +1664,14 @@ $a->strings["Embedly API key"] = "Clé API d'Embedly"; $a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Enable 'worker' background processing"] = ""; $a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; -$a->strings["Maximum number of parallel workers"] = ""; -$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; -$a->strings["Don't use 'proc_open' with the worker"] = ""; -$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Maximum number of parallel workers"] = "Nombre maximum de processus simultanés"; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Sur un hébergement partagé, mettez 2. Sur des serveurs plus puissants, 10 est une bonne idée. Le défaut est 4."; +$a->strings["Don't use 'proc_open' with the worker"] = "Ne pas utiliser 'proc_open' pour les tâches de fond"; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Activez ceci si votre hébergement ne vous permet pas d'utiliser 'proc_open'. Cela arrive le plus souvent dans les hébergements partagés. Si vous l'activez, pensez à augmenter la fréquence de l'exécution des tâches de fond dans votre crontab."; $a->strings["Enable fastlane"] = ""; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; $a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès."; $a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"; @@ -1918,7 +1707,10 @@ $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisat $a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive"; $a->strings["Request date"] = "Date de la demande"; $a->strings["No registrations."] = "Pas d'inscriptions."; +$a->strings["Note from the user"] = ""; $a->strings["Deny"] = "Rejetter"; +$a->strings["Block"] = "Bloquer"; +$a->strings["Unblock"] = "Débloquer"; $a->strings["Site admin"] = "Administration du Site"; $a->strings["Account expired"] = "Compte expiré"; $a->strings["New User"] = "Nouvel utilisateur"; @@ -1945,77 +1737,305 @@ $a->strings["No themes found on the system. They should be paced in %1\$s"] = "" $a->strings["[Experimental]"] = "[Expérimental]"; $a->strings["[Unsupported]"] = "[Non supporté]"; $a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; -$a->strings["PHP log currently enabled."] = ""; -$a->strings["PHP log currently disabled."] = ""; +$a->strings["PHP log currently enabled."] = "Log PHP actuellement activé."; +$a->strings["PHP log currently disabled."] = "Log PHP actuellement desactivé."; $a->strings["Clear"] = "Effacer"; $a->strings["Enable Debugging"] = "Activer le déboggage"; $a->strings["Log file"] = "Fichier de journaux"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."; $a->strings["Log level"] = "Niveau de journalisaton"; -$a->strings["PHP logging"] = ""; +$a->strings["PHP logging"] = "Log PHP"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Lock feature %s"] = ""; -$a->strings["Manage Additional Features"] = ""; +$a->strings["Lock feature %s"] = "Verouiller la fonctionnalité %s"; +$a->strings["Manage Additional Features"] = "Gérer les fonctionnalités avancées"; +$a->strings["%d contact edited."] = array( + 0 => "%d contact mis à jour.", + 1 => "%d contacts mis à jour.", +); +$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; +$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["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é"; +$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["Drop contact"] = "Supprimer contact"; +$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?"; +$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"; +$a->strings["%s is sharing with you"] = "%s partage avec vous"; +$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; +$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; +$a->strings["(Update was not successful)"] = "(Échec de la mise à jour)"; +$a->strings["Suggest friends"] = "Suggérer amitié/contact"; +$a->strings["Network type: %s"] = "Type de réseau %s"; +$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["Fetch information"] = "Récupérer informations"; +$a->strings["Fetch information and keywords"] = "Récupérer informations"; +$a->strings["Contact"] = "Contact"; +$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"; +$a->strings["Edit contact notes"] = "Éditer les notes des contacts"; +$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact"; +$a->strings["Ignore contact"] = "Ignorer ce contact"; +$a->strings["Repair URL settings"] = "Réglages de réparation des URL"; +$a->strings["View conversations"] = "Voir les conversations"; +$a->strings["Last update:"] = "Dernière mise-à-jour :"; +$a->strings["Update public posts"] = "Mettre à jour les publications publiques:"; +$a->strings["Update now"] = "Mettre à jour"; +$a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Currently blocked"] = "Actuellement bloqué"; +$a->strings["Currently ignored"] = "Actuellement ignoré"; +$a->strings["Currently archived"] = "Actuellement archivé"; +$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["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["Actions"] = "Actions"; +$a->strings["Contact Settings"] = "Paramètres du Contact"; +$a->strings["Suggestions"] = "Suggestions"; +$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; +$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"; +$a->strings["Blocked"] = "Bloqués"; +$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués"; +$a->strings["Ignored"] = "Ignorés"; +$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés"; +$a->strings["Archived"] = "Archivés"; +$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés"; +$a->strings["Hidden"] = "Cachés"; +$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués"; +$a->strings["Search your contacts"] = "Rechercher dans vos contacts"; +$a->strings["Archive"] = "Archiver"; +$a->strings["Unarchive"] = "Désarchiver"; +$a->strings["Batch Actions"] = "Actions multiples"; +$a->strings["View all contacts"] = "Voir tous les contacts"; +$a->strings["View all common friends"] = "Voir tous les amis communs"; +$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; +$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["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; +$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; +$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; +$a->strings["Delete contact"] = "Effacer ce contact"; +$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["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["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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$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["Confirm"] = "Confirmer"; +$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["You already added this contact."] = "Vous avez déjà ajouté ce contact."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."; +$a->strings["Contact added"] = "Contact ajouté"; +$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."; +$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Base de données déjà en cours d'utilisation."; +$a->strings["System check"] = "Vérifications système"; +$a->strings["Check again"] = "Vérifier à nouveau"; +$a->strings["Database connection"] = "Connexion à la base de données"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."; +$a->strings["Database Server Name"] = "Serveur de base de données"; +$a->strings["Database Login Name"] = "Nom d'utilisateur de la base"; +$a->strings["Database Login Password"] = "Mot de passe de la base"; +$a->strings["Database Name"] = "Nom de la base"; +$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."; +$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; +$a->strings["Site settings"] = "Réglages du site"; +$a->strings["System Language:"] = "Langue système:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Si vous n'avez pas une version en ligne de commande de PHP sur votre serveur, vous ne pourrez pas exécuter l'attente active ou « polling » en arrière-plan via cron. Voir 'Setup the poller'."; +$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."; +$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Version de PHP:"; +$a->strings["PHP cli binary"] = "PHP cli binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."; +$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement"; +$a->strings["libCurl PHP module"] = "Module libCurl de PHP"; +$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP"; +$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["mcrypt PHP module"] = "Module PHP mcrypt"; +$a->strings["XML PHP module"] = "Module PHP XML"; +$a->strings["iconv module"] = "Module iconv"; +$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: mcrypt PHP module required but not installed."] = "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé."; +$a->strings["Error: iconv PHP module required but not installed."] = "Erreur : Le module PHP iconv requis est absent."; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Si vous utilisez php_cli, veuillez vous assurer que le module mcrypt est activé dans le fichier de configuration"; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La fonction mcrypt_create_iv() n'est pas définie. Elle est requise pour activer le chiffrement RINO2."; +$a->strings["mcrypt_create_iv() function"] = "fonction mcrypt_create_iv()"; +$a->strings["Error, XML PHP module required but not installed."] = "Erreur : le module PHP XML requis est absent."; +$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."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."; +$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; +$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = "L’extension PHP ImageMagick est installée"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supporte le format GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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["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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", +); +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$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["Commented Order"] = "Tri par commentaires"; +$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; +$a->strings["Posted Order"] = "Tri des publications"; +$a->strings["Sort by Post Date"] = "Trier par date de publication"; +$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent"; +$a->strings["New"] = "Nouveau"; +$a->strings["Activity Stream - by date"] = "Flux d'activités - par date"; +$a->strings["Shared Links"] = "Liens partagés"; +$a->strings["Interesting Links"] = "Liens intéressants"; +$a->strings["Starred"] = "Mis en avant"; +$a->strings["Favourite Posts"] = "Publications favorites"; +$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["No contacts."] = "Aucun contact."; $a->strings["via"] = "via"; -$a->strings["Repeat the image"] = ""; -$a->strings["Will repeat your image to fill the background."] = ""; -$a->strings["Stretch"] = ""; -$a->strings["Will stretch to width/height of the image."] = ""; -$a->strings["Resize fill and-clip"] = ""; -$a->strings["Resize to fill and retain aspect ratio."] = ""; -$a->strings["Resize best fit"] = ""; -$a->strings["Resize to best fit and retain aspect ratio."] = ""; -$a->strings["Default"] = ""; -$a->strings["Note: "] = ""; -$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; -$a->strings["Select scheme"] = ""; -$a->strings["Navigation bar background color"] = ""; -$a->strings["Navigation bar icon color "] = ""; -$a->strings["Link color"] = ""; -$a->strings["Set the background color"] = ""; -$a->strings["Content background transparency"] = ""; -$a->strings["Set the background image"] = ""; -$a->strings["Guest"] = ""; -$a->strings["Visitor"] = ""; -$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["Repeat the image"] = "Répéter l'image de fond"; +$a->strings["Will repeat your image to fill the background."] = "Répète l'image pour couvrir l'arrière-plan."; +$a->strings["Stretch"] = "Etirer"; +$a->strings["Will stretch to width/height of the image."] = "Etire l'image source pour coller à l'aspect cible."; +$a->strings["Resize fill and-clip"] = "Découpe de gabarit"; +$a->strings["Resize to fill and retain aspect ratio."] = "Redimensionne en coupant pour coller à l'aspect cible."; +$a->strings["Resize best fit"] = "Maintenir l'aspect sans couper"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Redimensionne en conservant l'aspect sans couper."; +$a->strings["Default"] = "Défaut"; +$a->strings["Note: "] = "Note: "; +$a->strings["Check image permissions if all users are allowed to visit the image"] = "Vérifiez que tous les utilisateurs du site sont autorisé à accéder à l'image."; +$a->strings["Select scheme"] = "Sélectionnez la palette"; +$a->strings["Navigation bar background color"] = "Couleur d'arrière-plan de la barre de navigation"; +$a->strings["Navigation bar icon color "] = "Couleur des icônes de la barre de navigation"; +$a->strings["Link color"] = "Couleur des liens"; +$a->strings["Set the background color"] = "Couleur d'arrière-plan"; +$a->strings["Content background transparency"] = "Opacité de l'arrière-plan du contenu"; +$a->strings["Set the background image"] = "Image d'arrière-plan"; +$a->strings["Guest"] = "Invité"; +$a->strings["Visitor"] = "Visiteur"; $a->strings["Alignment"] = "Alignement"; $a->strings["Left"] = "Gauche"; $a->strings["Center"] = "Centre"; +$a->strings["Color scheme"] = "Palette de couleurs"; $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 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["Community Profiles"] = "Profils communautaires"; $a->strings["Last users"] = "Derniers utilisateurs"; $a->strings["Find Friends"] = "Trouver des amis"; $a->strings["Local Directory"] = "Annuaire local"; $a->strings["Quick Start"] = "Démarrage rapide"; $a->strings["Connect Services"] = "Connecter des services"; -$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Comma separated list of helper forums"] = "Liste de forums d'aide, séparés par des virgules"; $a->strings["Set style"] = "Définir le style"; $a->strings["Community Pages"] = "Pages de Communauté"; $a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?"; -$a->strings["Your contacts"] = "Vos contacts"; -$a->strings["Your personal photos"] = "Vos photos personnelles"; -$a->strings["Last likes"] = "Dernièrement aimé"; -$a->strings["Last photos"] = "Dernières photos"; -$a->strings["Earth Layers"] = "Géolocalisation"; -$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; -$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["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; -$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["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; +$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"] = "Variations"; $a->strings["Delete this item?"] = "Effacer cet élément?"; $a->strings["show fewer"] = "montrer moins"; diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index 39c0b853a..1ac568203 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-08 19:22+0200\n" -"PO-Revision-Date: 2016-07-25 09:10+0000\n" -"Last-Translator: Sveinn í Felli \n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,185 +26,6 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: boot.php:887 -msgid "Delete this item?" -msgstr "Eyða þessu atriði?" - -#: boot.php:888 mod/content.php:727 mod/content.php:945 mod/photos.php:1616 -#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403 -#: object/Item.php:719 -msgid "Comment" -msgstr "Athugasemd" - -#: boot.php:889 include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2122 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 -msgid "show more" -msgstr "birta meira" - -#: boot.php:890 -msgid "show fewer" -msgstr "birta minna" - -#: boot.php:1483 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." - -#: boot.php:1595 -msgid "Create a New Account" -msgstr "Stofna nýjan notanda" - -#: boot.php:1596 include/nav.php:111 mod/register.php:280 -msgid "Register" -msgstr "Nýskrá" - -#: boot.php:1620 include/nav.php:75 view/theme/frio/theme.php:243 -msgid "Logout" -msgstr "Útskrá" - -#: boot.php:1621 include/nav.php:94 mod/bookmarklet.php:12 -msgid "Login" -msgstr "Innskrá" - -#: boot.php:1623 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Gælunafn eða póstfang: " - -#: boot.php:1624 -msgid "Password: " -msgstr "Aðgangsorð: " - -#: boot.php:1625 -msgid "Remember me" -msgstr "Muna eftir mér" - -#: boot.php:1628 -msgid "Or login using OpenID: " -msgstr "Eða auðkenna með OpenID: " - -#: boot.php:1634 -msgid "Forgot your password?" -msgstr "Gleymt lykilorð?" - -#: boot.php:1635 mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Endurstilling aðgangsorðs" - -#: boot.php:1637 -msgid "Website Terms of Service" -msgstr "Þjónustuskilmálar vefsvæðis" - -#: boot.php:1638 -msgid "terms of service" -msgstr "þjónustuskilmálar" - -#: boot.php:1640 -msgid "Website Privacy Policy" -msgstr "Persónuverndarstefna" - -#: boot.php:1641 -msgid "privacy policy" -msgstr "persónuverndarstefna" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 -msgid "Miscellaneous" -msgstr "Ýmislegt" - -#: include/datetime.php:183 include/identity.php:627 -msgid "Birthday:" -msgstr "Afmælisdagur:" - -#: include/datetime.php:185 mod/profiles.php:721 -msgid "Age: " -msgstr "Aldur: " - -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "ÁÁÁÁ-MM-DD eða MM-DD" - -#: include/datetime.php:341 -msgid "never" -msgstr "aldrei" - -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "fyrir minna en sekúndu" - -#: include/datetime.php:357 -msgid "year" -msgstr "ár" - -#: include/datetime.php:357 -msgid "years" -msgstr "ár" - -#: include/datetime.php:358 include/event.php:480 mod/events.php:389 -#: mod/cal.php:287 -msgid "month" -msgstr "mánuður" - -#: include/datetime.php:358 -msgid "months" -msgstr "mánuðir" - -#: include/datetime.php:359 include/event.php:481 mod/events.php:390 -#: mod/cal.php:288 -msgid "week" -msgstr "vika" - -#: include/datetime.php:359 -msgid "weeks" -msgstr "vikur" - -#: include/datetime.php:360 include/event.php:482 mod/events.php:391 -#: mod/cal.php:289 -msgid "day" -msgstr "dagur" - -#: include/datetime.php:360 -msgid "days" -msgstr "dagar" - -#: include/datetime.php:361 -msgid "hour" -msgstr "klukkustund" - -#: include/datetime.php:361 -msgid "hours" -msgstr "klukkustundir" - -#: include/datetime.php:362 -msgid "minute" -msgstr "mínúta" - -#: include/datetime.php:362 -msgid "minutes" -msgstr "mínútur" - -#: include/datetime.php:363 -msgid "second" -msgstr "sekúnda" - -#: include/datetime.php:363 -msgid "seconds" -msgstr "sekúndur" - -#: include/datetime.php:372 -#, php-format -msgid "%1$d %2$s ago" -msgstr "Fyrir %1$d %2$s síðan" - -#: include/datetime.php:578 -#, php-format -msgid "%s's birthday" -msgstr "Afmælisdagur %s" - -#: include/datetime.php:579 include/dfrn.php:1111 -#, php-format -msgid "Happy Birthday %s" -msgstr "Til hamingju með afmælið %s" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Bæta við tengilið" @@ -217,8 +38,9 @@ msgstr "Settu inn slóð" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" -#: include/contact_widgets.php:10 include/identity.php:212 mod/dirfind.php:201 -#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101 +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 msgid "Connect" msgstr "Tengjast" @@ -237,10 +59,9 @@ msgstr "Finna fólk" msgid "Enter name or interest" msgstr "Settu inn nafn eða áhugamál" -#: include/contact_widgets.php:32 include/conversation.php:978 -#: include/Contact.php:324 mod/dirfind.php:204 mod/match.php:72 -#: mod/allfriends.php:66 mod/contacts.php:600 mod/follow.php:103 -#: mod/suggest.php:83 +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 msgid "Connect/Follow" msgstr "Tengjast/fylgja" @@ -248,17 +69,16 @@ msgstr "Tengjast/fylgja" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Dæmi: Jón Jónsson, Veiði" -#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:791 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 msgid "Find" msgstr "Finna" #: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527 +#: view/theme/vier/theme.php:203 msgid "Friend Suggestions" msgstr "Vina uppástungur" #: include/contact_widgets.php:36 view/theme/vier/theme.php:202 -#: view/theme/diabook/theme.php:526 msgid "Similar Interests" msgstr "Svipuð áhugamál" @@ -267,7 +87,6 @@ msgid "Random Profile" msgstr "" #: include/contact_widgets.php:38 view/theme/vier/theme.php:204 -#: view/theme/diabook/theme.php:528 msgid "Invite Friends" msgstr "Bjóða vinum aðgang" @@ -279,7 +98,7 @@ msgstr "Net" msgid "All Networks" msgstr "Öll net" -#: include/contact_widgets.php:141 include/features.php:103 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Vistaðar möppur" @@ -298,6 +117,683 @@ msgid_plural "%d contacts in common" msgstr[0] "%d tengiliður sameiginlegur" msgstr[1] "%d tengiliðir sameiginlegir" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "birta meira" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "Spjallsvæði" + +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "Ytri tengill á spjallsvæði" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Karl" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Kona" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Karlmaður í augnablikinu" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Kvenmaður í augnablikinu" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Aðallega karlmaður" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Aðallega kvenmaður" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Kyngervingur" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Hvorugkyn" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Kynskiptingur" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Tvíkynja" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Hvorukyn" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Ekki ákveðið" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Annað" + +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Óviss" +msgstr[1] "Óvissir" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Karlar" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Konur" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Hommi" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbía" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Til í allt" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Tvíkynhneigð/ur" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Sjálfkynhneigð/ur" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Skírlíf/ur" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Hrein mey/Hreinn sveinn" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Óþekkur" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Blæti" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Mikið af því" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Engin kynhneigð" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Einhleyp/ur" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einmanna" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Á lausu" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Frátekin/n" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Er skotin(n)" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Deita" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Ótrú/r" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Kynlífsfíkill" + +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Vinir" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Vinir með meiru" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Lauslát/ur" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Trúlofuð/Trúlofaður" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Gift/ur" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Félagar" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Í sambúð" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Löggilt sambúð" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Hamingjusöm/Hamingjusamur" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Ekki að leita" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Svingari" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Svikin/n" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Skilin/n að borði og sæng" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Óstabíll" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Fráskilin/n" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Ekkja/Ekkill" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Óviss" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Þetta er flókið" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Gæti ekki verið meira sama" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Spurðu mig" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'" + +#: include/auth.php:45 +msgid "Logged out." +msgstr "Skráður út." + +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Innskráning mistókst." + +#: include/auth.php:132 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "Villumeldingin var:" + +#: 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 "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Allir" + +#: include/group.php:265 +msgid "edit" +msgstr "breyta" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Hópar" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "Breyta hópum" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Breyta hóp" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Stofna nýjan hóp" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nafn hóps: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Tengiliðir ekki í neinum hópum" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "bæta við" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Óþekkt | Ekki flokkað" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Banna samstundis" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Grunsamlegur, ruslsendari, auglýsandi" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ég þekki þetta, en hef ekki skoðun á" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Í lagi, væntanlega meinlaus" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Gott orðspor, ég treysti þessu" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Oft" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Klukkustundar fresti" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Tvisvar á dag" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Daglega" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Vikulega" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mánaðarlega" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Póstfang" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "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 tenging" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "GNU Social" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "Hubzilla/Redmatrix" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Senda skilaboð á tölvupóst" + +#: include/acl_selectors.php:332 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Fela forsíðuupplýsingar fyrir óþekktum?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "sýna" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "fela" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: tölvupóstfang" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Aðgangsheimildir" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Loka" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "mynd" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "staða" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "atburður" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s líkar við %3$s hjá %2$s " + +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s líkar ekki við %3$s hjá %2$s " + +#: include/like.php:186 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: include/like.php:188 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: include/like.php:190 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[ekkert efni]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Veggmyndir" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Smelltu hér til að uppfæra." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Ýmislegt" + +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Afmælisdagur:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Aldur: " + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "ÁÁÁÁ-MM-DD eða MM-DD" + +#: include/datetime.php:341 +msgid "never" +msgstr "aldrei" + +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "fyrir minna en sekúndu" + +#: include/datetime.php:350 +msgid "year" +msgstr "ár" + +#: include/datetime.php:350 +msgid "years" +msgstr "ár" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "mánuður" + +#: include/datetime.php:351 +msgid "months" +msgstr "mánuðir" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "vika" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "vikur" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "dagur" + +#: include/datetime.php:353 +msgid "days" +msgstr "dagar" + +#: include/datetime.php:354 +msgid "hour" +msgstr "klukkustund" + +#: include/datetime.php:354 +msgid "hours" +msgstr "klukkustundir" + +#: include/datetime.php:355 +msgid "minute" +msgstr "mínúta" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "mínútur" + +#: include/datetime.php:356 +msgid "second" +msgstr "sekúnda" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "sekúndur" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "Fyrir %1$d %2$s síðan" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "Afmælisdagur %s" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Til hamingju með afmælið %s" + #: include/enotify.php:24 msgid "Friendica Notification" msgstr "Friendica tilkynning" @@ -316,7 +812,7 @@ msgstr "Kerfisstjóri %s" msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s kerfisstjóri" -#: include/enotify.php:43 include/delivery.php:450 +#: include/enotify.php:43 include/delivery.php:457 msgid "noreply" msgstr "ekki svara" @@ -595,110 +1091,24 @@ msgstr "" msgid "Please visit %s to approve or reject the request." msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." -#: include/plugin.php:522 include/plugin.php:524 -msgid "Click here to upgrade." -msgstr "Smelltu hér til að uppfæra." - -#: include/plugin.php:530 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: include/plugin.php:535 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: include/ForumManager.php:114 include/text.php:998 include/nav.php:130 -#: view/theme/vier/theme.php:255 -msgid "Forums" -msgstr "Spjallsvæði" - -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" -msgstr "Ytri tengill á spjallsvæði" - -#: include/diaspora.php:1379 include/conversation.php:141 include/like.php:182 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s líkar við %3$s hjá %2$s " - -#: include/diaspora.php:1383 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "staða" - -#: include/diaspora.php:1909 -msgid "Sharing notification from Diaspora network" -msgstr "Tilkynning um að einhver deildi atriði á Diaspora netinu" - -#: include/diaspora.php:2801 -msgid "Attachments:" -msgstr "Viðhengi:" - -#: include/dfrn.php:1110 -#, php-format -msgid "%s\\'s birthday" -msgstr "Afmælisdagur %s" - -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "" - -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "" - -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'" - -#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "" -#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154 +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 msgid "Starts:" msgstr "Byrjar:" -#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162 +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 msgid "Finishes:" msgstr "Endar:" -#: include/event.php:39 include/event.php:63 include/identity.php:329 -#: include/bb2diaspora.php:170 mod/notifications.php:246 mod/events.php:495 -#: mod/directory.php:145 mod/contacts.php:624 +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 msgid "Location:" msgstr "Staðsetning:" @@ -730,31 +1140,31 @@ msgstr "Fös" msgid "Sat" msgstr "Lau" -#: include/event.php:448 include/text.php:1103 mod/settings.php:955 +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 msgid "Sunday" msgstr "Sunnudagur" -#: include/event.php:449 include/text.php:1103 mod/settings.php:955 +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 msgid "Monday" msgstr "Mánudagur" -#: include/event.php:450 include/text.php:1103 +#: include/event.php:450 include/text.php:1130 msgid "Tuesday" msgstr "Þriðjudagur" -#: include/event.php:451 include/text.php:1103 +#: include/event.php:451 include/text.php:1130 msgid "Wednesday" msgstr "Miðvikudagur" -#: include/event.php:452 include/text.php:1103 +#: include/event.php:452 include/text.php:1130 msgid "Thursday" msgstr "Fimmtudagur" -#: include/event.php:453 include/text.php:1103 +#: include/event.php:453 include/text.php:1130 msgid "Friday" msgstr "Föstudagur" -#: include/event.php:454 include/text.php:1103 +#: include/event.php:454 include/text.php:1130 msgid "Saturday" msgstr "Laugardagur" @@ -774,7 +1184,7 @@ msgstr "Mar" msgid "Apr" msgstr "Apr" -#: include/event.php:459 include/event.php:471 include/text.php:1107 +#: include/event.php:459 include/event.php:471 include/text.php:1134 msgid "May" msgstr "Maí" @@ -806,78 +1216,377 @@ msgstr "Nóv" msgid "Dec" msgstr "Des" -#: include/event.php:467 include/text.php:1107 +#: include/event.php:467 include/text.php:1134 msgid "January" msgstr "Janúar" -#: include/event.php:468 include/text.php:1107 +#: include/event.php:468 include/text.php:1134 msgid "February" msgstr "Febrúar" -#: include/event.php:469 include/text.php:1107 +#: include/event.php:469 include/text.php:1134 msgid "March" msgstr "Mars" -#: include/event.php:470 include/text.php:1107 +#: include/event.php:470 include/text.php:1134 msgid "April" msgstr "Apríl" -#: include/event.php:472 include/text.php:1107 +#: include/event.php:472 include/text.php:1134 msgid "June" msgstr "Júní" -#: include/event.php:473 include/text.php:1107 +#: include/event.php:473 include/text.php:1134 msgid "July" msgstr "Júlí" -#: include/event.php:474 include/text.php:1107 +#: include/event.php:474 include/text.php:1134 msgid "August" msgstr "Ágúst" -#: include/event.php:475 include/text.php:1107 +#: include/event.php:475 include/text.php:1134 msgid "September" msgstr "September" -#: include/event.php:476 include/text.php:1107 +#: include/event.php:476 include/text.php:1134 msgid "October" msgstr "Október" -#: include/event.php:477 include/text.php:1107 +#: include/event.php:477 include/text.php:1134 msgid "November" msgstr "Nóvember" -#: include/event.php:478 include/text.php:1107 +#: include/event.php:478 include/text.php:1134 msgid "December" msgstr "Desember" -#: include/event.php:479 mod/events.php:388 mod/cal.php:286 +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 msgid "today" msgstr "í dag" -#: include/event.php:567 +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 msgid "l, F j" msgstr "" -#: include/event.php:586 +#: include/event.php:593 msgid "Edit event" msgstr "Breyta atburð" -#: include/event.php:608 include/text.php:1509 include/text.php:1516 +#: include/event.php:615 include/text.php:1532 include/text.php:1539 msgid "link to source" msgstr "slóð á heimild" -#: include/event.php:843 +#: include/event.php:850 msgid "Export" msgstr "Flytja út" -#: include/event.php:844 +#: include/event.php:851 msgid "Export calendar as ical" msgstr "Flytja dagatal út sem ICAL" -#: include/event.php:845 +#: include/event.php:852 msgid "Export calendar as csv" msgstr "Flytja dagatal út sem CSV" +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Ekkert nýtt hér" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Hreinsa tilkynningar" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "@nafn, !spjallsvæði, #merki, innihald" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Útskrá" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Loka þessu innliti" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Staða" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Samtölin þín" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Forsíða" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Forsíðan þín" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Myndir" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Myndirnar þínar" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Myndskeið" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "Myndskeiðin þín" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Atburðir" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Atburðirnir þínir" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Einkaglósur" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Einkaglósurnar þínar" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Innskrá" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Innskrá" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Heim" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Heimasíða" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Nýskrá" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Stofna notanda" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Hjálp" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Hjálp og leiðbeiningar" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Forrit" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Viðbótarforrit, nytjatól, leikir" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Leita" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Leita í efni á vef" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "Allur textinn" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "Merki" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Tengiliðir" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Samfélag" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Samtöl á þessum vef" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Samtöl á þessu neti" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Atburðir og dagskrá" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Tengiliðalisti" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Nafnaskrá" + +#: include/nav.php:154 +msgid "Information" +msgstr "Upplýsingar" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Upplýsingar um þetta tilvik Friendica" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Samfélag" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Samtöl frá vinum" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Núllstilling netkerfis" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Kynningar" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Vinabeiðnir" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Tilkynningar" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Sjá allar tilkynningar" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Merka sem séð" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Merkja allar tilkynningar sem séðar" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Skilaboð" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Einka skilaboð" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Innhólf" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Úthólf" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Ný skilaboð" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Umsýsla" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Sýsla með aðrar síður" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Stillingar" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Stillingar aðgangsreiknings" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Forsíður" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Sýsla með forsíður" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Sýsla með vini og tengiliði" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Stjórnborð" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Uppsetning og stillingar vefsvæðis" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Yfirsýn" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Yfirlit um vefsvæði" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Myndir tengiliðs" + #: include/security.php:22 msgid "Welcome " msgstr "Velkomin(n)" @@ -890,306 +1599,1140 @@ msgstr "Gerðu svo vel að hlaða inn forsíðumynd." msgid "Welcome back " msgstr "Velkomin(n) aftur" -#: include/security.php:375 +#: include/security.php:373 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/profile_selectors.php:6 -msgid "Male" -msgstr "Karl" +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Kerfi" -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Kona" +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Einka" -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Karlmaður í augnablikinu" +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s athugasemd við %s's færslu" -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Kvenmaður í augnablikinu" +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s bjó til færslu" -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Aðallega karlmaður" +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "%s líkaði færsla hjá %s" -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Aðallega kvenmaður" +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mislíkaði færsla hjá %s" -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Kyngervingur" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Hvorugkyn" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Kynskiptingur" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Tvíkynja" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Hvorukyn" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ekki ákveðið" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "Annað" - -#: include/profile_selectors.php:6 include/conversation.php:1477 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Óviss" -msgstr[1] "Óvissir" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "Karlar" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "Konur" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "Hommi" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbía" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Til í allt" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Tvíkynhneigð/ur" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Sjálfkynhneigð/ur" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Skírlíf/ur" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Hrein mey/Hreinn sveinn" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Óþekkur" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Blæti" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Mikið af því" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Engin kynhneigð" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "Einhleyp/ur" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Einmanna" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "Á lausu" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Frátekin/n" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Er skotin(n)" - -#: include/profile_selectors.php:42 -msgid "Infatuated" +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" msgstr "" -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "Deita" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Ótrú/r" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Kynlífsfíkill" - -#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303 -msgid "Friends" -msgstr "Vinir" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Vinir með meiru" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "Lauslát/ur" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Trúlofuð/Trúlofaður" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "Gift/ur" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" msgstr "" -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "Félagar" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Í sambúð" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "Löggilt sambúð" - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "Hamingjusöm/Hamingjusamur" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Ekki að leita" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Svingari" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Svikin/n" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "Skilin/n að borði og sæng" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Óstabíll" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Fráskilin/n" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" msgstr "" -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Ekkja/Ekkill" +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s er nú vinur %s" -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Óviss" +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Vina tillaga" -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Þetta er flókið" +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Vinabeiðni/Tengibeiðni" -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Gæti ekki verið meira sama" +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nýr fylgjandi" -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Spurðu mig" +#: 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/items.php:1447 mod/dfrn_confirm.php:725 mod/dfrn_request.php:744 -msgid "[Name Withheld]" -msgstr "[Nafn ekki sýnt]" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" -#: include/items.php:1805 mod/viewsrc.php:15 mod/admin.php:234 -#: mod/admin.php:1445 mod/admin.php:1679 mod/display.php:104 -#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 -msgid "Item not found." -msgstr "Atriði fannst ekki." +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Villur komu upp við að stofna töflur í gagnagrunn." -#: include/items.php:1844 -msgid "Do you really want to delete this item?" -msgstr "Viltu í alvörunni eyða þessu atriði?" +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "" -#: include/items.php:1846 mod/profiles.php:641 mod/profiles.php:644 -#: mod/profiles.php:670 mod/contacts.php:441 mod/follow.php:110 -#: mod/suggest.php:29 mod/dfrn_request.php:860 mod/register.php:238 -#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 -#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 -#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 -#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 -#: mod/settings.php:1184 mod/api.php:105 mod/message.php:217 -msgid "Yes" -msgstr "Já" +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(ekkert efni)" -#: include/items.php:1849 include/conversation.php:1274 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:131 -#: mod/photos.php:247 mod/photos.php:336 mod/contacts.php:444 -#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148 -#: mod/dfrn_request.php:874 mod/settings.php:664 mod/settings.php:690 -#: mod/message.php:220 +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Tilkynning um að einhver deildi atriði á Diaspora netinu" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Viðhengi:" + +#: include/network.php:595 +msgid "view full size" +msgstr "Skoða í fullri stærð" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Skoða forsíðu" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Skoða stöðu" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Skoða myndir" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Henda tengilið" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Senda einkaboð" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Pota" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "Spjallsvæði" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Mynd" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 skrifaði:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Dulritað efni" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "Núna er %1$s vinur %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s potaði í %2$s" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merkti %2$s's %3$s með %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Líkar" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Mislíkar" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Mætir" +msgstr[1] "Mæta" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "Mætir ekki" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "Gæti mætt" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Velja" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Eyða" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Birta forsíðu %s hjá %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Flokkar:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Skráð undir:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s til %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Birta í samhengi" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Hinkraðu aðeins" + +#: include/conversation.php:870 +msgid "remove" +msgstr "fjarlægja" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Eyða völdum færslum" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Fylgja þræði" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s líkar þetta." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mislíkar þetta." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "%s mætir." + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "%s mætir ekki." + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "%s mætir kannski." + +#: include/conversation.php:1119 +msgid "and" +msgstr "og" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", og %d öðrum" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Sláðu inn slóð:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Settu inn slóð á myndskeið:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Settu inn slóð á hljóðskrá:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Merka með:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Vista í möppu:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Hvar ert þú núna?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Eyða atriði/atriðum?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Deila" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Hlaða upp mynd" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "Hlaða upp mynd" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Bæta við skrá" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "Hengja skrá við" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Setja inn vefslóð" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "vefslóð" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Setja inn slóð á myndskeið" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "slóð á myndskeið" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Setja inn slóð á hljóðskrá" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "slóð á hljóðskrá" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Veldu staðsetningu þína" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "stilla staðsetningu" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Hreinsa staðsetningu í vafra" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "hreinsa staðsetningu" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Setja titil" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Flokkar (listi aðskilinn með kommum)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Stillingar aðgangsheimilda" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "aðgangsstýring" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Opinber færsla" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Forskoðun" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 msgid "Cancel" msgstr "Hætta við" -#: include/items.php:2011 index.php:397 mod/regmod.php:110 mod/dirfind.php:11 -#: mod/notifications.php:69 mod/dfrn_confirm.php:56 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22 -#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15 -#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12 -#: mod/cal.php:308 mod/repair_ostatus.php:9 mod/delegate.php:12 -#: mod/profiles.php:165 mod/profiles.php:598 mod/poke.php:150 -#: mod/photos.php:171 mod/photos.php:1092 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 -#: mod/suggest.php:58 mod/display.php:474 mod/common.php:18 mod/mood.php:114 -#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Senda á hópa" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Senda á tengiliði" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Einkafærsla" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Skilaboð" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "Vafri" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "Skoða allt" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Líkar" +msgstr[1] "Líkar" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Mislíkar" +msgstr[1] "Mislíkar" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Mæti ekki" +msgstr[1] "Mæta ekki" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "Afmælisdagur %s" + +#: include/features.php:70 +msgid "General Features" +msgstr "Almennir eiginleikar" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "Staðsetning ljósmyndar" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "Flytja út opinbert dagatal" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "" + +#: include/features.php:81 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:82 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Leita eftir dagsetningu" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "Spjallsvæðalistar" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "" + +#: include/features.php:90 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: include/features.php:91 +msgid "Network Filter" +msgstr "" + +#: include/features.php:91 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Vistaðar leitir" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "" + +#: include/features.php:98 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: include/features.php:99 +msgid "Network New Tab" +msgstr "" + +#: include/features.php:99 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: include/features.php:100 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:100 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:105 +msgid "Post/Comment Tools" +msgstr "" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: include/features.php:108 +msgid "Tagging" +msgstr "" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Óleyfileg forsíðu slóð." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "Tengislóð vantar." + +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." + +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "Höfundur eða nafn fannst ekki." + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Engin vefslóð passaði við þetta vistfang." + +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:141 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." + +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." + +#: include/follow.php:258 +msgid "Unable to retrieve contact information." +msgstr "Ekki hægt að sækja tengiliðs upplýsingar." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Umbeðin forsíða er ekki til." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Umbeðin forsíða ekki til." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Breyta forsíðu" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "Atom fréttaveita" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Sýsla með forsíður" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Breyta forsíðumynd" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Stofna nýja forsíðu" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Forsíðumynd" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "sýnilegt öllum" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Sýsla með sýnileika" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Kyn:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Staða:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Heimasíða:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Um:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Netkerfi:" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[í dag]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Afmælisáminningar" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Afmæli í þessari viku:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Engin lýsing]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Atburðaáminningar" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Atburðir vikunnar:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Fullt nafn:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:622 +msgid "j F" +msgstr "" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Aldur:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Kynhneigð:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Heimabær:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Merki:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Stórnmálaskoðanir:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Trúarskoðanir:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Áhugamál/Áhugasvið:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Líkar:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Mislíkar:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Tengiliðaupplýsingar og samfélagsnet:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Tónlistaráhugi:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Bækur, bókmenntir:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Sjónvarp:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Kvikmyndir/dans/menning/afþreying:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Ást/rómantík:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Atvinna:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Skóli/menntun:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "Spjallsvæði:" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "Einfalt" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Flóknari" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Stöðu skilaboð og færslur" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Forsíðu upplýsingar" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Myndabækur" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Persónulegar glósur" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Aðeins þú sérð þetta" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Nafn ekki sýnt]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Atriði fannst ekki." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Viltu í alvörunni eyða þessu atriði?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Já" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 #: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:650 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:185 -#: mod/item.php:197 mod/ostatus_subscribe.php:9 mod/message.php:46 -#: mod/message.php:182 mod/manage.php:96 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 msgid "Permission denied." msgstr "Heimild ekki veitt." -#: include/items.php:2116 +#: include/items.php:2239 msgid "Archives" msgstr "Safnskrár" +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Innbyggt efni" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Innfelling ekki leyfð" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "fylgist með" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "hætt að fylgja" + #: include/text.php:304 msgid "newer" msgstr "nýrri" @@ -1222,1214 +2765,194 @@ msgstr "Hleð inn fleiri færslum..." msgid "The end" msgstr "Endir" -#: include/text.php:871 +#: include/text.php:889 msgid "No contacts" msgstr "Engir tengiliðir" -#: include/text.php:886 +#: include/text.php:912 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d tengiliður" msgstr[1] "%d tengiliðir" -#: include/text.php:898 +#: include/text.php:925 msgid "View Contacts" msgstr "Skoða tengiliði" -#: include/text.php:985 include/nav.php:122 mod/search.php:149 -msgid "Search" -msgstr "Leita" - -#: include/text.php:986 mod/notes.php:61 mod/filer.php:31 mod/editpost.php:109 +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 msgid "Save" msgstr "Vista" -#: include/text.php:988 include/nav.php:40 -msgid "@name, !forum, #tags, content" -msgstr "@nafn, !spjallsvæði, #merki, innihald" - -#: include/text.php:993 include/nav.php:125 -msgid "Full Text" -msgstr "Allur textinn" - -#: include/text.php:994 include/nav.php:126 -msgid "Tags" -msgstr "Merki" - -#: include/text.php:995 include/identity.php:781 include/identity.php:784 -#: include/nav.php:127 include/nav.php:193 mod/viewcontacts.php:116 -#: mod/contacts.php:785 mod/contacts.php:846 view/theme/frio/theme.php:257 -#: view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Tengiliðir" - -#: include/text.php:1049 +#: include/text.php:1076 msgid "poke" msgstr "pota" -#: include/text.php:1049 +#: include/text.php:1076 msgid "poked" msgstr "potaði" -#: include/text.php:1050 +#: include/text.php:1077 msgid "ping" msgstr "" -#: include/text.php:1050 +#: include/text.php:1077 msgid "pinged" msgstr "" -#: include/text.php:1051 +#: include/text.php:1078 msgid "prod" msgstr "" -#: include/text.php:1051 +#: include/text.php:1078 msgid "prodded" msgstr "" -#: include/text.php:1052 +#: include/text.php:1079 msgid "slap" msgstr "" -#: include/text.php:1052 +#: include/text.php:1079 msgid "slapped" msgstr "" -#: include/text.php:1053 +#: include/text.php:1080 msgid "finger" msgstr "" -#: include/text.php:1053 +#: include/text.php:1080 msgid "fingered" msgstr "" -#: include/text.php:1054 +#: include/text.php:1081 msgid "rebuff" msgstr "" -#: include/text.php:1054 +#: include/text.php:1081 msgid "rebuffed" msgstr "" -#: include/text.php:1068 +#: include/text.php:1095 msgid "happy" msgstr "" -#: include/text.php:1069 +#: include/text.php:1096 msgid "sad" msgstr "" -#: include/text.php:1070 +#: include/text.php:1097 msgid "mellow" msgstr "" -#: include/text.php:1071 +#: include/text.php:1098 msgid "tired" msgstr "" -#: include/text.php:1072 +#: include/text.php:1099 msgid "perky" msgstr "" -#: include/text.php:1073 +#: include/text.php:1100 msgid "angry" msgstr "" -#: include/text.php:1074 +#: include/text.php:1101 msgid "stupified" msgstr "" -#: include/text.php:1075 +#: include/text.php:1102 msgid "puzzled" msgstr "" -#: include/text.php:1076 +#: include/text.php:1103 msgid "interested" msgstr "" -#: include/text.php:1077 +#: include/text.php:1104 msgid "bitter" msgstr "" -#: include/text.php:1078 +#: include/text.php:1105 msgid "cheerful" msgstr "" -#: include/text.php:1079 +#: include/text.php:1106 msgid "alive" msgstr "" -#: include/text.php:1080 +#: include/text.php:1107 msgid "annoyed" msgstr "" -#: include/text.php:1081 +#: include/text.php:1108 msgid "anxious" msgstr "" -#: include/text.php:1082 +#: include/text.php:1109 msgid "cranky" msgstr "" -#: include/text.php:1083 +#: include/text.php:1110 msgid "disturbed" msgstr "" -#: include/text.php:1084 +#: include/text.php:1111 msgid "frustrated" msgstr "" -#: include/text.php:1085 +#: include/text.php:1112 msgid "motivated" msgstr "" -#: include/text.php:1086 +#: include/text.php:1113 msgid "relaxed" msgstr "" -#: include/text.php:1087 +#: include/text.php:1114 msgid "surprised" msgstr "" -#: include/text.php:1301 mod/videos.php:383 +#: include/text.php:1324 mod/videos.php:380 msgid "View Video" msgstr "Skoða myndskeið" -#: include/text.php:1333 +#: include/text.php:1356 msgid "bytes" msgstr "bæti" -#: include/text.php:1365 include/text.php:1377 +#: include/text.php:1388 include/text.php:1400 msgid "Click to open/close" msgstr "" -#: include/text.php:1503 +#: include/text.php:1526 msgid "View on separate page" msgstr "" -#: include/text.php:1504 +#: include/text.php:1527 msgid "view on separate page" msgstr "" -#: include/text.php:1779 include/conversation.php:122 -#: include/conversation.php:258 include/like.php:165 -#: view/theme/diabook/theme.php:463 -msgid "event" -msgstr "atburður" - -#: include/text.php:1781 include/conversation.php:130 -#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "mynd" - -#: include/text.php:1783 +#: include/text.php:1806 msgid "activity" msgstr "virkni" -#: include/text.php:1785 mod/content.php:623 object/Item.php:431 +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 #: object/Item.php:444 msgid "comment" msgid_plural "comments" msgstr[0] "athugasemd" msgstr[1] "athugasemdir" -#: include/text.php:1786 +#: include/text.php:1809 msgid "post" msgstr "" -#: include/text.php:1954 +#: include/text.php:1977 msgid "Item filed" msgstr "" -#: include/conversation.php:144 include/like.php:184 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s líkar ekki við %3$s hjá %2$s " - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:185 mod/dfrn_confirm.php:472 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "Núna er %1$s vinur %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s potaði í %2$s" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merkti %2$s's %3$s með %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:344 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "Líkar" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:348 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "Mislíkar" - -#: include/conversation.php:588 include/conversation.php:1471 -#: mod/content.php:373 mod/photos.php:1635 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Mætir" -msgstr[1] "Mæta" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Not attending" -msgstr "Mætir ekki" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Might attend" -msgstr "Gæti mætt" - -#: include/conversation.php:710 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1709 object/Item.php:133 -msgid "Select" -msgstr "Velja" - -#: include/conversation.php:711 mod/admin.php:1388 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1710 mod/contacts.php:801 -#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:726 -#: object/Item.php:134 -msgid "Delete" -msgstr "Eyða" - -#: include/conversation.php:755 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Birta forsíðu %s hjá %s" - -#: include/conversation.php:767 object/Item.php:355 -msgid "Categories:" -msgstr "Flokkar:" - -#: include/conversation.php:768 object/Item.php:356 -msgid "Filed under:" -msgstr "Skráð undir:" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s til %s" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "Birta í samhengi" - -#: include/conversation.php:793 include/conversation.php:1255 -#: mod/content.php:515 mod/content.php:948 mod/photos.php:1597 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 object/Item.php:406 -msgid "Please wait" -msgstr "Hinkraðu aðeins" - -#: include/conversation.php:872 -msgid "remove" -msgstr "fjarlægja" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "Eyða völdum færslum" - -#: include/conversation.php:964 -msgid "Follow Thread" -msgstr "Fylgja þræði" - -#: include/conversation.php:965 include/Contact.php:364 -msgid "View Status" -msgstr "Skoða stöðu" - -#: include/conversation.php:966 include/conversation.php:980 -#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 -#: mod/dirfind.php:203 mod/directory.php:163 mod/match.php:71 -#: mod/allfriends.php:65 mod/suggest.php:82 -msgid "View Profile" -msgstr "Skoða forsíðu" - -#: include/conversation.php:967 include/Contact.php:366 -msgid "View Photos" -msgstr "Skoða myndir" - -#: include/conversation.php:968 include/Contact.php:367 -msgid "Network Posts" -msgstr "" - -#: include/conversation.php:969 include/Contact.php:368 -msgid "Edit Contact" -msgstr "Breyta tengilið" - -#: include/conversation.php:970 include/Contact.php:370 -msgid "Send PM" -msgstr "Senda einkaboð" - -#: include/conversation.php:974 include/Contact.php:371 -msgid "Poke" -msgstr "Pota" - -#: include/conversation.php:1088 -#, php-format -msgid "%s likes this." -msgstr "%s líkar þetta." - -#: include/conversation.php:1091 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mislíkar þetta." - -#: include/conversation.php:1094 -#, php-format -msgid "%s attends." -msgstr "%s mætir." - -#: include/conversation.php:1097 -#, php-format -msgid "%s doesn't attend." -msgstr "%s mætir ekki." - -#: include/conversation.php:1100 -#, php-format -msgid "%s attends maybe." -msgstr "%s mætir kannski." - -#: include/conversation.php:1110 -msgid "and" -msgstr "og" - -#: include/conversation.php:1116 -#, php-format -msgid ", and %d other people" -msgstr ", og %d öðrum" - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:1126 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:1130 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1134 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" - -#: include/conversation.php:1182 include/conversation.php:1200 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" -msgstr "Sláðu inn slóð:" - -#: include/conversation.php:1183 include/conversation.php:1201 -msgid "Please enter a video link/URL:" -msgstr "Settu inn slóð á myndskeið:" - -#: include/conversation.php:1184 include/conversation.php:1202 -msgid "Please enter an audio link/URL:" -msgstr "Settu inn slóð á hljóðskrá:" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Tag term:" -msgstr "Merka með:" - -#: include/conversation.php:1186 include/conversation.php:1204 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Vista í möppu:" - -#: include/conversation.php:1187 include/conversation.php:1205 -msgid "Where are you right now?" -msgstr "Hvar ert þú núna?" - -#: include/conversation.php:1188 -msgid "Delete item(s)?" -msgstr "Eyða atriði/atriðum?" - -#: include/conversation.php:1236 mod/photos.php:1596 -msgid "Share" -msgstr "Deila" - -#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Hlaða upp mynd" - -#: include/conversation.php:1238 mod/editpost.php:111 -msgid "upload photo" -msgstr "Hlaða upp mynd" - -#: include/conversation.php:1239 mod/editpost.php:112 -msgid "Attach file" -msgstr "Bæta við skrá" - -#: include/conversation.php:1240 mod/editpost.php:113 -msgid "attach file" -msgstr "Hengja skrá við" - -#: include/conversation.php:1241 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "Setja inn vefslóð" - -#: include/conversation.php:1242 mod/editpost.php:115 -msgid "web link" -msgstr "vefslóð" - -#: include/conversation.php:1243 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Setja inn slóð á myndskeið" - -#: include/conversation.php:1244 mod/editpost.php:117 -msgid "video link" -msgstr "slóð á myndskeið" - -#: include/conversation.php:1245 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Setja inn slóð á hljóðskrá" - -#: include/conversation.php:1246 mod/editpost.php:119 -msgid "audio link" -msgstr "slóð á hljóðskrá" - -#: include/conversation.php:1247 mod/editpost.php:120 -msgid "Set your location" -msgstr "Veldu staðsetningu þína" - -#: include/conversation.php:1248 mod/editpost.php:121 -msgid "set location" -msgstr "stilla staðsetningu" - -#: include/conversation.php:1249 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Hreinsa staðsetningu í vafra" - -#: include/conversation.php:1250 mod/editpost.php:123 -msgid "clear location" -msgstr "hreinsa staðsetningu" - -#: include/conversation.php:1252 mod/editpost.php:137 -msgid "Set title" -msgstr "Setja titil" - -#: include/conversation.php:1254 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Flokkar (listi aðskilinn með kommum)" - -#: include/conversation.php:1256 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Stillingar aðgangsheimilda" - -#: include/conversation.php:1257 mod/editpost.php:154 -msgid "permissions" -msgstr "aðgangsstýring" - -#: include/conversation.php:1265 mod/editpost.php:134 -msgid "Public post" -msgstr "Opinber færsla" - -#: include/conversation.php:1270 mod/events.php:505 mod/content.php:737 -#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 -#: mod/editpost.php:145 object/Item.php:729 -msgid "Preview" -msgstr "Forskoðun" - -#: include/conversation.php:1280 -msgid "Post to Groups" -msgstr "Senda á hópa" - -#: include/conversation.php:1281 -msgid "Post to Contacts" -msgstr "Senda á tengiliði" - -#: include/conversation.php:1282 -msgid "Private post" -msgstr "Einkafærsla" - -#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "Skilaboð" - -#: include/conversation.php:1288 mod/editpost.php:153 -msgid "Browser" -msgstr "Vafri" - -#: include/conversation.php:1443 -msgid "View all" -msgstr "Skoða allt" - -#: include/conversation.php:1465 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Líkar" -msgstr[1] "Líkar" - -#: include/conversation.php:1468 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Mislíkar" -msgstr[1] "Mislíkar" - -#: include/conversation.php:1474 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Mæti ekki" -msgstr[1] "Mæta ekki" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "Umbeðin forsíða er ekki til." - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Umbeðin forsíða ekki til." - -#: include/identity.php:95 include/identity.php:305 include/identity.php:686 -msgid "Edit profile" -msgstr "Breyta forsíðu" - -#: include/identity.php:245 -msgid "Atom feed" -msgstr "Atom fréttaveita" - -#: include/identity.php:276 include/nav.php:191 -msgid "Profiles" -msgstr "Forsíður" - -#: include/identity.php:276 -msgid "Manage/edit profiles" -msgstr "Sýsla með forsíður" - -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "Breyta forsíðumynd" - -#: include/identity.php:282 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "Stofna nýja forsíðu" - -#: include/identity.php:292 mod/profiles.php:777 -msgid "Profile Image" -msgstr "Forsíðumynd" - -#: include/identity.php:295 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "sýnilegt öllum" - -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "Sýsla með sýnileika" - -#: include/identity.php:319 mod/dirfind.php:223 mod/directory.php:174 -#: mod/match.php:84 mod/viewcontacts.php:105 mod/allfriends.php:79 -#: mod/cal.php:44 mod/videos.php:37 mod/photos.php:41 mod/contacts.php:51 -#: mod/contacts.php:948 mod/suggest.php:98 mod/hovercard.php:80 -#: mod/common.php:123 mod/network.php:517 -msgid "Forum" -msgstr "Spjallsvæði" - -#: include/identity.php:331 include/identity.php:614 mod/notifications.php:252 -#: mod/directory.php:147 -msgid "Gender:" -msgstr "Kyn:" - -#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 -msgid "Status:" -msgstr "Staða:" - -#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 -msgid "Homepage:" -msgstr "Heimasíða:" - -#: include/identity.php:338 include/identity.php:655 mod/notifications.php:248 -#: mod/directory.php:153 mod/contacts.php:626 -msgid "About:" -msgstr "Um:" - -#: include/identity.php:420 mod/contacts.php:50 -msgid "Network:" -msgstr "Netkerfi:" - -#: include/identity.php:449 include/identity.php:533 -msgid "g A l F d" -msgstr "" - -#: include/identity.php:450 include/identity.php:534 -msgid "F d" -msgstr "" - -#: include/identity.php:495 include/identity.php:580 -msgid "[today]" -msgstr "[í dag]" - -#: include/identity.php:507 -msgid "Birthday Reminders" -msgstr "Afmælisáminningar" - -#: include/identity.php:508 -msgid "Birthdays this week:" -msgstr "Afmæli í þessari viku:" - -#: include/identity.php:567 -msgid "[No description]" -msgstr "[Engin lýsing]" - -#: include/identity.php:591 -msgid "Event Reminders" -msgstr "Atburðaáminningar" - -#: include/identity.php:592 -msgid "Events this week:" -msgstr "Atburðir vikunnar:" - -#: include/identity.php:603 include/identity.php:689 include/identity.php:720 -#: include/nav.php:79 mod/profperm.php:104 mod/contacts.php:834 -#: mod/newmember.php:32 view/theme/frio/theme.php:247 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Forsíða" - -#: include/identity.php:612 mod/settings.php:1229 -msgid "Full Name:" -msgstr "Fullt nafn:" - -#: include/identity.php:619 -msgid "j F, Y" -msgstr "" - -#: include/identity.php:620 -msgid "j F" -msgstr "" - -#: include/identity.php:631 -msgid "Age:" -msgstr "Aldur:" - -#: include/identity.php:640 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: include/identity.php:643 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "Kynhneigð:" - -#: include/identity.php:647 mod/profiles.php:729 -msgid "Hometown:" -msgstr "Heimabær:" - -#: include/identity.php:649 mod/notifications.php:250 mod/contacts.php:628 -#: mod/follow.php:134 -msgid "Tags:" -msgstr "Merki:" - -#: include/identity.php:651 mod/profiles.php:730 -msgid "Political Views:" -msgstr "Stórnmálaskoðanir:" - -#: include/identity.php:653 -msgid "Religion:" -msgstr "Trúarskoðanir:" - -#: include/identity.php:657 -msgid "Hobbies/Interests:" -msgstr "Áhugamál/Áhugasvið:" - -#: include/identity.php:659 mod/profiles.php:734 -msgid "Likes:" -msgstr "Líkar:" - -#: include/identity.php:661 mod/profiles.php:735 -msgid "Dislikes:" -msgstr "Mislíkar:" - -#: include/identity.php:664 -msgid "Contact information and Social Networks:" -msgstr "Tengiliðaupplýsingar og samfélagsnet:" - -#: include/identity.php:666 -msgid "Musical interests:" -msgstr "Tónlistaráhugi:" - -#: include/identity.php:668 -msgid "Books, literature:" -msgstr "Bækur, bókmenntir:" - -#: include/identity.php:670 -msgid "Television:" -msgstr "Sjónvarp:" - -#: include/identity.php:672 -msgid "Film/dance/culture/entertainment:" -msgstr "Kvikmyndir/dans/menning/afþreying:" - -#: include/identity.php:674 -msgid "Love/Romance:" -msgstr "Ást/rómantík:" - -#: include/identity.php:676 -msgid "Work/employment:" -msgstr "Atvinna:" - -#: include/identity.php:678 -msgid "School/education:" -msgstr "Skóli/menntun:" - -#: include/identity.php:682 -msgid "Forums:" -msgstr "Spjallsvæði:" - -#: include/identity.php:690 mod/events.php:508 -msgid "Basic" -msgstr "Einfalt" - -#: include/identity.php:691 mod/events.php:509 mod/admin.php:928 -#: mod/contacts.php:863 -msgid "Advanced" -msgstr "Flóknari" - -#: include/identity.php:712 include/nav.php:78 mod/contacts.php:631 -#: mod/contacts.php:826 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Staða" - -#: include/identity.php:715 mod/contacts.php:829 mod/follow.php:143 -msgid "Status Messages and Posts" -msgstr "Stöðu skilaboð og færslur" - -#: include/identity.php:723 mod/contacts.php:837 -msgid "Profile Details" -msgstr "Forsíðu upplýsingar" - -#: include/identity.php:728 include/nav.php:80 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Myndir" - -#: include/identity.php:731 mod/photos.php:99 -msgid "Photo Albums" -msgstr "Myndabækur" - -#: include/identity.php:736 include/identity.php:739 include/nav.php:81 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Myndskeið" - -#: include/identity.php:748 include/identity.php:759 include/nav.php:82 -#: include/nav.php:146 mod/events.php:379 mod/cal.php:278 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Atburðir" - -#: include/identity.php:751 include/identity.php:762 include/nav.php:146 -#: view/theme/frio/theme.php:254 -msgid "Events and Calendar" -msgstr "Atburðir og dagskrá" - -#: include/identity.php:770 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Persónulegar glósur" - -#: include/identity.php:773 -msgid "Only You Can See This" -msgstr "Aðeins þú sérð þetta" - -#: include/Scrape.php:656 -msgid " on Last.fm" -msgstr " á Last.fm" - -#: include/follow.php:77 mod/dfrn_request.php:506 -msgid "Disallowed profile URL." -msgstr "Óleyfileg forsíðu slóð." - -#: include/follow.php:82 -msgid "Connect URL missing." -msgstr "Tengislóð vantar." - -#: include/follow.php:109 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." - -#: include/follow.php:110 include/follow.php:130 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." - -#: include/follow.php:128 -msgid "The profile address specified does not provide adequate information." -msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." - -#: include/follow.php:132 -msgid "An author or name was not found." -msgstr "Höfundur eða nafn fannst ekki." - -#: include/follow.php:134 -msgid "No browser URL could be matched to this address." -msgstr "Engin vefslóð passaði við þetta vistfang." - -#: include/follow.php:136 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: include/follow.php:137 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: include/follow.php:143 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." - -#: include/follow.php:153 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." - -#: include/follow.php:254 -msgid "Unable to retrieve contact information." -msgstr "Ekki hægt að sækja tengiliðs upplýsingar." - -#: include/follow.php:287 -msgid "following" -msgstr "fylgist með" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "hætt að fylgja" - -#: include/Contact.php:369 -msgid "Drop Contact" -msgstr "Henda tengilið" - -#: include/oembed.php:229 -msgid "Embedded content" -msgstr "Innbyggt efni" - -#: include/oembed.php:238 -msgid "Embedding disabled" -msgstr "Innfelling ekki leyfð" - -#: include/bbcode.php:349 include/bbcode.php:1054 include/bbcode.php:1055 -msgid "Image/photo" -msgstr "Mynd" - -#: include/bbcode.php:466 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1014 include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 skrifaði:" - -#: include/bbcode.php:1063 include/bbcode.php:1064 -msgid "Encrypted content" -msgstr "Dulritað efni" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Óþekkt | Ekki flokkað" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Banna samstundis" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Grunsamlegur, ruslsendari, auglýsandi" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ég þekki þetta, en hef ekki skoðun á" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Í lagi, væntanlega meinlaus" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Gott orðspor, ég treysti þessu" - -#: include/contact_selectors.php:56 mod/admin.php:859 -msgid "Frequently" -msgstr "Oft" - -#: include/contact_selectors.php:57 mod/admin.php:860 -msgid "Hourly" -msgstr "Klukkustundar fresti" - -#: include/contact_selectors.php:58 mod/admin.php:861 -msgid "Twice daily" -msgstr "Tvisvar á dag" - -#: include/contact_selectors.php:59 mod/admin.php:862 -msgid "Daily" -msgstr "Daglega" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Vikulega" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mánaðarlega" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:866 -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:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1414 -msgid "Email" -msgstr "Póstfang" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:868 -#: mod/settings.php:827 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: 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 tenging" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNU Social" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - -#: include/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:153 -msgid "Errors encountered creating database tables." -msgstr "Villur komu upp við að stofna töflur í gagnagrunn." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/auth.php:45 -msgid "Logged out." -msgstr "Skráður út." - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "Innskráning mistókst." - -#: include/auth.php:132 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "Villumeldingin var:" - -#: include/network.php:913 -msgid "view full size" -msgstr "Skoða í fullri stærð" - -#: 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 "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." - -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "" - -#: include/group.php:242 -msgid "Everybody" -msgstr "Allir" - -#: include/group.php:265 -msgid "edit" -msgstr "breyta" - -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "Hópar" - -#: include/group.php:288 -msgid "Edit groups" -msgstr "Breyta hópum" - -#: include/group.php:290 -msgid "Edit group" -msgstr "Breyta hóp" - -#: include/group.php:291 -msgid "Create a new group" -msgstr "Stofna nýjan hóp" - -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "Nafn hóps: " - -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "Tengiliðir ekki í neinum hópum" - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "bæta við" - -#: include/Photo.php:996 include/Photo.php:1011 include/Photo.php:1018 -#: include/Photo.php:1040 include/message.php:145 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:472 -msgid "Wall Photos" -msgstr "Veggmyndir" - -#: include/delivery.php:439 -msgid "(no subject)" -msgstr "(ekkert efni)" - -#: include/user.php:39 mod/settings.php:370 +#: include/user.php:39 mod/settings.php:373 msgid "Passwords do not match. Password unchanged." msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." @@ -2503,16 +3026,30 @@ msgstr "sjálfgefið" msgid "An error occurred creating your default profile. Please try again." msgstr "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur." -#: include/user.php:345 include/user.php:352 include/user.php:359 -#: mod/photos.php:78 mod/photos.php:192 mod/photos.php:769 mod/photos.php:1232 -#: mod/photos.php:1255 mod/photos.php:1849 mod/profile_photo.php:74 -#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210 -#: mod/profile_photo.php:302 mod/profile_photo.php:311 -#: view/theme/diabook/theme.php:500 +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 msgid "Profile Photos" msgstr "Forsíðumyndir" -#: include/user.php:387 +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 #, php-format msgid "" "\n" @@ -2521,7 +3058,7 @@ msgid "" "\t" msgstr "" -#: include/user.php:391 +#: include/user.php:438 #, php-format msgid "" "\n" @@ -2551,570 +3088,15 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: include/user.php:423 mod/admin.php:1178 +#: include/user.php:470 mod/admin.php:1213 #, php-format msgid "Registration details for %s" msgstr "Nýskráningar upplýsingar fyrir %s" -#: include/api.php:905 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:925 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:946 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/features.php:63 -msgid "General Features" -msgstr "Almennir eiginleikar" - -#: include/features.php:65 -msgid "Multiple Profiles" -msgstr "" - -#: include/features.php:65 -msgid "Ability to create multiple profiles" -msgstr "" - -#: include/features.php:66 -msgid "Photo Location" -msgstr "Staðsetning ljósmyndar" - -#: include/features.php:66 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:67 -msgid "Export Public Calendar" -msgstr "Flytja út opinbert dagatal" - -#: include/features.php:67 -msgid "Ability for visitors to download the public calendar" -msgstr "" - -#: include/features.php:72 -msgid "Post Composition Features" -msgstr "" - -#: include/features.php:73 -msgid "Richtext Editor" -msgstr "" - -#: include/features.php:73 -msgid "Enable richtext editor" -msgstr "" - -#: include/features.php:74 -msgid "Post Preview" -msgstr "" - -#: include/features.php:74 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: include/features.php:75 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:75 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: include/features.php:80 -msgid "Network Sidebar Widgets" -msgstr "" - -#: include/features.php:81 -msgid "Search by Date" -msgstr "Leita eftir dagsetningu" - -#: include/features.php:81 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: include/features.php:82 include/features.php:112 -msgid "List Forums" -msgstr "Spjallsvæðalistar" - -#: include/features.php:82 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: include/features.php:83 -msgid "Group Filter" -msgstr "" - -#: include/features.php:83 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: include/features.php:84 -msgid "Network Filter" -msgstr "" - -#: include/features.php:84 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: include/features.php:85 mod/search.php:34 mod/network.php:200 -msgid "Saved Searches" -msgstr "Vistaðar leitir" - -#: include/features.php:85 -msgid "Save search terms for re-use" -msgstr "" - -#: include/features.php:90 -msgid "Network Tabs" -msgstr "" - -#: include/features.php:91 -msgid "Network Personal Tab" -msgstr "" - -#: include/features.php:91 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: include/features.php:92 -msgid "Network New Tab" -msgstr "" - -#: include/features.php:92 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: include/features.php:93 -msgid "Network Shared Links Tab" -msgstr "" - -#: include/features.php:93 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: include/features.php:98 -msgid "Post/Comment Tools" -msgstr "" - -#: include/features.php:99 -msgid "Multiple Deletion" -msgstr "" - -#: include/features.php:99 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: include/features.php:100 -msgid "Edit Sent Posts" -msgstr "" - -#: include/features.php:100 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: include/features.php:101 -msgid "Tagging" -msgstr "" - -#: include/features.php:101 -msgid "Ability to tag existing posts" -msgstr "" - -#: include/features.php:102 -msgid "Post Categories" -msgstr "" - -#: include/features.php:102 -msgid "Add categories to your posts" -msgstr "" - -#: include/features.php:103 -msgid "Ability to file posts under folders" -msgstr "" - -#: include/features.php:104 -msgid "Dislike Posts" -msgstr "" - -#: include/features.php:104 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: include/features.php:105 -msgid "Star Posts" -msgstr "" - -#: include/features.php:105 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: include/features.php:106 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:106 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: include/features.php:111 -msgid "Advanced Profile Settings" -msgstr "" - -#: include/features.php:112 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Ekkert nýtt hér" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Hreinsa tilkynningar" - -#: include/nav.php:75 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "Loka þessu innliti" - -#: include/nav.php:78 include/nav.php:163 view/theme/frio/theme.php:246 -#: view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Samtölin þín" - -#: include/nav.php:79 view/theme/frio/theme.php:247 -#: view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Forsíðan þín" - -#: include/nav.php:80 view/theme/frio/theme.php:248 -#: view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Myndirnar þínar" - -#: include/nav.php:81 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "Myndskeiðin þín" - -#: include/nav.php:82 view/theme/frio/theme.php:250 -#: view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Atburðirnir þínir" - -#: include/nav.php:83 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Einkaglósur" - -#: include/nav.php:83 -msgid "Your personal notes" -msgstr "Einkaglósurnar þínar" - -#: include/nav.php:94 -msgid "Sign in" -msgstr "Innskrá" - -#: include/nav.php:107 include/nav.php:163 mod/notifications.php:99 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Heim" - -#: include/nav.php:107 -msgid "Home Page" -msgstr "Heimasíða" - -#: include/nav.php:111 -msgid "Create an account" -msgstr "Stofna notanda" - -#: include/nav.php:116 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Hjálp" - -#: include/nav.php:116 -msgid "Help and documentation" -msgstr "Hjálp og leiðbeiningar" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Forrit" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Viðbótarforrit, nytjatól, leikir" - -#: include/nav.php:122 -msgid "Search site content" -msgstr "Leita í efni á vef" - -#: include/nav.php:141 include/nav.php:143 mod/community.php:36 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Samfélag" - -#: include/nav.php:141 -msgid "Conversations on this site" -msgstr "Samtöl á þessum vef" - -#: include/nav.php:143 -msgid "Conversations on the network" -msgstr "Samtöl á þessu neti" - -#: include/nav.php:148 -msgid "Directory" -msgstr "Tengiliðalisti" - -#: include/nav.php:148 -msgid "People directory" -msgstr "Nafnaskrá" - -#: include/nav.php:150 -msgid "Information" -msgstr "Upplýsingar" - -#: include/nav.php:150 -msgid "Information about this friendica instance" -msgstr "Upplýsingar um þetta tilvik Friendica" - -#: include/nav.php:160 mod/notifications.php:87 mod/admin.php:402 -#: view/theme/frio/theme.php:253 -msgid "Network" -msgstr "Samfélag" - -#: include/nav.php:160 view/theme/frio/theme.php:253 -msgid "Conversations from your friends" -msgstr "Samtöl frá vinum" - -#: include/nav.php:161 -msgid "Network Reset" -msgstr "Núllstilling netkerfis" - -#: include/nav.php:161 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:168 mod/notifications.php:105 -msgid "Introductions" -msgstr "Kynningar" - -#: include/nav.php:168 -msgid "Friend Requests" -msgstr "Vinabeiðnir" - -#: include/nav.php:171 mod/notifications.php:271 -msgid "Notifications" -msgstr "Tilkynningar" - -#: include/nav.php:172 -msgid "See all notifications" -msgstr "Sjá allar tilkynningar" - -#: include/nav.php:173 mod/settings.php:887 -msgid "Mark as seen" -msgstr "Merka sem séð" - -#: include/nav.php:173 -msgid "Mark all system notifications seen" -msgstr "Merkja allar tilkynningar sem séðar" - -#: include/nav.php:177 mod/message.php:190 view/theme/frio/theme.php:255 -msgid "Messages" -msgstr "Skilaboð" - -#: include/nav.php:177 view/theme/frio/theme.php:255 -msgid "Private mail" -msgstr "Einka skilaboð" - -#: include/nav.php:178 -msgid "Inbox" -msgstr "Innhólf" - -#: include/nav.php:179 -msgid "Outbox" -msgstr "Úthólf" - -#: include/nav.php:180 mod/message.php:16 -msgid "New Message" -msgstr "Ný skilaboð" - -#: include/nav.php:183 -msgid "Manage" -msgstr "Umsýsla" - -#: include/nav.php:183 -msgid "Manage other pages" -msgstr "Sýsla með aðrar síður" - -#: include/nav.php:186 mod/settings.php:81 -msgid "Delegations" -msgstr "" - -#: include/nav.php:186 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "" - -#: include/nav.php:188 mod/admin.php:1498 mod/admin.php:1756 -#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:256 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Stillingar" - -#: include/nav.php:188 view/theme/frio/theme.php:256 -msgid "Account settings" -msgstr "Stillingar aðgangsreiknings" - -#: include/nav.php:191 -msgid "Manage/Edit Profiles" -msgstr "Sýsla með forsíður" - -#: include/nav.php:193 view/theme/frio/theme.php:257 -msgid "Manage/edit friends and contacts" -msgstr "Sýsla með vini og tengiliði" - -#: include/nav.php:200 mod/admin.php:186 -msgid "Admin" -msgstr "Stjórnborð" - -#: include/nav.php:200 -msgid "Site setup and configuration" -msgstr "Uppsetning og stillingar vefsvæðis" - -#: include/nav.php:204 -msgid "Navigation" -msgstr "Yfirsýn" - -#: include/nav.php:204 -msgid "Site map" -msgstr "Yfirlit um vefsvæði" - -#: include/like.php:186 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:188 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:190 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Senda skilaboð á tölvupóst" - -#: include/acl_selectors.php:332 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:333 mod/settings.php:1131 -msgid "Hide your profile details from unknown viewers?" -msgstr "Fela forsíðuupplýsingar fyrir óþekktum?" - -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" - -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -msgid "show" -msgstr "sýna" - -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -msgid "don't show" -msgstr "fela" - -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: tölvupóstfang" - -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" - -#: include/acl_selectors.php:349 mod/photos.php:1177 mod/photos.php:1562 -msgid "Permissions" -msgstr "Aðgangsheimildir" - -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Loka" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[ekkert efni]" - -#: index.php:240 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " - -#: index.php:284 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 -#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 -msgid "Not Found" -msgstr "Fannst ekki" - -#: index.php:287 mod/help.php:56 -msgid "Page not found." -msgstr "Síða fannst ekki." - -#: index.php:396 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Bannaður aðgangur" - -#: index.php:447 -msgid "toggle mobile" -msgstr "" - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Notandi samþykktur." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Skráning afturköllurð vegna %s" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Skráðu yður inn." - #: mod/oexchange.php:25 msgid "Post successful." msgstr "Melding tókst." -#: mod/update_community.php:18 mod/update_notes.php:37 -#: mod/update_display.php:22 mod/update_profile.php:41 -#: mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Leita að fólki - %s" - -#: mod/dirfind.php:47 -#, php-format -msgid "Forum Search - %s" -msgstr "Leita á spjallsvæði - %s" - -#: mod/dirfind.php:240 mod/match.php:107 -msgid "No matches" -msgstr "Engar leitarniðurstöður" - #: mod/viewsrc.php:7 msgid "Access denied." msgstr "Aðgangi hafnað." @@ -3124,11 +3106,11 @@ msgstr "Aðgangi hafnað." msgid "Welcome to %s" msgstr "Velkomin í %s" -#: mod/notify.php:60 mod/notifications.php:387 +#: mod/notify.php:60 msgid "No more system notifications." msgstr "Ekki fleiri kerfistilkynningar." -#: mod/notify.php:64 mod/notifications.php:391 +#: mod/notify.php:64 mod/notifications.php:111 msgid "System Notifications" msgstr "Kerfistilkynningar" @@ -3136,9 +3118,9 @@ msgstr "Kerfistilkynningar" msgid "Remove term" msgstr "Fjarlæga gildi" -#: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/videos.php:197 mod/photos.php:963 -#: mod/display.php:199 mod/community.php:22 mod/dfrn_request.php:789 +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 msgid "Public access denied." msgstr "Alemennings aðgangur ekki veittur." @@ -3163,263 +3145,11 @@ msgstr "Engar leitarniðurstöður." msgid "Items tagged with: %s" msgstr "Atriði merkt með: %s" -#: mod/search.php:232 mod/contacts.php:790 mod/network.php:146 +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 #, php-format msgid "Results for: %s" msgstr "Niðurstöður fyrir: %s" -#: mod/notifications.php:29 -msgid "Invalid request identifier." -msgstr "Ógilt auðkenni beiðnar." - -#: mod/notifications.php:38 mod/notifications.php:182 -#: mod/notifications.php:262 -msgid "Discard" -msgstr "Henda" - -#: mod/notifications.php:54 mod/notifications.php:181 -#: mod/notifications.php:261 mod/contacts.php:604 mod/contacts.php:799 -#: mod/contacts.php:1000 -msgid "Ignore" -msgstr "Hunsa" - -#: mod/notifications.php:81 -msgid "System" -msgstr "Kerfi" - -#: mod/notifications.php:93 mod/profiles.php:696 mod/network.php:844 -msgid "Personal" -msgstr "Einka" - -#: mod/notifications.php:130 -msgid "Show Ignored Requests" -msgstr "Sýna hunsaðar beiðnir" - -#: mod/notifications.php:130 -msgid "Hide Ignored Requests" -msgstr "Fela hunsaðar beiðnir" - -#: mod/notifications.php:166 mod/notifications.php:236 -msgid "Notification type: " -msgstr "Gerð skilaboða: " - -#: mod/notifications.php:167 -msgid "Friend Suggestion" -msgstr "Vina tillaga" - -#: mod/notifications.php:169 -#, php-format -msgid "suggested by %s" -msgstr "stungið uppá af %s" - -#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:610 -msgid "Hide this contact from others" -msgstr "Gera þennan notanda ósýnilegan öðrum" - -#: mod/notifications.php:175 mod/notifications.php:254 -msgid "Post a new friend activity" -msgstr "Búa til færslu um nýjan vin" - -#: mod/notifications.php:175 mod/notifications.php:254 -msgid "if applicable" -msgstr "ef við á" - -#: mod/notifications.php:178 mod/notifications.php:259 mod/admin.php:1386 -msgid "Approve" -msgstr "Samþykkja" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "Þykist þekkja þig:" - -#: mod/notifications.php:198 -msgid "yes" -msgstr "já" - -#: mod/notifications.php:198 -msgid "no" -msgstr "nei" - -#: mod/notifications.php:199 -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:202 -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:210 -msgid "Friend" -msgstr "Vin" - -#: mod/notifications.php:211 -msgid "Sharer" -msgstr "Deilir" - -#: mod/notifications.php:211 -msgid "Fan/Admirer" -msgstr "Fylgjandi/Aðdáandi" - -#: mod/notifications.php:237 -msgid "Friend/Connect Request" -msgstr "Vinabeiðni/Tengibeiðni" - -#: mod/notifications.php:237 -msgid "New Follower" -msgstr "Nýr fylgjandi" - -#: mod/notifications.php:257 mod/contacts.php:621 mod/follow.php:126 -msgid "Profile URL" -msgstr "Slóð á forsíðu" - -#: mod/notifications.php:268 -msgid "No introductions." -msgstr "Engar kynningar." - -#: mod/notifications.php:309 mod/notifications.php:438 -#: mod/notifications.php:529 -#, php-format -msgid "%s liked %s's post" -msgstr "%s líkaði færsla hjá %s" - -#: mod/notifications.php:319 mod/notifications.php:448 -#: mod/notifications.php:539 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mislíkaði færsla hjá %s" - -#: mod/notifications.php:334 mod/notifications.php:463 -#: mod/notifications.php:554 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s er nú vinur %s" - -#: mod/notifications.php:341 mod/notifications.php:470 -#, php-format -msgid "%s created a new post" -msgstr "%s bjó til færslu" - -#: mod/notifications.php:342 mod/notifications.php:471 -#: mod/notifications.php:564 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s athugasemd við %s's færslu" - -#: mod/notifications.php:357 -msgid "No more network notifications." -msgstr "Engar tilkynningar á neti." - -#: mod/notifications.php:361 -msgid "Network Notifications" -msgstr "Tilkynningar á neti" - -#: mod/notifications.php:486 -msgid "No more personal notifications." -msgstr "Engar einka tilkynningar." - -#: mod/notifications.php:490 -msgid "Personal Notifications" -msgstr "Einkatilkynningar." - -#: mod/notifications.php:571 -msgid "No more home notifications." -msgstr "Ekki fleiri heima tilkynningar" - -#: mod/notifications.php:575 -msgid "Home Notifications" -msgstr "Tilkynningar frá heimasvæði" - -#: mod/dfrn_confirm.php:65 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:610 -msgid "Profile not found." -msgstr "Forsíða fannst ekki." - -#: mod/dfrn_confirm.php:121 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:114 -msgid "Contact not found." -msgstr "Tengiliður fannst ekki." - -#: mod/dfrn_confirm.php:122 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "Ekki tókst að skilja svar frá ytri vef." - -#: mod/dfrn_confirm.php:250 mod/dfrn_confirm.php:255 -msgid "Unexpected response from remote site: " -msgstr "Óskiljanlegt svar frá ytri vef:" - -#: mod/dfrn_confirm.php:264 -msgid "Confirmation completed successfully." -msgstr "Staðfesting kláraði eðlilega." - -#: mod/dfrn_confirm.php:266 mod/dfrn_confirm.php:280 mod/dfrn_confirm.php:287 -msgid "Remote site reported: " -msgstr "Ytri vefur svaraði:" - -#: mod/dfrn_confirm.php:278 -msgid "Temporary failure. Please wait and try again." -msgstr "Tímabundin villa. Bíddu aðeins og reyndu svo aftur." - -#: mod/dfrn_confirm.php:285 -msgid "Introduction failed or was revoked." -msgstr "Kynning mistókst eða var afturkölluð." - -#: mod/dfrn_confirm.php:414 -msgid "Unable to set contact photo." -msgstr "Ekki tókst að setja tengiliðamynd." - -#: mod/dfrn_confirm.php:552 -#, php-format -msgid "No user record found for '%s' " -msgstr "Engin notandafærsla fannst fyrir '%s'" - -#: mod/dfrn_confirm.php:562 -msgid "Our site encryption key is apparently messed up." -msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." - -#: mod/dfrn_confirm.php:573 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." - -#: mod/dfrn_confirm.php:594 -msgid "Contact record was not found for you on our site." -msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." - -#: mod/dfrn_confirm.php:608 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." - -#: mod/dfrn_confirm.php:628 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." - -#: mod/dfrn_confirm.php:639 -msgid "Unable to set your contact credentials on our system." -msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." - -#: mod/dfrn_confirm.php:698 -msgid "Unable to update your contact profile details on our system" -msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" - -#: mod/dfrn_confirm.php:770 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s hefur gengið til liðs við %2$s" - #: mod/friendica.php:70 msgid "This is Friendica, version" msgstr "Þetta er Friendica útgáfa" @@ -3508,6 +3238,10 @@ msgid "" "Password reset failed." msgstr "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki." +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Endurstilling aðgangsorðs" + #: mod/lostpass.php:110 msgid "Your password has been reset as requested." msgstr "Aðgangsorðið þitt hefur verið endurstilt." @@ -3570,6 +3304,10 @@ msgid "" "your email for further instructions." msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Gælunafn eða póstfang: " + #: mod/lostpass.php:162 msgid "Reset" msgstr "Endursetja" @@ -3582,52 +3320,14 @@ msgstr "Engin forsíða" msgid "Help:" msgstr "Hjálp:" -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 -msgid "Invalid request." -msgstr "Ógild fyrirspurn." +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Fannst ekki" -#: mod/wall_upload.php:151 mod/photos.php:805 mod/profile_photo.php:150 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:188 mod/photos.php:845 mod/profile_photo.php:159 -msgid "Unable to process image." -msgstr "Ekki mögulegt afgreiða mynd" - -#: mod/wall_upload.php:221 mod/photos.php:872 mod/profile_photo.php:307 -msgid "Image upload failed." -msgstr "Ekki hægt að hlaða upp mynd." - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vina tillaga send" - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stinga uppá vinum" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stinga uppá vin fyrir %s" - -#: mod/fsuggest.php:107 mod/events.php:507 mod/invite.php:140 -#: mod/crepair.php:179 mod/content.php:728 mod/profiles.php:681 -#: mod/poke.php:199 mod/photos.php:1124 mod/photos.php:1248 -#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 -#: mod/photos.php:1753 mod/install.php:272 mod/install.php:312 -#: mod/contacts.php:575 mod/mood.php:137 mod/localtime.php:45 -#: mod/message.php:357 mod/message.php:547 mod/manage.php:143 -#: object/Item.php:720 view/theme/frio/config.php:59 -#: view/theme/cleanzero/config.php:80 view/theme/quattro/config.php:64 -#: view/theme/dispy/config.php:70 view/theme/vier/config.php:107 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Senda inn" +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Síða fannst ekki." #: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." @@ -3637,91 +3337,6 @@ msgstr "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón." msgid "Visible to:" msgstr "Sýnilegt eftirfarandi:" -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:380 mod/cal.php:279 -msgid "View" -msgstr "Skoða" - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Stofna nýjan atburð" - -#: mod/events.php:382 mod/cal.php:280 -msgid "Previous" -msgstr "Fyrra" - -#: mod/events.php:383 mod/cal.php:281 mod/install.php:231 -msgid "Next" -msgstr "Næsta" - -#: mod/events.php:483 -msgid "Event details" -msgstr "Nánar um atburð" - -#: mod/events.php:484 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:485 mod/events.php:486 -msgid "Event Starts:" -msgstr "Atburður hefst:" - -#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 -msgid "Required" -msgstr "Nauðsynlegt" - -#: mod/events.php:487 mod/events.php:503 -msgid "Finish date/time is not known or not relevant" -msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" - -#: mod/events.php:489 mod/events.php:490 -msgid "Event Finishes:" -msgstr "Atburður klárar:" - -#: mod/events.php:491 mod/events.php:504 -msgid "Adjust for viewer timezone" -msgstr "Heimfæra á tímabelti áhorfanda" - -#: mod/events.php:493 -msgid "Description:" -msgstr "Lýsing:" - -#: mod/events.php:497 mod/events.php:499 -msgid "Title:" -msgstr "Titill:" - -#: mod/events.php:500 mod/events.php:501 -msgid "Share this event" -msgstr "Deila þessum atburði" - -#: mod/directory.php:205 view/theme/vier/theme.php:201 -#: view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Alheimstengiliðaskrá" - -#: mod/directory.php:207 -msgid "Find on this site" -msgstr "Leita á þessum vef" - -#: mod/directory.php:209 -msgid "Results for:" -msgstr "Niðurstöður fyrir:" - -#: mod/directory.php:211 -msgid "Site Directory" -msgstr "Skrá yfir tengiliði á þessum vef" - -#: mod/directory.php:218 -msgid "No entries (some entries may be hidden)." -msgstr "Engar færslur (sumar geta verið faldar)." - #: mod/openid.php:24 msgid "OpenID protocol error. No ID returned." msgstr "Samskiptavilla í OpenID. Ekkert auðkenni barst." @@ -3731,13 +3346,13 @@ msgid "" "Account not found and OpenID registration is not permitted on this site." msgstr "" -#: mod/uimport.php:50 mod/register.php:191 +#: mod/uimport.php:50 mod/register.php:198 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." -#: mod/uimport.php:64 mod/register.php:286 +#: mod/uimport.php:64 mod/register.php:295 msgid "Import" msgstr "Flytja inn" @@ -3772,13 +3387,13 @@ msgid "" "select \"Export account\"" msgstr "" -#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:584 -#: mod/contacts.php:939 +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 #, php-format msgid "Visit %s's profile [%s]" msgstr "Heimsækja forsíðu %s [%s]" -#: mod/nogroup.php:42 mod/contacts.php:940 +#: mod/nogroup.php:42 mod/contacts.php:931 msgid "Edit contact" msgstr "Breyta tengilið" @@ -3786,18 +3401,6 @@ msgstr "Breyta tengilið" msgid "Contacts who are not members of a group" msgstr "" -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "hefur áhuga á:" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Forsíða fannst" - #: mod/uexport.php:29 msgid "Export account" msgstr "" @@ -3920,20 +3523,25 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 -#: mod/photos.php:192 mod/photos.php:1106 mod/photos.php:1232 -#: mod/photos.php:1255 mod/photos.php:1825 mod/photos.php:1837 -#: view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Myndir tengiliðs" +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Senda inn" #: mod/fbrowser.php:133 msgid "Files" msgstr "Skrár" -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Kerfið er óvirkt vegna viðhalds" +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Bannaður aðgangur" #: mod/profperm.php:25 mod/profperm.php:56 msgid "Invalid profile identifier." @@ -3955,102 +3563,6 @@ msgstr "Sjáanlegur hverjum" msgid "All Contacts (with secure profile access)" msgstr "Allir tengiliðir (með öruggann aðgang að forsíðu)" -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Enginn tengiliður" - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Stillingar tengiliðs uppfærðar." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Uppfærsla tengiliðs mistókst." - -#: mod/crepair.php:120 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." - -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:150 -msgid "Return to contact editor" -msgstr "Fara til baka í tengiliðasýsl" - -#: mod/crepair.php:152 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:153 mod/admin.php:1371 mod/admin.php:1384 -#: mod/admin.php:1396 mod/admin.php:1412 mod/settings.php:665 -#: mod/settings.php:691 -msgid "Name" -msgstr "Nafn" - -#: mod/crepair.php:154 -msgid "Account Nickname" -msgstr "Gælunafn notanda" - -#: mod/crepair.php:155 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" - -#: mod/crepair.php:156 -msgid "Account URL" -msgstr "Heimasíða notanda" - -#: mod/crepair.php:157 -msgid "Friend Request URL" -msgstr "Slóð vinabeiðnar" - -#: mod/crepair.php:158 -msgid "Friend Confirm URL" -msgstr "Slóð vina staðfestingar " - -#: mod/crepair.php:159 -msgid "Notification Endpoint URL" -msgstr "Slóð loka tilkynningar" - -#: mod/crepair.php:160 -msgid "Poll/Feed URL" -msgstr "Slóð á könnun/fréttastraum" - -#: mod/crepair.php:161 -msgid "New photo from this URL" -msgstr "Ný mynd frá slóð" - -#: mod/crepair.php:162 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:165 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:167 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - #: mod/tagrm.php:41 msgid "Tag removed" msgstr "Merki fjarlægt" @@ -4067,1577 +3579,6 @@ msgstr "Veldu merki til að fjarlægja:" msgid "Remove" msgstr "Fjarlægja" -#: mod/ping.php:272 -msgid "{0} wants to be your friend" -msgstr "{0} vill vera vinur þinn" - -#: mod/ping.php:287 -msgid "{0} sent you a message" -msgstr "{0} sendi þér skilboð" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} óskaði eftir skráningu" - -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Þemastillingar uppfærðar." - -#: mod/admin.php:156 mod/admin.php:923 -msgid "Site" -msgstr "Vefur" - -#: mod/admin.php:157 mod/admin.php:867 mod/admin.php:1379 mod/admin.php:1394 -msgid "Users" -msgstr "Notendur" - -#: mod/admin.php:158 mod/admin.php:1496 mod/admin.php:1556 mod/settings.php:74 -msgid "Plugins" -msgstr "Kerfiseiningar" - -#: mod/admin.php:159 mod/admin.php:1754 mod/admin.php:1804 -msgid "Themes" -msgstr "Þemu" - -#: mod/admin.php:160 mod/settings.php:52 -msgid "Additional features" -msgstr "Viðbótareiginleikar" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "Gagnagrunnsuppfærslur" - -#: mod/admin.php:162 mod/admin.php:397 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:163 mod/admin.php:363 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1872 -msgid "Logs" -msgstr "Atburðaskrá" - -#: mod/admin.php:178 mod/admin.php:1939 -msgid "View Logs" -msgstr "Skoða atburðaskrár" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Eiginleikar kerfiseiningar" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "greining" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Notenda nýskráningar bíða samþykkis" - -#: mod/admin.php:356 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:357 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:922 -#: mod/admin.php:1378 mod/admin.php:1495 mod/admin.php:1555 mod/admin.php:1753 -#: mod/admin.php:1803 mod/admin.php:1871 mod/admin.php:1938 -msgid "Administration" -msgstr "Stjórnun" - -#: mod/admin.php:369 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:399 -msgid "ID" -msgstr "" - -#: mod/admin.php:400 -msgid "Recipient Name" -msgstr "Nafn viðtakanda" - -#: mod/admin.php:401 -msgid "Recipient Profile" -msgstr "Forsíða viðtakanda" - -#: mod/admin.php:403 -msgid "Created" -msgstr "Búið til" - -#: mod/admin.php:404 -msgid "Last Tried" -msgstr "Síðast prófað" - -#: mod/admin.php:405 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:424 mod/admin.php:1327 -msgid "Normal Account" -msgstr "Venjulegur notandi" - -#: mod/admin.php:425 mod/admin.php:1328 -msgid "Soapbox Account" -msgstr "Sápukassa notandi" - -#: mod/admin.php:426 mod/admin.php:1329 -msgid "Community/Celebrity Account" -msgstr "Hópa-/Stjörnusíða" - -#: mod/admin.php:427 mod/admin.php:1330 -msgid "Automatic Friend Account" -msgstr "Verður sjálfkrafa vinur notandi" - -#: mod/admin.php:428 -msgid "Blog Account" -msgstr "" - -#: mod/admin.php:429 -msgid "Private Forum" -msgstr "Einkaspjallsvæði" - -#: mod/admin.php:455 -msgid "Message queues" -msgstr "" - -#: mod/admin.php:461 -msgid "Summary" -msgstr "Samantekt" - -#: mod/admin.php:463 -msgid "Registered users" -msgstr "Skráðir notendur" - -#: mod/admin.php:465 -msgid "Pending registrations" -msgstr "Nýskráningar í bið" - -#: mod/admin.php:466 -msgid "Version" -msgstr "Útgáfa" - -#: mod/admin.php:471 -msgid "Active plugins" -msgstr "Virkar kerfiseiningar" - -#: mod/admin.php:494 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:795 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:803 -msgid "Site settings updated." -msgstr "Stillingar vefsvæðis uppfærðar." - -#: mod/admin.php:831 mod/settings.php:919 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/admin.php:850 -msgid "No community page" -msgstr "" - -#: mod/admin.php:851 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:852 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:857 mod/contacts.php:529 -msgid "Never" -msgstr "aldrei" - -#: mod/admin.php:858 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:866 mod/contacts.php:556 -msgid "Disabled" -msgstr "Slökkt" - -#: mod/admin.php:868 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:869 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:873 -msgid "One month" -msgstr "Einn mánuður" - -#: mod/admin.php:874 -msgid "Three months" -msgstr "Þrír mánuðir" - -#: mod/admin.php:875 -msgid "Half a year" -msgstr "Hálft ár" - -#: mod/admin.php:876 -msgid "One year" -msgstr "Eitt ár" - -#: mod/admin.php:881 -msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:904 -msgid "Closed" -msgstr "Lokað" - -#: mod/admin.php:905 -msgid "Requires approval" -msgstr "Þarf samþykki" - -#: mod/admin.php:906 -msgid "Open" -msgstr "Opið" - -#: mod/admin.php:910 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:911 -msgid "Force all links to use SSL" -msgstr "" - -#: mod/admin.php:912 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: mod/admin.php:924 mod/admin.php:1557 mod/admin.php:1805 mod/admin.php:1873 -#: mod/admin.php:2022 mod/settings.php:663 mod/settings.php:773 -#: mod/settings.php:820 mod/settings.php:889 mod/settings.php:976 -#: mod/settings.php:1214 -msgid "Save Settings" -msgstr "Vista stillingar" - -#: mod/admin.php:925 mod/register.php:263 -msgid "Registration" -msgstr "Nýskráning" - -#: mod/admin.php:926 -msgid "File upload" -msgstr "Hlaða upp skrá" - -#: mod/admin.php:927 -msgid "Policies" -msgstr "Stefna" - -#: mod/admin.php:929 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:930 -msgid "Performance" -msgstr "Afköst" - -#: mod/admin.php:931 -msgid "Worker" -msgstr "" - -#: mod/admin.php:932 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:935 -msgid "Site name" -msgstr "Nafn síðu" - -#: mod/admin.php:936 -msgid "Host name" -msgstr "Vélarheiti" - -#: mod/admin.php:937 -msgid "Sender Email" -msgstr "Tölvupóstfang sendanda" - -#: mod/admin.php:937 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:938 -msgid "Banner/Logo" -msgstr "Borði/Merki" - -#: mod/admin.php:939 -msgid "Shortcut icon" -msgstr "Táknmynd flýtivísunar" - -#: mod/admin.php:939 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:940 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:940 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:941 -msgid "Additional Info" -msgstr "" - -#: mod/admin.php:941 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:942 -msgid "System language" -msgstr "Tungumál kerfis" - -#: mod/admin.php:943 -msgid "System theme" -msgstr "Þema kerfis" - -#: mod/admin.php:943 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: mod/admin.php:944 -msgid "Mobile system theme" -msgstr "" - -#: mod/admin.php:944 -msgid "Theme for mobile devices" -msgstr "" - -#: mod/admin.php:945 -msgid "SSL link policy" -msgstr "" - -#: mod/admin.php:945 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: mod/admin.php:946 -msgid "Force SSL" -msgstr "Þvinga SSL" - -#: mod/admin.php:946 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:947 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:947 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:948 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: mod/admin.php:948 -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:949 -msgid "Single user instance" -msgstr "" - -#: mod/admin.php:949 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:950 -msgid "Maximum image size" -msgstr "Mesta stærð mynda" - -#: mod/admin.php:950 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: mod/admin.php:951 -msgid "Maximum image length" -msgstr "" - -#: mod/admin.php:951 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: mod/admin.php:952 -msgid "JPEG image quality" -msgstr "JPEG myndgæði" - -#: mod/admin.php:952 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: mod/admin.php:954 -msgid "Register policy" -msgstr "Stefna varðandi nýskráningar" - -#: mod/admin.php:955 -msgid "Maximum Daily Registrations" -msgstr "" - -#: mod/admin.php:955 -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:956 -msgid "Register text" -msgstr "Texti við nýskráningu" - -#: mod/admin.php:956 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: mod/admin.php:957 -msgid "Accounts abandoned after x days" -msgstr "Yfirgefnir notendur eftir x daga" - -#: mod/admin.php:957 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." - -#: mod/admin.php:958 -msgid "Allowed friend domains" -msgstr "Leyfð lén vina" - -#: mod/admin.php:958 -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:959 -msgid "Allowed email domains" -msgstr "Leyfð lén póstfangs" - -#: mod/admin.php:959 -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:960 -msgid "Block public" -msgstr "Loka á opinberar færslur" - -#: mod/admin.php:960 -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:961 -msgid "Force publish" -msgstr "Skylda að vera í tengiliðalista" - -#: mod/admin.php:961 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: mod/admin.php:962 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:962 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:963 -msgid "Allow threaded items" -msgstr "" - -#: mod/admin.php:963 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: mod/admin.php:964 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:964 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:965 -msgid "Don't include post content in email notifications" -msgstr "" - -#: mod/admin.php:965 -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:966 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." - -#: mod/admin.php:966 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." - -#: mod/admin.php:967 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:967 -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:968 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:968 -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:969 -msgid "Block multiple registrations" -msgstr "Banna margar skráningar" - -#: mod/admin.php:969 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: mod/admin.php:970 -msgid "OpenID support" -msgstr "Leyfa OpenID auðkenningu" - -#: mod/admin.php:970 -msgid "OpenID support for registration and logins." -msgstr "" - -#: mod/admin.php:971 -msgid "Fullname check" -msgstr "Fullt nafn skilyrði" - -#: mod/admin.php:971 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: mod/admin.php:972 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 hefðbundin stöfun" - -#: mod/admin.php:972 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: mod/admin.php:973 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:973 -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:974 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:974 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:975 -msgid "Enable OStatus support" -msgstr "Leyfa OStatus stuðning" - -#: mod/admin.php:975 -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:976 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:976 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: mod/admin.php:977 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:977 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:978 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:980 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:981 -msgid "Enable Diaspora support" -msgstr "Leyfa Diaspora tengingar" - -#: mod/admin.php:981 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: mod/admin.php:982 -msgid "Only allow Friendica contacts" -msgstr "Aðeins leyfa Friendica notendur" - -#: mod/admin.php:982 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: mod/admin.php:983 -msgid "Verify SSL" -msgstr "Sannreyna SSL" - -#: mod/admin.php:983 -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:984 -msgid "Proxy user" -msgstr "Proxy notandi" - -#: mod/admin.php:985 -msgid "Proxy URL" -msgstr "Proxy slóð" - -#: mod/admin.php:986 -msgid "Network timeout" -msgstr "Net tími útrunninn" - -#: mod/admin.php:986 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:987 -msgid "Delivery interval" -msgstr "" - -#: mod/admin.php:987 -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:988 -msgid "Poll interval" -msgstr "" - -#: mod/admin.php:988 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: mod/admin.php:989 -msgid "Maximum Load Average" -msgstr "Mesta meðaltals álag" - -#: mod/admin.php:989 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: mod/admin.php:990 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:990 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:991 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:991 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:992 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:992 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:994 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:994 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:995 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:995 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:996 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:996 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:997 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:997 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:998 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:998 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:1000 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1000 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:1002 -msgid "Use MySQL full text engine" -msgstr "" - -#: mod/admin.php:1002 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: mod/admin.php:1003 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:1003 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:1004 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1004 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1005 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:1005 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1006 -msgid "Cache duration in seconds" -msgstr "" - -#: mod/admin.php:1006 -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:1007 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1007 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1008 -msgid "Path for lock file" -msgstr "" - -#: mod/admin.php:1008 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:1009 -msgid "Temp path" -msgstr "" - -#: mod/admin.php:1009 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1010 -msgid "Base path to installation" -msgstr "" - -#: mod/admin.php:1010 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:1011 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1011 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1012 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:1012 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:1013 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1013 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1015 -msgid "New base url" -msgstr "" - -#: mod/admin.php:1015 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:1017 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:1017 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:1018 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:1018 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1020 -msgid "Enable 'worker' background processing" -msgstr "" - -#: mod/admin.php:1020 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." -msgstr "" - -#: mod/admin.php:1021 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1021 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1022 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1022 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." -msgstr "" - -#: mod/admin.php:1051 -msgid "Update has been marked successful" -msgstr "Uppfærsla merkt sem tókst" - -#: mod/admin.php:1059 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1062 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1074 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1077 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Uppfærsla %s framkvæmd." - -#: mod/admin.php:1081 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." - -#: mod/admin.php:1083 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1102 -msgid "No failed updates." -msgstr "Engar uppfærslur mistókust." - -#: mod/admin.php:1103 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1108 -msgid "Failed Updates" -msgstr "Uppfærslur sem mistókust" - -#: mod/admin.php:1109 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." - -#: mod/admin.php:1110 -msgid "Mark success (if update was manually applied)" -msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" - -#: mod/admin.php:1111 -msgid "Attempt to execute this update step automatically" -msgstr "Framkvæma þessa uppfærslu sjálfkrafa" - -#: mod/admin.php:1143 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1146 -#, php-format -msgid "" -"\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." -msgstr "" - -#: mod/admin.php:1190 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1197 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s notenda eytt" -msgstr[1] "%s notendum eytt" - -#: mod/admin.php:1244 -#, php-format -msgid "User '%s' deleted" -msgstr "Notanda '%s' eytt" - -#: mod/admin.php:1252 -#, php-format -msgid "User '%s' unblocked" -msgstr "Notanda '%s' gefið frelsi" - -#: mod/admin.php:1252 -#, php-format -msgid "User '%s' blocked" -msgstr "Notanda '%s' settur í bann" - -#: mod/admin.php:1371 mod/admin.php:1396 -msgid "Register date" -msgstr "Skráningar dagsetning" - -#: mod/admin.php:1371 mod/admin.php:1396 -msgid "Last login" -msgstr "Síðast innskráður" - -#: mod/admin.php:1371 mod/admin.php:1396 -msgid "Last item" -msgstr "Síðasta" - -#: mod/admin.php:1371 mod/settings.php:43 -msgid "Account" -msgstr "Notandi" - -#: mod/admin.php:1380 -msgid "Add User" -msgstr "" - -#: mod/admin.php:1381 -msgid "select all" -msgstr "velja alla" - -#: mod/admin.php:1382 -msgid "User registrations waiting for confirm" -msgstr "Skráning notanda býður samþykkis" - -#: mod/admin.php:1383 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1384 -msgid "Request date" -msgstr "Dagsetning beiðnar" - -#: mod/admin.php:1385 -msgid "No registrations." -msgstr "Engin skráning" - -#: mod/admin.php:1387 -msgid "Deny" -msgstr "Hafnað" - -#: mod/admin.php:1389 mod/contacts.php:603 mod/contacts.php:798 -#: mod/contacts.php:992 -msgid "Block" -msgstr "Banna" - -#: mod/admin.php:1390 mod/contacts.php:603 mod/contacts.php:798 -#: mod/contacts.php:992 -msgid "Unblock" -msgstr "Afbanna" - -#: mod/admin.php:1391 -msgid "Site admin" -msgstr "Vefstjóri" - -#: mod/admin.php:1392 -msgid "Account expired" -msgstr "" - -#: mod/admin.php:1395 -msgid "New User" -msgstr "" - -#: mod/admin.php:1396 -msgid "Deleted since" -msgstr "" - -#: mod/admin.php:1401 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" - -#: mod/admin.php:1402 -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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" - -#: mod/admin.php:1412 -msgid "Name of the new user." -msgstr "" - -#: mod/admin.php:1413 -msgid "Nickname" -msgstr "" - -#: mod/admin.php:1413 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1414 -msgid "Email address of the new user." -msgstr "" - -#: mod/admin.php:1457 -#, php-format -msgid "Plugin %s disabled." -msgstr "Kerfiseining %s óvirk." - -#: mod/admin.php:1461 -#, php-format -msgid "Plugin %s enabled." -msgstr "Kveikt á kerfiseiningu %s" - -#: mod/admin.php:1472 mod/admin.php:1708 -msgid "Disable" -msgstr "Slökkva" - -#: mod/admin.php:1474 mod/admin.php:1710 -msgid "Enable" -msgstr "Kveikja" - -#: mod/admin.php:1497 mod/admin.php:1755 -msgid "Toggle" -msgstr "Skipta" - -#: mod/admin.php:1505 mod/admin.php:1764 -msgid "Author: " -msgstr "Höfundur:" - -#: mod/admin.php:1506 mod/admin.php:1765 -msgid "Maintainer: " -msgstr "" - -#: mod/admin.php:1558 -msgid "Reload active plugins" -msgstr "Endurhlaða virkar kerfiseiningar" - -#: mod/admin.php:1563 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" -msgstr "" - -#: mod/admin.php:1668 -msgid "No themes found." -msgstr "Engin þemu fundust" - -#: mod/admin.php:1746 -msgid "Screenshot" -msgstr "Skjámynd" - -#: mod/admin.php:1806 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:1811 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" -msgstr "" - -#: mod/admin.php:1812 -msgid "[Experimental]" -msgstr "[Tilraun]" - -#: mod/admin.php:1813 -msgid "[Unsupported]" -msgstr "[Óstudd]" - -#: mod/admin.php:1837 -msgid "Log settings updated." -msgstr "Stillingar atburðaskrár uppfærðar. " - -#: mod/admin.php:1874 -msgid "Clear" -msgstr "Hreinsa" - -#: mod/admin.php:1879 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:1880 -msgid "Log file" -msgstr "Atburðaskrá" - -#: mod/admin.php:1880 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." - -#: mod/admin.php:1881 -msgid "Log level" -msgstr "Stig atburðaskráningar" - -#: mod/admin.php:1884 -msgid "PHP logging" -msgstr "" - -#: mod/admin.php:1885 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2011 mod/admin.php:2012 mod/settings.php:763 -msgid "Off" -msgstr "" - -#: mod/admin.php:2011 mod/admin.php:2012 mod/settings.php:763 -msgid "On" -msgstr "" - -#: mod/admin.php:2012 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:2020 -msgid "Manage Additional Features" -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Skráar upphlöðun mistókst." - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Engir vinir til að birta." - -#: mod/cal.php:152 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Aðgangur að þessari forsíðu hefur verið heftur." - -#: mod/cal.php:301 -msgid "User not found" -msgstr "" - -#: mod/cal.php:317 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:319 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:327 -msgid "calendar" -msgstr "" - -#: mod/content.php:119 mod/network.php:468 -msgid "No such group" -msgstr "Hópur ekki til" - -#: mod/content.php:130 mod/network.php:495 mod/group.php:193 -msgid "Group is empty" -msgstr "Hópur er tómur" - -#: mod/content.php:135 mod/network.php:499 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "" - -#: mod/content.php:621 object/Item.php:429 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d ummæli" -msgstr[1] "%d ummæli" - -#: mod/content.php:638 mod/photos.php:1405 object/Item.php:117 -msgid "Private Message" -msgstr "Einkaskilaboð" - -#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "Mér líkar þetta (kveikja/slökkva)" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "líkar" - -#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "Mér líkar þetta ekki (kveikja/slökkva)" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "mislíkar" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Deila þessu" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "deila" - -#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662 -#: mod/photos.php:1750 object/Item.php:717 -msgid "This is you" -msgstr "Þetta ert þú" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Feitletrað" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Skáletrað" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Undirstrikað" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Gæsalappir" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Kóði" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Mynd" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Tengill" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Myndband" - -#: mod/content.php:746 mod/settings.php:725 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Breyta" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "bæta við stjörnu" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "eyða stjörnu" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "Kveikja/slökkva á stjörnu" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "stjörnumerkt" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "bæta við merki" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "" - -#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245 -msgid "ignored" -msgstr "hunsað" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "vista í möppu" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "við" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "vegg við vegg" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "gegnum vegg við vegg" - #: mod/repair_ostatus.php:14 msgid "Resubscribing to OStatus contacts" msgstr "" @@ -5685,333 +3626,6 @@ msgstr "Bæta við" msgid "No entries." msgstr "Engar færslur." -#: mod/videos.php:123 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:128 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "" - -#: mod/videos.php:308 mod/photos.php:1074 -msgid "Access to this item is restricted." -msgstr "Aðgangur að þessum hlut hefur verið heftur" - -#: mod/videos.php:390 mod/photos.php:1877 -msgid "View Album" -msgstr "Skoða myndabók" - -#: mod/videos.php:399 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:401 -msgid "Upload New Videos" -msgstr "" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Forsíðu eytt." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Forsíða-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Ný forsíða búinn til." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Ekki tókst að klóna forsíðu" - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Nafn á forsíðu er skilyrði" - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Forsíða uppfærð." - -#: mod/profiles.php:556 -msgid " and " -msgstr "og" - -#: mod/profiles.php:564 -msgid "public profile" -msgstr "Opinber forsíða" - -#: mod/profiles.php:567 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:568 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: mod/profiles.php:571 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hefur uppfært %2$s, með því að breyta %3$s." - -#: mod/profiles.php:638 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670 -#: mod/follow.php:110 mod/dfrn_request.php:860 mod/register.php:239 -#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 -#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 -#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 -#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 -#: mod/settings.php:1184 mod/api.php:106 -msgid "No" -msgstr "Nei" - -#: mod/profiles.php:643 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" - -#: mod/profiles.php:667 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "Breyta forsíðu upplýsingum" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "Skoða þessa forsíðu" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Búa til nýja forsíðu með þessum stillingum" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Klóna þessa forsíðu" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "Eyða þessari forsíðu" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Relation" -msgstr "" - -#: mod/profiles.php:700 mod/newmember.php:36 mod/profile_photo.php:250 -msgid "Upload Profile Photo" -msgstr "Hlaða upp forsíðu mynd" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "Kyn:" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr " Hjúskaparstaða:" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "Til dæmis: fishing photography software" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "Forsíðu nafn:" - -#: mod/profiles.php:711 -msgid "" -"This is your public profile.
                                              It may " -"be visible to anybody using the internet." -msgstr "Þetta er opinber forsíða.
                                              Hún verður sjáanleg öðrum sem nota alnetið." - -#: mod/profiles.php:712 -msgid "Your Full Name:" -msgstr "Fullt nafn:" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "Starfsheiti/Lýsing:" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "Gata:" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "Bær/Borg:" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "Svæði/Sýsla" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "Póstnúmer:" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "Hver: (ef við á)" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "Segðu okkur frá sjálfum þér..." - -#: mod/profiles.php:728 -msgid "Homepage URL:" -msgstr "Slóð heimasíðu:" - -#: mod/profiles.php:731 -msgid "Religious Views:" -msgstr "Trúarskoðanir" - -#: mod/profiles.php:732 -msgid "Public Keywords:" -msgstr "Opinber leitarorð:" - -#: mod/profiles.php:732 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" - -#: mod/profiles.php:733 -msgid "Private Keywords:" -msgstr "Einka leitarorð:" - -#: mod/profiles.php:733 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" - -#: mod/profiles.php:736 -msgid "Musical interests" -msgstr "Tónlistarsmekkur" - -#: mod/profiles.php:737 -msgid "Books, literature" -msgstr "Bækur, bókmenntir" - -#: mod/profiles.php:738 -msgid "Television" -msgstr "Sjónvarp" - -#: mod/profiles.php:739 -msgid "Film/dance/culture/entertainment" -msgstr "Kvikmyndir/dans/menning/afþreying" - -#: mod/profiles.php:740 -msgid "Hobbies/Interests" -msgstr "Áhugamál" - -#: mod/profiles.php:741 -msgid "Love/romance" -msgstr "Ást/rómantík" - -#: mod/profiles.php:742 -msgid "Work/employment" -msgstr "Atvinna:" - -#: mod/profiles.php:743 -msgid "School/education" -msgstr "Skóli/menntun" - -#: mod/profiles.php:744 -msgid "Contact information and Social Networks" -msgstr "Tengiliðaupplýsingar og samfélagsnet" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "Sýsla með forsíður" - #: mod/credits.php:16 msgid "Credits" msgstr "" @@ -6027,6 +3641,823 @@ msgstr "" msgid "- select -" msgstr "- veldu -" +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Atriði ekki í boði." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Atriði fannst ekki" + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Forrit" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Engin uppsett forrit" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Velkomin(n) á Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Nýr notandi verklisti" + +#: 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 "" + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: 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 "" + +#: 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 "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Hlaða upp forsíðu mynd" + +#: 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 "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: 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 "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: 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 "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Tengist" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "" + +#: mod/newmember.php:51 +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 "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:53 +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 "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:55 +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 "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "" + +#: mod/newmember.php:57 +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 "" + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:65 +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 "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: mod/newmember.php:68 +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 "" + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Eyða þessum notanda" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Sláðu inn aðgangsorð yðar:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Atriði fannst ekki" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Breyta skilaboðum" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tíma leiðréttir" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Máltími: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Núverandi tímabelti: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umbreyttur staðartími: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Veldu tímabeltið þitt:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Hópur stofnaður" + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Gat ekki stofnað hóp." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Hópur fannst ekki." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Hópur endurskýrður." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Stofna hóp af tengiliðum/vinum" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Hópi eytt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Ekki tókst að eyða hóp." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Hópa sýslari" + +#: mod/group.php:190 +msgid "Members" +msgstr "Aðilar" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Allir tengiliðir" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Hópur er tómur" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Engir viðtakendur valdir." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Ekki tókst að senda skilaboð." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Ekki tókst að sækja skilaboð." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Skilaboð send." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Senda einkaskilaboð" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Til:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Efni:" + +#: mod/share.php:38 +msgid "link" +msgstr "tengill" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Leyfa forriti að tengjast" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Skráðu þig inn til að halda áfram." + +#: 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 "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Nei" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (hrátt 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 "" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "tókst" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "mistókst" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "hunsað" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Skilaboðum eytt." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Samtali eytt." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Engin skilaboð." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Ekki næst í skilaboð." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Eyða skilaboðum" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Eyða samtali" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Senda svar" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Sýsla með notendur og/eða síður" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Veldu notanda til að sýsla með:" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Stillingar tengiliðs uppfærðar." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Uppfærsla tengiliðs mistókst." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Tengiliður fannst ekki." + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Fara til baka í tengiliðasýsl" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Nafn" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Gælunafn notanda" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "Heimasíða notanda" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Slóð vinabeiðnar" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "Slóð vina staðfestingar " + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Slóð loka tilkynningar" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Slóð á könnun/fréttastraum" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Ný mynd frá slóð" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Hópur ekki til" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d ummæli" +msgstr[1] "%d ummæli" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Einkaskilaboð" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Mér líkar þetta (kveikja/slökkva)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "líkar" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Mér líkar þetta ekki (kveikja/slökkva)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "mislíkar" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Deila þessu" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "deila" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Þetta ert þú" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Athugasemd" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Feitletrað" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Skáletrað" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Undirstrikað" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Gæsalappir" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Kóði" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Mynd" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Tengill" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Myndband" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Breyta" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "bæta við stjörnu" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "eyða stjörnu" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "Kveikja/slökkva á stjörnu" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "stjörnumerkt" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "bæta við merki" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "vista í möppu" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "við" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "vegg við vegg" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "gegnum vegg við vegg" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vina tillaga send" + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stinga uppá vinum" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stinga uppá vin fyrir %s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + #: mod/poke.php:192 msgid "Poke/Prod" msgstr "" @@ -6047,185 +4478,3731 @@ msgstr "" msgid "Make this post private" msgstr "" -#: mod/photos.php:100 mod/photos.php:1886 +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Tókst að hala upp mynd en afskurður tókst ekki." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Myndar minnkun [%s] tókst ekki." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ýta þarf á " + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Ekki tókst að vinna mynd" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Ekki mögulegt afgreiða mynd" + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Hlaða upp skrá:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Hlaða upp" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "eða" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "sleppa þessu skrefi" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "velja mynd í myndabókum" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Skera af mynd" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Stilltu afskurð fyrir besta birtingu." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Breyting kláruð" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Upphölun á mynd tóks." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Ekki hægt að hlaða upp mynd." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Notandi samþykktur." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Skráning afturköllurð vegna %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Skráðu yður inn." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Ógilt auðkenni beiðnar." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Henda" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Hunsa" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Tilkynningar á neti" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Einkatilkynningar." + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Tilkynningar frá heimasvæði" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Sýna hunsaðar beiðnir" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Fela hunsaðar beiðnir" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Gerð skilaboða: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "stungið uppá af %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Gera þennan notanda ósýnilegan öðrum" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Búa til færslu um nýjan vin" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "ef við á" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Samþykkja" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Þykist þekkja þig:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "já" + +#: mod/notifications.php:196 +msgid "no" +msgstr "nei" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Vin" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Deilir" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fylgjandi/Aðdáandi" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "Slóð á forsíðu" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Engar kynningar." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Forsíða fannst ekki." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Forsíðu eytt." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Forsíða-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Ný forsíða búinn til." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Ekki tókst að klóna forsíðu" + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Nafn á forsíðu er skilyrði" + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Forsíða uppfærð." + +#: mod/profiles.php:564 +msgid " and " +msgstr "og" + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "Opinber forsíða" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hefur uppfært %2$s, með því að breyta %3$s." + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Breyta forsíðu upplýsingum" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Skoða þessa forsíðu" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Búa til nýja forsíðu með þessum stillingum" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Klóna þessa forsíðu" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Eyða þessari forsíðu" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Kyn:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Hjúskaparstaða:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Til dæmis: fishing photography software" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Forsíðu nafn:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Nauðsynlegt" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "Þetta er opinber forsíða.
                                              Hún verður sjáanleg öðrum sem nota alnetið." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Fullt nafn:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Starfsheiti/Lýsing:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Gata:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Bær/Borg:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Svæði/Sýsla" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Póstnúmer:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Hver: (ef við á)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Segðu okkur frá sjálfum þér..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Slóð heimasíðu:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Trúarskoðanir" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Opinber leitarorð:" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Einka leitarorð:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Tónlistarsmekkur" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Bækur, bókmenntir" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Sjónvarp" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Kvikmyndir/dans/menning/afþreying" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Áhugamál" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Ást/rómantík" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Atvinna:" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Skóli/menntun" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Tengiliðaupplýsingar og samfélagsnet" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Sýsla með forsíður" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Engir vinir til að birta." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Aðgangur að þessari forsíðu hefur verið heftur." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "Skoða" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Fyrra" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Næsta" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "" + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Sameiginlegir vinir" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Ekki í boði." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Alheimstengiliðaskrá" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Leita á þessum vef" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "Niðurstöður fyrir:" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Skrá yfir tengiliði á þessum vef" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Engar færslur (sumar geta verið faldar)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Leita að fólki - %s" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "Leita á spjallsvæði - %s" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Engar leitarniðurstöður" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Atriði hefur verið fjarlægt." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Stofna nýjan atburð" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Nánar um atburð" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Atburður hefst:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Atburður klárar:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Heimfæra á tímabelti áhorfanda" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Lýsing:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Titill:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Deila þessum atburði" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Kerfið er óvirkt vegna viðhalds" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "hefur áhuga á:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Forsíða fannst" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Ábendingar fyrir nýja notendur" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Hunsa/Fela" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" + +#: mod/photos.php:88 mod/photos.php:1856 msgid "Recent Photos" msgstr "Nýlegar myndir" -#: mod/photos.php:103 mod/photos.php:1307 mod/photos.php:1888 +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 msgid "Upload New Photos" msgstr "Hlaða upp nýjum myndum" -#: mod/photos.php:117 mod/settings.php:36 +#: mod/photos.php:105 mod/settings.php:36 msgid "everybody" msgstr "allir" -#: mod/photos.php:181 +#: mod/photos.php:169 msgid "Contact information unavailable" msgstr "Tengiliða upplýsingar ekki til" -#: mod/photos.php:202 +#: mod/photos.php:190 msgid "Album not found." msgstr "Myndabók finnst ekki." -#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1249 +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 msgid "Delete Album" msgstr "Fjarlægja myndabók" -#: mod/photos.php:242 +#: mod/photos.php:230 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1567 +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 msgid "Delete Photo" msgstr "Fjarlægja mynd" -#: mod/photos.php:331 +#: mod/photos.php:317 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:706 +#: mod/photos.php:688 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/photos.php:706 +#: mod/photos.php:688 msgid "a photo" msgstr "mynd" -#: mod/photos.php:813 +#: mod/photos.php:794 msgid "Image file is empty." msgstr "Mynda skrá er tóm." -#: mod/photos.php:973 +#: mod/photos.php:954 msgid "No photos selected" msgstr "Engar myndir valdar" -#: mod/photos.php:1134 +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Aðgangur að þessum hlut hefur verið heftur" + +#: mod/photos.php:1114 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: mod/photos.php:1169 +#: mod/photos.php:1148 msgid "Upload Photos" msgstr "Hlaða upp myndum" -#: mod/photos.php:1173 mod/photos.php:1244 +#: mod/photos.php:1152 mod/photos.php:1222 msgid "New album name: " msgstr "Nýtt nafn myndbókar:" -#: mod/photos.php:1174 +#: mod/photos.php:1153 msgid "or existing album name: " msgstr "eða fyrra nafn myndbókar:" -#: mod/photos.php:1175 +#: mod/photos.php:1154 msgid "Do not show a status post for this upload" msgstr "Ekki sýna færslu fyrir þessari upphölun" -#: mod/photos.php:1186 mod/photos.php:1571 mod/settings.php:1250 +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 msgid "Show to Groups" msgstr "Birta hópum" -#: mod/photos.php:1187 mod/photos.php:1572 mod/settings.php:1251 +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 msgid "Show to Contacts" msgstr "Birta tengiliðum" -#: mod/photos.php:1188 +#: mod/photos.php:1167 msgid "Private Photo" msgstr "Einkamynd" -#: mod/photos.php:1189 +#: mod/photos.php:1168 msgid "Public Photo" msgstr "Opinber mynd" -#: mod/photos.php:1257 +#: mod/photos.php:1234 msgid "Edit Album" msgstr "Breyta myndbók" -#: mod/photos.php:1263 +#: mod/photos.php:1240 msgid "Show Newest First" msgstr "Birta nýjast fyrst" -#: mod/photos.php:1265 +#: mod/photos.php:1242 msgid "Show Oldest First" msgstr "Birta elsta fyrst" -#: mod/photos.php:1293 mod/photos.php:1871 +#: mod/photos.php:1269 mod/photos.php:1841 msgid "View Photo" msgstr "Skoða mynd" -#: mod/photos.php:1340 +#: mod/photos.php:1315 msgid "Permission denied. Access to this item may be restricted." msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." -#: mod/photos.php:1342 +#: mod/photos.php:1317 msgid "Photo not available" msgstr "Mynd ekki til" -#: mod/photos.php:1398 +#: mod/photos.php:1372 msgid "View photo" msgstr "Birta mynd" -#: mod/photos.php:1398 +#: mod/photos.php:1372 msgid "Edit photo" msgstr "Breyta mynd" -#: mod/photos.php:1399 +#: mod/photos.php:1373 msgid "Use as profile photo" msgstr "Nota sem forsíðu mynd" -#: mod/photos.php:1424 +#: mod/photos.php:1398 msgid "View Full Size" msgstr "Skoða í fullri stærð" -#: mod/photos.php:1510 +#: mod/photos.php:1484 msgid "Tags: " msgstr "Merki:" -#: mod/photos.php:1513 +#: mod/photos.php:1487 msgid "[Remove any tag]" msgstr "[Fjarlægja öll merki]" -#: mod/photos.php:1553 +#: mod/photos.php:1526 msgid "New album name" msgstr "Nýtt nafn myndbókar" -#: mod/photos.php:1554 +#: mod/photos.php:1527 msgid "Caption" msgstr "Yfirskrift" -#: mod/photos.php:1555 +#: mod/photos.php:1528 msgid "Add a Tag" msgstr "Bæta við merki" -#: mod/photos.php:1555 +#: mod/photos.php:1528 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" -#: mod/photos.php:1556 +#: mod/photos.php:1529 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1557 +#: mod/photos.php:1530 msgid "Rotate CW (right)" msgstr "" -#: mod/photos.php:1558 +#: mod/photos.php:1531 msgid "Rotate CCW (left)" msgstr "" -#: mod/photos.php:1573 +#: mod/photos.php:1546 msgid "Private photo" msgstr "Einkamynd" -#: mod/photos.php:1574 +#: mod/photos.php:1547 msgid "Public photo" msgstr "Opinber mynd" -#: mod/photos.php:1800 +#: mod/photos.php:1770 msgid "Map" msgstr "" +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Skoða myndabók" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." + +#: mod/register.php:98 +#, 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 "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Skráninguna þína er ekki hægt að vinna." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "Þitt OpenID (valfrjálst):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Á forsíðan þín að sjást í notendalistanum?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Aðild að þessum vef er " + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Boðskorta auðkenni:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Nýskráning" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Tölvupóstur:" + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nýtt aðgangsorð:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Staðfesta:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@$sitename'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Veldu gælunafn:" + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Notandi" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Viðbótareiginleikar" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Kerfiseiningar" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Tengd forrit" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Henda tengilið" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Vantar mikilvæg gögn!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Uppfæra" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Stillingar póstfangs uppfærðar." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Aðgangsorði breytt." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Notaðu styttra nafn." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr "Nafn of stutt." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr "Póstfang ógilt" + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr "Ekki hægt að breyta yfir í þetta póstfang." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Stillingar uppfærðar." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Bæta við forriti" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Notenda lykill" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Notenda leyndarmál" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Áframsenda" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "Táknmyndar slóð" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Þú getur ekki breytt þessu forriti." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Tengd forrit" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Lykill viðskiptavinar byrjar á" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Ekkert nafn" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Fjarlæga auðkenningu" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Engar stillingar í kerfiseiningu uppsettar" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Stillingar kerfiseiningar" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Innbyggður stuðningur fyrir %s tenging er%s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "kveikt" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "slökkt" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Tölvupóstur stilling" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Póstfang sannreynt síðast:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "IMAP þjónn:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Öryggi:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Ekkert" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Notandanafn tölvupóstfangs:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Lykilorð tölvupóstfangs:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Svarpóstfang:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Flytja yfir í skrásafn" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Flytja yfir í skrásafn:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Útlits þema:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Þessi notandi er með venjulega persónulega forsíðu" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir einungis sem les-fylgjendur" + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem vini" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Einkaspjallsvæði [á tilraunastigi]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Einkaspjallsvæði - einungis skráðir meðlimir" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Leyfa vinum að deila á forsíðuna þína?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Leyfa vinum að merkja færslurnar þínar?" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Forsíðu hefur ekki verið gefinn út." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Ítarlegar stillingar fyrningatíma" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Flókin fyrning" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Fyrna færslur:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Fyrna einka glósur:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Fyrna stjörnumerktar færslur:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Fyrna myndum:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Stillingar aðgangs" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Stillingar aðgangsorða" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Grunnstillingar" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Póstfang:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Þitt tímabelti:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Sjálfgefin staðsetning færslu:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Nota vafra staðsetningu:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Öryggis og friðhelgistillingar" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Hámarks vinabeiðnir á dag:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(til að koma í veg fyrir rusl misnotkun)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Sjálfgefnar aðgangstýring á færslum" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(ýttu á til að opna/loka)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Stillingar á tilkynningum" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "samþykki vinabeiðni" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "ganga til liðs við hóp/samfélag" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Senda tilkynninga tölvupóst þegar:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Þú færð kynningu" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Kynningarnar þínar eru samþykktar" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Einhver skrifar á vegginn þínn" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Einhver skrifar athugasemd á færslu hjá þér" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Þú færð einkaskilaboð" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Þér hefur borist vina uppástunga" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Þú varst merkt(ur) í færslu" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "Ógild fyrirspurn." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Skráar upphlöðun mistókst." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Þemastillingar uppfærðar." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Vefur" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Notendur" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Þemu" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Gagnagrunnsuppfærslur" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Atburðaskrá" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "Skoða atburðaskrár" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Eiginleikar kerfiseiningar" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "greining" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Notenda nýskráningar bíða samþykkis" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Stjórnun" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "Nafn viðtakanda" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "Forsíða viðtakanda" + +#: mod/admin.php:412 +msgid "Created" +msgstr "Búið til" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "Síðast prófað" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Venjulegur notandi" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Sápukassa notandi" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Hópa-/Stjörnusíða" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Verður sjálfkrafa vinur notandi" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Einkaspjallsvæði" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Samantekt" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Skráðir notendur" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Nýskráningar í bið" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Útgáfa" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Virkar kerfiseiningar" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Stillingar vefsvæðis uppfærðar." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "aldrei" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "Slökkt" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "Einn mánuður" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "Þrír mánuðir" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "Hálft ár" + +#: mod/admin.php:907 +msgid "One year" +msgstr "Eitt ár" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Lokað" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Þarf samþykki" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Opið" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:957 +msgid "File upload" +msgstr "Hlaða upp skrá" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Stefna" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Afköst" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Nafn síðu" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "Vélarheiti" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "Tölvupóstfang sendanda" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Borði/Merki" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "Táknmynd flýtivísunar" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Tungumál kerfis" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Þema kerfis" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "Þvinga SSL" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Mesta stærð mynda" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "JPEG myndgæði" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Stefna varðandi nýskráningar" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:986 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Texti við nýskráningu" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Yfirgefnir notendur eftir x daga" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Leyfð lén vina" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Leyfð lén póstfangs" + +#: mod/admin.php:990 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Loka á opinberar færslur" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Skylda að vera í tengiliðalista" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:996 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Banna margar skráningar" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Leyfa OpenID auðkenningu" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Fullt nafn skilyrði" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 hefðbundin stöfun" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Leyfa OStatus stuðning" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Leyfa Diaspora tengingar" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Aðeins leyfa Friendica notendur" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Sannreyna SSL" + +#: mod/admin.php:1014 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Proxy notandi" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "Proxy slóð" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Net tími útrunninn" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:1018 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Mesta meðaltals álag" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Uppfærsla merkt sem tókst" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Uppfærsla %s framkvæmd." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Engar uppfærslur mistókust." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Uppfærslur sem mistókust" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Framkvæma þessa uppfærslu sjálfkrafa" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s notenda eytt" +msgstr[1] "%s notendum eytt" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Notanda '%s' eytt" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Notanda '%s' gefið frelsi" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Notanda '%s' settur í bann" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Skráningar dagsetning" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Síðast innskráður" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Síðasta" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "velja alla" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Skráning notanda býður samþykkis" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Dagsetning beiðnar" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Engin skráning" + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Hafnað" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Banna" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Afbanna" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Vefstjóri" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" + +#: mod/admin.php:1428 +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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Kerfiseining %s óvirk." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Kveikt á kerfiseiningu %s" + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Slökkva" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Kveikja" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Skipta" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Höfundur:" + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "Endurhlaða virkar kerfiseiningar" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Engin þemu fundust" + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Skjámynd" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Tilraun]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Óstudd]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Stillingar atburðaskrár uppfærðar. " + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Hreinsa" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Atburðaskrá" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Stig atburðaskráningar" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Tókst ekki að ná í uppl. um tengilið" + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Tókst ekki að staðsetja valinn forsíðu" + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Tengiliður uppfærður" + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Ekki tókst að uppfæra tengiliðs skrá." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Lokað á tengilið" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Opnað á tengilið" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Tengiliður hunsaður" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Tengiliður afhunsaður" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Tengiliður settur í geymslu" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Tengiliður tekinn úr geymslu" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Viltu í alvörunni eyða þessum tengilið?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Tengiliður fjarlægður" + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Þú ert gagnkvæmur vinur %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Þú ert að deila með %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s er að deila með þér" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Einkasamtal ekki í boði fyrir þennan" + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(uppfærsla tókst)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(uppfærsla tókst ekki)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Stinga uppá vinum" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Net tegund: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "Ná í ítarlegri upplýsingar um fréttaveitur" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Forsíðu sjáanleiki" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti" + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Uppl. um tengilið / minnisatriði" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Breyta minnispunktum tengiliðs " + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "útiloka/opna á tengilið" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Hunsa tengilið" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Gera við stillingar á slóðum" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Skoða samtöl" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Síðasta uppfærsla:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Uppfæra opinberar færslur" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Uppfæra núna" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Byrja að fylgjast með á ný" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Útilokaður sem stendur" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Hunsaður sem stendur" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Í geymslu" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Uppástungur" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Sýna alla tengiliði" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Afhunsað" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Banna" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Hunsa" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Í geymslu" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Aðeins sýna geymda tengiliði" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Falinn" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Aðeins sýna falda tengiliði" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Leita í þínum vinum" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Setja í geymslu" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Taka úr geymslu" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Skoða alla tengiliði" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Sameiginlegur vinskapur" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "er fylgjandi þinn" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "þú er fylgjandi" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Eyða tengilið" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Ekki tókst að skilja svar frá ytri vef." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Óskiljanlegt svar frá ytri vef:" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Staðfesting kláraði eðlilega." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Ytri vefur svaraði:" + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Tímabundin villa. Bíddu aðeins og reyndu svo aftur." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Kynning mistókst eða var afturkölluð." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Ekki tókst að setja tengiliðamynd." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Engin notandafærsla fannst fyrir '%s'" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s hefur gengið til liðs við %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Þessi kynning hefur þegar verið samþykkt." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu" +msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Kynning tilbúinn." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Alvarleg samskipta villa." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Ekki hægt að sækja forsíðu" + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hefur fengið of margar tengibeiðnir í dag." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Kveikt hefur verið á ruslsíu" + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Ógild staðsetning" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Ógilt póstfang." + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Kynning hefur þegar átt sér stað hér." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Þú ert þegar vinur %s." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Ógild forsíðu slóð." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Kynningin þín hefur verið send." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Skráðu þig inn til að staðfesta kynningu." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Staðfesta" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Fela þennan tengilið" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Velkomin(n) heim %s." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Staðfestu kynninguna/tengibeiðnina við %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" + +#: mod/dfrn_request.php:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Vinabeiðni/Tengibeiðni" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Vinnsamlegast svaraðu eftirfarandi:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "Þekkir %s þig?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Bæta við persónulegri athugasemd" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Auðkennisnetfang þitt:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Senda beiðni" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Tengilið bætt við" + #: mod/install.php:139 msgid "Friendica Communications Server - Setup" msgstr "" @@ -6248,7 +8225,7 @@ msgid "" "or mysql." msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." -#: mod/install.php:161 mod/install.php:230 mod/install.php:597 +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 msgid "Please see the file \"INSTALL.txt\"." msgstr "Lestu skrána \"INSTALL.txt\"." @@ -6426,2111 +8403,280 @@ msgstr "" msgid "XML PHP module" msgstr "" -#: mod/install.php:424 mod/install.php:426 +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite eining" -#: mod/install.php:424 +#: mod/install.php:425 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " -#: mod/install.php:432 +#: mod/install.php:433 msgid "Error: libCURL PHP module required but not installed." msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." -#: mod/install.php:436 +#: mod/install.php:437 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." -#: mod/install.php:440 +#: mod/install.php:441 msgid "Error: openssl PHP module required but not installed." msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." -#: mod/install.php:444 +#: mod/install.php:445 msgid "Error: mysqli PHP module required but not installed." msgstr "Villa: mysqli PHP eining er skilyrði og er ekki uppsett" -#: mod/install.php:448 +#: mod/install.php:449 msgid "Error: mb_string PHP module required but not installed." msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." -#: mod/install.php:452 +#: mod/install.php:453 msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: mod/install.php:461 +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 msgid "" "If you are using php_cli, please make sure that mcrypt module is enabled in " "its config file" msgstr "" -#: mod/install.php:464 +#: mod/install.php:469 msgid "" "Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " "encryption layer." msgstr "" -#: mod/install.php:466 +#: mod/install.php:471 msgid "mcrypt_create_iv() function" msgstr "" -#: mod/install.php:474 +#: mod/install.php:479 msgid "Error, XML PHP module required but not installed." msgstr "" -#: mod/install.php:489 +#: mod/install.php:494 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." -#: mod/install.php:490 +#: mod/install.php:495 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." -#: mod/install.php:491 +#: mod/install.php:496 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." msgstr "" -#: mod/install.php:492 +#: mod/install.php:497 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "" -#: mod/install.php:495 +#: mod/install.php:500 msgid ".htconfig.php is writable" msgstr ".htconfig.php er skrifanleg" -#: mod/install.php:505 +#: mod/install.php:510 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: mod/install.php:506 +#: mod/install.php:511 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: mod/install.php:507 +#: mod/install.php:512 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: mod/install.php:508 +#: mod/install.php:513 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: mod/install.php:511 +#: mod/install.php:516 msgid "view/smarty3 is writable" msgstr "" -#: mod/install.php:527 +#: mod/install.php:532 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: mod/install.php:529 +#: mod/install.php:534 msgid "Url rewrite is working" msgstr "" -#: mod/install.php:546 +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 msgid "ImageMagick PHP extension is installed" msgstr "" -#: mod/install.php:548 +#: mod/install.php:557 msgid "ImageMagick supports GIF" msgstr "" -#: mod/install.php:556 +#: mod/install.php:566 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins." -#: mod/install.php:595 +#: mod/install.php:605 msgid "

                                              What next

                                              " msgstr "" -#: mod/install.php:596 +#: mod/install.php:606 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller." -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Atriði ekki í boði." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Atriði fannst ekki" - -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "Tókst ekki að ná í uppl. um tengilið" - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Tókst ekki að staðsetja valinn forsíðu" - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Tengiliður uppfærður" - -#: mod/contacts.php:208 mod/dfrn_request.php:578 -msgid "Failed to update contact record." -msgstr "Ekki tókst að uppfæra tengiliðs skrá." - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "Lokað á tengilið" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "Opnað á tengilið" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "Tengiliður hunsaður" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "Tengiliður afhunsaður" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "Tengiliður settur í geymslu" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "Tengiliður tekinn úr geymslu" - -#: mod/contacts.php:439 mod/contacts.php:794 -msgid "Do you really want to delete this contact?" -msgstr "Viltu í alvörunni eyða þessum tengilið?" - -#: mod/contacts.php:456 -msgid "Contact has been removed." -msgstr "Tengiliður fjarlægður" - -#: mod/contacts.php:497 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Þú ert gagnkvæmur vinur %s" - -#: mod/contacts.php:501 -#, php-format -msgid "You are sharing with %s" -msgstr "Þú ert að deila með %s" - -#: mod/contacts.php:506 -#, php-format -msgid "%s is sharing with you" -msgstr "%s er að deila með þér" - -#: mod/contacts.php:526 -msgid "Private communications are not available for this contact." -msgstr "Einkasamtal ekki í boði fyrir þennan" - -#: mod/contacts.php:533 -msgid "(Update was successful)" -msgstr "(uppfærsla tókst)" - -#: mod/contacts.php:533 -msgid "(Update was not successful)" -msgstr "(uppfærsla tókst ekki)" - -#: mod/contacts.php:535 mod/contacts.php:973 -msgid "Suggest friends" -msgstr "Stinga uppá vinum" - -#: mod/contacts.php:539 -#, php-format -msgid "Network type: %s" -msgstr "Net tegund: %s" - -#: mod/contacts.php:552 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:555 -msgid "Fetch further information for feeds" -msgstr "Ná í ítarlegri upplýsingar um fréttaveitur" - -#: mod/contacts.php:556 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:556 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:576 -msgid "Profile Visibility" -msgstr "Forsíðu sjáanleiki" - -#: mod/contacts.php:577 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti" - -#: mod/contacts.php:578 -msgid "Contact Information / Notes" -msgstr "Uppl. um tengilið / minnisatriði" - -#: mod/contacts.php:579 -msgid "Edit contact notes" -msgstr "Breyta minnispunktum tengiliðs " - -#: mod/contacts.php:585 -msgid "Block/Unblock contact" -msgstr "útiloka/opna á tengilið" - -#: mod/contacts.php:586 -msgid "Ignore contact" -msgstr "Hunsa tengilið" - -#: mod/contacts.php:587 -msgid "Repair URL settings" -msgstr "Gera við stillingar á slóðum" - -#: mod/contacts.php:588 -msgid "View conversations" -msgstr "Skoða samtöl" - -#: mod/contacts.php:594 -msgid "Last update:" -msgstr "Síðasta uppfærsla:" - -#: mod/contacts.php:596 -msgid "Update public posts" -msgstr "Uppfæra opinberar færslur" - -#: mod/contacts.php:598 mod/contacts.php:983 -msgid "Update now" -msgstr "Uppfæra núna" - -#: mod/contacts.php:604 mod/contacts.php:799 mod/contacts.php:1000 -msgid "Unignore" -msgstr "Byrja að fylgjast með á ný" - -#: mod/contacts.php:607 -msgid "Currently blocked" -msgstr "Útilokaður sem stendur" - -#: mod/contacts.php:608 -msgid "Currently ignored" -msgstr "Hunsaður sem stendur" - -#: mod/contacts.php:609 -msgid "Currently archived" -msgstr "Í geymslu" - -#: mod/contacts.php:610 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum" - -#: mod/contacts.php:611 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:611 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:614 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:614 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:629 -msgid "Actions" -msgstr "" - -#: mod/contacts.php:632 -msgid "Contact Settings" -msgstr "" - -#: mod/contacts.php:677 -msgid "Suggestions" -msgstr "Uppástungur" - -#: mod/contacts.php:680 -msgid "Suggest potential friends" -msgstr "" - -#: mod/contacts.php:685 mod/group.php:192 -msgid "All Contacts" -msgstr "Allir tengiliðir" - -#: mod/contacts.php:688 -msgid "Show all contacts" -msgstr "Sýna alla tengiliði" - -#: mod/contacts.php:693 -msgid "Unblocked" -msgstr "Afhunsað" - -#: mod/contacts.php:696 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:702 -msgid "Blocked" -msgstr "Banna" - -#: mod/contacts.php:705 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:711 -msgid "Ignored" -msgstr "Hunsa" - -#: mod/contacts.php:714 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:720 -msgid "Archived" -msgstr "Í geymslu" - -#: mod/contacts.php:723 -msgid "Only show archived contacts" -msgstr "Aðeins sýna geymda tengiliði" - -#: mod/contacts.php:729 -msgid "Hidden" -msgstr "Falinn" - -#: mod/contacts.php:732 -msgid "Only show hidden contacts" -msgstr "Aðeins sýna falda tengiliði" - -#: mod/contacts.php:789 -msgid "Search your contacts" -msgstr "Leita í þínum vinum" - -#: mod/contacts.php:797 mod/settings.php:158 mod/settings.php:689 -msgid "Update" -msgstr "Uppfæra" - -#: mod/contacts.php:800 mod/contacts.php:1008 -msgid "Archive" -msgstr "Setja í geymslu" - -#: mod/contacts.php:800 mod/contacts.php:1008 -msgid "Unarchive" -msgstr "Taka úr geymslu" - -#: mod/contacts.php:803 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:849 -msgid "View all contacts" -msgstr "Skoða alla tengiliði" - -#: mod/contacts.php:856 mod/common.php:134 -msgid "Common Friends" -msgstr "Sameiginlegir vinir" - -#: mod/contacts.php:859 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:866 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:911 -msgid "Mutual Friendship" -msgstr "Sameiginlegur vinskapur" - -#: mod/contacts.php:915 -msgid "is a fan of yours" -msgstr "er fylgjandi þinn" - -#: mod/contacts.php:919 -msgid "you are a fan of" -msgstr "þú er fylgjandi" - -#: mod/contacts.php:994 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:1002 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:1010 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:1018 -msgid "Delete contact" -msgstr "Eyða tengilið" - -#: mod/follow.php:19 mod/dfrn_request.php:873 -msgid "Submit Request" -msgstr "Senda beiðni" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:109 mod/dfrn_request.php:859 -msgid "Please answer the following:" -msgstr "Vinnsamlegast svaraðu eftirfarandi:" - -#: mod/follow.php:110 mod/dfrn_request.php:860 -#, php-format -msgid "Does %s know you?" -msgstr "Þekkir %s þig?" - -#: mod/follow.php:111 mod/dfrn_request.php:864 -msgid "Add a personal note:" -msgstr "Bæta við persónulegri athugasemd" - -#: mod/follow.php:117 mod/dfrn_request.php:870 -msgid "Your Identity Address:" -msgstr "Auðkennisnetfang þitt:" - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Tengilið bætt við" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Forrit" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Engin uppsett forrit" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Hunsa/Fela" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/display.php:471 -msgid "Item has been removed." -msgstr "Atriði hefur verið fjarlægt." - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Velkomin(n) á Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Nýr notandi verklisti" - -#: 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 "" - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: 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 "" - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: 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 "" - -#: 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 "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." - -#: 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 "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: 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 "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: 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 "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Tengist" - -#: mod/newmember.php:51 -msgid "Importing Emails" -msgstr "" - -#: mod/newmember.php:51 -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 "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" - -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" -msgstr "" - -#: mod/newmember.php:53 -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 "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." - -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" -msgstr "" - -#: mod/newmember.php:55 -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 "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." - -#: mod/newmember.php:57 -msgid "Finding New People" -msgstr "" - -#: mod/newmember.php:57 -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 "" - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "" - -#: mod/newmember.php:65 -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 "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni." - -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: mod/newmember.php:68 -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 "" - -#: mod/newmember.php:73 -msgid "Getting Help" -msgstr "" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "" - -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Eyða þessum notanda" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Sláðu inn aðgangsorð yðar:" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Atriði fannst ekki" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Breyta skilaboðum" - -#: mod/network.php:398 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti." -msgstr[1] "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti." - -#: mod/network.php:401 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Einka samtöl send á þennan hóp eiga á hættu að verða opinber." - -#: mod/network.php:527 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." - -#: mod/network.php:532 -msgid "Invalid contact." -msgstr "Ógildur tengiliður." - -#: mod/network.php:825 -msgid "Commented Order" -msgstr "Athugasemdar röð" - -#: mod/network.php:828 -msgid "Sort by Comment Date" -msgstr "Raða eftir umræðu dagsetningu" - -#: mod/network.php:833 -msgid "Posted Order" -msgstr "Færlsu röð" - -#: mod/network.php:836 -msgid "Sort by Post Date" -msgstr "Raða eftir færslu dagsetningu" - -#: mod/network.php:847 -msgid "Posts that mention or involve you" -msgstr "Færslur sem tengjast þér" - -#: mod/network.php:855 -msgid "New" -msgstr "Ný" - -#: mod/network.php:858 -msgid "Activity Stream - by date" -msgstr "Færslu straumur - raðað eftir dagsetningu" - -#: mod/network.php:866 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:869 -msgid "Interesting Links" -msgstr "Áhugaverðir tenglar" - -#: mod/network.php:877 -msgid "Starred" -msgstr "Stjörnumerkt" - -#: mod/network.php:880 -msgid "Favourite Posts" -msgstr "Uppáhalds færslur" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Ekki í boði." - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Tíma leiðréttir" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Máltími: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Núverandi tímabelti: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umbreyttur staðartími: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Veldu tímabeltið þitt:" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Hópur stofnaður" - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Gat ekki stofnað hóp." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Hópur fannst ekki." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Hópur endurskýrður." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Stofna hóp af tengiliðum/vinum" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Hópi eytt." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Ekki tókst að eyða hóp." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Hópa sýslari" - -#: mod/group.php:190 -msgid "Members" -msgstr "Aðilar" - -#: mod/dfrn_request.php:99 -msgid "This introduction has already been accepted." -msgstr "Þessi kynning hefur þegar verið samþykkt." - -#: mod/dfrn_request.php:122 mod/dfrn_request.php:517 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:522 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:524 -msgid "Warning: profile location has no profile photo." -msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." - -#: mod/dfrn_request.php:132 mod/dfrn_request.php:527 -#, 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 skilyrt breyta fannst ekki á uppgefinni staðsetningu" -msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" - -#: mod/dfrn_request.php:177 -msgid "Introduction complete." -msgstr "Kynning tilbúinn." - -#: mod/dfrn_request.php:219 -msgid "Unrecoverable protocol error." -msgstr "Alvarleg samskipta villa." - -#: mod/dfrn_request.php:247 -msgid "Profile unavailable." -msgstr "Ekki hægt að sækja forsíðu" - -#: mod/dfrn_request.php:272 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hefur fengið of margar tengibeiðnir í dag." - -#: mod/dfrn_request.php:273 -msgid "Spam protection measures have been invoked." -msgstr "Kveikt hefur verið á ruslsíu" - -#: mod/dfrn_request.php:274 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." - -#: mod/dfrn_request.php:336 -msgid "Invalid locator" -msgstr "Ógild staðsetning" - -#: mod/dfrn_request.php:345 -msgid "Invalid email address." -msgstr "Ógilt póstfang." - -#: mod/dfrn_request.php:372 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: mod/dfrn_request.php:475 -msgid "You have already introduced yourself here." -msgstr "Kynning hefur þegar átt sér stað hér." - -#: mod/dfrn_request.php:479 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Þú ert þegar vinur %s." - -#: mod/dfrn_request.php:500 -msgid "Invalid profile URL." -msgstr "Ógild forsíðu slóð." - -#: mod/dfrn_request.php:599 -msgid "Your introduction has been sent." -msgstr "Kynningin þín hefur verið send." - -#: mod/dfrn_request.php:639 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:662 -msgid "Please login to confirm introduction." -msgstr "Skráðu þig inn til að staðfesta kynningu." - -#: mod/dfrn_request.php:672 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." - -#: mod/dfrn_request.php:686 mod/dfrn_request.php:703 -msgid "Confirm" -msgstr "Staðfesta" - -#: mod/dfrn_request.php:698 -msgid "Hide this contact" -msgstr "Fela þennan tengilið" - -#: mod/dfrn_request.php:701 -#, php-format -msgid "Welcome home %s." -msgstr "Velkomin(n) heim %s." - -#: mod/dfrn_request.php:702 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Staðfestu kynninguna/tengibeiðnina við %s." - -#: mod/dfrn_request.php:831 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" - -#: mod/dfrn_request.php:852 -#, php-format -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:857 -msgid "Friend/Connection Request" -msgstr "Vinabeiðni/Tengibeiðni" - -#: mod/dfrn_request.php:858 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca" - -#: mod/dfrn_request.php:867 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:869 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Tókst að hala upp mynd en afskurður tókst ekki." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Myndar minnkun [%s] tókst ekki." - -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ýta þarf á " - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Ekki tókst að vinna mynd" - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Hlaða upp skrá:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Hlaða upp" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "eða" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "sleppa þessu skrefi" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "velja mynd í myndabókum" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Skera af mynd" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Stilltu afskurð fyrir besta birtingu." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Breyting kláruð" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Upphölun á mynd tóks." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." - -#: mod/register.php:97 -#, 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:104 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:110 -msgid "Your registration can not be processed." -msgstr "Skráninguna þína er ekki hægt að vinna." - -#: mod/register.php:153 -msgid "Your registration is pending approval by the site owner." -msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." - -#: mod/register.php:219 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." - -#: mod/register.php:220 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." - -#: mod/register.php:221 -msgid "Your OpenID (optional): " -msgstr "Þitt OpenID (valfrjálst):" - -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Á forsíðan þín að sjást í notendalistanum?" - -#: mod/register.php:259 -msgid "Membership on this site is by invitation only." -msgstr "Aðild að þessum vef er " - -#: mod/register.php:260 -msgid "Your invitation ID: " -msgstr "Boðskorta auðkenni:" - -#: mod/register.php:271 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:272 -msgid "Your Email Address: " -msgstr "Tölvupóstur:" - -#: mod/register.php:274 mod/settings.php:1221 -msgid "New Password:" -msgstr "Nýtt aðgangsorð:" - -#: mod/register.php:274 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:275 mod/settings.php:1222 -msgid "Confirm:" -msgstr "Staðfesta:" - -#: mod/register.php:276 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@$sitename'." - -#: mod/register.php:277 -msgid "Choose a nickname: " -msgstr "Veldu gælunafn:" - -#: mod/register.php:287 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/settings.php:60 -msgid "Display" -msgstr "" - -#: mod/settings.php:67 mod/settings.php:871 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "Tengd forrit" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "Henda tengilið" - -#: mod/settings.php:155 -msgid "Missing some important data!" -msgstr "Vantar mikilvæg gögn!" - -#: mod/settings.php:269 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." - -#: mod/settings.php:274 -msgid "Email settings updated." -msgstr "Stillingar póstfangs uppfærðar." - -#: mod/settings.php:289 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:356 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:375 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." - -#: mod/settings.php:383 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:394 -msgid "Password changed." -msgstr "Aðgangsorði breytt." - -#: mod/settings.php:396 -msgid "Password update failed. Please try again." -msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." - -#: mod/settings.php:465 -msgid " Please use a shorter name." -msgstr " Notaðu styttra nafn." - -#: mod/settings.php:467 -msgid " Name too short." -msgstr "Nafn of stutt." - -#: mod/settings.php:476 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:481 -msgid " Not valid email." -msgstr "Póstfang ógilt" - -#: mod/settings.php:487 -msgid " Cannot change to that email." -msgstr "Ekki hægt að breyta yfir í þetta póstfang." - -#: mod/settings.php:543 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:547 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:586 -msgid "Settings updated." -msgstr "Stillingar uppfærðar." - -#: mod/settings.php:662 mod/settings.php:688 mod/settings.php:724 -msgid "Add application" -msgstr "Bæta við forriti" - -#: mod/settings.php:666 mod/settings.php:692 -msgid "Consumer Key" -msgstr "Notenda lykill" - -#: mod/settings.php:667 mod/settings.php:693 -msgid "Consumer Secret" -msgstr "Notenda leyndarmál" - -#: mod/settings.php:668 mod/settings.php:694 -msgid "Redirect" -msgstr "Áframsenda" - -#: mod/settings.php:669 mod/settings.php:695 -msgid "Icon url" -msgstr "Táknmyndar slóð" - -#: mod/settings.php:680 -msgid "You can't edit this application." -msgstr "Þú getur ekki breytt þessu forriti." - -#: mod/settings.php:723 -msgid "Connected Apps" -msgstr "Tengd forrit" - -#: mod/settings.php:727 -msgid "Client key starts with" -msgstr "Lykill viðskiptavinar byrjar á" - -#: mod/settings.php:728 -msgid "No name" -msgstr "Ekkert nafn" - -#: mod/settings.php:729 -msgid "Remove authorization" -msgstr "Fjarlæga auðkenningu" - -#: mod/settings.php:741 -msgid "No Plugin settings configured" -msgstr "Engar stillingar í kerfiseiningu uppsettar" - -#: mod/settings.php:749 -msgid "Plugin Settings" -msgstr "Stillingar kerfiseiningar" - -#: mod/settings.php:771 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:781 mod/settings.php:785 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:791 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:793 -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:799 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:801 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:807 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:813 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:815 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:818 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:827 mod/settings.php:828 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Innbyggður stuðningur fyrir %s tenging er%s" - -#: mod/settings.php:827 mod/settings.php:828 -msgid "enabled" -msgstr "kveikt" - -#: mod/settings.php:827 mod/settings.php:828 -msgid "disabled" -msgstr "slökkt" - -#: mod/settings.php:828 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:864 -msgid "Email access is disabled on this site." -msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." - -#: mod/settings.php:876 -msgid "Email/Mailbox Setup" -msgstr "Tölvupóstur stilling" - -#: mod/settings.php:877 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." - -#: mod/settings.php:878 -msgid "Last successful email check:" -msgstr "Póstfang sannreynt síðast:" - -#: mod/settings.php:880 -msgid "IMAP server name:" -msgstr "IMAP þjónn:" - -#: mod/settings.php:881 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:882 -msgid "Security:" -msgstr "Öryggi:" - -#: mod/settings.php:882 mod/settings.php:887 -msgid "None" -msgstr "Ekkert" - -#: mod/settings.php:883 -msgid "Email login name:" -msgstr "Notandanafn tölvupóstfangs:" - -#: mod/settings.php:884 -msgid "Email password:" -msgstr "Lykilorð tölvupóstfangs:" - -#: mod/settings.php:885 -msgid "Reply-to address:" -msgstr "Svarpóstfang:" - -#: mod/settings.php:886 -msgid "Send public posts to all email contacts:" -msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" - -#: mod/settings.php:887 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:887 -msgid "Move to folder" -msgstr "Flytja yfir í skrásafn" - -#: mod/settings.php:888 -msgid "Move to folder:" -msgstr "Flytja yfir í skrásafn:" - -#: mod/settings.php:974 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:980 mod/settings.php:1001 -msgid "Display Theme:" -msgstr "Útlits þema:" - -#: mod/settings.php:981 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:982 -msgid "Update browser every xx seconds" -msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" - -#: mod/settings.php:982 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:983 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:983 mod/settings.php:984 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:984 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:985 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:986 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:987 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:988 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:989 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:990 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:992 -msgid "General Theme Settings" -msgstr "" - -#: mod/settings.php:993 -msgid "Custom Theme Settings" -msgstr "" - -#: mod/settings.php:994 -msgid "Content Settings" -msgstr "" - -#: mod/settings.php:995 view/theme/frio/config.php:61 -#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66 -#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109 -#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1072 -msgid "User Types" -msgstr "" - -#: mod/settings.php:1073 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:1074 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1075 -msgid "This account is a normal personal profile" -msgstr "Þessi notandi er með venjulega persónulega forsíðu" - -#: mod/settings.php:1078 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1079 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir einungis sem les-fylgjendur" - -#: mod/settings.php:1082 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: mod/settings.php:1083 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem les-skrif fylgjendur" - -#: mod/settings.php:1086 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1087 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem vini" - -#: mod/settings.php:1090 -msgid "Private Forum [Experimental]" -msgstr "Einkaspjallsvæði [á tilraunastigi]" - -#: mod/settings.php:1091 -msgid "Private forum - approved members only" -msgstr "Einkaspjallsvæði - einungis skráðir meðlimir" - -#: mod/settings.php:1103 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1103 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." - -#: mod/settings.php:1113 -msgid "Publish your default profile in your local site directory?" -msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" - -#: mod/settings.php:1119 -msgid "Publish your default profile in the global social directory?" -msgstr "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?" - -#: mod/settings.php:1127 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?" - -#: mod/settings.php:1131 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1136 -msgid "Allow friends to post to your profile page?" -msgstr "Leyfa vinum að deila á forsíðuna þína?" - -#: mod/settings.php:1142 -msgid "Allow friends to tag your posts?" -msgstr "Leyfa vinum að merkja færslurnar þínar?" - -#: mod/settings.php:1148 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " - -#: mod/settings.php:1154 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1162 -msgid "Profile is not published." -msgstr "Forsíðu hefur ekki verið gefinn út." - -#: mod/settings.php:1170 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1177 -msgid "Automatically expire posts after this many days:" -msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" - -#: mod/settings.php:1177 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" - -#: mod/settings.php:1178 -msgid "Advanced expiration settings" -msgstr "Ítarlegar stillingar fyrningatíma" - -#: mod/settings.php:1179 -msgid "Advanced Expiration" -msgstr "Flókin fyrning" - -#: mod/settings.php:1180 -msgid "Expire posts:" -msgstr "Fyrna færslur:" - -#: mod/settings.php:1181 -msgid "Expire personal notes:" -msgstr "Fyrna einka glósur:" - -#: mod/settings.php:1182 -msgid "Expire starred posts:" -msgstr "Fyrna stjörnumerktar færslur:" - -#: mod/settings.php:1183 -msgid "Expire photos:" -msgstr "Fyrna myndum:" - -#: mod/settings.php:1184 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1212 -msgid "Account Settings" -msgstr "Stillingar aðgangs" - -#: mod/settings.php:1220 -msgid "Password Settings" -msgstr "Stillingar aðgangsorða" - -#: mod/settings.php:1222 -msgid "Leave password fields blank unless changing" -msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" - -#: mod/settings.php:1223 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1223 mod/settings.php:1224 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1224 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1228 -msgid "Basic Settings" -msgstr "Grunnstillingar" - -#: mod/settings.php:1230 -msgid "Email Address:" -msgstr "Póstfang:" - -#: mod/settings.php:1231 -msgid "Your Timezone:" -msgstr "Þitt tímabelti:" - -#: mod/settings.php:1232 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1232 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1233 -msgid "Default Post Location:" -msgstr "Sjálfgefin staðsetning færslu:" - -#: mod/settings.php:1234 -msgid "Use Browser Location:" -msgstr "Nota vafra staðsetningu:" - -#: mod/settings.php:1237 -msgid "Security and Privacy Settings" -msgstr "Öryggis og friðhelgistillingar" - -#: mod/settings.php:1239 -msgid "Maximum Friend Requests/Day:" -msgstr "Hámarks vinabeiðnir á dag:" - -#: mod/settings.php:1239 mod/settings.php:1269 -msgid "(to prevent spam abuse)" -msgstr "(til að koma í veg fyrir rusl misnotkun)" - -#: mod/settings.php:1240 -msgid "Default Post Permissions" -msgstr "Sjálfgefnar aðgangstýring á færslum" - -#: mod/settings.php:1241 -msgid "(click to open/close)" -msgstr "(ýttu á til að opna/loka)" - -#: mod/settings.php:1252 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1253 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1257 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1269 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1272 -msgid "Notification Settings" -msgstr "Stillingar á tilkynningum" - -#: mod/settings.php:1273 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1274 -msgid "accepting a friend request" -msgstr "samþykki vinabeiðni" - -#: mod/settings.php:1275 -msgid "joining a forum/community" -msgstr "ganga til liðs við hóp/samfélag" - -#: mod/settings.php:1276 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1277 -msgid "Send a notification email when:" -msgstr "Senda tilkynninga tölvupóst þegar:" - -#: mod/settings.php:1278 -msgid "You receive an introduction" -msgstr "Þú færð kynningu" - -#: mod/settings.php:1279 -msgid "Your introductions are confirmed" -msgstr "Kynningarnar þínar eru samþykktar" - -#: mod/settings.php:1280 -msgid "Someone writes on your profile wall" -msgstr "Einhver skrifar á vegginn þínn" - -#: mod/settings.php:1281 -msgid "Someone writes a followup comment" -msgstr "Einhver skrifar athugasemd á færslu hjá þér" - -#: mod/settings.php:1282 -msgid "You receive a private message" -msgstr "Þú færð einkaskilaboð" - -#: mod/settings.php:1283 -msgid "You receive a friend suggestion" -msgstr "Þér hefur borist vina uppástunga" - -#: mod/settings.php:1284 -msgid "You are tagged in a post" -msgstr "Þú varst merkt(ur) í færslu" - -#: mod/settings.php:1285 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1287 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1287 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1289 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1291 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1293 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1294 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1297 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1298 -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:1299 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: mod/wallmessage.php:56 mod/message.php:71 -msgid "No recipient selected." -msgstr "Engir viðtakendur valdir." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: mod/wallmessage.php:62 mod/message.php:78 -msgid "Message could not be sent." -msgstr "Ekki tókst að senda skilaboð." - -#: mod/wallmessage.php:65 mod/message.php:81 -msgid "Message collection failure." -msgstr "Ekki tókst að sækja skilaboð." - -#: mod/wallmessage.php:68 mod/message.php:84 -msgid "Message sent." -msgstr "Skilaboð send." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: mod/wallmessage.php:142 mod/message.php:341 -msgid "Send Private Message" -msgstr "Senda einkaskilaboð" - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 -msgid "To:" -msgstr "Til:" - -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 -msgid "Subject:" -msgstr "Efni:" - -#: mod/share.php:38 -msgid "link" -msgstr "tengill" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Leyfa forriti að tengjast" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Skráðu þig inn til að halda áfram." - -#: 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 "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (hrátt 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 "" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - #: mod/item.php:116 msgid "Unable to locate original post." msgstr "Ekki tókst að finna upphaflega færslu." -#: mod/item.php:334 +#: mod/item.php:341 msgid "Empty post discarded." msgstr "Tóm færsla eytt." -#: mod/item.php:867 +#: mod/item.php:902 msgid "System error. Post not saved." msgstr "Kerfisvilla. Færsla ekki vistuð." -#: mod/item.php:993 +#: mod/item.php:992 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." -#: mod/item.php:995 +#: mod/item.php:994 #, php-format msgid "You may visit them online at %s" msgstr "Þú getur heimsótt þau á netinu á %s" -#: mod/item.php:996 +#: mod/item.php:995 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." -#: mod/item.php:1000 +#: mod/item.php:999 #, php-format msgid "%s posted an update." msgstr "%s hefur sent uppfærslu." -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "tókst" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "mistókst" - -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#: mod/network.php:398 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Ábendingar fyrir nýja notendur" - -#: mod/message.php:75 -msgid "Unable to locate contact information." -msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." - -#: mod/message.php:215 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:235 -msgid "Message deleted." -msgstr "Skilaboðum eytt." - -#: mod/message.php:266 -msgid "Conversation removed." -msgstr "Samtali eytt." - -#: mod/message.php:383 -msgid "No messages." -msgstr "Engin skilaboð." - -#: mod/message.php:426 -msgid "Message not available." -msgstr "Ekki næst í skilaboð." - -#: mod/message.php:503 -msgid "Delete message" -msgstr "Eyða skilaboðum" - -#: mod/message.php:529 mod/message.php:609 -msgid "Delete conversation" -msgstr "Eyða samtali" - -#: mod/message.php:531 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:535 -msgid "Send Reply" -msgstr "Senda svar" - -#: mod/message.php:579 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: mod/message.php:581 -#, php-format -msgid "You and %s" -msgstr "" - -#: mod/message.php:583 -#, php-format -msgid "%s and You" -msgstr "" - -#: mod/message.php:612 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:615 -#, php-format -msgid "%d message" -msgid_plural "%d messages" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." msgstr[0] "" msgstr[1] "" -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Sýsla með notendur og/eða síður" +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Veldu notanda til að sýsla með:" +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Ógildur tengiliður." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Athugasemdar röð" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Raða eftir umræðu dagsetningu" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Færlsu röð" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Raða eftir færslu dagsetningu" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Færslur sem tengjast þér" + +#: mod/network.php:856 +msgid "New" +msgstr "Ný" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Færslu straumur - raðað eftir dagsetningu" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Áhugaverðir tenglar" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Stjörnumerkt" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Uppáhalds færslur" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} vill vera vinur þinn" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} sendi þér skilboð" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} óskaði eftir skráningu" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Enginn tengiliður" #: object/Item.php:370 msgid "via" @@ -8568,14 +8714,6 @@ msgstr "" msgid "Resize to best fit and retain aspect ratio." msgstr "" -#: view/theme/frio/theme.php:226 -msgid "Remote" -msgstr "" - -#: view/theme/frio/theme.php:232 -msgid "Visitor" -msgstr "" - #: view/theme/frio/config.php:42 msgid "Default" msgstr "" @@ -8616,21 +8754,12 @@ msgstr "" msgid "Set the background image" msgstr "" -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: view/theme/frio/theme.php:229 +msgid "Guest" 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 "" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" +#: view/theme/frio/theme.php:235 +msgid "Visitor" msgstr "" #: view/theme/quattro/config.php:67 @@ -8645,6 +8774,10 @@ msgstr "" msgid "Center" msgstr "" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "" @@ -8653,33 +8786,19 @@ msgstr "" msgid "Textareas font size" msgstr "" -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Setja litar þema" - #: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 msgid "Community Profiles" msgstr "" #: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 msgid "Last users" msgstr "Nýjustu notendurnir" #: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 msgid "Find Friends" msgstr "" -#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "" @@ -8688,8 +8807,6 @@ msgid "Quick Start" msgstr "" #: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 msgid "Connect Services" msgstr "" @@ -8701,68 +8818,14 @@ msgstr "" msgid "Set style" msgstr "" -#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -#: view/theme/diabook/config.php:158 +#: view/theme/vier/config.php:111 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161 +#: view/theme/vier/config.php:113 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Einkamyndirnar þínar" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Nýjustu \"líkar þetta\"" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Nýjustu myndirnar" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Setja litar þema" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - #: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" @@ -8790,3 +8853,56 @@ msgstr "" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Eyða þessu atriði?" + +#: boot.php:973 +msgid "show fewer" +msgstr "birta minna" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Stofna nýjan notanda" + +#: boot.php:1796 +msgid "Password: " +msgstr "Aðgangsorð: " + +#: boot.php:1797 +msgid "Remember me" +msgstr "Muna eftir mér" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Eða auðkenna með OpenID: " + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Gleymt lykilorð?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Þjónustuskilmálar vefsvæðis" + +#: boot.php:1810 +msgid "terms of service" +msgstr "þjónustuskilmálar" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Persónuverndarstefna" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "persónuverndarstefna" + +#: index.php:451 +msgid "toggle mobile" +msgstr "" diff --git a/view/lang/is/strings.php b/view/lang/is/strings.php index 5e53277c0..b1f1e3192 100644 --- a/view/lang/is/strings.php +++ b/view/lang/is/strings.php @@ -5,48 +5,6 @@ function string_plural_select_is($n){ return ($n % 10 != 1 || $n % 100 == 11);; }} ; -$a->strings["Delete this item?"] = "Eyða þessu atriði?"; -$a->strings["Comment"] = "Athugasemd"; -$a->strings["show more"] = "birta meira"; -$a->strings["show fewer"] = "birta minna"; -$a->strings["Update %s failed. See error logs."] = "Uppfærsla á %s mistókst. Skoðaðu villuannál."; -$a->strings["Create a New Account"] = "Stofna nýjan notanda"; -$a->strings["Register"] = "Nýskrá"; -$a->strings["Logout"] = "Útskrá"; -$a->strings["Login"] = "Innskrá"; -$a->strings["Nickname or Email: "] = "Gælunafn eða póstfang: "; -$a->strings["Password: "] = "Aðgangsorð: "; -$a->strings["Remember me"] = "Muna eftir mér"; -$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID: "; -$a->strings["Forgot your password?"] = "Gleymt lykilorð?"; -$a->strings["Password Reset"] = "Endurstilling aðgangsorðs"; -$a->strings["Website Terms of Service"] = "Þjónustuskilmálar vefsvæðis"; -$a->strings["terms of service"] = "þjónustuskilmálar"; -$a->strings["Website Privacy Policy"] = "Persónuverndarstefna"; -$a->strings["privacy policy"] = "persónuverndarstefna"; -$a->strings["Miscellaneous"] = "Ýmislegt"; -$a->strings["Birthday:"] = "Afmælisdagur:"; -$a->strings["Age: "] = "Aldur: "; -$a->strings["YYYY-MM-DD or MM-DD"] = "ÁÁÁÁ-MM-DD eða MM-DD"; -$a->strings["never"] = "aldrei"; -$a->strings["less than a second ago"] = "fyrir minna en sekúndu"; -$a->strings["year"] = "ár"; -$a->strings["years"] = "ár"; -$a->strings["month"] = "mánuður"; -$a->strings["months"] = "mánuðir"; -$a->strings["week"] = "vika"; -$a->strings["weeks"] = "vikur"; -$a->strings["day"] = "dagur"; -$a->strings["days"] = "dagar"; -$a->strings["hour"] = "klukkustund"; -$a->strings["hours"] = "klukkustundir"; -$a->strings["minute"] = "mínúta"; -$a->strings["minutes"] = "mínútur"; -$a->strings["second"] = "sekúnda"; -$a->strings["seconds"] = "sekúndur"; -$a->strings["%1\$d %2\$s ago"] = "Fyrir %1\$d %2\$s síðan"; -$a->strings["%s's birthday"] = "Afmælisdagur %s"; -$a->strings["Happy Birthday %s"] = "Til hamingju með afmælið %s"; $a->strings["Add New Contact"] = "Bæta við tengilið"; $a->strings["Enter address or web location"] = "Settu inn slóð"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur"; @@ -73,140 +31,9 @@ $a->strings["%d contact in common"] = array( 0 => "%d tengiliður sameiginlegur", 1 => "%d tengiliðir sameiginlegir", ); -$a->strings["Friendica Notification"] = "Friendica tilkynning"; -$a->strings["Thank You,"] = "Takk fyrir,"; -$a->strings["%s Administrator"] = "Kerfisstjóri %s"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s kerfisstjóri"; -$a->strings["noreply"] = "ekki svara"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = ""; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendi þér %2\$s."; -$a->strings["a private message"] = "einkaskilaboð"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %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 skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; -$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"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/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 potaði í þig"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s potaði í þig %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt síðuna þeirra á %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; -$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:"] = "Nafn:"; -$a->strings["Photo:"] = "Mynd:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Tenging samþykkt"; -$a->strings["'%1\$s' has accepted 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 without 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["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notify] beiðni um skráningu"; -$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."] = "Farðu á %s til að samþykkja eða hunsa þessa beiðni."; -$a->strings["Click here to upgrade."] = "Smelltu hér til að uppfæra."; -$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["show more"] = "birta meira"; $a->strings["Forums"] = "Spjallsvæði"; $a->strings["External link to forum"] = "Ytri tengill á spjallsvæði"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s líkar við %3\$s hjá %2\$s "; -$a->strings["status"] = "staða"; -$a->strings["Sharing notification from Diaspora network"] = "Tilkynning um að einhver deildi atriði á Diaspora netinu"; -$a->strings["Attachments:"] = "Viðhengi:"; -$a->strings["%s\\'s birthday"] = "Afmælisdagur %s"; -$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!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( - 0 => "", - 1 => "", -); -$a->strings["Done. You can now login with your username and password"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'"; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Starts:"] = "Byrjar:"; -$a->strings["Finishes:"] = "Endar:"; -$a->strings["Location:"] = "Staðsetning:"; -$a->strings["Sun"] = "Sun"; -$a->strings["Mon"] = "Mán"; -$a->strings["Tue"] = "Þri"; -$a->strings["Wed"] = "Mið"; -$a->strings["Thu"] = "Fim"; -$a->strings["Fri"] = "Fös"; -$a->strings["Sat"] = "Lau"; -$a->strings["Sunday"] = "Sunnudagur"; -$a->strings["Monday"] = "Mánudagur"; -$a->strings["Tuesday"] = "Þriðjudagur"; -$a->strings["Wednesday"] = "Miðvikudagur"; -$a->strings["Thursday"] = "Fimmtudagur"; -$a->strings["Friday"] = "Föstudagur"; -$a->strings["Saturday"] = "Laugardagur"; -$a->strings["Jan"] = "Jan"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Apr"; -$a->strings["May"] = "Maí"; -$a->strings["Jun"] = "Jún"; -$a->strings["Jul"] = "Júl"; -$a->strings["Aug"] = "Ágú"; -$a->strings["Sept"] = "Sept"; -$a->strings["Oct"] = "Okt"; -$a->strings["Nov"] = "Nóv"; -$a->strings["Dec"] = "Des"; -$a->strings["January"] = "Janúar"; -$a->strings["February"] = "Febrúar"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Apríl"; -$a->strings["June"] = "Júní"; -$a->strings["July"] = "Júlí"; -$a->strings["August"] = "Ágúst"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Október"; -$a->strings["November"] = "Nóvember"; -$a->strings["December"] = "Desember"; -$a->strings["today"] = "í dag"; -$a->strings["l, F j"] = ""; -$a->strings["Edit event"] = "Breyta atburð"; -$a->strings["link to source"] = "slóð á heimild"; -$a->strings["Export"] = "Flytja út"; -$a->strings["Export calendar as ical"] = "Flytja dagatal út sem ICAL"; -$a->strings["Export calendar as csv"] = "Flytja dagatal út sem CSV"; -$a->strings["Welcome "] = "Velkomin(n)"; -$a->strings["Please upload a profile photo."] = "Gerðu svo vel að hlaða inn forsíðumynd."; -$a->strings["Welcome back "] = "Velkomin(n) aftur"; -$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["Male"] = "Karl"; $a->strings["Female"] = "Kona"; $a->strings["Currently Male"] = "Karlmaður í augnablikinu"; @@ -268,13 +95,553 @@ $a->strings["Uncertain"] = "Óviss"; $a->strings["It's complicated"] = "Þetta er flókið"; $a->strings["Don't care"] = "Gæti ekki verið meira sama"; $a->strings["Ask me"] = "Spurðu mig"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'"; +$a->strings["Logged out."] = "Skráður út."; +$a->strings["Login failed."] = "Innskráning mistókst."; +$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:"] = "Villumeldingin var:"; +$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."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Allir"; +$a->strings["edit"] = "breyta"; +$a->strings["Groups"] = "Hópar"; +$a->strings["Edit groups"] = "Breyta hópum"; +$a->strings["Edit group"] = "Breyta hóp"; +$a->strings["Create a new group"] = "Stofna nýjan hóp"; +$a->strings["Group Name: "] = "Nafn hóps: "; +$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; +$a->strings["add"] = "bæta við"; +$a->strings["Unknown | Not categorised"] = "Óþekkt | Ekki flokkað"; +$a->strings["Block immediately"] = "Banna samstundis"; +$a->strings["Shady, spammer, self-marketer"] = "Grunsamlegur, ruslsendari, auglýsandi"; +$a->strings["Known to me, but no opinion"] = "Ég þekki þetta, en hef ekki skoðun á"; +$a->strings["OK, probably harmless"] = "Í lagi, væntanlega meinlaus"; +$a->strings["Reputable, has my trust"] = "Gott orðspor, ég treysti þessu"; +$a->strings["Frequently"] = "Oft"; +$a->strings["Hourly"] = "Klukkustundar fresti"; +$a->strings["Twice daily"] = "Tvisvar á dag"; +$a->strings["Daily"] = "Daglega"; +$a->strings["Weekly"] = "Vikulega"; +$a->strings["Monthly"] = "Mánaðarlega"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Póstfang"; +$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 tenging"; +$a->strings["GNU Social"] = "GNU Social"; +$a->strings["App.net"] = "App.net"; +$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; +$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðuupplýsingar fyrir óþekktum?"; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["show"] = "sýna"; +$a->strings["don't show"] = "fela"; +$a->strings["CC: email addresses"] = "CC: tölvupóstfang"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Dæmi: bibbi@vefur.is, mgga@vefur.is"; +$a->strings["Permissions"] = "Aðgangsheimildir"; +$a->strings["Close"] = "Loka"; +$a->strings["photo"] = "mynd"; +$a->strings["status"] = "staða"; +$a->strings["event"] = "atburður"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s líkar við %3\$s hjá %2\$s "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s líkar ekki við %3\$s hjá %2\$s "; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[ekkert efni]"; +$a->strings["Wall Photos"] = "Veggmyndir"; +$a->strings["Click here to upgrade."] = "Smelltu hér til að uppfæra."; +$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["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!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Miscellaneous"] = "Ýmislegt"; +$a->strings["Birthday:"] = "Afmælisdagur:"; +$a->strings["Age: "] = "Aldur: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "ÁÁÁÁ-MM-DD eða MM-DD"; +$a->strings["never"] = "aldrei"; +$a->strings["less than a second ago"] = "fyrir minna en sekúndu"; +$a->strings["year"] = "ár"; +$a->strings["years"] = "ár"; +$a->strings["month"] = "mánuður"; +$a->strings["months"] = "mánuðir"; +$a->strings["week"] = "vika"; +$a->strings["weeks"] = "vikur"; +$a->strings["day"] = "dagur"; +$a->strings["days"] = "dagar"; +$a->strings["hour"] = "klukkustund"; +$a->strings["hours"] = "klukkustundir"; +$a->strings["minute"] = "mínúta"; +$a->strings["minutes"] = "mínútur"; +$a->strings["second"] = "sekúnda"; +$a->strings["seconds"] = "sekúndur"; +$a->strings["%1\$d %2\$s ago"] = "Fyrir %1\$d %2\$s síðan"; +$a->strings["%s's birthday"] = "Afmælisdagur %s"; +$a->strings["Happy Birthday %s"] = "Til hamingju með afmælið %s"; +$a->strings["Friendica Notification"] = "Friendica tilkynning"; +$a->strings["Thank You,"] = "Takk fyrir,"; +$a->strings["%s Administrator"] = "Kerfisstjóri %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s kerfisstjóri"; +$a->strings["noreply"] = "ekki svara"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendi þér %2\$s."; +$a->strings["a private message"] = "einkaskilaboð"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %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 skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; +$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"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]tagged you[/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 potaði í þig"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s potaði í þig %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt síðuna þeirra á %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; +$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:"] = "Nafn:"; +$a->strings["Photo:"] = "Mynd:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Tenging samþykkt"; +$a->strings["'%1\$s' has accepted 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 without 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["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notify] beiðni um skráningu"; +$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."] = "Farðu á %s til að samþykkja eða hunsa þessa beiðni."; +$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["Starts:"] = "Byrjar:"; +$a->strings["Finishes:"] = "Endar:"; +$a->strings["Location:"] = "Staðsetning:"; +$a->strings["Sun"] = "Sun"; +$a->strings["Mon"] = "Mán"; +$a->strings["Tue"] = "Þri"; +$a->strings["Wed"] = "Mið"; +$a->strings["Thu"] = "Fim"; +$a->strings["Fri"] = "Fös"; +$a->strings["Sat"] = "Lau"; +$a->strings["Sunday"] = "Sunnudagur"; +$a->strings["Monday"] = "Mánudagur"; +$a->strings["Tuesday"] = "Þriðjudagur"; +$a->strings["Wednesday"] = "Miðvikudagur"; +$a->strings["Thursday"] = "Fimmtudagur"; +$a->strings["Friday"] = "Föstudagur"; +$a->strings["Saturday"] = "Laugardagur"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "Maí"; +$a->strings["Jun"] = "Jún"; +$a->strings["Jul"] = "Júl"; +$a->strings["Aug"] = "Ágú"; +$a->strings["Sept"] = "Sept"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nóv"; +$a->strings["Dec"] = "Des"; +$a->strings["January"] = "Janúar"; +$a->strings["February"] = "Febrúar"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Apríl"; +$a->strings["June"] = "Júní"; +$a->strings["July"] = "Júlí"; +$a->strings["August"] = "Ágúst"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Október"; +$a->strings["November"] = "Nóvember"; +$a->strings["December"] = "Desember"; +$a->strings["today"] = "í dag"; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = "Breyta atburð"; +$a->strings["link to source"] = "slóð á heimild"; +$a->strings["Export"] = "Flytja út"; +$a->strings["Export calendar as ical"] = "Flytja dagatal út sem ICAL"; +$a->strings["Export calendar as csv"] = "Flytja dagatal út sem CSV"; +$a->strings["Nothing new here"] = "Ekkert nýtt hér"; +$a->strings["Clear notifications"] = "Hreinsa tilkynningar"; +$a->strings["@name, !forum, #tags, content"] = "@nafn, !spjallsvæði, #merki, innihald"; +$a->strings["Logout"] = "Útskrá"; +$a->strings["End this session"] = "Loka þessu innliti"; +$a->strings["Status"] = "Staða"; +$a->strings["Your posts and conversations"] = "Samtölin þín"; +$a->strings["Profile"] = "Forsíða"; +$a->strings["Your profile page"] = "Forsíðan þín"; +$a->strings["Photos"] = "Myndir"; +$a->strings["Your photos"] = "Myndirnar þínar"; +$a->strings["Videos"] = "Myndskeið"; +$a->strings["Your videos"] = "Myndskeiðin þín"; +$a->strings["Events"] = "Atburðir"; +$a->strings["Your events"] = "Atburðirnir þínir"; +$a->strings["Personal notes"] = "Einkaglósur"; +$a->strings["Your personal notes"] = "Einkaglósurnar þínar"; +$a->strings["Login"] = "Innskrá"; +$a->strings["Sign in"] = "Innskrá"; +$a->strings["Home"] = "Heim"; +$a->strings["Home Page"] = "Heimasíða"; +$a->strings["Register"] = "Nýskrá"; +$a->strings["Create an account"] = "Stofna notanda"; +$a->strings["Help"] = "Hjálp"; +$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; +$a->strings["Apps"] = "Forrit"; +$a->strings["Addon applications, utilities, games"] = "Viðbótarforrit, nytjatól, leikir"; +$a->strings["Search"] = "Leita"; +$a->strings["Search site content"] = "Leita í efni á vef"; +$a->strings["Full Text"] = "Allur textinn"; +$a->strings["Tags"] = "Merki"; +$a->strings["Contacts"] = "Tengiliðir"; +$a->strings["Community"] = "Samfélag"; +$a->strings["Conversations on this site"] = "Samtöl á þessum vef"; +$a->strings["Conversations on the network"] = "Samtöl á þessu neti"; +$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; +$a->strings["Directory"] = "Tengiliðalisti"; +$a->strings["People directory"] = "Nafnaskrá"; +$a->strings["Information"] = "Upplýsingar"; +$a->strings["Information about this friendica instance"] = "Upplýsingar um þetta tilvik Friendica"; +$a->strings["Network"] = "Samfélag"; +$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; +$a->strings["Network Reset"] = "Núllstilling netkerfis"; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Kynningar"; +$a->strings["Friend Requests"] = "Vinabeiðnir"; +$a->strings["Notifications"] = "Tilkynningar"; +$a->strings["See all notifications"] = "Sjá allar tilkynningar"; +$a->strings["Mark as seen"] = "Merka sem séð"; +$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; +$a->strings["Messages"] = "Skilaboð"; +$a->strings["Private mail"] = "Einka skilaboð"; +$a->strings["Inbox"] = "Innhólf"; +$a->strings["Outbox"] = "Úthólf"; +$a->strings["New Message"] = "Ný skilaboð"; +$a->strings["Manage"] = "Umsýsla"; +$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Settings"] = "Stillingar"; +$a->strings["Account settings"] = "Stillingar aðgangsreiknings"; +$a->strings["Profiles"] = "Forsíður"; +$a->strings["Manage/Edit Profiles"] = "Sýsla með forsíður"; +$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; +$a->strings["Admin"] = "Stjórnborð"; +$a->strings["Site setup and configuration"] = "Uppsetning og stillingar vefsvæðis"; +$a->strings["Navigation"] = "Yfirsýn"; +$a->strings["Site map"] = "Yfirlit um vefsvæði"; +$a->strings["Contact Photos"] = "Myndir tengiliðs"; +$a->strings["Welcome "] = "Velkomin(n)"; +$a->strings["Please upload a profile photo."] = "Gerðu svo vel að hlaða inn forsíðumynd."; +$a->strings["Welcome back "] = "Velkomin(n) aftur"; +$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["System"] = "Kerfi"; +$a->strings["Personal"] = "Einka"; +$a->strings["%s commented on %s's post"] = "%s athugasemd við %s's færslu"; +$a->strings["%s created a new post"] = "%s bjó til færslu"; +$a->strings["%s liked %s's post"] = "%s líkaði færsla hjá %s"; +$a->strings["%s disliked %s's post"] = "%s mislíkaði færsla hjá %s"; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s er nú vinur %s"; +$a->strings["Friend Suggestion"] = "Vina tillaga"; +$a->strings["Friend/Connect Request"] = "Vinabeiðni/Tengibeiðni"; +$a->strings["New Follower"] = "Nýr fylgjandi"; +$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."] = "Villur komu upp við að stofna töflur í gagnagrunn."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(ekkert efni)"; +$a->strings["Sharing notification from Diaspora network"] = "Tilkynning um að einhver deildi atriði á Diaspora netinu"; +$a->strings["Attachments:"] = "Viðhengi:"; +$a->strings["view full size"] = "Skoða í fullri stærð"; +$a->strings["View Profile"] = "Skoða forsíðu"; +$a->strings["View Status"] = "Skoða stöðu"; +$a->strings["View Photos"] = "Skoða myndir"; +$a->strings["Network Posts"] = ""; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = "Henda tengilið"; +$a->strings["Send PM"] = "Senda einkaboð"; +$a->strings["Poke"] = "Pota"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = "Spjallsvæði"; +$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["Image/photo"] = "Mynd"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 skrifaði:"; +$a->strings["Encrypted content"] = "Dulritað efni"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "Núna er %1\$s vinur %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s potaði í %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merkti %2\$s's %3\$s með %4\$s"; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Likes"] = "Líkar"; +$a->strings["Dislikes"] = "Mislíkar"; +$a->strings["Attending"] = array( + 0 => "Mætir", + 1 => "Mæta", +); +$a->strings["Not attending"] = "Mætir ekki"; +$a->strings["Might attend"] = "Gæti mætt"; +$a->strings["Select"] = "Velja"; +$a->strings["Delete"] = "Eyða"; +$a->strings["View %s's profile @ %s"] = "Birta forsíðu %s hjá %s"; +$a->strings["Categories:"] = "Flokkar:"; +$a->strings["Filed under:"] = "Skráð undir:"; +$a->strings["%s from %s"] = "%s til %s"; +$a->strings["View in context"] = "Birta í samhengi"; +$a->strings["Please wait"] = "Hinkraðu aðeins"; +$a->strings["remove"] = "fjarlægja"; +$a->strings["Delete Selected Items"] = "Eyða völdum færslum"; +$a->strings["Follow Thread"] = "Fylgja þræði"; +$a->strings["%s likes this."] = "%s líkar þetta."; +$a->strings["%s doesn't like this."] = "%s mislíkar þetta."; +$a->strings["%s attends."] = "%s mætir."; +$a->strings["%s doesn't attend."] = "%s mætir ekki."; +$a->strings["%s attends maybe."] = "%s mætir kannski."; +$a->strings["and"] = "og"; +$a->strings[", and %d other people"] = ", og %d öðrum"; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["Please enter a link URL:"] = "Sláðu inn slóð:"; +$a->strings["Please enter a video link/URL:"] = "Settu inn slóð á myndskeið:"; +$a->strings["Please enter an audio link/URL:"] = "Settu inn slóð á hljóðskrá:"; +$a->strings["Tag term:"] = "Merka með:"; +$a->strings["Save to Folder:"] = "Vista í möppu:"; +$a->strings["Where are you right now?"] = "Hvar ert þú núna?"; +$a->strings["Delete item(s)?"] = "Eyða atriði/atriðum?"; +$a->strings["Share"] = "Deila"; +$a->strings["Upload photo"] = "Hlaða upp mynd"; +$a->strings["upload photo"] = "Hlaða upp mynd"; +$a->strings["Attach file"] = "Bæta við skrá"; +$a->strings["attach file"] = "Hengja skrá við"; +$a->strings["Insert web link"] = "Setja inn vefslóð"; +$a->strings["web link"] = "vefslóð"; +$a->strings["Insert video link"] = "Setja inn slóð á myndskeið"; +$a->strings["video link"] = "slóð á myndskeið"; +$a->strings["Insert audio link"] = "Setja inn slóð á hljóðskrá"; +$a->strings["audio link"] = "slóð á hljóðskrá"; +$a->strings["Set your location"] = "Veldu staðsetningu þína"; +$a->strings["set location"] = "stilla staðsetningu"; +$a->strings["Clear browser location"] = "Hreinsa staðsetningu í vafra"; +$a->strings["clear location"] = "hreinsa staðsetningu"; +$a->strings["Set title"] = "Setja titil"; +$a->strings["Categories (comma-separated list)"] = "Flokkar (listi aðskilinn með kommum)"; +$a->strings["Permission settings"] = "Stillingar aðgangsheimilda"; +$a->strings["permissions"] = "aðgangsstýring"; +$a->strings["Public post"] = "Opinber færsla"; +$a->strings["Preview"] = "Forskoðun"; +$a->strings["Cancel"] = "Hætta við"; +$a->strings["Post to Groups"] = "Senda á hópa"; +$a->strings["Post to Contacts"] = "Senda á tengiliði"; +$a->strings["Private post"] = "Einkafærsla"; +$a->strings["Message"] = "Skilaboð"; +$a->strings["Browser"] = "Vafri"; +$a->strings["View all"] = "Skoða allt"; +$a->strings["Like"] = array( + 0 => "Líkar", + 1 => "Líkar", +); +$a->strings["Dislike"] = array( + 0 => "Mislíkar", + 1 => "Mislíkar", +); +$a->strings["Not Attending"] = array( + 0 => "Mæti ekki", + 1 => "Mæta ekki", +); +$a->strings["%s\\'s birthday"] = "Afmælisdagur %s"; +$a->strings["General Features"] = "Almennir eiginleikar"; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = "Staðsetning ljósmyndar"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = "Flytja út opinbert dagatal"; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = "Leita eftir dagsetningu"; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = "Spjallsvæðalistar"; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Vistaðar leitir"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; +$a->strings["Connect URL missing."] = "Tengislóð vantar."; +$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust."; +$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar."; +$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; +$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þetta vistfang."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; +$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; +$a->strings["Requested account is not available."] = "Umbeðin forsíða er ekki til."; +$a->strings["Requested profile is not available."] = "Umbeðin forsíða ekki til."; +$a->strings["Edit profile"] = "Breyta forsíðu"; +$a->strings["Atom feed"] = "Atom fréttaveita"; +$a->strings["Manage/edit profiles"] = "Sýsla með forsíður"; +$a->strings["Change profile photo"] = "Breyta forsíðumynd"; +$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; +$a->strings["Profile Image"] = "Forsíðumynd"; +$a->strings["visible to everybody"] = "sýnilegt öllum"; +$a->strings["Edit visibility"] = "Sýsla með sýnileika"; +$a->strings["Gender:"] = "Kyn:"; +$a->strings["Status:"] = "Staða:"; +$a->strings["Homepage:"] = "Heimasíða:"; +$a->strings["About:"] = "Um:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = "Netkerfi:"; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[í dag]"; +$a->strings["Birthday Reminders"] = "Afmælisáminningar"; +$a->strings["Birthdays this week:"] = "Afmæli í þessari viku:"; +$a->strings["[No description]"] = "[Engin lýsing]"; +$a->strings["Event Reminders"] = "Atburðaáminningar"; +$a->strings["Events this week:"] = "Atburðir vikunnar:"; +$a->strings["Full Name:"] = "Fullt nafn:"; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Age:"] = "Aldur:"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = "Kynhneigð:"; +$a->strings["Hometown:"] = "Heimabær:"; +$a->strings["Tags:"] = "Merki:"; +$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; +$a->strings["Religion:"] = "Trúarskoðanir:"; +$a->strings["Hobbies/Interests:"] = "Áhugamál/Áhugasvið:"; +$a->strings["Likes:"] = "Líkar:"; +$a->strings["Dislikes:"] = "Mislíkar:"; +$a->strings["Contact information and Social Networks:"] = "Tengiliðaupplýsingar og samfélagsnet:"; +$a->strings["Musical interests:"] = "Tónlistaráhugi:"; +$a->strings["Books, literature:"] = "Bækur, bókmenntir:"; +$a->strings["Television:"] = "Sjónvarp:"; +$a->strings["Film/dance/culture/entertainment:"] = "Kvikmyndir/dans/menning/afþreying:"; +$a->strings["Love/Romance:"] = "Ást/rómantík:"; +$a->strings["Work/employment:"] = "Atvinna:"; +$a->strings["School/education:"] = "Skóli/menntun:"; +$a->strings["Forums:"] = "Spjallsvæði:"; +$a->strings["Basic"] = "Einfalt"; +$a->strings["Advanced"] = "Flóknari"; +$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; +$a->strings["Profile Details"] = "Forsíðu upplýsingar"; +$a->strings["Photo Albums"] = "Myndabækur"; +$a->strings["Personal Notes"] = "Persónulegar glósur"; +$a->strings["Only You Can See This"] = "Aðeins þú sérð þetta"; $a->strings["[Name Withheld]"] = "[Nafn ekki sýnt]"; $a->strings["Item not found."] = "Atriði fannst ekki."; $a->strings["Do you really want to delete this item?"] = "Viltu í alvörunni eyða þessu atriði?"; $a->strings["Yes"] = "Já"; -$a->strings["Cancel"] = "Hætta við"; $a->strings["Permission denied."] = "Heimild ekki veitt."; $a->strings["Archives"] = "Safnskrár"; +$a->strings["Embedded content"] = "Innbyggt efni"; +$a->strings["Embedding disabled"] = "Innfelling ekki leyfð"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "fylgist með"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "hætt að fylgja"; $a->strings["newer"] = "nýrri"; $a->strings["older"] = "eldri"; $a->strings["prev"] = "á undan"; @@ -289,12 +656,7 @@ $a->strings["%d Contact"] = array( 1 => "%d tengiliðir", ); $a->strings["View Contacts"] = "Skoða tengiliði"; -$a->strings["Search"] = "Leita"; $a->strings["Save"] = "Vista"; -$a->strings["@name, !forum, #tags, content"] = "@nafn, !spjallsvæði, #merki, innihald"; -$a->strings["Full Text"] = "Allur textinn"; -$a->strings["Tags"] = "Merki"; -$a->strings["Contacts"] = "Tengiliðir"; $a->strings["poke"] = "pota"; $a->strings["poked"] = "potaði"; $a->strings["ping"] = ""; @@ -332,8 +694,6 @@ $a->strings["bytes"] = "bæti"; $a->strings["Click to open/close"] = ""; $a->strings["View on separate page"] = ""; $a->strings["view on separate page"] = ""; -$a->strings["event"] = "atburður"; -$a->strings["photo"] = "mynd"; $a->strings["activity"] = "virkni"; $a->strings["comment"] = array( 0 => "athugasemd", @@ -341,239 +701,6 @@ $a->strings["comment"] = array( ); $a->strings["post"] = ""; $a->strings["Item filed"] = ""; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s líkar ekki við %3\$s hjá %2\$s "; -$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is now friends with %2\$s"] = "Núna er %1\$s vinur %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s potaði í %2\$s"; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merkti %2\$s's %3\$s með %4\$s"; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; -$a->strings["Likes"] = "Líkar"; -$a->strings["Dislikes"] = "Mislíkar"; -$a->strings["Attending"] = array( - 0 => "Mætir", - 1 => "Mæta", -); -$a->strings["Not attending"] = "Mætir ekki"; -$a->strings["Might attend"] = "Gæti mætt"; -$a->strings["Select"] = "Velja"; -$a->strings["Delete"] = "Eyða"; -$a->strings["View %s's profile @ %s"] = "Birta forsíðu %s hjá %s"; -$a->strings["Categories:"] = "Flokkar:"; -$a->strings["Filed under:"] = "Skráð undir:"; -$a->strings["%s from %s"] = "%s til %s"; -$a->strings["View in context"] = "Birta í samhengi"; -$a->strings["Please wait"] = "Hinkraðu aðeins"; -$a->strings["remove"] = "fjarlægja"; -$a->strings["Delete Selected Items"] = "Eyða völdum færslum"; -$a->strings["Follow Thread"] = "Fylgja þræði"; -$a->strings["View Status"] = "Skoða stöðu"; -$a->strings["View Profile"] = "Skoða forsíðu"; -$a->strings["View Photos"] = "Skoða myndir"; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = "Breyta tengilið"; -$a->strings["Send PM"] = "Senda einkaboð"; -$a->strings["Poke"] = "Pota"; -$a->strings["%s likes this."] = "%s líkar þetta."; -$a->strings["%s doesn't like this."] = "%s mislíkar þetta."; -$a->strings["%s attends."] = "%s mætir."; -$a->strings["%s doesn't attend."] = "%s mætir ekki."; -$a->strings["%s attends maybe."] = "%s mætir kannski."; -$a->strings["and"] = "og"; -$a->strings[", and %d other people"] = ", og %d öðrum"; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%s like this."] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["%s don't like this."] = ""; -$a->strings["%2\$d people attend"] = ""; -$a->strings["%s attend."] = ""; -$a->strings["%2\$d people don't attend"] = ""; -$a->strings["%s don't attend."] = ""; -$a->strings["%2\$d people anttend maybe"] = ""; -$a->strings["%s anttend maybe."] = ""; -$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; -$a->strings["Please enter a link URL:"] = "Sláðu inn slóð:"; -$a->strings["Please enter a video link/URL:"] = "Settu inn slóð á myndskeið:"; -$a->strings["Please enter an audio link/URL:"] = "Settu inn slóð á hljóðskrá:"; -$a->strings["Tag term:"] = "Merka með:"; -$a->strings["Save to Folder:"] = "Vista í möppu:"; -$a->strings["Where are you right now?"] = "Hvar ert þú núna?"; -$a->strings["Delete item(s)?"] = "Eyða atriði/atriðum?"; -$a->strings["Share"] = "Deila"; -$a->strings["Upload photo"] = "Hlaða upp mynd"; -$a->strings["upload photo"] = "Hlaða upp mynd"; -$a->strings["Attach file"] = "Bæta við skrá"; -$a->strings["attach file"] = "Hengja skrá við"; -$a->strings["Insert web link"] = "Setja inn vefslóð"; -$a->strings["web link"] = "vefslóð"; -$a->strings["Insert video link"] = "Setja inn slóð á myndskeið"; -$a->strings["video link"] = "slóð á myndskeið"; -$a->strings["Insert audio link"] = "Setja inn slóð á hljóðskrá"; -$a->strings["audio link"] = "slóð á hljóðskrá"; -$a->strings["Set your location"] = "Veldu staðsetningu þína"; -$a->strings["set location"] = "stilla staðsetningu"; -$a->strings["Clear browser location"] = "Hreinsa staðsetningu í vafra"; -$a->strings["clear location"] = "hreinsa staðsetningu"; -$a->strings["Set title"] = "Setja titil"; -$a->strings["Categories (comma-separated list)"] = "Flokkar (listi aðskilinn með kommum)"; -$a->strings["Permission settings"] = "Stillingar aðgangsheimilda"; -$a->strings["permissions"] = "aðgangsstýring"; -$a->strings["Public post"] = "Opinber færsla"; -$a->strings["Preview"] = "Forskoðun"; -$a->strings["Post to Groups"] = "Senda á hópa"; -$a->strings["Post to Contacts"] = "Senda á tengiliði"; -$a->strings["Private post"] = "Einkafærsla"; -$a->strings["Message"] = "Skilaboð"; -$a->strings["Browser"] = "Vafri"; -$a->strings["View all"] = "Skoða allt"; -$a->strings["Like"] = array( - 0 => "Líkar", - 1 => "Líkar", -); -$a->strings["Dislike"] = array( - 0 => "Mislíkar", - 1 => "Mislíkar", -); -$a->strings["Not Attending"] = array( - 0 => "Mæti ekki", - 1 => "Mæta ekki", -); -$a->strings["Requested account is not available."] = "Umbeðin forsíða er ekki til."; -$a->strings["Requested profile is not available."] = "Umbeðin forsíða ekki til."; -$a->strings["Edit profile"] = "Breyta forsíðu"; -$a->strings["Atom feed"] = "Atom fréttaveita"; -$a->strings["Profiles"] = "Forsíður"; -$a->strings["Manage/edit profiles"] = "Sýsla með forsíður"; -$a->strings["Change profile photo"] = "Breyta forsíðumynd"; -$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; -$a->strings["Profile Image"] = "Forsíðumynd"; -$a->strings["visible to everybody"] = "sýnilegt öllum"; -$a->strings["Edit visibility"] = "Sýsla með sýnileika"; -$a->strings["Forum"] = "Spjallsvæði"; -$a->strings["Gender:"] = "Kyn:"; -$a->strings["Status:"] = "Staða:"; -$a->strings["Homepage:"] = "Heimasíða:"; -$a->strings["About:"] = "Um:"; -$a->strings["Network:"] = "Netkerfi:"; -$a->strings["g A l F d"] = ""; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[í dag]"; -$a->strings["Birthday Reminders"] = "Afmælisáminningar"; -$a->strings["Birthdays this week:"] = "Afmæli í þessari viku:"; -$a->strings["[No description]"] = "[Engin lýsing]"; -$a->strings["Event Reminders"] = "Atburðaáminningar"; -$a->strings["Events this week:"] = "Atburðir vikunnar:"; -$a->strings["Profile"] = "Forsíða"; -$a->strings["Full Name:"] = "Fullt nafn:"; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Age:"] = "Aldur:"; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Sexual Preference:"] = "Kynhneigð:"; -$a->strings["Hometown:"] = "Heimabær:"; -$a->strings["Tags:"] = "Merki:"; -$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; -$a->strings["Religion:"] = "Trúarskoðanir:"; -$a->strings["Hobbies/Interests:"] = "Áhugamál/Áhugasvið:"; -$a->strings["Likes:"] = "Líkar:"; -$a->strings["Dislikes:"] = "Mislíkar:"; -$a->strings["Contact information and Social Networks:"] = "Tengiliðaupplýsingar og samfélagsnet:"; -$a->strings["Musical interests:"] = "Tónlistaráhugi:"; -$a->strings["Books, literature:"] = "Bækur, bókmenntir:"; -$a->strings["Television:"] = "Sjónvarp:"; -$a->strings["Film/dance/culture/entertainment:"] = "Kvikmyndir/dans/menning/afþreying:"; -$a->strings["Love/Romance:"] = "Ást/rómantík:"; -$a->strings["Work/employment:"] = "Atvinna:"; -$a->strings["School/education:"] = "Skóli/menntun:"; -$a->strings["Forums:"] = "Spjallsvæði:"; -$a->strings["Basic"] = "Einfalt"; -$a->strings["Advanced"] = "Flóknari"; -$a->strings["Status"] = "Staða"; -$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; -$a->strings["Profile Details"] = "Forsíðu upplýsingar"; -$a->strings["Photos"] = "Myndir"; -$a->strings["Photo Albums"] = "Myndabækur"; -$a->strings["Videos"] = "Myndskeið"; -$a->strings["Events"] = "Atburðir"; -$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; -$a->strings["Personal Notes"] = "Persónulegar glósur"; -$a->strings["Only You Can See This"] = "Aðeins þú sérð þetta"; -$a->strings[" on Last.fm"] = " á Last.fm"; -$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; -$a->strings["Connect URL missing."] = "Tengislóð vantar."; -$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust."; -$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar."; -$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; -$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þetta vistfang."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; -$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; -$a->strings["following"] = "fylgist með"; -$a->strings["stopped following"] = "hætt að fylgja"; -$a->strings["Drop Contact"] = "Henda tengilið"; -$a->strings["Embedded content"] = "Innbyggt efni"; -$a->strings["Embedding disabled"] = "Innfelling ekki leyfð"; -$a->strings["Image/photo"] = "Mynd"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 skrifaði:"; -$a->strings["Encrypted content"] = "Dulritað efni"; -$a->strings["Unknown | Not categorised"] = "Óþekkt | Ekki flokkað"; -$a->strings["Block immediately"] = "Banna samstundis"; -$a->strings["Shady, spammer, self-marketer"] = "Grunsamlegur, ruslsendari, auglýsandi"; -$a->strings["Known to me, but no opinion"] = "Ég þekki þetta, en hef ekki skoðun á"; -$a->strings["OK, probably harmless"] = "Í lagi, væntanlega meinlaus"; -$a->strings["Reputable, has my trust"] = "Gott orðspor, ég treysti þessu"; -$a->strings["Frequently"] = "Oft"; -$a->strings["Hourly"] = "Klukkustundar fresti"; -$a->strings["Twice daily"] = "Tvisvar á dag"; -$a->strings["Daily"] = "Daglega"; -$a->strings["Weekly"] = "Vikulega"; -$a->strings["Monthly"] = "Mánaðarlega"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Póstfang"; -$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 tenging"; -$a->strings["GNU Social"] = "GNU Social"; -$a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; -$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."] = "Villur komu upp við að stofna töflur í gagnagrunn."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Skráður út."; -$a->strings["Login failed."] = "Innskráning mistókst."; -$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:"] = "Villumeldingin var:"; -$a->strings["view full size"] = "Skoða í fullri stærð"; -$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."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Allir"; -$a->strings["edit"] = "breyta"; -$a->strings["Groups"] = "Hópar"; -$a->strings["Edit groups"] = "Breyta hópum"; -$a->strings["Edit group"] = "Breyta hóp"; -$a->strings["Create a new group"] = "Stofna nýjan hóp"; -$a->strings["Group Name: "] = "Nafn hóps: "; -$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; -$a->strings["add"] = "bæta við"; -$a->strings["Wall Photos"] = "Veggmyndir"; -$a->strings["(no subject)"] = "(ekkert efni)"; $a->strings["Passwords do not match. Password unchanged."] = "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt."; $a->strings["An invitation is required."] = "Boðskort er skilyrði."; $a->strings["Invitation could not be verified."] = "Ekki hægt að sannreyna boðskort."; @@ -593,142 +720,12 @@ $a->strings["An error occurred during registration. Please try again."] = "Villa $a->strings["default"] = "sjálfgefið"; $a->strings["An error occurred creating your default profile. Please try again."] = "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur."; $a->strings["Profile Photos"] = "Forsíðumyndir"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; $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"] = "Nýskráningar upplýsingar fyrir %s"; -$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["General Features"] = "Almennir eiginleikar"; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Photo Location"] = "Staðsetning ljósmyndar"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$a->strings["Export Public Calendar"] = "Flytja út opinbert dagatal"; -$a->strings["Ability for visitors to download the public calendar"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$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"] = ""; -$a->strings["Search by Date"] = "Leita eftir dagsetningu"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["List Forums"] = "Spjallsvæðalistar"; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Saved Searches"] = "Vistaðar leitir"; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$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["Advanced Profile Settings"] = ""; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$a->strings["Nothing new here"] = "Ekkert nýtt hér"; -$a->strings["Clear notifications"] = "Hreinsa tilkynningar"; -$a->strings["End this session"] = "Loka þessu innliti"; -$a->strings["Your posts and conversations"] = "Samtölin þín"; -$a->strings["Your profile page"] = "Forsíðan þín"; -$a->strings["Your photos"] = "Myndirnar þínar"; -$a->strings["Your videos"] = "Myndskeiðin þín"; -$a->strings["Your events"] = "Atburðirnir þínir"; -$a->strings["Personal notes"] = "Einkaglósur"; -$a->strings["Your personal notes"] = "Einkaglósurnar þínar"; -$a->strings["Sign in"] = "Innskrá"; -$a->strings["Home"] = "Heim"; -$a->strings["Home Page"] = "Heimasíða"; -$a->strings["Create an account"] = "Stofna notanda"; -$a->strings["Help"] = "Hjálp"; -$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; -$a->strings["Apps"] = "Forrit"; -$a->strings["Addon applications, utilities, games"] = "Viðbótarforrit, nytjatól, leikir"; -$a->strings["Search site content"] = "Leita í efni á vef"; -$a->strings["Community"] = "Samfélag"; -$a->strings["Conversations on this site"] = "Samtöl á þessum vef"; -$a->strings["Conversations on the network"] = "Samtöl á þessu neti"; -$a->strings["Directory"] = "Tengiliðalisti"; -$a->strings["People directory"] = "Nafnaskrá"; -$a->strings["Information"] = "Upplýsingar"; -$a->strings["Information about this friendica instance"] = "Upplýsingar um þetta tilvik Friendica"; -$a->strings["Network"] = "Samfélag"; -$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; -$a->strings["Network Reset"] = "Núllstilling netkerfis"; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Introductions"] = "Kynningar"; -$a->strings["Friend Requests"] = "Vinabeiðnir"; -$a->strings["Notifications"] = "Tilkynningar"; -$a->strings["See all notifications"] = "Sjá allar tilkynningar"; -$a->strings["Mark as seen"] = "Merka sem séð"; -$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; -$a->strings["Messages"] = "Skilaboð"; -$a->strings["Private mail"] = "Einka skilaboð"; -$a->strings["Inbox"] = "Innhólf"; -$a->strings["Outbox"] = "Úthólf"; -$a->strings["New Message"] = "Ný skilaboð"; -$a->strings["Manage"] = "Umsýsla"; -$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; -$a->strings["Delegations"] = ""; -$a->strings["Delegate Page Management"] = ""; -$a->strings["Settings"] = "Stillingar"; -$a->strings["Account settings"] = "Stillingar aðgangsreiknings"; -$a->strings["Manage/Edit Profiles"] = "Sýsla með forsíður"; -$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; -$a->strings["Admin"] = "Stjórnborð"; -$a->strings["Site setup and configuration"] = "Uppsetning og stillingar vefsvæðis"; -$a->strings["Navigation"] = "Yfirsýn"; -$a->strings["Site map"] = "Yfirlit um vefsvæði"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; -$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðuupplýsingar fyrir óþekktum?"; -$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; -$a->strings["show"] = "sýna"; -$a->strings["don't show"] = "fela"; -$a->strings["CC: email addresses"] = "CC: tölvupóstfang"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Dæmi: bibbi@vefur.is, mgga@vefur.is"; -$a->strings["Permissions"] = "Aðgangsheimildir"; -$a->strings["Close"] = "Loka"; -$a->strings["[no subject]"] = "[ekkert efni]"; -$a->strings["You must be logged in to use addons. "] = "Þú verður að vera skráður inn til að geta notað viðbætur. "; -$a->strings["Not Found"] = "Fannst ekki"; -$a->strings["Page not found."] = "Síða fannst ekki."; -$a->strings["Permission denied"] = "Bannaður aðgangur"; -$a->strings["toggle mobile"] = ""; -$a->strings["Account approved."] = "Notandi samþykktur."; -$a->strings["Registration revoked for %s"] = "Skráning afturköllurð vegna %s"; -$a->strings["Please login."] = "Skráðu yður inn."; $a->strings["Post successful."] = "Melding tókst."; -$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; -$a->strings["People Search - %s"] = "Leita að fólki - %s"; -$a->strings["Forum Search - %s"] = "Leita á spjallsvæði - %s"; -$a->strings["No matches"] = "Engar leitarniðurstöður"; $a->strings["Access denied."] = "Aðgangi hafnað."; $a->strings["Welcome to %s"] = "Velkomin í %s"; $a->strings["No more system notifications."] = "Ekki fleiri kerfistilkynningar."; @@ -741,62 +738,6 @@ $a->strings["Only one search per minute is permitted for not logged in users."] $a->strings["No results."] = "Engar leitarniðurstöður."; $a->strings["Items tagged with: %s"] = "Atriði merkt með: %s"; $a->strings["Results for: %s"] = "Niðurstöður fyrir: %s"; -$a->strings["Invalid request identifier."] = "Ógilt auðkenni beiðnar."; -$a->strings["Discard"] = "Henda"; -$a->strings["Ignore"] = "Hunsa"; -$a->strings["System"] = "Kerfi"; -$a->strings["Personal"] = "Einka"; -$a->strings["Show Ignored Requests"] = "Sýna hunsaðar beiðnir"; -$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; -$a->strings["Notification type: "] = "Gerð skilaboða: "; -$a->strings["Friend Suggestion"] = "Vina tillaga"; -$a->strings["suggested by %s"] = "stungið uppá af %s"; -$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; -$a->strings["Post a new friend activity"] = "Búa til færslu um nýjan vin"; -$a->strings["if applicable"] = "ef við á"; -$a->strings["Approve"] = "Samþykkja"; -$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; -$a->strings["yes"] = "já"; -$a->strings["no"] = "nei"; -$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"] = "Vin"; -$a->strings["Sharer"] = "Deilir"; -$a->strings["Fan/Admirer"] = "Fylgjandi/Aðdáandi"; -$a->strings["Friend/Connect Request"] = "Vinabeiðni/Tengibeiðni"; -$a->strings["New Follower"] = "Nýr fylgjandi"; -$a->strings["Profile URL"] = "Slóð á forsíðu"; -$a->strings["No introductions."] = "Engar kynningar."; -$a->strings["%s liked %s's post"] = "%s líkaði færsla hjá %s"; -$a->strings["%s disliked %s's post"] = "%s mislíkaði færsla hjá %s"; -$a->strings["%s is now friends with %s"] = "%s er nú vinur %s"; -$a->strings["%s created a new post"] = "%s bjó til færslu"; -$a->strings["%s commented on %s's post"] = "%s athugasemd við %s's færslu"; -$a->strings["No more network notifications."] = "Engar tilkynningar á neti."; -$a->strings["Network Notifications"] = "Tilkynningar á neti"; -$a->strings["No more personal notifications."] = "Engar einka tilkynningar."; -$a->strings["Personal Notifications"] = "Einkatilkynningar."; -$a->strings["No more home notifications."] = "Ekki fleiri heima tilkynningar"; -$a->strings["Home Notifications"] = "Tilkynningar frá heimasvæði"; -$a->strings["Profile not found."] = "Forsíða fannst ekki."; -$a->strings["Contact not found."] = "Tengiliður fannst ekki."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá ytri vef."; -$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá ytri vef:"; -$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; -$a->strings["Remote site reported: "] = "Ytri vefur svaraði:"; -$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Bíddu aðeins og reyndu svo aftur."; -$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; -$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliðamynd."; -$a->strings["No user record found for '%s' "] = "Engin notandafærsla fannst fyrir '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; -$a->strings["Contact record was not found for you on our site."] = "Tengiliðafærslan þín fannst ekki á þjóninum okkar."; -$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; -$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; -$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s hefur gengið til liðs við %2\$s"; $a->strings["This is Friendica, version"] = "Þetta er Friendica útgáfa"; $a->strings["running at web location"] = "Keyrir á slóð"; $a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið."; @@ -811,6 +752,7 @@ $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s $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"] = "Beðið var um endurstillingu lykilorðs %s"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki."; +$a->strings["Password Reset"] = "Endurstilling aðgangsorðs"; $a->strings["Your password has been reset as requested."] = "Aðgangsorðið þitt hefur verið endurstilt."; $a->strings["Your new password is"] = "Nýja aðgangsorð þitt er "; $a->strings["Save or copy your new password - and then"] = "Vistaðu eða afritaðu nýja aðgangsorðið - og"; @@ -821,40 +763,14 @@ $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Locati $a->strings["Your password has been changed at %s"] = "Aðgangsorðinu þínu var breytt í %s"; $a->strings["Forgot your Password?"] = "Gleymdir þú lykilorði þínu?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti."; +$a->strings["Nickname or Email: "] = "Gælunafn eða póstfang: "; $a->strings["Reset"] = "Endursetja"; $a->strings["No profile"] = "Engin forsíða"; $a->strings["Help:"] = "Hjálp:"; -$a->strings["Invalid request."] = "Ógild fyrirspurn."; -$a->strings["Image exceeds size limit of %s"] = ""; -$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; -$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; -$a->strings["Friend suggestion sent."] = "Vina tillaga send"; -$a->strings["Suggest Friends"] = "Stinga uppá vinum"; -$a->strings["Suggest a friend for %s"] = "Stinga uppá vin fyrir %s"; -$a->strings["Submit"] = "Senda inn"; +$a->strings["Not Found"] = "Fannst ekki"; +$a->strings["Page not found."] = "Síða fannst ekki."; $a->strings["Remote privacy information not available."] = "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón."; $a->strings["Visible to:"] = "Sýnilegt eftirfarandi:"; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = ""; -$a->strings["View"] = "Skoða"; -$a->strings["Create New Event"] = "Stofna nýjan atburð"; -$a->strings["Previous"] = "Fyrra"; -$a->strings["Next"] = "Næsta"; -$a->strings["Event details"] = "Nánar um atburð"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Atburður hefst:"; -$a->strings["Required"] = "Nauðsynlegt"; -$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; -$a->strings["Event Finishes:"] = "Atburður klárar:"; -$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; -$a->strings["Description:"] = "Lýsing:"; -$a->strings["Title:"] = "Titill:"; -$a->strings["Share this event"] = "Deila þessum atburði"; -$a->strings["Global Directory"] = "Alheimstengiliðaskrá"; -$a->strings["Find on this site"] = "Leita á þessum vef"; -$a->strings["Results for:"] = "Niðurstöður fyrir:"; -$a->strings["Site Directory"] = "Skrá yfir tengiliði á þessum vef"; -$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; $a->strings["OpenID protocol error. No ID returned."] = "Samskiptavilla í OpenID. Ekkert auðkenni barst."; $a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun."; @@ -868,9 +784,6 @@ $a->strings["To export your account, go to \"Settings->Export your personal data $a->strings["Visit %s's profile [%s]"] = "Heimsækja forsíðu %s [%s]"; $a->strings["Edit contact"] = "Breyta tengilið"; $a->strings["Contacts who are not members of a group"] = ""; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna."; -$a->strings["is interested in:"] = "hefur áhuga á:"; -$a->strings["Profile Match"] = "Forsíða fannst"; $a->strings["Export 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."] = ""; $a->strings["Export all"] = ""; @@ -897,17 +810,155 @@ $a->strings["You are cordially invited to join me and other close friends on Fri $a->strings["You will need to supply this invitation code: \$invite_code"] = "Þú þarft að nota eftirfarandi boðskorta auðkenni: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["Contact Photos"] = "Myndir tengiliðs"; +$a->strings["Submit"] = "Senda inn"; $a->strings["Files"] = "Skrár"; -$a->strings["System down for maintenance"] = "Kerfið er óvirkt vegna viðhalds"; +$a->strings["Permission denied"] = "Bannaður aðgangur"; $a->strings["Invalid profile identifier."] = "Ógilt tengiliða auðkenni"; $a->strings["Profile Visibility Editor"] = "Sýsla með sjáanleika forsíðu"; $a->strings["Click on a contact to add or remove."] = "Ýttu á tengilið til að bæta við hóp eða taka úr hóp."; $a->strings["Visible To"] = "Sjáanlegur hverjum"; $a->strings["All Contacts (with secure profile access)"] = "Allir tengiliðir (með öruggann aðgang að forsíðu)"; -$a->strings["No contacts."] = "Enginn tengiliður"; +$a->strings["Tag removed"] = "Merki fjarlægt"; +$a->strings["Remove Item Tag"] = "Fjarlægja merki "; +$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; +$a->strings["Remove"] = "Fjarlægja"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = "Lokið"; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = "Engir mögulegir viðtakendur síðunnar fundust."; +$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."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Bæta við"; +$a->strings["No entries."] = "Engar færslur."; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- veldu -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = "Atriði ekki í boði."; +$a->strings["Item was not found."] = "Atriði fannst ekki"; +$a->strings["You must be logged in to use addons. "] = "Þú verður að vera skráður inn til að geta notað viðbætur. "; +$a->strings["Applications"] = "Forrit"; +$a->strings["No installed applications."] = "Engin uppsett forrit"; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = "Velkomin(n) á Friendica"; +$a->strings["New Member Checklist"] = "Nýr notandi verklisti"; +$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."] = ""; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$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."] = ""; +$a->strings["Go to Your Settings"] = ""; +$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."] = ""; +$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."] = "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig."; +$a->strings["Upload Profile Photo"] = "Hlaða upp forsíðu mynd"; +$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."] = "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd."; +$a->strings["Edit Your Profile"] = ""; +$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."] = "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum."; +$a->strings["Profile Keywords"] = ""; +$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."] = "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap."; +$a->strings["Connecting"] = "Tengist"; +$a->strings["Importing Emails"] = ""; +$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"] = "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns"; +$a->strings["Go to Your Contacts Page"] = ""; +$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."] = "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum."; +$a->strings["Go to Your Site's Directory"] = ""; +$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."] = "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína."; +$a->strings["Finding New People"] = ""; +$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."] = ""; +$a->strings["Group Your 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."] = "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni."; +$a->strings["Why Aren't My Posts Public?"] = ""; +$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."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika."; +$a->strings["Remove My Account"] = "Eyða þessum notanda"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; +$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; +$a->strings["Item not found"] = "Atriði fannst ekki"; +$a->strings["Edit post"] = "Breyta skilaboðum"; +$a->strings["Time Conversion"] = "Tíma leiðréttir"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum."; +$a->strings["UTC time: %s"] = "Máltími: %s"; +$a->strings["Current timezone: %s"] = "Núverandi tímabelti: %s"; +$a->strings["Converted localtime: %s"] = "Umbreyttur staðartími: %s"; +$a->strings["Please select your timezone:"] = "Veldu tímabeltið þitt:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Hópur stofnaður"; +$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; +$a->strings["Group not found."] = "Hópur fannst ekki."; +$a->strings["Group name changed."] = "Hópur endurskýrður."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; +$a->strings["Group removed."] = "Hópi eytt."; +$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; +$a->strings["Group Editor"] = "Hópa sýslari"; +$a->strings["Members"] = "Aðilar"; +$a->strings["All Contacts"] = "Allir tengiliðir"; +$a->strings["Group is empty"] = "Hópur er tómur"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["No recipient selected."] = "Engir viðtakendur valdir."; +$a->strings["Unable to check your home location."] = ""; +$a->strings["Message could not be sent."] = "Ekki tókst að senda skilaboð."; +$a->strings["Message collection failure."] = "Ekki tókst að sækja skilaboð."; +$a->strings["Message sent."] = "Skilaboð send."; +$a->strings["No recipient."] = ""; +$a->strings["Send Private Message"] = "Senda einkaskilaboð"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Til:"; +$a->strings["Subject:"] = "Efni:"; +$a->strings["link"] = "tengill"; +$a->strings["Authorize application connection"] = "Leyfa forriti að tengjast"; +$a->strings["Return to your app and insert this Securty Code:"] = "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar"; +$a->strings["Please login to continue."] = "Skráðu þig inn til að halda áfram."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?"; +$a->strings["No"] = "Nei"; +$a->strings["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html (raw HTML): "] = "bb2html (hrátt 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): "] = ""; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = "tókst"; +$a->strings["failed"] = "mistókst"; +$a->strings["ignored"] = "hunsað"; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = "Skilaboðum eytt."; +$a->strings["Conversation removed."] = "Samtali eytt."; +$a->strings["No messages."] = "Engin skilaboð."; +$a->strings["Message not available."] = "Ekki næst í skilaboð."; +$a->strings["Delete message"] = "Eyða skilaboðum"; +$a->strings["Delete conversation"] = "Eyða samtali"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Senda svar"; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["%d message"] = array( + 0 => "", + 1 => "", +); +$a->strings["Manage Identities and/or Pages"] = "Sýsla með notendur og/eða síður"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum."; +$a->strings["Select an identity to manage: "] = "Veldu notanda til að sýsla með:"; $a->strings["Contact settings applied."] = "Stillingar tengiliðs uppfærðar."; $a->strings["Contact update failed."] = "Uppfærsla tengiliðs mistókst."; +$a->strings["Contact not found."] = "Tengiliður fannst ekki."; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu."; $a->strings["No mirroring"] = ""; @@ -915,6 +966,9 @@ $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; $a->strings["Return to contact editor"] = "Fara til baka í tengiliðasýsl"; $a->strings["Refetch contact data"] = ""; +$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["Name"] = "Nafn"; $a->strings["Account Nickname"] = "Gælunafn notanda"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Merkjanafn - yfirskrifar Nafn/Gælunafn"; @@ -924,22 +978,482 @@ $a->strings["Friend Confirm URL"] = "Slóð vina staðfestingar "; $a->strings["Notification Endpoint URL"] = "Slóð loka tilkynningar"; $a->strings["Poll/Feed URL"] = "Slóð á könnun/fréttastraum"; $a->strings["New photo from this URL"] = "Ný mynd frá slóð"; -$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["Tag removed"] = "Merki fjarlægt"; -$a->strings["Remove Item Tag"] = "Fjarlægja merki "; -$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; -$a->strings["Remove"] = "Fjarlægja"; -$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; -$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; -$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; +$a->strings["No such group"] = "Hópur ekki til"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = ""; +$a->strings["%d comment"] = array( + 0 => "%d ummæli", + 1 => "%d ummæli", +); +$a->strings["Private Message"] = "Einkaskilaboð"; +$a->strings["I like this (toggle)"] = "Mér líkar þetta (kveikja/slökkva)"; +$a->strings["like"] = "líkar"; +$a->strings["I don't like this (toggle)"] = "Mér líkar þetta ekki (kveikja/slökkva)"; +$a->strings["dislike"] = "mislíkar"; +$a->strings["Share this"] = "Deila þessu"; +$a->strings["share"] = "deila"; +$a->strings["This is you"] = "Þetta ert þú"; +$a->strings["Comment"] = "Athugasemd"; +$a->strings["Bold"] = "Feitletrað"; +$a->strings["Italic"] = "Skáletrað"; +$a->strings["Underline"] = "Undirstrikað"; +$a->strings["Quote"] = "Gæsalappir"; +$a->strings["Code"] = "Kóði"; +$a->strings["Image"] = "Mynd"; +$a->strings["Link"] = "Tengill"; +$a->strings["Video"] = "Myndband"; +$a->strings["Edit"] = "Breyta"; +$a->strings["add star"] = "bæta við stjörnu"; +$a->strings["remove star"] = "eyða stjörnu"; +$a->strings["toggle star status"] = "Kveikja/slökkva á stjörnu"; +$a->strings["starred"] = "stjörnumerkt"; +$a->strings["add tag"] = "bæta við merki"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "vista í möppu"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "við"; +$a->strings["Wall-to-Wall"] = "vegg við vegg"; +$a->strings["via Wall-To-Wall:"] = "gegnum vegg við vegg"; +$a->strings["Friend suggestion sent."] = "Vina tillaga send"; +$a->strings["Suggest Friends"] = "Stinga uppá vinum"; +$a->strings["Suggest a friend for %s"] = "Stinga uppá vin fyrir %s"; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; +$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; +$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; +$a->strings["Upload File:"] = "Hlaða upp skrá:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "Hlaða upp"; +$a->strings["or"] = "eða"; +$a->strings["skip this step"] = "sleppa þessu skrefi"; +$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; +$a->strings["Crop Image"] = "Skera af mynd"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; +$a->strings["Done Editing"] = "Breyting kláruð"; +$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; +$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; +$a->strings["Account approved."] = "Notandi samþykktur."; +$a->strings["Registration revoked for %s"] = "Skráning afturköllurð vegna %s"; +$a->strings["Please login."] = "Skráðu yður inn."; +$a->strings["Invalid request identifier."] = "Ógilt auðkenni beiðnar."; +$a->strings["Discard"] = "Henda"; +$a->strings["Ignore"] = "Hunsa"; +$a->strings["Network Notifications"] = "Tilkynningar á neti"; +$a->strings["Personal Notifications"] = "Einkatilkynningar."; +$a->strings["Home Notifications"] = "Tilkynningar frá heimasvæði"; +$a->strings["Show Ignored Requests"] = "Sýna hunsaðar beiðnir"; +$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; +$a->strings["Notification type: "] = "Gerð skilaboða: "; +$a->strings["suggested by %s"] = "stungið uppá af %s"; +$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; +$a->strings["Post a new friend activity"] = "Búa til færslu um nýjan vin"; +$a->strings["if applicable"] = "ef við á"; +$a->strings["Approve"] = "Samþykkja"; +$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; +$a->strings["yes"] = "já"; +$a->strings["no"] = "nei"; +$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"] = "Vin"; +$a->strings["Sharer"] = "Deilir"; +$a->strings["Fan/Admirer"] = "Fylgjandi/Aðdáandi"; +$a->strings["Profile URL"] = "Slóð á forsíðu"; +$a->strings["No introductions."] = "Engar kynningar."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Forsíða fannst ekki."; +$a->strings["Profile deleted."] = "Forsíðu eytt."; +$a->strings["Profile-"] = "Forsíða-"; +$a->strings["New profile created."] = "Ný forsíða búinn til."; +$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; +$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = "Forsíða uppfærð."; +$a->strings[" and "] = "og"; +$a->strings["public profile"] = "Opinber forsíða"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hefur uppfært %2\$s, með því að breyta %3\$s."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða-/vinalista á þessari forsíðu?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = "Skoða þessa forsíðu"; +$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; +$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; +$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Kyn:"; +$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; +$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; +$a->strings["Profile Name:"] = "Forsíðu nafn:"; +$a->strings["Required"] = "Nauðsynlegt"; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
                                              Hún verður sjáanleg öðrum sem nota alnetið."; +$a->strings["Your Full Name:"] = "Fullt nafn:"; +$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; +$a->strings["Street Address:"] = "Gata:"; +$a->strings["Locality/City:"] = "Bær/Borg:"; +$a->strings["Region/State:"] = "Svæði/Sýsla"; +$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = ""; +$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; +$a->strings["Religious Views:"] = "Trúarskoðanir"; +$a->strings["Public Keywords:"] = "Opinber leitarorð:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; +$a->strings["Private Keywords:"] = "Einka leitarorð:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; +$a->strings["Musical interests"] = "Tónlistarsmekkur"; +$a->strings["Books, literature"] = "Bækur, bókmenntir"; +$a->strings["Television"] = "Sjónvarp"; +$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; +$a->strings["Hobbies/Interests"] = "Áhugamál"; +$a->strings["Love/romance"] = "Ást/rómantík"; +$a->strings["Work/employment"] = "Atvinna:"; +$a->strings["School/education"] = "Skóli/menntun"; +$a->strings["Contact information and Social Networks"] = "Tengiliðaupplýsingar og samfélagsnet"; +$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; +$a->strings["No friends to display."] = "Engir vinir til að birta."; +$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; +$a->strings["View"] = "Skoða"; +$a->strings["Previous"] = "Fyrra"; +$a->strings["Next"] = "Næsta"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = ""; +$a->strings["Common Friends"] = "Sameiginlegir vinir"; +$a->strings["Not available."] = "Ekki í boði."; +$a->strings["Global Directory"] = "Alheimstengiliðaskrá"; +$a->strings["Find on this site"] = "Leita á þessum vef"; +$a->strings["Results for:"] = "Niðurstöður fyrir:"; +$a->strings["Site Directory"] = "Skrá yfir tengiliði á þessum vef"; +$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; +$a->strings["People Search - %s"] = "Leita að fólki - %s"; +$a->strings["Forum Search - %s"] = "Leita á spjallsvæði - %s"; +$a->strings["No matches"] = "Engar leitarniðurstöður"; +$a->strings["Item has been removed."] = "Atriði hefur verið fjarlægt."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["Create New Event"] = "Stofna nýjan atburð"; +$a->strings["Event details"] = "Nánar um atburð"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Atburður hefst:"; +$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; +$a->strings["Event Finishes:"] = "Atburður klárar:"; +$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; +$a->strings["Description:"] = "Lýsing:"; +$a->strings["Title:"] = "Titill:"; +$a->strings["Share this event"] = "Deila þessum atburði"; +$a->strings["System down for maintenance"] = "Kerfið er óvirkt vegna viðhalds"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna."; +$a->strings["is interested in:"] = "hefur áhuga á:"; +$a->strings["Profile Match"] = "Forsíða fannst"; +$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir."; +$a->strings["Ignore/Hide"] = "Hunsa/Fela"; +$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; +$a->strings["Recent Photos"] = "Nýlegar myndir"; +$a->strings["Upload New Photos"] = "Hlaða upp nýjum myndum"; +$a->strings["everybody"] = "allir"; +$a->strings["Contact information unavailable"] = "Tengiliða upplýsingar ekki til"; +$a->strings["Album not found."] = "Myndabók finnst ekki."; +$a->strings["Delete Album"] = "Fjarlægja myndabók"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Delete Photo"] = "Fjarlægja mynd"; +$a->strings["Do you really want to delete this photo?"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = "mynd"; +$a->strings["Image file is empty."] = "Mynda skrá er tóm."; +$a->strings["No photos selected"] = "Engar myndir valdar"; +$a->strings["Access to this item is restricted."] = "Aðgangur að þessum hlut hefur verið heftur"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Hlaða upp myndum"; +$a->strings["New album name: "] = "Nýtt nafn myndbókar:"; +$a->strings["or existing album name: "] = "eða fyrra nafn myndbókar:"; +$a->strings["Do not show a status post for this upload"] = "Ekki sýna færslu fyrir þessari upphölun"; +$a->strings["Show to Groups"] = "Birta hópum"; +$a->strings["Show to Contacts"] = "Birta tengiliðum"; +$a->strings["Private Photo"] = "Einkamynd"; +$a->strings["Public Photo"] = "Opinber mynd"; +$a->strings["Edit Album"] = "Breyta myndbók"; +$a->strings["Show Newest First"] = "Birta nýjast fyrst"; +$a->strings["Show Oldest First"] = "Birta elsta fyrst"; +$a->strings["View Photo"] = "Skoða mynd"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur."; +$a->strings["Photo not available"] = "Mynd ekki til"; +$a->strings["View photo"] = "Birta mynd"; +$a->strings["Edit photo"] = "Breyta mynd"; +$a->strings["Use as profile photo"] = "Nota sem forsíðu mynd"; +$a->strings["View Full Size"] = "Skoða í fullri stærð"; +$a->strings["Tags: "] = "Merki:"; +$a->strings["[Remove any tag]"] = "[Fjarlægja öll merki]"; +$a->strings["New album name"] = "Nýtt nafn myndbókar"; +$a->strings["Caption"] = "Yfirskrift"; +$a->strings["Add a Tag"] = "Bæta við merki"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["Private photo"] = "Einkamynd"; +$a->strings["Public photo"] = "Opinber mynd"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Skoða myndabók"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; +$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; +$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; +$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; +$a->strings["Your invitation ID: "] = "Boðskorta auðkenni:"; +$a->strings["Registration"] = "Nýskráning"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Tölvupóstur:"; +$a->strings["New Password:"] = "Nýtt aðgangsorð:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Staðfesta:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@\$sitename'."; +$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Account"] = "Notandi"; +$a->strings["Additional features"] = "Viðbótareiginleikar"; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Plugins"] = "Kerfiseiningar"; +$a->strings["Connected apps"] = "Tengd forrit"; +$a->strings["Remove account"] = "Henda tengilið"; +$a->strings["Missing some important data!"] = "Vantar mikilvæg gögn!"; +$a->strings["Update"] = "Uppfæra"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru."; +$a->strings["Email settings updated."] = "Stillingar póstfangs uppfærðar."; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt."; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = "Aðgangsorði breytt."; +$a->strings["Password update failed. Please try again."] = "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur."; +$a->strings[" Please use a shorter name."] = " Notaðu styttra nafn."; +$a->strings[" Name too short."] = "Nafn of stutt."; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = "Póstfang ógilt"; +$a->strings[" Cannot change to that email."] = "Ekki hægt að breyta yfir í þetta póstfang."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Stillingar uppfærðar."; +$a->strings["Add application"] = "Bæta við forriti"; +$a->strings["Save Settings"] = "Vista stillingar"; +$a->strings["Consumer Key"] = "Notenda lykill"; +$a->strings["Consumer Secret"] = "Notenda leyndarmál"; +$a->strings["Redirect"] = "Áframsenda"; +$a->strings["Icon url"] = "Táknmyndar slóð"; +$a->strings["You can't edit this application."] = "Þú getur ekki breytt þessu forriti."; +$a->strings["Connected Apps"] = "Tengd forrit"; +$a->strings["Client key starts with"] = "Lykill viðskiptavinar byrjar á"; +$a->strings["No name"] = "Ekkert nafn"; +$a->strings["Remove authorization"] = "Fjarlæga auðkenningu"; +$a->strings["No Plugin settings configured"] = "Engar stillingar í kerfiseiningu uppsettar"; +$a->strings["Plugin Settings"] = "Stillingar kerfiseiningar"; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Innbyggður stuðningur fyrir %s tenging er%s"; +$a->strings["enabled"] = "kveikt"; +$a->strings["disabled"] = "slökkt"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "Slökkt hefur verið á tölvupóst aðgang á þessum þjón."; +$a->strings["Email/Mailbox Setup"] = "Tölvupóstur stilling"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; +$a->strings["Last successful email check:"] = "Póstfang sannreynt síðast:"; +$a->strings["IMAP server name:"] = "IMAP þjónn:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Öryggi:"; +$a->strings["None"] = "Ekkert"; +$a->strings["Email login name:"] = "Notandanafn tölvupóstfangs:"; +$a->strings["Email password:"] = "Lykilorð tölvupóstfangs:"; +$a->strings["Reply-to address:"] = "Svarpóstfang:"; +$a->strings["Send public posts to all email contacts:"] = "Senda opinberar færslur á alla tölvupóst viðtakendur:"; +$a->strings["Action after import:"] = ""; +$a->strings["Move to folder"] = "Flytja yfir í skrásafn"; +$a->strings["Move to folder:"] = "Flytja yfir í skrásafn:"; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = "Útlits þema:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Endurhlaða vefsíðu á xx sekúndu fresti"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = ""; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "Þessi notandi er með venjulega persónulega forsíðu"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir einungis sem les-fylgjendur"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem vini"; +$a->strings["Private Forum [Experimental]"] = "Einkaspjallsvæði [á tilraunastigi]"; +$a->strings["Private forum - approved members only"] = "Einkaspjallsvæði - einungis skráðir meðlimir"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi."; +$a->strings["Publish your default profile in your local site directory?"] = "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?"; +$a->strings["Publish your default profile in the global social directory?"] = "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?"; +$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?"] = "Leyfa vinum að deila á forsíðuna þína?"; +$a->strings["Allow friends to tag your posts?"] = "Leyfa vinum að merkja færslurnar þínar?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? "; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Forsíðu hefur ekki verið gefinn út."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Sjálfkrafa fyrna færslu eftir hvað marga daga:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tómar færslur renna ekki út. Útrunnum færslum er eytt"; +$a->strings["Advanced expiration settings"] = "Ítarlegar stillingar fyrningatíma"; +$a->strings["Advanced Expiration"] = "Flókin fyrning"; +$a->strings["Expire posts:"] = "Fyrna færslur:"; +$a->strings["Expire personal notes:"] = "Fyrna einka glósur:"; +$a->strings["Expire starred posts:"] = "Fyrna stjörnumerktar færslur:"; +$a->strings["Expire photos:"] = "Fyrna myndum:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Stillingar aðgangs"; +$a->strings["Password Settings"] = "Stillingar aðgangsorða"; +$a->strings["Leave password fields blank unless changing"] = "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta"; +$a->strings["Current Password:"] = ""; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Grunnstillingar"; +$a->strings["Email Address:"] = "Póstfang:"; +$a->strings["Your Timezone:"] = "Þitt tímabelti:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Sjálfgefin staðsetning færslu:"; +$a->strings["Use Browser Location:"] = "Nota vafra staðsetningu:"; +$a->strings["Security and Privacy Settings"] = "Öryggis og friðhelgistillingar"; +$a->strings["Maximum Friend Requests/Day:"] = "Hámarks vinabeiðnir á dag:"; +$a->strings["(to prevent spam abuse)"] = "(til að koma í veg fyrir rusl misnotkun)"; +$a->strings["Default Post Permissions"] = "Sjálfgefnar aðgangstýring á færslum"; +$a->strings["(click to open/close)"] = "(ýttu á til að opna/loka)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Stillingar á tilkynningum"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = "samþykki vinabeiðni"; +$a->strings["joining a forum/community"] = "ganga til liðs við hóp/samfélag"; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Senda tilkynninga tölvupóst þegar:"; +$a->strings["You receive an introduction"] = "Þú færð kynningu"; +$a->strings["Your introductions are confirmed"] = "Kynningarnar þínar eru samþykktar"; +$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þínn"; +$a->strings["Someone writes a followup comment"] = "Einhver skrifar athugasemd á færslu hjá þér"; +$a->strings["You receive a private message"] = "Þú færð einkaskilaboð"; +$a->strings["You receive a friend suggestion"] = "Þér hefur borist vina uppástunga"; +$a->strings["You are tagged in a post"] = "Þú varst merkt(ur) í færslu"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = ""; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Invalid request."] = "Ógild fyrirspurn."; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; $a->strings["Theme settings updated."] = "Þemastillingar uppfærðar."; $a->strings["Site"] = "Vefur"; $a->strings["Users"] = "Notendur"; -$a->strings["Plugins"] = "Kerfiseiningar"; $a->strings["Themes"] = "Þemu"; -$a->strings["Additional features"] = "Viðbótareiginleikar"; $a->strings["DB updates"] = "Gagnagrunnsuppfærslur"; $a->strings["Inspect Queue"] = ""; $a->strings["Federation Statistics"] = ""; @@ -950,6 +1464,7 @@ $a->strings["check webfinger"] = ""; $a->strings["Plugin Features"] = "Eiginleikar kerfiseiningar"; $a->strings["diagnostics"] = "greining"; $a->strings["User registrations waiting for confirmation"] = "Notenda nýskráningar bíða samþykkis"; +$a->strings["unknown"] = ""; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; $a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; $a->strings["Administration"] = "Stjórnun"; @@ -960,6 +1475,8 @@ $a->strings["Recipient Profile"] = "Forsíða viðtakanda"; $a->strings["Created"] = "Búið til"; $a->strings["Last Tried"] = "Síðast prófað"; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; $a->strings["Normal Account"] = "Venjulegur notandi"; $a->strings["Soapbox Account"] = "Sápukassa notandi"; $a->strings["Community/Celebrity Account"] = "Hópa-/Stjörnusíða"; @@ -975,7 +1492,6 @@ $a->strings["Active plugins"] = "Virkar kerfiseiningar"; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["RINO2 needs mcrypt php extension to work."] = ""; $a->strings["Site settings updated."] = "Stillingar vefsvæðis uppfærðar."; -$a->strings["No special theme for mobile devices"] = ""; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; @@ -995,8 +1511,6 @@ $a->strings["Open"] = "Opið"; $a->strings["No SSL policy, links will track page SSL state"] = ""; $a->strings["Force all links to use SSL"] = ""; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; -$a->strings["Save Settings"] = "Vista stillingar"; -$a->strings["Registration"] = "Nýskráning"; $a->strings["File upload"] = "Hlaða upp skrá"; $a->strings["Policies"] = "Stefna"; $a->strings["Auto Discovered Contact Directory"] = ""; @@ -1154,6 +1668,10 @@ $a->strings["Maximum number of parallel workers"] = ""; $a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; $a->strings["Don't use 'proc_open' with the worker"] = ""; $a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; $a->strings["Update has been marked successful"] = "Uppfærsla merkt sem tókst"; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -1183,13 +1701,13 @@ $a->strings["User '%s' blocked"] = "Notanda '%s' settur í bann"; $a->strings["Register date"] = "Skráningar dagsetning"; $a->strings["Last login"] = "Síðast innskráður"; $a->strings["Last item"] = "Síðasta"; -$a->strings["Account"] = "Notandi"; $a->strings["Add User"] = ""; $a->strings["select all"] = "velja alla"; $a->strings["User registrations waiting for confirm"] = "Skráning notanda býður samþykkis"; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Dagsetning beiðnar"; $a->strings["No registrations."] = "Engin skráning"; +$a->strings["Note from the user"] = ""; $a->strings["Deny"] = "Hafnað"; $a->strings["Block"] = "Banna"; $a->strings["Unblock"] = "Afbanna"; @@ -1219,6 +1737,8 @@ $a->strings["No themes found on the system. They should be paced in %1\$s"] = "" $a->strings["[Experimental]"] = "[Tilraun]"; $a->strings["[Unsupported]"] = "[Óstudd]"; $a->strings["Log settings updated."] = "Stillingar atburðaskrár uppfærðar. "; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; $a->strings["Clear"] = "Hreinsa"; $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Atburðaskrá"; @@ -1226,203 +1746,148 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Stig atburðaskráningar"; $a->strings["PHP logging"] = ""; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; $a->strings["Lock feature %s"] = ""; $a->strings["Manage Additional Features"] = ""; -$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 %s"] = ""; -$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; -$a->strings["No friends to display."] = "Engir vinir til að birta."; -$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; -$a->strings["User not found"] = ""; -$a->strings["This calendar format is not supported"] = ""; -$a->strings["No exportable data found"] = ""; -$a->strings["calendar"] = ""; -$a->strings["No such group"] = "Hópur ekki til"; -$a->strings["Group is empty"] = "Hópur er tómur"; -$a->strings["Group: %s"] = ""; -$a->strings["This entry was edited"] = ""; -$a->strings["%d comment"] = array( - 0 => "%d ummæli", - 1 => "%d ummæli", +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", ); -$a->strings["Private Message"] = "Einkaskilaboð"; -$a->strings["I like this (toggle)"] = "Mér líkar þetta (kveikja/slökkva)"; -$a->strings["like"] = "líkar"; -$a->strings["I don't like this (toggle)"] = "Mér líkar þetta ekki (kveikja/slökkva)"; -$a->strings["dislike"] = "mislíkar"; -$a->strings["Share this"] = "Deila þessu"; -$a->strings["share"] = "deila"; -$a->strings["This is you"] = "Þetta ert þú"; -$a->strings["Bold"] = "Feitletrað"; -$a->strings["Italic"] = "Skáletrað"; -$a->strings["Underline"] = "Undirstrikað"; -$a->strings["Quote"] = "Gæsalappir"; -$a->strings["Code"] = "Kóði"; -$a->strings["Image"] = "Mynd"; -$a->strings["Link"] = "Tengill"; -$a->strings["Video"] = "Myndband"; -$a->strings["Edit"] = "Breyta"; -$a->strings["add star"] = "bæta við stjörnu"; -$a->strings["remove star"] = "eyða stjörnu"; -$a->strings["toggle star status"] = "Kveikja/slökkva á stjörnu"; -$a->strings["starred"] = "stjörnumerkt"; -$a->strings["add tag"] = "bæta við merki"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = "hunsað"; -$a->strings["save to folder"] = "vista í möppu"; -$a->strings["I will attend"] = ""; -$a->strings["I will not attend"] = ""; -$a->strings["I might attend"] = ""; -$a->strings["to"] = "við"; -$a->strings["Wall-to-Wall"] = "vegg við vegg"; -$a->strings["via Wall-To-Wall:"] = "gegnum vegg við vegg"; -$a->strings["Resubscribing to OStatus contacts"] = ""; -$a->strings["Error"] = ""; -$a->strings["Done"] = "Lokið"; -$a->strings["Keep this window open until done."] = ""; -$a->strings["No potential page delegates located."] = "Engir mögulegir viðtakendur síðunnar fundust."; -$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."] = ""; -$a->strings["Existing Page Managers"] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = "Bæta við"; -$a->strings["No entries."] = "Engar færslur."; -$a->strings["Do you really want to delete this video?"] = ""; -$a->strings["Delete Video"] = ""; -$a->strings["No videos selected"] = ""; -$a->strings["Access to this item is restricted."] = "Aðgangur að þessum hlut hefur verið heftur"; -$a->strings["View Album"] = "Skoða myndabók"; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; -$a->strings["Profile deleted."] = "Forsíðu eytt."; -$a->strings["Profile-"] = "Forsíða-"; -$a->strings["New profile created."] = "Ný forsíða búinn til."; -$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; -$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Work/Employment"] = ""; -$a->strings["Religion"] = ""; -$a->strings["Political Views"] = ""; -$a->strings["Gender"] = ""; -$a->strings["Sexual Preference"] = ""; -$a->strings["Homepage"] = ""; -$a->strings["Interests"] = ""; -$a->strings["Address"] = ""; -$a->strings["Location"] = ""; -$a->strings["Profile updated."] = "Forsíða uppfærð."; -$a->strings[" and "] = "og"; -$a->strings["public profile"] = "Opinber forsíða"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hefur uppfært %2\$s, með því að breyta %3\$s."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["No"] = "Nei"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða-/vinalista á þessari forsíðu?"; -$a->strings["Show more profile fields:"] = ""; -$a->strings["Profile Actions"] = ""; -$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; -$a->strings["Change Profile Photo"] = ""; -$a->strings["View this profile"] = "Skoða þessa forsíðu"; -$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; -$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; -$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Relation"] = ""; -$a->strings["Upload Profile Photo"] = "Hlaða upp forsíðu mynd"; -$a->strings["Your Gender:"] = "Kyn:"; -$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; -$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; -$a->strings["Profile Name:"] = "Forsíðu nafn:"; -$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
                                              Hún verður sjáanleg öðrum sem nota alnetið."; -$a->strings["Your Full Name:"] = "Fullt nafn:"; -$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; -$a->strings["Street Address:"] = "Gata:"; -$a->strings["Locality/City:"] = "Bær/Borg:"; -$a->strings["Region/State:"] = "Svæði/Sýsla"; -$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = ""; -$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; -$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; -$a->strings["Religious Views:"] = "Trúarskoðanir"; -$a->strings["Public Keywords:"] = "Opinber leitarorð:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; -$a->strings["Private Keywords:"] = "Einka leitarorð:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; -$a->strings["Musical interests"] = "Tónlistarsmekkur"; -$a->strings["Books, literature"] = "Bækur, bókmenntir"; -$a->strings["Television"] = "Sjónvarp"; -$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; -$a->strings["Hobbies/Interests"] = "Áhugamál"; -$a->strings["Love/romance"] = "Ást/rómantík"; -$a->strings["Work/employment"] = "Atvinna:"; -$a->strings["School/education"] = "Skóli/menntun"; -$a->strings["Contact information and Social Networks"] = "Tengiliðaupplýsingar og samfélagsnet"; -$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; -$a->strings["Credits"] = ""; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; -$a->strings["- select -"] = "- veldu -"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Recent Photos"] = "Nýlegar myndir"; -$a->strings["Upload New Photos"] = "Hlaða upp nýjum myndum"; -$a->strings["everybody"] = "allir"; -$a->strings["Contact information unavailable"] = "Tengiliða upplýsingar ekki til"; -$a->strings["Album not found."] = "Myndabók finnst ekki."; -$a->strings["Delete Album"] = "Fjarlægja myndabók"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; -$a->strings["Delete Photo"] = "Fjarlægja mynd"; -$a->strings["Do you really want to delete this photo?"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = "mynd"; -$a->strings["Image file is empty."] = "Mynda skrá er tóm."; -$a->strings["No photos selected"] = "Engar myndir valdar"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["Upload Photos"] = "Hlaða upp myndum"; -$a->strings["New album name: "] = "Nýtt nafn myndbókar:"; -$a->strings["or existing album name: "] = "eða fyrra nafn myndbókar:"; -$a->strings["Do not show a status post for this upload"] = "Ekki sýna færslu fyrir þessari upphölun"; -$a->strings["Show to Groups"] = "Birta hópum"; -$a->strings["Show to Contacts"] = "Birta tengiliðum"; -$a->strings["Private Photo"] = "Einkamynd"; -$a->strings["Public Photo"] = "Opinber mynd"; -$a->strings["Edit Album"] = "Breyta myndbók"; -$a->strings["Show Newest First"] = "Birta nýjast fyrst"; -$a->strings["Show Oldest First"] = "Birta elsta fyrst"; -$a->strings["View Photo"] = "Skoða mynd"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur."; -$a->strings["Photo not available"] = "Mynd ekki til"; -$a->strings["View photo"] = "Birta mynd"; -$a->strings["Edit photo"] = "Breyta mynd"; -$a->strings["Use as profile photo"] = "Nota sem forsíðu mynd"; -$a->strings["View Full Size"] = "Skoða í fullri stærð"; -$a->strings["Tags: "] = "Merki:"; -$a->strings["[Remove any tag]"] = "[Fjarlægja öll merki]"; -$a->strings["New album name"] = "Nýtt nafn myndbókar"; -$a->strings["Caption"] = "Yfirskrift"; -$a->strings["Add a Tag"] = "Bæta við merki"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda"; -$a->strings["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; -$a->strings["Private photo"] = "Einkamynd"; -$a->strings["Public photo"] = "Opinber mynd"; -$a->strings["Map"] = ""; +$a->strings["Could not access contact record."] = "Tókst ekki að ná í uppl. um tengilið"; +$a->strings["Could not locate selected profile."] = "Tókst ekki að staðsetja valinn forsíðu"; +$a->strings["Contact updated."] = "Tengiliður uppfærður"; +$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; +$a->strings["Contact has been blocked"] = "Lokað á tengilið"; +$a->strings["Contact has been unblocked"] = "Opnað á tengilið"; +$a->strings["Contact has been ignored"] = "Tengiliður hunsaður"; +$a->strings["Contact has been unignored"] = "Tengiliður afhunsaður"; +$a->strings["Contact has been archived"] = "Tengiliður settur í geymslu"; +$a->strings["Contact has been unarchived"] = "Tengiliður tekinn úr geymslu"; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Viltu í alvörunni eyða þessum tengilið?"; +$a->strings["Contact has been removed."] = "Tengiliður fjarlægður"; +$a->strings["You are mutual friends with %s"] = "Þú ert gagnkvæmur vinur %s"; +$a->strings["You are sharing with %s"] = "Þú ert að deila með %s"; +$a->strings["%s is sharing with you"] = "%s er að deila með þér"; +$a->strings["Private communications are not available for this contact."] = "Einkasamtal ekki í boði fyrir þennan"; +$a->strings["(Update was successful)"] = "(uppfærsla tókst)"; +$a->strings["(Update was not successful)"] = "(uppfærsla tókst ekki)"; +$a->strings["Suggest friends"] = "Stinga uppá vinum"; +$a->strings["Network type: %s"] = "Net tegund: %s"; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Fetch further information for feeds"] = "Ná í ítarlegri upplýsingar um fréttaveitur"; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Forsíðu sjáanleiki"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti"; +$a->strings["Contact Information / Notes"] = "Uppl. um tengilið / minnisatriði"; +$a->strings["Edit contact notes"] = "Breyta minnispunktum tengiliðs "; +$a->strings["Block/Unblock contact"] = "útiloka/opna á tengilið"; +$a->strings["Ignore contact"] = "Hunsa tengilið"; +$a->strings["Repair URL settings"] = "Gera við stillingar á slóðum"; +$a->strings["View conversations"] = "Skoða samtöl"; +$a->strings["Last update:"] = "Síðasta uppfærsla:"; +$a->strings["Update public posts"] = "Uppfæra opinberar færslur"; +$a->strings["Update now"] = "Uppfæra núna"; +$a->strings["Unignore"] = "Byrja að fylgjast með á ný"; +$a->strings["Currently blocked"] = "Útilokaður sem stendur"; +$a->strings["Currently ignored"] = "Hunsaður sem stendur"; +$a->strings["Currently archived"] = "Í geymslu"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Uppástungur"; +$a->strings["Suggest potential friends"] = ""; +$a->strings["Show all contacts"] = "Sýna alla tengiliði"; +$a->strings["Unblocked"] = "Afhunsað"; +$a->strings["Only show unblocked contacts"] = ""; +$a->strings["Blocked"] = "Banna"; +$a->strings["Only show blocked contacts"] = ""; +$a->strings["Ignored"] = "Hunsa"; +$a->strings["Only show ignored contacts"] = ""; +$a->strings["Archived"] = "Í geymslu"; +$a->strings["Only show archived contacts"] = "Aðeins sýna geymda tengiliði"; +$a->strings["Hidden"] = "Falinn"; +$a->strings["Only show hidden contacts"] = "Aðeins sýna falda tengiliði"; +$a->strings["Search your contacts"] = "Leita í þínum vinum"; +$a->strings["Archive"] = "Setja í geymslu"; +$a->strings["Unarchive"] = "Taka úr geymslu"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Skoða alla tengiliði"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Mutual Friendship"] = "Sameiginlegur vinskapur"; +$a->strings["is a fan of yours"] = "er fylgjandi þinn"; +$a->strings["you are a fan of"] = "þú er fylgjandi"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Delete contact"] = "Eyða tengilið"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá ytri vef."; +$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá ytri vef:"; +$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; +$a->strings["Remote site reported: "] = "Ytri vefur svaraði:"; +$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Bíddu aðeins og reyndu svo aftur."; +$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; +$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliðamynd."; +$a->strings["No user record found for '%s' "] = "Engin notandafærsla fannst fyrir '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; +$a->strings["Contact record was not found for you on our site."] = "Tengiliðafærslan þín fannst ekki á þjóninum okkar."; +$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; +$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; +$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s hefur gengið til liðs við %2\$s"; +$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; +$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", + 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", +); +$a->strings["Introduction complete."] = "Kynning tilbúinn."; +$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; +$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; +$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; +$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; +$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; +$a->strings["Invalid locator"] = "Ógild staðsetning"; +$a->strings["Invalid email address."] = "Ógilt póstfang."; +$a->strings["This account has not been configured for email. Request failed."] = ""; +$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; +$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; +$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; +$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi."; +$a->strings["Confirm"] = "Staðfesta"; +$a->strings["Hide this contact"] = "Fela þennan tengilið"; +$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Staðfestu kynninguna/tengibeiðnina við %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:"; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Vinabeiðni/Tengibeiðni"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca"; +$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; +$a->strings["Does %s know you?"] = "Þekkir %s þig?"; +$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; +$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."] = ""; +$a->strings["Your Identity Address:"] = "Auðkennisnetfang þitt:"; +$a->strings["Submit Request"] = "Senda beiðni"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Tengilið bætt við"; $a->strings["Friendica Communications Server - Setup"] = ""; $a->strings["Could not connect to database."] = "Gat ekki tengst gagnagrunn."; $a->strings["Could not create table."] = "Gat ekki búið til töflu."; @@ -1467,6 +1932,7 @@ $a->strings["mysqli PHP module"] = "mysqli PHP eining"; $a->strings["mb_string PHP module"] = "mb_string PHP eining"; $a->strings["mcrypt PHP module"] = ""; $a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; $a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite eining"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. "; $a->strings["Error: libCURL PHP module required but not installed."] = "Villa: libCurl PHP eining er skilyrði og er ekki uppsett."; @@ -1475,6 +1941,7 @@ $a->strings["Error: openssl PHP module required but not installed."] = "Villa: o $a->strings["Error: mysqli PHP module required but not installed."] = "Villa: mysqli PHP eining er skilyrði og er ekki uppsett"; $a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett."; $a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; $a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; $a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; $a->strings["mcrypt_create_iv() function"] = ""; @@ -1491,154 +1958,24 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = ""; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; $a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is not installed"] = ""; $a->strings["ImageMagick PHP extension is installed"] = ""; $a->strings["ImageMagick supports GIF"] = ""; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins."; $a->strings["

                                              What next

                                              "] = ""; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Item not available."] = "Atriði ekki í boði."; -$a->strings["Item was not found."] = "Atriði fannst ekki"; -$a->strings["%d contact edited."] = array( +$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; +$a->strings["Empty post discarded."] = "Tóm færsla eytt."; +$a->strings["System error. Post not saved."] = "Kerfisvilla. Færsla ekki vistuð."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; +$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; +$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( 0 => "", 1 => "", ); -$a->strings["Could not access contact record."] = "Tókst ekki að ná í uppl. um tengilið"; -$a->strings["Could not locate selected profile."] = "Tókst ekki að staðsetja valinn forsíðu"; -$a->strings["Contact updated."] = "Tengiliður uppfærður"; -$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; -$a->strings["Contact has been blocked"] = "Lokað á tengilið"; -$a->strings["Contact has been unblocked"] = "Opnað á tengilið"; -$a->strings["Contact has been ignored"] = "Tengiliður hunsaður"; -$a->strings["Contact has been unignored"] = "Tengiliður afhunsaður"; -$a->strings["Contact has been archived"] = "Tengiliður settur í geymslu"; -$a->strings["Contact has been unarchived"] = "Tengiliður tekinn úr geymslu"; -$a->strings["Do you really want to delete this contact?"] = "Viltu í alvörunni eyða þessum tengilið?"; -$a->strings["Contact has been removed."] = "Tengiliður fjarlægður"; -$a->strings["You are mutual friends with %s"] = "Þú ert gagnkvæmur vinur %s"; -$a->strings["You are sharing with %s"] = "Þú ert að deila með %s"; -$a->strings["%s is sharing with you"] = "%s er að deila með þér"; -$a->strings["Private communications are not available for this contact."] = "Einkasamtal ekki í boði fyrir þennan"; -$a->strings["(Update was successful)"] = "(uppfærsla tókst)"; -$a->strings["(Update was not successful)"] = "(uppfærsla tókst ekki)"; -$a->strings["Suggest friends"] = "Stinga uppá vinum"; -$a->strings["Network type: %s"] = "Net tegund: %s"; -$a->strings["Communications lost with this contact!"] = ""; -$a->strings["Fetch further information for feeds"] = "Ná í ítarlegri upplýsingar um fréttaveitur"; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Profile Visibility"] = "Forsíðu sjáanleiki"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti"; -$a->strings["Contact Information / Notes"] = "Uppl. um tengilið / minnisatriði"; -$a->strings["Edit contact notes"] = "Breyta minnispunktum tengiliðs "; -$a->strings["Block/Unblock contact"] = "útiloka/opna á tengilið"; -$a->strings["Ignore contact"] = "Hunsa tengilið"; -$a->strings["Repair URL settings"] = "Gera við stillingar á slóðum"; -$a->strings["View conversations"] = "Skoða samtöl"; -$a->strings["Last update:"] = "Síðasta uppfærsla:"; -$a->strings["Update public posts"] = "Uppfæra opinberar færslur"; -$a->strings["Update now"] = "Uppfæra núna"; -$a->strings["Unignore"] = "Byrja að fylgjast með á ný"; -$a->strings["Currently blocked"] = "Útilokaður sem stendur"; -$a->strings["Currently ignored"] = "Hunsaður sem stendur"; -$a->strings["Currently archived"] = "Í geymslu"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum"; -$a->strings["Notification for new posts"] = ""; -$a->strings["Send a notification of every new post of this contact"] = ""; -$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["Actions"] = ""; -$a->strings["Contact Settings"] = ""; -$a->strings["Suggestions"] = "Uppástungur"; -$a->strings["Suggest potential friends"] = ""; -$a->strings["All Contacts"] = "Allir tengiliðir"; -$a->strings["Show all contacts"] = "Sýna alla tengiliði"; -$a->strings["Unblocked"] = "Afhunsað"; -$a->strings["Only show unblocked contacts"] = ""; -$a->strings["Blocked"] = "Banna"; -$a->strings["Only show blocked contacts"] = ""; -$a->strings["Ignored"] = "Hunsa"; -$a->strings["Only show ignored contacts"] = ""; -$a->strings["Archived"] = "Í geymslu"; -$a->strings["Only show archived contacts"] = "Aðeins sýna geymda tengiliði"; -$a->strings["Hidden"] = "Falinn"; -$a->strings["Only show hidden contacts"] = "Aðeins sýna falda tengiliði"; -$a->strings["Search your contacts"] = "Leita í þínum vinum"; -$a->strings["Update"] = "Uppfæra"; -$a->strings["Archive"] = "Setja í geymslu"; -$a->strings["Unarchive"] = "Taka úr geymslu"; -$a->strings["Batch Actions"] = ""; -$a->strings["View all contacts"] = "Skoða alla tengiliði"; -$a->strings["Common Friends"] = "Sameiginlegir vinir"; -$a->strings["View all common friends"] = ""; -$a->strings["Advanced Contact Settings"] = ""; -$a->strings["Mutual Friendship"] = "Sameiginlegur vinskapur"; -$a->strings["is a fan of yours"] = "er fylgjandi þinn"; -$a->strings["you are a fan of"] = "þú er fylgjandi"; -$a->strings["Toggle Blocked status"] = ""; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Toggle Archive status"] = ""; -$a->strings["Delete contact"] = "Eyða tengilið"; -$a->strings["Submit Request"] = "Senda beiðni"; -$a->strings["You already added this contact."] = ""; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; -$a->strings["OStatus support is disabled. Contact can't be added."] = ""; -$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; -$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; -$a->strings["Does %s know you?"] = "Þekkir %s þig?"; -$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; -$a->strings["Your Identity Address:"] = "Auðkennisnetfang þitt:"; -$a->strings["Contact added"] = "Tengilið bætt við"; -$a->strings["Applications"] = "Forrit"; -$a->strings["No installed applications."] = "Engin uppsett forrit"; -$a->strings["Do you really want to delete this suggestion?"] = ""; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir."; -$a->strings["Ignore/Hide"] = "Hunsa/Fela"; -$a->strings["Not Extended"] = ""; -$a->strings["Item has been removed."] = "Atriði hefur verið fjarlægt."; -$a->strings["No contacts in common."] = ""; -$a->strings["Welcome to Friendica"] = "Velkomin(n) á Friendica"; -$a->strings["New Member Checklist"] = "Nýr notandi verklisti"; -$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."] = ""; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$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."] = ""; -$a->strings["Go to Your Settings"] = ""; -$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."] = ""; -$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."] = "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig."; -$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."] = "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd."; -$a->strings["Edit Your Profile"] = ""; -$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."] = "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum."; -$a->strings["Profile Keywords"] = ""; -$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."] = "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap."; -$a->strings["Connecting"] = "Tengist"; -$a->strings["Importing Emails"] = ""; -$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"] = "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns"; -$a->strings["Go to Your Contacts Page"] = ""; -$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."] = "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum."; -$a->strings["Go to Your Site's Directory"] = ""; -$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."] = "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína."; -$a->strings["Finding New People"] = ""; -$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."] = ""; -$a->strings["Group Your 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."] = "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni."; -$a->strings["Why Aren't My Posts Public?"] = ""; -$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."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika."; -$a->strings["Remove My Account"] = "Eyða þessum notanda"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; -$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Item not found"] = "Atriði fannst ekki"; -$a->strings["Edit post"] = "Breyta skilaboðum"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti.", - 1 => "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Einka samtöl send á þennan hóp eiga á hættu að verða opinber."; +$a->strings["Messages in this group won't be send to these receivers."] = ""; $a->strings["Private messages to this person are at risk of public disclosure."] = "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber."; $a->strings["Invalid contact."] = "Ógildur tengiliður."; $a->strings["Commented Order"] = "Athugasemdar röð"; @@ -1652,313 +1989,10 @@ $a->strings["Shared Links"] = ""; $a->strings["Interesting Links"] = "Áhugaverðir tenglar"; $a->strings["Starred"] = "Stjörnumerkt"; $a->strings["Favourite Posts"] = "Uppáhalds færslur"; -$a->strings["Not available."] = "Ekki í boði."; -$a->strings["Time Conversion"] = "Tíma leiðréttir"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum."; -$a->strings["UTC time: %s"] = "Máltími: %s"; -$a->strings["Current timezone: %s"] = "Núverandi tímabelti: %s"; -$a->strings["Converted localtime: %s"] = "Umbreyttur staðartími: %s"; -$a->strings["Please select your timezone:"] = "Veldu tímabeltið þitt:"; -$a->strings["The post was created"] = ""; -$a->strings["Group created."] = "Hópur stofnaður"; -$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; -$a->strings["Group not found."] = "Hópur fannst ekki."; -$a->strings["Group name changed."] = "Hópur endurskýrður."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; -$a->strings["Group removed."] = "Hópi eytt."; -$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; -$a->strings["Group Editor"] = "Hópa sýslari"; -$a->strings["Members"] = "Aðilar"; -$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; -$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", - 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", -); -$a->strings["Introduction complete."] = "Kynning tilbúinn."; -$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; -$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; -$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; -$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; -$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; -$a->strings["Invalid locator"] = "Ógild staðsetning"; -$a->strings["Invalid email address."] = "Ógilt póstfang."; -$a->strings["This account has not been configured for email. Request failed."] = ""; -$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; -$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; -$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; -$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; -$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi."; -$a->strings["Confirm"] = "Staðfesta"; -$a->strings["Hide this contact"] = "Fela þennan tengilið"; -$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Staðfestu kynninguna/tengibeiðnina við %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:"; -$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."] = ""; -$a->strings["Friend/Connection Request"] = "Vinabeiðni/Tengibeiðni"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; -$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; -$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; -$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; -$a->strings["Upload File:"] = "Hlaða upp skrá:"; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload"] = "Hlaða upp"; -$a->strings["or"] = "eða"; -$a->strings["skip this step"] = "sleppa þessu skrefi"; -$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; -$a->strings["Crop Image"] = "Skera af mynd"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; -$a->strings["Done Editing"] = "Breyting kláruð"; -$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; -$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; -$a->strings["Registration successful."] = ""; -$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; -$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; -$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; -$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; -$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; -$a->strings["Your invitation ID: "] = "Boðskorta auðkenni:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; -$a->strings["Your Email Address: "] = "Tölvupóstur:"; -$a->strings["New Password:"] = "Nýtt aðgangsorð:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Confirm:"] = "Staðfesta:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@\$sitename'."; -$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Connected apps"] = "Tengd forrit"; -$a->strings["Remove account"] = "Henda tengilið"; -$a->strings["Missing some important data!"] = "Vantar mikilvæg gögn!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru."; -$a->strings["Email settings updated."] = "Stillingar póstfangs uppfærðar."; -$a->strings["Features updated"] = ""; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt."; -$a->strings["Wrong password."] = ""; -$a->strings["Password changed."] = "Aðgangsorði breytt."; -$a->strings["Password update failed. Please try again."] = "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur."; -$a->strings[" Please use a shorter name."] = " Notaðu styttra nafn."; -$a->strings[" Name too short."] = "Nafn of stutt."; -$a->strings["Wrong Password"] = ""; -$a->strings[" Not valid email."] = "Póstfang ógilt"; -$a->strings[" Cannot change to that email."] = "Ekki hægt að breyta yfir í þetta póstfang."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = "Stillingar uppfærðar."; -$a->strings["Add application"] = "Bæta við forriti"; -$a->strings["Consumer Key"] = "Notenda lykill"; -$a->strings["Consumer Secret"] = "Notenda leyndarmál"; -$a->strings["Redirect"] = "Áframsenda"; -$a->strings["Icon url"] = "Táknmyndar slóð"; -$a->strings["You can't edit this application."] = "Þú getur ekki breytt þessu forriti."; -$a->strings["Connected Apps"] = "Tengd forrit"; -$a->strings["Client key starts with"] = "Lykill viðskiptavinar byrjar á"; -$a->strings["No name"] = "Ekkert nafn"; -$a->strings["Remove authorization"] = "Fjarlæga auðkenningu"; -$a->strings["No Plugin settings configured"] = "Engar stillingar í kerfiseiningu uppsettar"; -$a->strings["Plugin Settings"] = "Stillingar kerfiseiningar"; -$a->strings["Additional Features"] = ""; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$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."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Default group for OStatus contacts"] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Innbyggður stuðningur fyrir %s tenging er%s"; -$a->strings["enabled"] = "kveikt"; -$a->strings["disabled"] = "slökkt"; -$a->strings["GNU Social (OStatus)"] = ""; -$a->strings["Email access is disabled on this site."] = "Slökkt hefur verið á tölvupóst aðgang á þessum þjón."; -$a->strings["Email/Mailbox Setup"] = "Tölvupóstur stilling"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; -$a->strings["Last successful email check:"] = "Póstfang sannreynt síðast:"; -$a->strings["IMAP server name:"] = "IMAP þjónn:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Öryggi:"; -$a->strings["None"] = "Ekkert"; -$a->strings["Email login name:"] = "Notandanafn tölvupóstfangs:"; -$a->strings["Email password:"] = "Lykilorð tölvupóstfangs:"; -$a->strings["Reply-to address:"] = "Svarpóstfang:"; -$a->strings["Send public posts to all email contacts:"] = "Senda opinberar færslur á alla tölvupóst viðtakendur:"; -$a->strings["Action after import:"] = ""; -$a->strings["Move to folder"] = "Flytja yfir í skrásafn"; -$a->strings["Move to folder:"] = "Flytja yfir í skrásafn:"; -$a->strings["Display Settings"] = ""; -$a->strings["Display Theme:"] = "Útlits þema:"; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = "Endurhlaða vefsíðu á xx sekúndu fresti"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = ""; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Calendar"] = ""; -$a->strings["Beginning of week:"] = ""; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["General Theme Settings"] = ""; -$a->strings["Custom Theme Settings"] = ""; -$a->strings["Content Settings"] = ""; -$a->strings["Theme settings"] = ""; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = ""; -$a->strings["This account is a normal personal profile"] = "Þessi notandi er með venjulega persónulega forsíðu"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir einungis sem les-fylgjendur"; -$a->strings["Community Forum/Celebrity Account"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem les-skrif fylgjendur"; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem vini"; -$a->strings["Private Forum [Experimental]"] = "Einkaspjallsvæði [á tilraunastigi]"; -$a->strings["Private forum - approved members only"] = "Einkaspjallsvæði - einungis skráðir meðlimir"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi."; -$a->strings["Publish your default profile in your local site directory?"] = "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?"; -$a->strings["Publish your default profile in the global social directory?"] = "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?"; -$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?"] = "Leyfa vinum að deila á forsíðuna þína?"; -$a->strings["Allow friends to tag your posts?"] = "Leyfa vinum að merkja færslurnar þínar?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? "; -$a->strings["Permit unknown people to send you private mail?"] = ""; -$a->strings["Profile is not published."] = "Forsíðu hefur ekki verið gefinn út."; -$a->strings["Your Identity Address is '%s' or '%s'."] = ""; -$a->strings["Automatically expire posts after this many days:"] = "Sjálfkrafa fyrna færslu eftir hvað marga daga:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tómar færslur renna ekki út. Útrunnum færslum er eytt"; -$a->strings["Advanced expiration settings"] = "Ítarlegar stillingar fyrningatíma"; -$a->strings["Advanced Expiration"] = "Flókin fyrning"; -$a->strings["Expire posts:"] = "Fyrna færslur:"; -$a->strings["Expire personal notes:"] = "Fyrna einka glósur:"; -$a->strings["Expire starred posts:"] = "Fyrna stjörnumerktar færslur:"; -$a->strings["Expire photos:"] = "Fyrna myndum:"; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Stillingar aðgangs"; -$a->strings["Password Settings"] = "Stillingar aðgangsorða"; -$a->strings["Leave password fields blank unless changing"] = "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta"; -$a->strings["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = ""; -$a->strings["Basic Settings"] = "Grunnstillingar"; -$a->strings["Email Address:"] = "Póstfang:"; -$a->strings["Your Timezone:"] = "Þitt tímabelti:"; -$a->strings["Your Language:"] = ""; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; -$a->strings["Default Post Location:"] = "Sjálfgefin staðsetning færslu:"; -$a->strings["Use Browser Location:"] = "Nota vafra staðsetningu:"; -$a->strings["Security and Privacy Settings"] = "Öryggis og friðhelgistillingar"; -$a->strings["Maximum Friend Requests/Day:"] = "Hámarks vinabeiðnir á dag:"; -$a->strings["(to prevent spam abuse)"] = "(til að koma í veg fyrir rusl misnotkun)"; -$a->strings["Default Post Permissions"] = "Sjálfgefnar aðgangstýring á færslum"; -$a->strings["(click to open/close)"] = "(ýttu á til að opna/loka)"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Notification Settings"] = "Stillingar á tilkynningum"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = "samþykki vinabeiðni"; -$a->strings["joining a forum/community"] = "ganga til liðs við hóp/samfélag"; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Senda tilkynninga tölvupóst þegar:"; -$a->strings["You receive an introduction"] = "Þú færð kynningu"; -$a->strings["Your introductions are confirmed"] = "Kynningarnar þínar eru samþykktar"; -$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þínn"; -$a->strings["Someone writes a followup comment"] = "Einhver skrifar athugasemd á færslu hjá þér"; -$a->strings["You receive a private message"] = "Þú færð einkaskilaboð"; -$a->strings["You receive a friend suggestion"] = "Þér hefur borist vina uppástunga"; -$a->strings["You are tagged in a post"] = "Þú varst merkt(ur) í færslu"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$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["Number of daily wall messages for %s exceeded. Message failed."] = ""; -$a->strings["No recipient selected."] = "Engir viðtakendur valdir."; -$a->strings["Unable to check your home location."] = ""; -$a->strings["Message could not be sent."] = "Ekki tókst að senda skilaboð."; -$a->strings["Message collection failure."] = "Ekki tókst að sækja skilaboð."; -$a->strings["Message sent."] = "Skilaboð send."; -$a->strings["No recipient."] = ""; -$a->strings["Send Private Message"] = "Senda einkaskilaboð"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; -$a->strings["To:"] = "Til:"; -$a->strings["Subject:"] = "Efni:"; -$a->strings["link"] = "tengill"; -$a->strings["Authorize application connection"] = "Leyfa forriti að tengjast"; -$a->strings["Return to your app and insert this Securty Code:"] = "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar"; -$a->strings["Please login to continue."] = "Skráðu þig inn til að halda áfram."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?"; -$a->strings["Source (bbcode) text:"] = ""; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; -$a->strings["Source input: "] = ""; -$a->strings["bb2html (raw HTML): "] = "bb2html (hrátt 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): "] = ""; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; -$a->strings["Empty post discarded."] = "Tóm færsla eytt."; -$a->strings["System error. Post not saved."] = "Kerfisvilla. Færsla ekki vistuð."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; -$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; -$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; -$a->strings["Subscribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = ""; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["success"] = "tókst"; -$a->strings["failed"] = "mistókst"; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; -$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; -$a->strings["Do you really want to delete this message?"] = ""; -$a->strings["Message deleted."] = "Skilaboðum eytt."; -$a->strings["Conversation removed."] = "Samtali eytt."; -$a->strings["No messages."] = "Engin skilaboð."; -$a->strings["Message not available."] = "Ekki næst í skilaboð."; -$a->strings["Delete message"] = "Eyða skilaboðum"; -$a->strings["Delete conversation"] = "Eyða samtali"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Senda svar"; -$a->strings["Unknown sender - %s"] = ""; -$a->strings["You and %s"] = ""; -$a->strings["%s and You"] = ""; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["%d message"] = array( - 0 => "", - 1 => "", -); -$a->strings["Manage Identities and/or Pages"] = "Sýsla með notendur og/eða síður"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum."; -$a->strings["Select an identity to manage: "] = "Veldu notanda til að sýsla með:"; +$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; +$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; +$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; +$a->strings["No contacts."] = "Enginn tengiliður"; $a->strings["via"] = ""; $a->strings["Repeat the image"] = ""; $a->strings["Will repeat your image to fill the background."] = ""; @@ -1968,8 +2002,6 @@ $a->strings["Resize fill and-clip"] = ""; $a->strings["Resize to fill and retain aspect ratio."] = ""; $a->strings["Resize best fit"] = ""; $a->strings["Resize to best fit and retain aspect ratio."] = ""; -$a->strings["Remote"] = ""; -$a->strings["Visitor"] = ""; $a->strings["Default"] = ""; $a->strings["Note: "] = ""; $a->strings["Check image permissions if all users are allowed to visit the image"] = ""; @@ -1980,17 +2012,14 @@ $a->strings["Link color"] = "Litur tengils"; $a->strings["Set the background color"] = ""; $a->strings["Content background transparency"] = ""; $a->strings["Set the background image"] = ""; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set theme width"] = ""; -$a->strings["Color scheme"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; $a->strings["Alignment"] = ""; $a->strings["Left"] = ""; $a->strings["Center"] = ""; +$a->strings["Color scheme"] = ""; $a->strings["Posts font size"] = ""; $a->strings["Textareas font size"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set colour scheme"] = "Setja litar þema"; $a->strings["Community Profiles"] = ""; $a->strings["Last users"] = "Nýjustu notendurnir"; $a->strings["Find Friends"] = ""; @@ -2001,18 +2030,6 @@ $a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = ""; $a->strings["Community Pages"] = ""; $a->strings["Help or @NewHere ?"] = ""; -$a->strings["Your contacts"] = ""; -$a->strings["Your personal photos"] = "Einkamyndirnar þínar"; -$a->strings["Last likes"] = "Nýjustu \"líkar þetta\""; -$a->strings["Last photos"] = "Nýjustu myndirnar"; -$a->strings["Earth Layers"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = "Setja litar þema"; -$a->strings["Set zoomfactor for Earth Layer"] = ""; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; @@ -2020,3 +2037,16 @@ $a->strings["darkzero"] = ""; $a->strings["comix"] = ""; $a->strings["slackr"] = ""; $a->strings["Variations"] = ""; +$a->strings["Delete this item?"] = "Eyða þessu atriði?"; +$a->strings["show fewer"] = "birta minna"; +$a->strings["Update %s failed. See error logs."] = "Uppfærsla á %s mistókst. Skoðaðu villuannál."; +$a->strings["Create a New Account"] = "Stofna nýjan notanda"; +$a->strings["Password: "] = "Aðgangsorð: "; +$a->strings["Remember me"] = "Muna eftir mér"; +$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID: "; +$a->strings["Forgot your password?"] = "Gleymt lykilorð?"; +$a->strings["Website Terms of Service"] = "Þjónustuskilmálar vefsvæðis"; +$a->strings["terms of service"] = "þjónustuskilmálar"; +$a->strings["Website Privacy Policy"] = "Persónuverndarstefna"; +$a->strings["privacy policy"] = "persónuverndarstefna"; +$a->strings["toggle mobile"] = ""; diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index 5ae713daf..e00b82e8d 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -7,17 +7,17 @@ # eddy2508 , 2013 # Gert Cauwenberg , 2013 # Gert Cauwenberg , 2013 -# jeroenpraat , 2012-2014 -# jeroenpraat , 2012 +# jeroenpraat , 2012-2014 +# jeroenpraat , 2012 # Karel Vandecandelaere , 2015-2016 # Ralph , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-18 18:49+0100\n" -"PO-Revision-Date: 2016-01-20 13:13+0000\n" -"Last-Translator: Karel Vandecandelaere \n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,6254 +25,6 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/contacts.php:50 include/identity.php:395 -msgid "Network:" -msgstr "Netwerk:" - -#: mod/contacts.php:51 mod/contacts.php:961 mod/videos.php:37 -#: mod/viewcontacts.php:105 mod/dirfind.php:214 mod/network.php:598 -#: mod/allfriends.php:77 mod/match.php:82 mod/directory.php:172 -#: mod/common.php:123 mod/suggest.php:95 mod/photos.php:41 -#: include/identity.php:298 -msgid "Forum" -msgstr "Forum" - -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contact gewijzigd." -msgstr[1] "%d contacten gewijzigd." - -#: mod/contacts.php:159 mod/contacts.php:383 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Kon het geselecteerde profiel niet vinden." - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Contact bijgewerkt." - -#: mod/contacts.php:208 mod/dfrn_request.php:575 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: mod/contacts.php:365 mod/manage.php:96 mod/display.php:504 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 -#: mod/ostatus_subscribe.php:9 mod/follow.php:11 mod/follow.php:73 -#: mod/follow.php:155 mod/item.php:180 mod/item.php:192 mod/group.php:19 -#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69 -#: mod/message.php:45 mod/message.php:181 mod/crepair.php:117 -#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 -#: mod/settings.php:126 mod/settings.php:646 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 -#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 -#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5073 index.php:383 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: mod/contacts.php:404 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: mod/contacts.php:404 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: mod/contacts.php:415 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: mod/contacts.php:415 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: mod/contacts.php:427 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: mod/contacts.php:427 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: mod/contacts.php:454 mod/contacts.php:802 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: mod/contacts.php:456 mod/follow.php:110 mod/message.php:216 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1117 -#: mod/settings.php:1121 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1138 mod/settings.php:1144 mod/settings.php:1170 -#: mod/settings.php:1171 mod/settings.php:1172 mod/settings.php:1173 -#: mod/settings.php:1174 mod/dfrn_request.php:857 mod/register.php:238 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/profiles.php:687 mod/api.php:105 include/items.php:4905 -msgid "Yes" -msgstr "Ja" - -#: mod/contacts.php:459 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121 -#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:660 mod/settings.php:686 -#: mod/dfrn_request.php:871 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1220 -#: include/items.php:4908 -msgid "Cancel" -msgstr "Annuleren" - -#: mod/contacts.php:471 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: mod/contacts.php:512 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" - -#: mod/contacts.php:516 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" - -#: mod/contacts.php:521 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: mod/contacts.php:541 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: mod/contacts.php:544 mod/admin.php:811 -msgid "Never" -msgstr "Nooit" - -#: mod/contacts.php:548 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: mod/contacts.php:548 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: mod/contacts.php:550 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: mod/contacts.php:554 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: mod/contacts.php:567 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: mod/contacts.php:570 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:571 mod/admin.php:820 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: mod/contacts.php:571 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:571 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:587 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196 -#: mod/events.php:574 mod/content.php:712 mod/install.php:261 -#: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 -#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 -#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579 -#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766 -#: object/Item.php:710 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:107 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Opslaan" - -#: mod/contacts.php:588 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: mod/contacts.php:589 -#, 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:590 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" - -#: mod/contacts.php:591 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: mod/contacts.php:596 mod/contacts.php:952 mod/viewcontacts.php:97 -#: mod/nogroup.php:41 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: mod/contacts.php:597 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: mod/contacts.php:598 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: mod/contacts.php:599 -msgid "Repair URL settings" -msgstr "Repareer URL-instellingen" - -#: mod/contacts.php:600 -msgid "View conversations" -msgstr "Toon conversaties" - -#: mod/contacts.php:602 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: mod/contacts.php:606 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: mod/contacts.php:608 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: mod/contacts.php:610 -msgid "Update now" -msgstr "Wijzig nu" - -#: mod/contacts.php:612 mod/follow.php:103 mod/dirfind.php:196 -#: mod/allfriends.php:65 mod/match.php:71 mod/suggest.php:82 -#: include/contact_widgets.php:32 include/Contact.php:297 -#: include/conversation.php:924 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865 -#: mod/admin.php:1301 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865 -#: mod/admin.php:1300 -msgid "Block" -msgstr "Blokkeren" - -#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872 -#: mod/notifications.php:54 mod/notifications.php:179 -#: mod/notifications.php:259 -msgid "Ignore" -msgstr "Negeren" - -#: mod/contacts.php:619 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: mod/contacts.php:620 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: mod/contacts.php:621 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: mod/contacts.php:622 mod/notifications.php:172 mod/notifications.php:251 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: mod/contacts.php:622 -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:623 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" - -#: mod/contacts.php:623 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:626 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:626 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:633 mod/follow.php:126 mod/notifications.php:255 -msgid "Profile URL" -msgstr "Profiel url" - -#: mod/contacts.php:636 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:145 include/identity.php:308 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "Plaats:" - -#: mod/contacts.php:638 mod/notifications.php:246 mod/directory.php:153 -#: include/identity.php:317 include/identity.php:631 -msgid "About:" -msgstr "Over:" - -#: mod/contacts.php:640 mod/follow.php:134 mod/notifications.php:248 -#: include/identity.php:625 -msgid "Tags:" -msgstr "Labels:" - -#: mod/contacts.php:685 -msgid "Suggestions" -msgstr "Voorstellen" - -#: mod/contacts.php:688 -msgid "Suggest potential friends" -msgstr "Stel vrienden voor" - -#: mod/contacts.php:693 mod/group.php:192 -msgid "All Contacts" -msgstr "Alle Contacten" - -#: mod/contacts.php:696 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: mod/contacts.php:701 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: mod/contacts.php:704 -msgid "Only show unblocked contacts" -msgstr "Toon alleen niet-geblokkeerde contacten" - -#: mod/contacts.php:710 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: mod/contacts.php:713 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: mod/contacts.php:719 -msgid "Ignored" -msgstr "Genegeerd" - -#: mod/contacts.php:722 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: mod/contacts.php:728 -msgid "Archived" -msgstr "Gearchiveerd" - -#: mod/contacts.php:731 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: mod/contacts.php:737 -msgid "Hidden" -msgstr "Verborgen" - -#: mod/contacts.php:740 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: mod/contacts.php:793 mod/contacts.php:841 mod/viewcontacts.php:116 -#: include/identity.php:741 include/identity.php:744 include/text.php:1012 -#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contacten" - -#: mod/contacts.php:797 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: mod/contacts.php:798 -msgid "Finding: " -msgstr "Gevonden:" - -#: mod/contacts.php:799 mod/directory.php:210 include/contact_widgets.php:34 -msgid "Find" -msgstr "Zoek" - -#: mod/contacts.php:805 mod/settings.php:156 mod/settings.php:685 -msgid "Update" -msgstr "Wijzigen" - -#: mod/contacts.php:808 mod/contacts.php:879 -msgid "Archive" -msgstr "Archiveer" - -#: mod/contacts.php:808 mod/contacts.php:879 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: mod/contacts.php:809 mod/group.php:171 mod/admin.php:1299 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:722 -#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 -msgid "Delete" -msgstr "Verwijder" - -#: mod/contacts.php:822 include/identity.php:686 include/nav.php:75 -msgid "Status" -msgstr "Tijdlijn" - -#: mod/contacts.php:825 mod/follow.php:143 include/identity.php:689 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: mod/contacts.php:830 mod/profperm.php:104 mod/newmember.php:32 -#: include/identity.php:579 include/identity.php:665 include/identity.php:694 -#: include/nav.php:76 view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profiel" - -#: mod/contacts.php:833 include/identity.php:697 -msgid "Profile Details" -msgstr "Profieldetails" - -#: mod/contacts.php:844 -msgid "View all contacts" -msgstr "Alle contacten zien" - -#: mod/contacts.php:850 mod/common.php:134 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: mod/contacts.php:853 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:857 -msgid "Repair" -msgstr "Herstellen" - -#: mod/contacts.php:860 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" - -#: mod/contacts.php:868 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" - -#: mod/contacts.php:875 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" - -#: mod/contacts.php:882 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" - -#: mod/contacts.php:924 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" - -#: mod/contacts.php:928 -msgid "is a fan of yours" -msgstr "Is een fan van jou" - -#: mod/contacts.php:932 -msgid "you are a fan of" -msgstr "Jij bent een fan van" - -#: mod/contacts.php:953 mod/nogroup.php:42 -msgid "Edit contact" -msgstr "Contact bewerken" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Geen profiel" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Beheer Identiteiten en/of Pagina's" - -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." - -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Selecteer een identiteit om te beheren:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." - -#: mod/profperm.php:19 mod/group.php:72 index.php:382 -msgid "Permission denied" -msgstr "Toegang geweigerd" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificatie." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "" - -#: mod/profperm.php:106 mod/group.php:223 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle contacten (met veilige profieltoegang)" - -#: mod/display.php:82 mod/display.php:291 mod/display.php:508 -#: mod/viewsrc.php:15 mod/admin.php:225 mod/admin.php:1354 mod/admin.php:1588 -#: mod/notice.php:15 include/items.php:4864 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: mod/display.php:220 mod/videos.php:197 mod/viewcontacts.php:35 -#: mod/community.php:18 mod/dfrn_request.php:786 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" - -#: mod/display.php:339 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." - -#: mod/display.php:501 -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:1407 mod/admin.php:1665 -#: mod/settings.php:109 include/nav.php:182 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:250 mod/profiles.php:709 -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:51 -msgid "Importing Emails" -msgstr "E-mails importeren" - -#: mod/newmember.php:51 -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:53 -msgid "Go to Your Contacts Page" -msgstr "Ga naar je contactenpagina" - -#: mod/newmember.php:53 -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:55 -msgid "Go to Your Site's Directory" -msgstr "Ga naar de gids van je website" - -#: mod/newmember.php:55 -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:57 -msgid "Finding New People" -msgstr "Nieuwe mensen vinden" - -#: mod/newmember.php:57 -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:61 include/group.php:283 -msgid "Groups" -msgstr "Groepen" - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "Groepeer je contacten" - -#: mod/newmember.php:65 -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:68 -msgid "Why Aren't My Posts Public?" -msgstr "Waarom zijn mijn berichten niet openbaar?" - -#: mod/newmember.php:68 -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:73 -msgid "Getting Help" -msgstr "Hulp krijgen" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "Ga naar de help" - -#: mod/newmember.php:77 -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:118 include/auth.php:181 -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:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192 -#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268 -#: mod/photos.php:1862 include/user.php:345 include/user.php:352 -#: include/user.php:359 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:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleining van de afbeelding [%s] mislukt." - -#: mod/profile_photo.php:124 -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." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Ik kan de afbeelding niet verwerken" - -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Upload bestand:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Kies een profiel:" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Uploaden" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "of" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "Deze stap overslaan" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit je fotoalbums" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: mod/profile_photo.php:269 -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:271 -msgid "Done Editing" -msgstr "Wijzigingen compleet" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Uploaden van afbeelding gelukt." - -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." - -#: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165 -#: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1993 include/diaspora.php:2147 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "foto" - -#: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165 -#: include/like.php:325 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 include/diaspora.php:2147 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -msgid "status" -msgstr "status" - -#: 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/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/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Verwijderen" - -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 -msgid "Done" -msgstr "Klaar" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "Succesvol" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "Mislukt" - -#: mod/ostatus_subscribe.php:69 object/Item.php:235 -msgid "ignored" -msgstr "Verboden" - -#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 -msgid "Keep this window open until done." -msgstr "Houd dit scherm open tot het klaar is" - -#: mod/filer.php:30 include/conversation.php:1132 -#: include/conversation.php:1150 -msgid "Save to Folder:" -msgstr "Bewaren in map:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- Kies -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 -#: include/text.php:1004 -msgid "Save" -msgstr "Bewaren" - -#: mod/follow.php:19 mod/dfrn_request.php:870 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Je hebt deze kontakt al toegevoegd" - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:109 mod/dfrn_request.php:856 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: mod/follow.php:110 mod/dfrn_request.php:857 -#, php-format -msgid "Does %s know you?" -msgstr "Kent %s jou?" - -#: mod/follow.php:110 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1117 mod/settings.php:1121 mod/settings.php:1126 -#: mod/settings.php:1132 mod/settings.php:1138 mod/settings.php:1144 -#: mod/settings.php:1170 mod/settings.php:1171 mod/settings.php:1172 -#: mod/settings.php:1173 mod/settings.php:1174 mod/dfrn_request.php:857 -#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 -#: mod/profiles.php:687 mod/api.php:106 -msgid "No" -msgstr "Nee" - -#: mod/follow.php:111 mod/dfrn_request.php:861 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: mod/follow.php:117 mod/dfrn_request.php:867 -msgid "Your Identity Address:" -msgstr "Adres van uw identiteit:" - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Contact toegevoegd" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." - -#: mod/item.php:329 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: mod/item.php:467 mod/wall_upload.php:213 mod/wall_upload.php:227 -#: mod/wall_upload.php:234 include/Photo.php:958 include/Photo.php:973 -#: include/Photo.php:980 include/Photo.php:1002 include/message.php:145 -msgid "Wall Photos" -msgstr "" - -#: mod/item.php:842 -msgid "System error. Post not saved." -msgstr "Systeemfout. Post niet bewaard." - -#: mod/item.php:971 -#, 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." - -#: mod/item.php:973 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" - -#: mod/item.php:974 -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." - -#: mod/item.php:978 -#, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Groep aangemaakt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Groep niet gevonden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Groepsnaam gewijzigd." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Bewaar groep" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: mod/group.php:94 mod/group.php:178 include/group.php:289 -msgid "Group Name: " -msgstr "Groepsnaam:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Groep verwijderd." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Groepsbewerker" - -#: mod/group.php:190 -msgid "Members" -msgstr "Leden" - -#: mod/group.php:193 mod/network.php:576 mod/content.php:130 -msgid "Group is empty" -msgstr "De groep is leeg" - -#: mod/apps.php:7 index.php:226 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Toepassingen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:131 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: mod/dfrn_confirm.php:121 -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." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwoord van de website op afstand werd niet begrepen." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Onverwacht antwoord van website op afstand:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bevestiging werd correct voltooid." - -#: 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/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Verzoek mislukt of herroepen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Ik kan geen contact foto instellen." - -#: mod/dfrn_confirm.php:487 include/conversation.php:185 -#: include/diaspora.php:637 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s is nu bevriend met %2$s" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Geen gebruiker gevonden voor '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." - -#: mod/dfrn_confirm.php:593 -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:614 -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:628 -#, 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:648 -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:659 -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:726 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:741 include/items.php:4276 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s is toegetreden tot %2$s" - -#: mod/profile.php:21 include/identity.php:51 -msgid "Requested profile is not available." -msgstr "Gevraagde profiel is niet beschikbaar." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" - -#: mod/videos.php:123 -msgid "Do you really want to delete this video?" -msgstr "Wil je deze video echt verwijderen?" - -#: mod/videos.php:128 -msgid "Delete Video" -msgstr "Verwijder video" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" - -#: mod/videos.php:308 mod/photos.php:1087 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: mod/videos.php:383 include/text.php:1465 -msgid "View Video" -msgstr "Bekijk Video" - -#: mod/videos.php:390 mod/photos.php:1890 -msgid "View Album" -msgstr "Album bekijken" - -#: mod/videos.php:399 -msgid "Recent Videos" -msgstr "Recente video's" - -#: mod/videos.php:401 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" - -#: mod/tagger.php:95 include/conversation.php:278 -#, 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/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1781 -msgid "Invalid request." -msgstr "" - -#: 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:1418 -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 "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\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 "" - -#: 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/ping.php:265 -msgid "{0} wants to be your friend" -msgstr "{0} wilt je vriend worden" - -#: mod/ping.php:280 -msgid "{0} sent you a message" -msgstr "{0} stuurde jou een bericht" - -#: mod/ping.php:295 -msgid "{0} requested registration" -msgstr "{0} vroeg om zich te registreren" - -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Geen contacten." - -#: mod/notifications.php:29 -msgid "Invalid request identifier." -msgstr "Ongeldige request identifier." - -#: mod/notifications.php:38 mod/notifications.php:180 -#: mod/notifications.php:260 -msgid "Discard" -msgstr "Verwerpen" - -#: mod/notifications.php:81 -msgid "System" -msgstr "Systeem" - -#: mod/notifications.php:87 mod/admin.php:379 include/nav.php:154 -msgid "Network" -msgstr "Netwerk" - -#: mod/notifications.php:93 mod/network.php:384 -msgid "Personal" -msgstr "Persoonlijk" - -#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Tijdlijn" - -#: mod/notifications.php:105 include/nav.php:162 -msgid "Introductions" -msgstr "Verzoeken" - -#: mod/notifications.php:130 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" - -#: mod/notifications.php:130 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" - -#: mod/notifications.php:164 mod/notifications.php:234 -msgid "Notification type: " -msgstr "Notificatiesoort:" - -#: mod/notifications.php:165 -msgid "Friend Suggestion" -msgstr "Vriendschapsvoorstel" - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "Voorgesteld door %s" - -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "Post a new friend activity" -msgstr "Bericht over een nieuwe vriend" - -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "if applicable" -msgstr "Indien toepasbaar" - -#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1297 -msgid "Approve" -msgstr "Goedkeuren" - -#: mod/notifications.php:196 -msgid "Claims to be known to you: " -msgstr "Denkt dat u hem of haar kent:" - -#: mod/notifications.php:196 -msgid "yes" -msgstr "Ja" - -#: mod/notifications.php:196 -msgid "no" -msgstr "Nee" - -#: mod/notifications.php:197 -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:200 -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:208 -msgid "Friend" -msgstr "Vriend" - -#: mod/notifications.php:209 -msgid "Sharer" -msgstr "Deler" - -#: mod/notifications.php:209 -msgid "Fan/Admirer" -msgstr "Fan/Bewonderaar" - -#: mod/notifications.php:235 -msgid "Friend/Connect Request" -msgstr "Vriendschapsverzoek" - -#: mod/notifications.php:235 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:310 -#: include/identity.php:590 -msgid "Gender:" -msgstr "Geslacht:" - -#: mod/notifications.php:266 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." - -#: mod/notifications.php:269 include/nav.php:165 -msgid "Notifications" -msgstr "Notificaties" - -#: mod/notifications.php:307 mod/notifications.php:436 -#: mod/notifications.php:527 -#, php-format -msgid "%s liked %s's post" -msgstr "%s vond het bericht van %s leuk" - -#: mod/notifications.php:317 mod/notifications.php:446 -#: mod/notifications.php:537 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s vond het bericht van %s niet leuk" - -#: mod/notifications.php:332 mod/notifications.php:461 -#: mod/notifications.php:552 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s is nu bevriend met %s" - -#: mod/notifications.php:339 mod/notifications.php:468 -#, php-format -msgid "%s created a new post" -msgstr "%s schreef een nieuw bericht" - -#: mod/notifications.php:340 mod/notifications.php:469 -#: mod/notifications.php:562 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s gaf een reactie op het bericht van %s" - -#: mod/notifications.php:355 -msgid "No more network notifications." -msgstr "Geen netwerknotificaties meer" - -#: mod/notifications.php:359 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: mod/notifications.php:385 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: mod/notifications.php:389 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: mod/notifications.php:484 -msgid "No more personal notifications." -msgstr "Geen persoonlijke notificaties meer" - -#: mod/notifications.php:488 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: mod/notifications.php:569 -msgid "No more home notifications." -msgstr "Geen tijdlijn-notificaties meer" - -#: mod/notifications.php:573 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: 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/navigation.php:19 include/nav.php:33 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: mod/navigation.php:23 include/nav.php:37 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" - -#: mod/message.php:15 include/nav.php:174 -msgid "New Message" -msgstr "Nieuw Bericht" - -#: mod/message.php:70 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Geen ontvanger geselecteerd." - -#: mod/message.php:74 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." - -#: mod/message.php:77 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Bericht kon niet verzonden worden." - -#: mod/message.php:80 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Fout bij het verzamelen van berichten." - -#: mod/message.php:83 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Bericht verzonden." - -#: mod/message.php:189 include/nav.php:171 -msgid "Messages" -msgstr "Privéberichten" - -#: mod/message.php:214 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: mod/message.php:234 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: mod/message.php:265 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: mod/message.php:290 mod/message.php:298 mod/message.php:427 -#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1128 include/conversation.php:1146 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: mod/message.php:326 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Verstuur privébericht" - -#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 -msgid "To:" -msgstr "Aan:" - -#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Onderwerp:" - -#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1183 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1187 -msgid "Insert web link" -msgstr "Voeg een webadres in" - -#: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713 -#: include/conversation.php:1201 -msgid "Please wait" -msgstr "Even geduld" - -#: mod/message.php:368 -msgid "No messages." -msgstr "Geen berichten." - -#: mod/message.php:411 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." - -#: mod/message.php:481 -msgid "Delete message" -msgstr "Verwijder bericht" - -#: mod/message.php:507 mod/message.php:584 -msgid "Delete conversation" -msgstr "Verwijder gesprek" - -#: mod/message.php:509 -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:513 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: mod/message.php:557 -#, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" - -#: mod/message.php:560 -#, php-format -msgid "You and %s" -msgstr "Jij en %s" - -#: mod/message.php:563 -#, php-format -msgid "%s and You" -msgstr "%s en jij" - -#: mod/message.php:587 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:590 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" - -#: 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:104 -msgid "Contact settings applied." -msgstr "Contactinstellingen toegepast." - -#: mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "" - -#: mod/crepair.php:138 -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:151 mod/crepair.php:153 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:151 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:151 mod/crepair.php:153 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:167 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:170 mod/admin.php:1295 mod/admin.php:1307 -#: mod/admin.php:1308 mod/admin.php:1321 mod/settings.php:661 -#: mod/settings.php:687 -msgid "Name" -msgstr "Naam" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Bijnaam account" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL account" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL vriendschapsbevestiging" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:182 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:184 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/bookmarklet.php:12 boot.php:1404 include/nav.php:91 -msgid "Login" -msgstr "Login" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Toegang geweigerd" - -#: mod/dirfind.php:194 mod/allfriends.php:80 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:212 -msgid "Connect" -msgstr "Verbinden" - -#: mod/dirfind.php:195 mod/allfriends.php:64 mod/match.php:70 -#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:283 -#: include/Contact.php:296 include/Contact.php:338 -#: include/conversation.php:912 include/conversation.php:926 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: mod/dirfind.php:224 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:231 mod/match.php:105 -msgid "No matches" -msgstr "Geen resultaten" - -#: mod/fbrowser.php:32 include/identity.php:702 include/nav.php:77 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Foto's" - -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 -#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245 -#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850 -#: view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Contactfoto's" - -#: mod/fbrowser.php:125 -msgid "Files" -msgstr "Bestanden" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Contacten die geen leden zijn van een groep" - -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Thema-instellingen aangepast." - -#: mod/admin.php:147 mod/admin.php:877 -msgid "Site" -msgstr "Website" - -#: mod/admin.php:148 mod/admin.php:821 mod/admin.php:1290 mod/admin.php:1305 -msgid "Users" -msgstr "Gebruiker" - -#: mod/admin.php:149 mod/admin.php:1405 mod/admin.php:1465 mod/settings.php:72 -msgid "Plugins" -msgstr "Plugins" - -#: mod/admin.php:150 mod/admin.php:1663 mod/admin.php:1713 -msgid "Themes" -msgstr "Thema's" - -#: mod/admin.php:151 mod/settings.php:50 -msgid "Additional features" -msgstr "Extra functies" - -#: mod/admin.php:152 -msgid "DB updates" -msgstr "DB aanpassingen" - -#: mod/admin.php:153 mod/admin.php:374 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:154 mod/admin.php:343 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:168 mod/admin.php:179 mod/admin.php:1781 -msgid "Logs" -msgstr "Logs" - -#: mod/admin.php:169 mod/admin.php:1848 -msgid "View Logs" -msgstr "" - -#: mod/admin.php:170 -msgid "probe address" -msgstr "" - -#: mod/admin.php:171 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:177 include/nav.php:194 -msgid "Admin" -msgstr "Beheer" - -#: mod/admin.php:178 -msgid "Plugin Features" -msgstr "Plugin Functies" - -#: mod/admin.php:180 -msgid "diagnostics" -msgstr "" - -#: mod/admin.php:181 -msgid "User registrations waiting for confirmation" -msgstr "Gebruikersregistraties wachten op bevestiging" - -#: mod/admin.php:336 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:337 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:342 mod/admin.php:373 mod/admin.php:430 mod/admin.php:876 -#: mod/admin.php:1289 mod/admin.php:1404 mod/admin.php:1464 mod/admin.php:1662 -#: mod/admin.php:1712 mod/admin.php:1780 mod/admin.php:1847 -msgid "Administration" -msgstr "Beheer" - -#: mod/admin.php:349 -msgid "Currently this node is aware of nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:376 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:377 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:378 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:380 -msgid "Created" -msgstr "" - -#: mod/admin.php:381 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:382 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:401 mod/admin.php:1243 -msgid "Normal Account" -msgstr "Normaal account" - -#: mod/admin.php:402 mod/admin.php:1244 -msgid "Soapbox Account" -msgstr "Zeepkist-account" - -#: mod/admin.php:403 mod/admin.php:1245 -msgid "Community/Celebrity Account" -msgstr "Account voor een groep/forum of beroemdheid" - -#: mod/admin.php:404 mod/admin.php:1246 -msgid "Automatic Friend Account" -msgstr "Automatisch Vriendschapsaccount" - -#: mod/admin.php:405 -msgid "Blog Account" -msgstr "Blog Account" - -#: mod/admin.php:406 -msgid "Private Forum" -msgstr "Privéforum/-groep" - -#: mod/admin.php:425 -msgid "Message queues" -msgstr "Bericht-wachtrijen" - -#: mod/admin.php:431 -msgid "Summary" -msgstr "Samenvatting" - -#: mod/admin.php:433 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" - -#: mod/admin.php:435 -msgid "Pending registrations" -msgstr "Registraties die in de wacht staan" - -#: mod/admin.php:436 -msgid "Version" -msgstr "Versie" - -#: mod/admin.php:441 -msgid "Active plugins" -msgstr "Actieve plug-ins" - -#: mod/admin.php:464 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:749 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:757 -msgid "Site settings updated." -msgstr "Site instellingen gewijzigd." - -#: mod/admin.php:785 mod/settings.php:912 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: mod/admin.php:804 -msgid "No community page" -msgstr "" - -#: mod/admin.php:805 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:806 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:812 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:813 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequent" - -#: mod/admin.php:814 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "elk uur" - -#: mod/admin.php:815 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: mod/admin.php:816 include/contact_selectors.php:59 -msgid "Daily" -msgstr "dagelijks" - -#: mod/admin.php:822 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:823 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:827 -msgid "One month" -msgstr "" - -#: mod/admin.php:828 -msgid "Three months" -msgstr "" - -#: mod/admin.php:829 -msgid "Half a year" -msgstr "" - -#: mod/admin.php:830 -msgid "One year" -msgstr "" - -#: mod/admin.php:835 -msgid "Multi user instance" -msgstr "Server voor meerdere gebruikers" - -#: mod/admin.php:858 -msgid "Closed" -msgstr "Gesloten" - -#: mod/admin.php:859 -msgid "Requires approval" -msgstr "Toestemming vereist" - -#: mod/admin.php:860 -msgid "Open" -msgstr "Open" - -#: mod/admin.php:864 -msgid "No SSL policy, links will track page SSL state" -msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" - -#: mod/admin.php:865 -msgid "Force all links to use SSL" -msgstr "Verplicht alle links om SSL te gebruiken" - -#: mod/admin.php:866 -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:878 mod/admin.php:1466 mod/admin.php:1714 mod/admin.php:1782 -#: mod/admin.php:1931 mod/settings.php:659 mod/settings.php:769 -#: mod/settings.php:813 mod/settings.php:882 mod/settings.php:969 -#: mod/settings.php:1204 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: mod/admin.php:879 mod/register.php:263 -msgid "Registration" -msgstr "Registratie" - -#: mod/admin.php:880 -msgid "File upload" -msgstr "Uploaden bestand" - -#: mod/admin.php:881 -msgid "Policies" -msgstr "Beleid" - -#: mod/admin.php:882 -msgid "Advanced" -msgstr "Geavanceerd" - -#: mod/admin.php:883 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:884 -msgid "Performance" -msgstr "Performantie" - -#: mod/admin.php:885 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:888 -msgid "Site name" -msgstr "Site naam" - -#: mod/admin.php:889 -msgid "Host name" -msgstr "" - -#: mod/admin.php:890 -msgid "Sender Email" -msgstr "" - -#: mod/admin.php:890 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:891 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:892 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:892 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:893 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:893 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:894 -msgid "Additional Info" -msgstr "" - -#: mod/admin.php:894 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:895 -msgid "System language" -msgstr "Systeemtaal" - -#: mod/admin.php:896 -msgid "System theme" -msgstr "Systeem thema" - -#: mod/admin.php:896 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" - -#: mod/admin.php:897 -msgid "Mobile system theme" -msgstr "Mobiel systeem thema" - -#: mod/admin.php:897 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: mod/admin.php:898 -msgid "SSL link policy" -msgstr "Beleid SSL-links" - -#: mod/admin.php:898 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" - -#: mod/admin.php:899 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:899 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:900 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:900 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:901 -msgid "Hide help entry from navigation menu" -msgstr "Verberg de 'help' uit het navigatiemenu" - -#: mod/admin.php:901 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." - -#: mod/admin.php:902 -msgid "Single user instance" -msgstr "Server voor één gebruiker" - -#: mod/admin.php:902 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." - -#: mod/admin.php:903 -msgid "Maximum image size" -msgstr "Maximum afbeeldingsgrootte" - -#: mod/admin.php:903 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." - -#: mod/admin.php:904 -msgid "Maximum image length" -msgstr "Maximum afbeeldingslengte" - -#: mod/admin.php:904 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." - -#: mod/admin.php:905 -msgid "JPEG image quality" -msgstr "JPEG afbeeldingskwaliteit" - -#: mod/admin.php:905 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." - -#: mod/admin.php:907 -msgid "Register policy" -msgstr "Registratiebeleid" - -#: mod/admin.php:908 -msgid "Maximum Daily Registrations" -msgstr "Maximum aantal registraties per dag" - -#: mod/admin.php:908 -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 "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." - -#: mod/admin.php:909 -msgid "Register text" -msgstr "Registratietekst" - -#: mod/admin.php:909 -msgid "Will be displayed prominently on the registration page." -msgstr "Dit zal prominent op de registratiepagina getoond worden." - -#: mod/admin.php:910 -msgid "Accounts abandoned after x days" -msgstr "Verlaten accounts na x dagen" - -#: mod/admin.php:910 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." - -#: mod/admin.php:911 -msgid "Allowed friend domains" -msgstr "Toegelaten vriend domeinen" - -#: mod/admin.php:911 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." - -#: mod/admin.php:912 -msgid "Allowed email domains" -msgstr "Toegelaten e-mail domeinen" - -#: mod/admin.php:912 -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 "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." - -#: mod/admin.php:913 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: mod/admin.php:913 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." - -#: mod/admin.php:914 -msgid "Force publish" -msgstr "Dwing publiceren af" - -#: mod/admin.php:914 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." - -#: mod/admin.php:915 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:915 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:916 -msgid "Allow threaded items" -msgstr "Sta threads in conversaties toe" - -#: mod/admin.php:916 -msgid "Allow infinite level threading for items on this site." -msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." - -#: mod/admin.php:917 -msgid "Private posts by default for new users" -msgstr "Privéberichten als standaard voor nieuwe gebruikers" - -#: mod/admin.php:917 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." - -#: mod/admin.php:918 -msgid "Don't include post content in email notifications" -msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" - -#: mod/admin.php:918 -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 "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." - -#: mod/admin.php:919 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:919 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:920 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:920 -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:921 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:921 -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:922 -msgid "Block multiple registrations" -msgstr "Blokkeer meerdere registraties" - -#: mod/admin.php:922 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." - -#: mod/admin.php:923 -msgid "OpenID support" -msgstr "OpenID ondersteuning" - -#: mod/admin.php:923 -msgid "OpenID support for registration and logins." -msgstr "OpenID ondersteuning voor registraties en logins." - -#: mod/admin.php:924 -msgid "Fullname check" -msgstr "Controleer volledige naam" - -#: mod/admin.php:924 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" - -#: mod/admin.php:925 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 reguliere uitdrukkingen" - -#: mod/admin.php:925 -msgid "Use PHP UTF8 regular expressions" -msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" - -#: mod/admin.php:926 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:926 -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:927 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:927 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:928 -msgid "Enable OStatus support" -msgstr "Activeer OStatus ondersteuning" - -#: mod/admin.php:928 -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:929 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:929 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: mod/admin.php:930 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:932 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:933 -msgid "Enable Diaspora support" -msgstr "Activeer Diaspora ondersteuning" - -#: mod/admin.php:933 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." - -#: mod/admin.php:934 -msgid "Only allow Friendica contacts" -msgstr "Laat alleen Friendica contacten toe" - -#: mod/admin.php:934 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." - -#: mod/admin.php:935 -msgid "Verify SSL" -msgstr "Controleer SSL" - -#: mod/admin.php:935 -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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." - -#: mod/admin.php:936 -msgid "Proxy user" -msgstr "Proxy-gebruiker" - -#: mod/admin.php:937 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: mod/admin.php:938 -msgid "Network timeout" -msgstr "Netwerk timeout" - -#: mod/admin.php:938 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." - -#: mod/admin.php:939 -msgid "Delivery interval" -msgstr "Afleverinterval" - -#: mod/admin.php:939 -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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." - -#: mod/admin.php:940 -msgid "Poll interval" -msgstr "Poll-interval" - -#: mod/admin.php:940 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." - -#: mod/admin.php:941 -msgid "Maximum Load Average" -msgstr "Maximum gemiddelde belasting" - -#: mod/admin.php:941 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." - -#: mod/admin.php:942 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:942 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:943 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:943 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:944 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:944 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:946 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:946 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:947 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:947 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:948 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:948 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:949 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:949 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:950 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:950 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:952 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:952 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:954 -msgid "Use MySQL full text engine" -msgstr "Gebruik de tekst-zoekfunctie van MySQL" - -#: mod/admin.php:954 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." - -#: mod/admin.php:955 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:955 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:956 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:956 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:957 -msgid "Path to item cache" -msgstr "Pad naar cache voor items" - -#: mod/admin.php:957 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:958 -msgid "Cache duration in seconds" -msgstr "Cache tijdsduur in seconden" - -#: mod/admin.php:958 -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:959 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:959 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:960 -msgid "Path for lock file" -msgstr "Pad voor lock bestand" - -#: mod/admin.php:960 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:961 -msgid "Temp path" -msgstr "Tijdelijk pad" - -#: mod/admin.php:961 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:962 -msgid "Base path to installation" -msgstr "Basispad voor installatie" - -#: mod/admin.php:962 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:963 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:963 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:964 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:964 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:965 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:965 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:967 -msgid "New base url" -msgstr "" - -#: mod/admin.php:967 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:969 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:969 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:970 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:970 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:999 -msgid "Update has been marked successful" -msgstr "Wijziging succesvol gemarkeerd " - -#: mod/admin.php:1007 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1010 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1022 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1025 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Wijziging %s geslaagd." - -#: mod/admin.php:1029 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." - -#: mod/admin.php:1031 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1050 -msgid "No failed updates." -msgstr "Geen misluke wijzigingen" - -#: mod/admin.php:1051 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1056 -msgid "Failed Updates" -msgstr "Misluke wijzigingen" - -#: mod/admin.php:1057 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." - -#: mod/admin.php:1058 -msgid "Mark success (if update was manually applied)" -msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" - -#: mod/admin.php:1059 -msgid "Attempt to execute this update step automatically" -msgstr "Probeer deze stap automatisch uit te voeren" - -#: mod/admin.php:1091 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1094 -#, php-format -msgid "" -"\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." -msgstr "" - -#: mod/admin.php:1126 include/user.php:423 -#, php-format -msgid "Registration details for %s" -msgstr "Registratie details voor %s" - -#: mod/admin.php:1138 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" -msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" - -#: mod/admin.php:1145 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s gebruiker verwijderd" -msgstr[1] "%s gebruikers verwijderd" - -#: mod/admin.php:1192 -#, php-format -msgid "User '%s' deleted" -msgstr "Gebruiker '%s' verwijderd" - -#: mod/admin.php:1200 -#, php-format -msgid "User '%s' unblocked" -msgstr "Gebruiker '%s' niet meer geblokkeerd" - -#: mod/admin.php:1200 -#, php-format -msgid "User '%s' blocked" -msgstr "Gebruiker '%s' geblokkeerd" - -#: mod/admin.php:1291 -msgid "Add User" -msgstr "Gebruiker toevoegen" - -#: mod/admin.php:1292 -msgid "select all" -msgstr "Alles selecteren" - -#: mod/admin.php:1293 -msgid "User registrations waiting for confirm" -msgstr "Gebruikersregistraties wachten op een bevestiging" - -#: mod/admin.php:1294 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1295 -msgid "Request date" -msgstr "Registratiedatum" - -#: mod/admin.php:1295 mod/admin.php:1307 mod/admin.php:1308 mod/admin.php:1323 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: mod/admin.php:1296 -msgid "No registrations." -msgstr "Geen registraties." - -#: mod/admin.php:1298 -msgid "Deny" -msgstr "Weiger" - -#: mod/admin.php:1302 -msgid "Site admin" -msgstr "Sitebeheerder" - -#: mod/admin.php:1303 -msgid "Account expired" -msgstr "Account verlopen" - -#: mod/admin.php:1306 -msgid "New User" -msgstr "Nieuwe gebruiker" - -#: mod/admin.php:1307 mod/admin.php:1308 -msgid "Register date" -msgstr "Registratiedatum" - -#: mod/admin.php:1307 mod/admin.php:1308 -msgid "Last login" -msgstr "Laatste login" - -#: mod/admin.php:1307 mod/admin.php:1308 -msgid "Last item" -msgstr "Laatste item" - -#: mod/admin.php:1307 -msgid "Deleted since" -msgstr "Verwijderd sinds" - -#: mod/admin.php:1308 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1310 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" - -#: mod/admin.php:1311 -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 "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" - -#: mod/admin.php:1321 -msgid "Name of the new user." -msgstr "Naam van nieuwe gebruiker" - -#: mod/admin.php:1322 -msgid "Nickname" -msgstr "Bijnaam" - -#: mod/admin.php:1322 -msgid "Nickname of the new user." -msgstr "Bijnaam van nieuwe gebruiker" - -#: mod/admin.php:1323 -msgid "Email address of the new user." -msgstr "E-mailadres van nieuwe gebruiker" - -#: mod/admin.php:1366 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s uitgeschakeld." - -#: mod/admin.php:1370 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s ingeschakeld." - -#: mod/admin.php:1381 mod/admin.php:1617 -msgid "Disable" -msgstr "Uitschakelen" - -#: mod/admin.php:1383 mod/admin.php:1619 -msgid "Enable" -msgstr "Inschakelen" - -#: mod/admin.php:1406 mod/admin.php:1664 -msgid "Toggle" -msgstr "Schakelaar" - -#: mod/admin.php:1414 mod/admin.php:1673 -msgid "Author: " -msgstr "Auteur:" - -#: mod/admin.php:1415 mod/admin.php:1674 -msgid "Maintainer: " -msgstr "Onderhoud:" - -#: mod/admin.php:1467 -msgid "Reload active plugins" -msgstr "" - -#: mod/admin.php:1472 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" -msgstr "" - -#: mod/admin.php:1577 -msgid "No themes found." -msgstr "Geen thema's gevonden." - -#: mod/admin.php:1655 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: mod/admin.php:1715 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:1720 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" -msgstr "" - -#: mod/admin.php:1721 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: mod/admin.php:1722 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: mod/admin.php:1746 -msgid "Log settings updated." -msgstr "Log instellingen gewijzigd" - -#: mod/admin.php:1783 -msgid "Clear" -msgstr "Wis" - -#: mod/admin.php:1788 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:1789 -msgid "Log file" -msgstr "Logbestand" - -#: mod/admin.php:1789 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." - -#: mod/admin.php:1790 -msgid "Log level" -msgstr "Log niveau" - -#: mod/admin.php:1793 -msgid "PHP logging" -msgstr "" - -#: mod/admin.php:1794 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:1920 mod/admin.php:1921 mod/settings.php:759 -msgid "Off" -msgstr "Uit" - -#: mod/admin.php:1920 mod/admin.php:1921 mod/settings.php:759 -msgid "On" -msgstr "Aan" - -#: mod/admin.php:1921 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:1929 -msgid "Manage Additional Features" -msgstr "" - -#: mod/network.php:146 -#, php-format -msgid "Search Results For: %s" -msgstr "" - -#: mod/network.php:191 mod/search.php:25 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: mod/network.php:200 mod/search.php:34 include/features.php:84 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: mod/network.php:201 include/group.php:293 -msgid "add" -msgstr "toevoegen" - -#: mod/network.php:365 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: mod/network.php:368 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: mod/network.php:373 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: mod/network.php:376 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: mod/network.php:387 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" - -#: mod/network.php:395 -msgid "New" -msgstr "Nieuw" - -#: mod/network.php:398 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: mod/network.php:406 -msgid "Shared Links" -msgstr "Gedeelde links" - -#: mod/network.php:409 -msgid "Interesting Links" -msgstr "Interessante links" - -#: mod/network.php:417 -msgid "Starred" -msgstr "Met ster" - -#: mod/network.php:420 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: mod/network.php:479 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." -msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." - -#: mod/network.php:482 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." - -#: mod/network.php:549 mod/content.php:119 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" - -#: mod/network.php:580 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/network.php:608 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." - -#: mod/network.php:613 -msgid "Invalid contact." -msgstr "Ongeldig contact." - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: mod/events.php:201 -msgid "Sun" -msgstr "" - -#: mod/events.php:202 -msgid "Mon" -msgstr "" - -#: mod/events.php:203 -msgid "Tue" -msgstr "" - -#: mod/events.php:204 -msgid "Wed" -msgstr "" - -#: mod/events.php:205 -msgid "Thu" -msgstr "" - -#: mod/events.php:206 -msgid "Fri" -msgstr "" - -#: mod/events.php:207 -msgid "Sat" -msgstr "" - -#: mod/events.php:208 mod/settings.php:948 include/text.php:1274 -msgid "Sunday" -msgstr "Zondag" - -#: mod/events.php:209 mod/settings.php:948 include/text.php:1274 -msgid "Monday" -msgstr "Maandag" - -#: mod/events.php:210 include/text.php:1274 -msgid "Tuesday" -msgstr "Dinsdag" - -#: mod/events.php:211 include/text.php:1274 -msgid "Wednesday" -msgstr "Woensdag" - -#: mod/events.php:212 include/text.php:1274 -msgid "Thursday" -msgstr "Donderdag" - -#: mod/events.php:213 include/text.php:1274 -msgid "Friday" -msgstr "Vrijdag" - -#: mod/events.php:214 include/text.php:1274 -msgid "Saturday" -msgstr "Zaterdag" - -#: mod/events.php:215 -msgid "Jan" -msgstr "" - -#: mod/events.php:216 -msgid "Feb" -msgstr "" - -#: mod/events.php:217 -msgid "Mar" -msgstr "" - -#: mod/events.php:218 -msgid "Apr" -msgstr "" - -#: mod/events.php:219 mod/events.php:231 include/text.php:1278 -msgid "May" -msgstr "Mei" - -#: mod/events.php:220 -msgid "Jun" -msgstr "" - -#: mod/events.php:221 -msgid "Jul" -msgstr "" - -#: mod/events.php:222 -msgid "Aug" -msgstr "" - -#: mod/events.php:223 -msgid "Sept" -msgstr "" - -#: mod/events.php:224 -msgid "Oct" -msgstr "" - -#: mod/events.php:225 -msgid "Nov" -msgstr "" - -#: mod/events.php:226 -msgid "Dec" -msgstr "" - -#: mod/events.php:227 include/text.php:1278 -msgid "January" -msgstr "Januari" - -#: mod/events.php:228 include/text.php:1278 -msgid "February" -msgstr "Februari" - -#: mod/events.php:229 include/text.php:1278 -msgid "March" -msgstr "Maart" - -#: mod/events.php:230 include/text.php:1278 -msgid "April" -msgstr "April" - -#: mod/events.php:232 include/text.php:1278 -msgid "June" -msgstr "Juni" - -#: mod/events.php:233 include/text.php:1278 -msgid "July" -msgstr "Juli" - -#: mod/events.php:234 include/text.php:1278 -msgid "August" -msgstr "Augustus" - -#: mod/events.php:235 include/text.php:1278 -msgid "September" -msgstr "September" - -#: mod/events.php:236 include/text.php:1278 -msgid "October" -msgstr "Oktober" - -#: mod/events.php:237 include/text.php:1278 -msgid "November" -msgstr "November" - -#: mod/events.php:238 include/text.php:1278 -msgid "December" -msgstr "December" - -#: mod/events.php:239 -msgid "today" -msgstr "" - -#: mod/events.php:240 include/datetime.php:288 -msgid "month" -msgstr "maand" - -#: mod/events.php:241 include/datetime.php:289 -msgid "week" -msgstr "week" - -#: mod/events.php:242 include/datetime.php:290 -msgid "day" -msgstr "dag" - -#: mod/events.php:377 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:399 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: mod/events.php:421 include/text.php:1721 include/text.php:1728 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: mod/events.php:456 include/identity.php:722 include/nav.php:79 -#: include/nav.php:140 view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Gebeurtenissen" - -#: mod/events.php:457 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: mod/events.php:458 -msgid "Previous" -msgstr "Vorige" - -#: mod/events.php:459 mod/install.php:220 -msgid "Next" -msgstr "Volgende" - -#: mod/events.php:554 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: mod/events.php:555 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:556 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: mod/events.php:556 mod/events.php:568 -msgid "Required" -msgstr "Vereist" - -#: mod/events.php:558 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: mod/events.php:560 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: mod/events.php:562 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: mod/events.php:564 -msgid "Description:" -msgstr "Beschrijving:" - -#: mod/events.php:568 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:570 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767 -#: object/Item.php:719 include/conversation.php:1216 -msgid "Preview" -msgstr "Voorvertoning" - -#: mod/credits.php:16 -msgid "Credits" -msgstr "" - -#: mod/credits.php:17 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 -#: object/Item.php:133 include/conversation.php:634 -msgid "Select" -msgstr "Kies" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: mod/content.php:483 mod/content.php:866 object/Item.php:371 -#: include/conversation.php:695 -#, php-format -msgid "%s from %s" -msgstr "%s van %s" - -#: mod/content.php:499 include/conversation.php:711 -msgid "View in context" -msgstr "In context bekijken" - -#: mod/content.php:605 object/Item.php:419 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties" - -#: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1997 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" - -#: mod/content.php:608 boot.php:863 object/Item.php:422 -#: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5184 view/theme/vier/theme.php:264 -msgid "show more" -msgstr "toon meer" - -#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 -msgid "Private Message" -msgstr "Privébericht" - -#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: mod/content.php:686 object/Item.php:253 -msgid "like" -msgstr "leuk" - -#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: mod/content.php:687 object/Item.php:254 -msgid "dislike" -msgstr "niet leuk" - -#: mod/content.php:689 object/Item.php:256 -msgid "Share this" -msgstr "Delen" - -#: mod/content.php:689 object/Item.php:256 -msgid "share" -msgstr "Delen" - -#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675 -#: mod/photos.php:1763 object/Item.php:707 -msgid "This is you" -msgstr "Dit ben jij" - -#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 -#: mod/photos.php:1765 boot.php:862 object/Item.php:393 object/Item.php:709 -msgid "Comment" -msgstr "Reacties" - -#: mod/content.php:713 object/Item.php:711 -msgid "Bold" -msgstr "Vet" - -#: mod/content.php:714 object/Item.php:712 -msgid "Italic" -msgstr "Cursief" - -#: mod/content.php:715 object/Item.php:713 -msgid "Underline" -msgstr "Onderstrepen" - -#: mod/content.php:716 object/Item.php:714 -msgid "Quote" -msgstr "Citeren" - -#: mod/content.php:717 object/Item.php:715 -msgid "Code" -msgstr "Broncode" - -#: mod/content.php:718 object/Item.php:716 -msgid "Image" -msgstr "Afbeelding" - -#: mod/content.php:719 object/Item.php:717 -msgid "Link" -msgstr "Link" - -#: mod/content.php:720 object/Item.php:718 -msgid "Video" -msgstr "Video" - -#: mod/content.php:730 mod/settings.php:721 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Bewerken" - -#: mod/content.php:755 object/Item.php:217 -msgid "add star" -msgstr "ster toevoegen" - -#: mod/content.php:756 object/Item.php:218 -msgid "remove star" -msgstr "ster verwijderen" - -#: mod/content.php:757 object/Item.php:219 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" - -#: mod/content.php:760 object/Item.php:222 -msgid "starred" -msgstr "met ster" - -#: mod/content.php:761 object/Item.php:242 -msgid "add tag" -msgstr "label toevoegen" - -#: mod/content.php:765 object/Item.php:137 -msgid "save to folder" -msgstr "Bewaren in map" - -#: mod/content.php:856 object/Item.php:359 -msgid "to" -msgstr "aan" - -#: mod/content.php:857 object/Item.php:361 -msgid "Wall-to-Wall" -msgstr "wall-to-wall" - -#: mod/content.php:858 object/Item.php:362 -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 -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/install.php:128 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:134 -msgid "Could not connect to database." -msgstr "Kon geen toegang krijgen tot de database." - -#: mod/install.php:138 -msgid "Could not create table." -msgstr "Kon tabel niet aanmaken." - -#: mod/install.php:144 -msgid "Your Friendica site database has been installed." -msgstr "De database van je Friendica-website is geïnstalleerd." - -#: mod/install.php:149 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." - -#: mod/install.php:150 mod/install.php:219 mod/install.php:577 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Zie het bestand \"INSTALL.txt\"." - -#: mod/install.php:162 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:216 -msgid "System check" -msgstr "Systeemcontrole" - -#: mod/install.php:221 -msgid "Check again" -msgstr "Controleer opnieuw" - -#: mod/install.php:240 -msgid "Database connection" -msgstr "Verbinding met database" - -#: mod/install.php:241 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." - -#: mod/install.php:242 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " - -#: mod/install.php:243 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." - -#: mod/install.php:247 -msgid "Database Server Name" -msgstr "Servernaam database" - -#: mod/install.php:248 -msgid "Database Login Name" -msgstr "Gebruikersnaam database" - -#: mod/install.php:249 -msgid "Database Login Password" -msgstr "Wachtwoord database" - -#: mod/install.php:250 -msgid "Database Name" -msgstr "Naam database" - -#: mod/install.php:251 mod/install.php:290 -msgid "Site administrator email address" -msgstr "E-mailadres van de websitebeheerder" - -#: mod/install.php:251 mod/install.php:290 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." - -#: mod/install.php:255 mod/install.php:293 -msgid "Please select a default timezone for your website" -msgstr "Selecteer een standaard tijdzone voor uw website" - -#: mod/install.php:280 -msgid "Site settings" -msgstr "Website-instellingen" - -#: mod/install.php:334 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." - -#: mod/install.php:335 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" -msgstr "" - -#: mod/install.php:339 -msgid "PHP executable path" -msgstr "PATH van het PHP commando" - -#: mod/install.php:339 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." - -#: mod/install.php:344 -msgid "Command line PHP" -msgstr "PHP-opdrachtregel" - -#: mod/install.php:353 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:354 -msgid "Found PHP version: " -msgstr "Gevonden PHP versie:" - -#: mod/install.php:356 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:367 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." - -#: mod/install.php:368 -msgid "This is required for message delivery to work." -msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." - -#: mod/install.php:370 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:391 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:392 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." - -#: mod/install.php:394 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:401 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: mod/install.php:402 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: mod/install.php:403 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: mod/install.php:404 -msgid "mysqli PHP module" -msgstr "mysqli PHP module" - -#: mod/install.php:405 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: mod/install.php:406 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:411 mod/install.php:413 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:411 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." - -#: mod/install.php:419 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." - -#: mod/install.php:423 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." - -#: mod/install.php:427 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." - -#: mod/install.php:431 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." - -#: mod/install.php:435 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." - -#: mod/install.php:439 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:451 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "" - -#: mod/install.php:453 -msgid "mcrypt_create_iv() function" -msgstr "" - -#: mod/install.php:469 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." - -#: mod/install.php:470 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." - -#: mod/install.php:471 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." - -#: mod/install.php:472 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." - -#: mod/install.php:475 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is schrijfbaar" - -#: mod/install.php:485 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." - -#: mod/install.php:486 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." - -#: mod/install.php:487 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." - -#: mod/install.php:488 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." - -#: mod/install.php:491 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 is schrijfbaar" - -#: mod/install.php:507 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:509 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:526 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:528 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:536 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "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." - -#: mod/install.php:575 -msgid "

                                              What next

                                              " -msgstr "

                                              Wat nu

                                              " - -#: mod/install.php:576 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"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:41 -msgid "Help:" -msgstr "Help:" - -#: mod/help.php:47 include/nav.php:113 view/theme/vier/theme.php:302 -msgid "Help" -msgstr "Help" - -#: mod/help.php:53 mod/p.php:16 mod/p.php:25 index.php:270 -msgid "Not Found" -msgstr "Niet gevonden" - -#: mod/help.php:56 index.php:273 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: 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:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: mod/match.php:33 -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:84 -msgid "is interested in:" -msgstr "Is geïnteresseerd in:" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profielmatch" - -#: mod/share.php:38 -msgid "link" -msgstr "link" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: mod/community.php:32 include/nav.php:136 include/nav.php:138 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Website" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:228 -msgid "No results." -msgstr "Geen resultaten." - -#: mod/settings.php:34 mod/photos.php:117 -msgid "everybody" -msgstr "iedereen" - -#: mod/settings.php:58 -msgid "Display" -msgstr "Weergave" - -#: mod/settings.php:65 mod/settings.php:864 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: mod/settings.php:79 include/nav.php:180 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:86 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: mod/settings.php:93 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: mod/settings.php:100 -msgid "Remove account" -msgstr "Account verwijderen" - -#: mod/settings.php:153 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: mod/settings.php:266 -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:271 -msgid "Email settings updated." -msgstr "E-mail instellingen bijgewerkt.." - -#: mod/settings.php:286 -msgid "Features updated" -msgstr "Functies bijgewerkt" - -#: mod/settings.php:353 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:367 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: mod/settings.php:372 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." - -#: mod/settings.php:380 -msgid "Wrong password." -msgstr "Verkeerd wachtwoord." - -#: mod/settings.php:391 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: mod/settings.php:393 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: mod/settings.php:462 -msgid " Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: mod/settings.php:464 -msgid " Name too short." -msgstr "Naam te kort." - -#: mod/settings.php:473 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: mod/settings.php:478 -msgid " Not valid email." -msgstr "Geen geldig e-mailadres." - -#: mod/settings.php:484 -msgid " Cannot change to that email." -msgstr "Kan niet veranderen naar die e-mail." - -#: mod/settings.php:540 -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:544 -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:583 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: mod/settings.php:658 mod/settings.php:684 mod/settings.php:720 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: mod/settings.php:662 mod/settings.php:688 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: mod/settings.php:663 mod/settings.php:689 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: mod/settings.php:664 mod/settings.php:690 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: mod/settings.php:665 mod/settings.php:691 -msgid "Icon url" -msgstr "URL pictogram" - -#: mod/settings.php:676 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: mod/settings.php:719 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: mod/settings.php:723 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:724 -msgid "No name" -msgstr "Geen naam" - -#: mod/settings.php:725 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: mod/settings.php:737 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:745 -msgid "Plugin Settings" -msgstr "Plugin Instellingen" - -#: mod/settings.php:767 -msgid "Additional Features" -msgstr "Extra functies" - -#: mod/settings.php:777 mod/settings.php:781 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:787 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:789 -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:795 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:797 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:806 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:808 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:811 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:820 mod/settings.php:821 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: mod/settings.php:820 mod/dfrn_request.php:865 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:820 mod/settings.php:821 -msgid "enabled" -msgstr "ingeschakeld" - -#: mod/settings.php:820 mod/settings.php:821 -msgid "disabled" -msgstr "uitgeschakeld" - -#: mod/settings.php:821 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:857 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: mod/settings.php:869 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: mod/settings.php:870 -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." - -#: mod/settings.php:871 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" - -#: mod/settings.php:873 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: mod/settings.php:874 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: mod/settings.php:875 -msgid "Security:" -msgstr "Beveiliging:" - -#: mod/settings.php:875 mod/settings.php:880 -msgid "None" -msgstr "Geen" - -#: mod/settings.php:876 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: mod/settings.php:877 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: mod/settings.php:878 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: mod/settings.php:879 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: mod/settings.php:880 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: mod/settings.php:880 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: mod/settings.php:880 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: mod/settings.php:881 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: mod/settings.php:967 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: mod/settings.php:973 mod/settings.php:991 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: mod/settings.php:974 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: mod/settings.php:975 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: mod/settings.php:975 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:976 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: mod/settings.php:976 mod/settings.php:977 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: mod/settings.php:977 -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:978 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: mod/settings.php:979 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:980 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:981 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:982 -msgid "Infinite scroll" -msgstr "Oneindig scrollen" - -#: mod/settings.php:983 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:985 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:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: mod/settings.php:1062 -msgid "User Types" -msgstr "Gebruikerstypes" - -#: mod/settings.php:1063 -msgid "Community Types" -msgstr "Forum/groepstypes" - -#: mod/settings.php:1064 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: mod/settings.php:1065 -msgid "This account is a normal personal profile" -msgstr "Deze account is een normaal persoonlijk profiel" - -#: mod/settings.php:1068 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: mod/settings.php:1069 -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:1072 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/groeps- of beroemdheid-account" - -#: mod/settings.php:1073 -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:1076 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" - -#: mod/settings.php:1077 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." - -#: mod/settings.php:1080 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: mod/settings.php:1081 -msgid "Private forum - approved members only" -msgstr "Privé-forum - enkel voor goedgekeurde leden" - -#: mod/settings.php:1093 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1093 -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:1103 -msgid "Publish your default profile in your local site directory?" -msgstr "Je standaardprofiel in je lokale gids publiceren?" - -#: mod/settings.php:1109 -msgid "Publish your default profile in the global social directory?" -msgstr "Je standaardprofiel in de globale sociale gids publiceren?" - -#: mod/settings.php:1117 -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:1121 include/acl_selectors.php:331 -msgid "Hide your profile details from unknown viewers?" -msgstr "Je profieldetails verbergen voor onbekende bezoekers?" - -#: mod/settings.php:1121 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1126 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jou profielpagina te posten?" - -#: mod/settings.php:1132 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: mod/settings.php:1138 -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:1144 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: mod/settings.php:1152 -msgid "Profile is not published." -msgstr "Profiel is niet gepubliceerd." - -#: mod/settings.php:1160 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1167 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: mod/settings.php:1167 -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:1168 -msgid "Advanced expiration settings" -msgstr "Geavanceerde instellingen voor vervallen" - -#: mod/settings.php:1169 -msgid "Advanced Expiration" -msgstr "Geavanceerd Verval:" - -#: mod/settings.php:1170 -msgid "Expire posts:" -msgstr "Laat berichten vervallen:" - -#: mod/settings.php:1171 -msgid "Expire personal notes:" -msgstr "Laat persoonlijke aantekeningen verlopen:" - -#: mod/settings.php:1172 -msgid "Expire starred posts:" -msgstr "Laat berichten met ster verlopen" - -#: mod/settings.php:1173 -msgid "Expire photos:" -msgstr "Laat foto's vervallen:" - -#: mod/settings.php:1174 -msgid "Only expire posts by others:" -msgstr "Laat alleen berichten door anderen vervallen:" - -#: mod/settings.php:1202 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: mod/settings.php:1210 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: mod/settings.php:1211 mod/register.php:274 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: mod/settings.php:1212 mod/register.php:275 -msgid "Confirm:" -msgstr "Bevestig:" - -#: mod/settings.php:1212 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: mod/settings.php:1213 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: mod/settings.php:1213 mod/settings.php:1214 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: mod/settings.php:1214 -msgid "Password:" -msgstr "Wachtwoord:" - -#: mod/settings.php:1218 -msgid "Basic Settings" -msgstr "Basis Instellingen" - -#: mod/settings.php:1219 include/identity.php:588 -msgid "Full Name:" -msgstr "Volledige Naam:" - -#: mod/settings.php:1220 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: mod/settings.php:1221 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" - -#: mod/settings.php:1222 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1222 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1223 -msgid "Default Post Location:" -msgstr "Standaard locatie:" - -#: mod/settings.php:1224 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" - -#: mod/settings.php:1227 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" - -#: mod/settings.php:1229 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: mod/settings.php:1229 mod/settings.php:1259 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: mod/settings.php:1230 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: mod/settings.php:1231 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: mod/settings.php:1240 mod/photos.php:1199 mod/photos.php:1584 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: mod/settings.php:1241 mod/photos.php:1200 mod/photos.php:1585 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: mod/settings.php:1242 -msgid "Default Private Post" -msgstr "Standaard Privé Post" - -#: mod/settings.php:1243 -msgid "Default Public Post" -msgstr "Standaard Publieke Post" - -#: mod/settings.php:1247 -msgid "Default Permissions for New Posts" -msgstr "Standaard rechten voor nieuwe berichten" - -#: mod/settings.php:1259 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: mod/settings.php:1262 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: mod/settings.php:1263 -msgid "By default post a status message when:" -msgstr "Post automatisch een bericht op je tijdlijn wanneer:" - -#: mod/settings.php:1264 -msgid "accepting a friend request" -msgstr "Een vriendschapsverzoek accepteren" - -#: mod/settings.php:1265 -msgid "joining a forum/community" -msgstr "Lid worden van een groep/forum" - -#: mod/settings.php:1266 -msgid "making an interesting profile change" -msgstr "Een interessante verandering aan je profiel" - -#: mod/settings.php:1267 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: mod/settings.php:1268 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: mod/settings.php:1269 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: mod/settings.php:1270 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: mod/settings.php:1271 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: mod/settings.php:1272 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: mod/settings.php:1273 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: mod/settings.php:1274 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: mod/settings.php:1275 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: mod/settings.php:1277 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1277 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1279 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1281 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1283 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1284 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1287 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1288 -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:1289 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/dfrn_request.php:96 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:516 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:521 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." - -#: mod/dfrn_request.php:126 mod/dfrn_request.php:523 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:526 -#, 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:474 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: mod/dfrn_request.php:478 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar bent u al bevriend met %s." - -#: mod/dfrn_request.php:499 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." - -#: mod/dfrn_request.php:505 include/follow.php:72 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: mod/dfrn_request.php:596 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." - -#: mod/dfrn_request.php:636 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:659 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." - -#: mod/dfrn_request.php:669 -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:683 mod/dfrn_request.php:700 -msgid "Confirm" -msgstr "Bevestig" - -#: mod/dfrn_request.php:695 -msgid "Hide this contact" -msgstr "Verberg dit contact" - -#: mod/dfrn_request.php:698 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." - -#: mod/dfrn_request.php:699 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." - -#: mod/dfrn_request.php:828 -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:849 -#, php-format -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:854 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: mod/dfrn_request.php:855 -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:863 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:864 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Gefedereerde Sociale Web" - -#: mod/dfrn_request.php:866 -#, 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/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." - -#: mod/register.php:97 -#, 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:104 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:110 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." - -#: mod/register.php:153 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." - -#: mod/register.php:191 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:219 -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:220 -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:221 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: mod/register.php:259 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: mod/register.php:260 -msgid "Your invitation ID: " -msgstr "Je uitnodigingsid:" - -#: mod/register.php:271 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:272 -msgid "Your Email Address: " -msgstr "Je email adres:" - -#: mod/register.php:274 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:276 -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:277 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: mod/register.php:280 boot.php:1379 include/nav.php:108 -msgid "Register" -msgstr "Registreer" - -#: mod/register.php:286 mod/uimport.php:64 -msgid "Import" -msgstr "Importeren" - -#: mod/register.php:287 -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:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:136 include/text.php:1003 include/nav.php:118 -msgid "Search" -msgstr "Zoeken" - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:236 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: mod/directory.php:149 include/identity.php:313 include/identity.php:610 -msgid "Status:" -msgstr "Tijdlijn:" - -#: mod/directory.php:151 include/identity.php:315 include/identity.php:621 -msgid "Homepage:" -msgstr "Website:" - -#: mod/directory.php:203 view/theme/diabook/theme.php:525 -#: view/theme/vier/theme.php:205 -msgid "Global Directory" -msgstr "Globale gids" - -#: mod/directory.php:205 -msgid "Find on this site" -msgstr "Op deze website zoeken" - -#: mod/directory.php:207 -msgid "Finding:" -msgstr "" - -#: mod/directory.php:209 -msgid "Site Directory" -msgstr "Websitegids" - -#: mod/directory.php:216 -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:180 -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:86 -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:239 -#, 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:71 -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:83 mod/suggest.php:101 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: mod/suggest.php:111 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:207 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: 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:336 -msgid "Marital Status" -msgstr "Echtelijke staat" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 -msgid "Likes" -msgstr "Houdt van" - -#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Werk" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Godsdienst" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Politieke standpunten" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Geslacht" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Seksuele Voorkeur" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Tijdlijn" - -#: mod/profiles.php:375 mod/profiles.php:708 -msgid "Interests" -msgstr "Interesses" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adres" - -#: mod/profiles.php:386 mod/profiles.php:704 -msgid "Location" -msgstr "Plaats" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profiel bijgewerkt." - -#: mod/profiles.php:565 -msgid " and " -msgstr "en" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "publiek profiel" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Bezoek %2$s van %1$s" - -#: mod/profiles.php:580 -#, 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:655 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" - -#: mod/profiles.php:684 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:695 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: mod/profiles.php:697 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: mod/profiles.php:698 -msgid "View this profile" -msgstr "Dit profiel bekijken" - -#: mod/profiles.php:699 -msgid "Create a new profile using these settings" -msgstr "Nieuw profiel aanmaken met deze instellingen" - -#: mod/profiles.php:700 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: mod/profiles.php:701 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: mod/profiles.php:702 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:703 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:705 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:706 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:707 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:710 -msgid "Profile Name:" -msgstr "Profiel Naam:" - -#: mod/profiles.php:711 -msgid "Your Full Name:" -msgstr "Je volledige naam:" - -#: mod/profiles.php:712 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: mod/profiles.php:713 -msgid "Your Gender:" -msgstr "Je Geslacht:" - -#: mod/profiles.php:714 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:715 -msgid "Street Address:" -msgstr "Postadres:" - -#: mod/profiles.php:716 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: mod/profiles.php:717 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: mod/profiles.php:718 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:719 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: mod/profiles.php:720 -msgid " Marital Status:" -msgstr " Echtelijke Staat:" - -#: mod/profiles.php:721 -msgid "Who: (if applicable)" -msgstr "Wie: (indien toepasbaar)" - -#: mod/profiles.php:722 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" - -#: mod/profiles.php:723 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: mod/profiles.php:724 include/identity.php:619 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: mod/profiles.php:725 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: mod/profiles.php:726 include/identity.php:623 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: mod/profiles.php:727 include/identity.php:627 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: mod/profiles.php:728 -msgid "Religious Views:" -msgstr "Geloof:" - -#: mod/profiles.php:729 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: mod/profiles.php:730 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: mod/profiles.php:731 include/identity.php:635 -msgid "Likes:" -msgstr "Houdt van:" - -#: mod/profiles.php:732 include/identity.php:637 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: mod/profiles.php:733 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: vissen fotografie software" - -#: mod/profiles.php:734 -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:735 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: mod/profiles.php:736 -msgid "Tell us about yourself..." -msgstr "Vertel iets over jezelf..." - -#: mod/profiles.php:737 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: mod/profiles.php:738 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: mod/profiles.php:739 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: mod/profiles.php:740 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: mod/profiles.php:741 -msgid "Television" -msgstr "Televisie" - -#: mod/profiles.php:742 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: mod/profiles.php:743 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: mod/profiles.php:744 -msgid "Work/employment" -msgstr "Werk" - -#: mod/profiles.php:745 -msgid "School/education" -msgstr "School/opleiding" - -#: mod/profiles.php:750 -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:760 -msgid "Age: " -msgstr "Leeftijd:" - -#: mod/profiles.php:813 -msgid "Edit/Manage Profiles" -msgstr "Wijzig/Beheer Profielen" - -#: mod/profiles.php:814 include/identity.php:260 include/identity.php:286 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: mod/profiles.php:815 include/identity.php:261 -msgid "Create New Profile" -msgstr "Maak nieuw profiel" - -#: mod/profiles.php:826 include/identity.php:271 -msgid "Profile Image" -msgstr "Profiel afbeelding" - -#: mod/profiles.php:828 include/identity.php:274 -msgid "visible to everybody" -msgstr "zichtbaar voor iedereen" - -#: mod/profiles.php:829 include/identity.php:275 -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:40 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: mod/editpost.php:111 include/conversation.php:1184 -msgid "upload photo" -msgstr "Foto uploaden" - -#: mod/editpost.php:112 include/conversation.php:1185 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: mod/editpost.php:113 include/conversation.php:1186 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: mod/editpost.php:115 include/conversation.php:1188 -msgid "web link" -msgstr "webadres" - -#: mod/editpost.php:116 include/conversation.php:1189 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: mod/editpost.php:117 include/conversation.php:1190 -msgid "video link" -msgstr "video adres" - -#: mod/editpost.php:118 include/conversation.php:1191 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: mod/editpost.php:119 include/conversation.php:1192 -msgid "audio link" -msgstr "audio adres" - -#: mod/editpost.php:120 include/conversation.php:1193 -msgid "Set your location" -msgstr "Stel uw locatie in" - -#: mod/editpost.php:121 include/conversation.php:1194 -msgid "set location" -msgstr "Stel uw locatie in" - -#: mod/editpost.php:122 include/conversation.php:1195 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: mod/editpost.php:123 include/conversation.php:1196 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: mod/editpost.php:125 include/conversation.php:1202 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: mod/editpost.php:133 include/acl_selectors.php:344 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: mod/editpost.php:134 include/conversation.php:1211 -msgid "Public post" -msgstr "Openbare post" - -#: mod/editpost.php:137 include/conversation.php:1198 -msgid "Set title" -msgstr "Titel plaatsen" - -#: mod/editpost.php:139 include/conversation.php:1200 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: mod/editpost.php:140 include/acl_selectors.php:345 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Dit is Friendica, versie" - -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "draaiend op web-adres" - -#: mod/friendica.php:73 -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:75 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" - -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:76 -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:90 -msgid "Installed plugins/addons/apps:" -msgstr "Geïnstalleerde plugins/toepassingen:" - -#: mod/friendica.php:103 -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:46 include/identity.php:730 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 -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" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC tijd: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Huidige Tijdzone: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Omgerekende lokale tijd: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selecteer je tijdzone:" - -#: mod/poke.php:191 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: mod/poke.php:192 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: mod/poke.php:193 -msgid "Recipient" -msgstr "Ontvanger" - -#: mod/poke.php:194 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: mod/poke.php:197 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -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/photos.php:99 include/identity.php:705 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: mod/photos.php:100 mod/photos.php:1899 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: mod/photos.php:181 -msgid "Contact information unavailable" -msgstr "Contactinformatie niet beschikbaar" - -#: mod/photos.php:202 -msgid "Album not found." -msgstr "Album niet gevonden" - -#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 -msgid "Delete Album" -msgstr "Verwijder album" - -#: mod/photos.php:242 -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:322 mod/photos.php:333 mod/photos.php:1580 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: mod/photos.php:331 -msgid "Do you really want to delete this photo?" -msgstr "Wil je echt deze foto verwijderen?" - -#: mod/photos.php:706 -#, 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:706 -msgid "a photo" -msgstr "een foto" - -#: mod/photos.php:819 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg." - -#: mod/photos.php:986 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: mod/photos.php:1147 -#, 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:1182 -msgid "Upload Photos" -msgstr "Upload foto's" - -#: mod/photos.php:1186 mod/photos.php:1257 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " - -#: mod/photos.php:1187 -msgid "or existing album name: " -msgstr "of bestaande albumnaam: " - -#: mod/photos.php:1188 -msgid "Do not show a status post for this upload" -msgstr "Toon geen bericht op je tijdlijn van deze upload" - -#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 -msgid "Permissions" -msgstr "Rechten" - -#: mod/photos.php:1201 -msgid "Private Photo" -msgstr "Privé foto" - -#: mod/photos.php:1202 -msgid "Public Photo" -msgstr "Publieke foto" - -#: mod/photos.php:1270 -msgid "Edit Album" -msgstr "Album wijzigen" - -#: mod/photos.php:1276 -msgid "Show Newest First" -msgstr "Toon niewste eerst" - -#: mod/photos.php:1278 -msgid "Show Oldest First" -msgstr "Toon oudste eerst" - -#: mod/photos.php:1306 mod/photos.php:1884 -msgid "View Photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1353 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." - -#: mod/photos.php:1355 -msgid "Photo not available" -msgstr "Foto is niet beschikbaar" - -#: mod/photos.php:1411 -msgid "View photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1411 -msgid "Edit photo" -msgstr "Bewerk foto" - -#: mod/photos.php:1412 -msgid "Use as profile photo" -msgstr "Gebruik als profielfoto" - -#: mod/photos.php:1437 -msgid "View Full Size" -msgstr "Bekijk in volledig formaat" - -#: mod/photos.php:1523 -msgid "Tags: " -msgstr "Labels: " - -#: mod/photos.php:1526 -msgid "[Remove any tag]" -msgstr "[Alle labels verwijderen]" - -#: mod/photos.php:1566 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: mod/photos.php:1567 -msgid "Caption" -msgstr "Onderschrift" - -#: mod/photos.php:1568 -msgid "Add a Tag" -msgstr "Een label toevoegen" - -#: mod/photos.php:1568 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " - -#: mod/photos.php:1569 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1570 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: mod/photos.php:1571 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: mod/photos.php:1586 -msgid "Private photo" -msgstr "Privé foto" - -#: mod/photos.php:1587 -msgid "Public photo" -msgstr "Publieke foto" - -#: mod/photos.php:1609 include/conversation.php:1182 -msgid "Share" -msgstr "Delen" - -#: mod/photos.php:1648 include/conversation.php:509 -#: include/conversation.php:1413 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: mod/photos.php:1648 include/conversation.php:509 -msgid "Not attending" -msgstr "" - -#: mod/photos.php:1648 include/conversation.php:509 -msgid "Might attend" -msgstr "" - -#: mod/photos.php:1813 -msgid "Map" -msgstr "" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: 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 (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: 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:861 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: boot.php:864 -msgid "show fewer" -msgstr "Minder tonen" - -#: boot.php:1266 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." - -#: boot.php:1378 -msgid "Create a New Account" -msgstr "Nieuwe account aanmaken" - -#: boot.php:1403 include/nav.php:72 -msgid "Logout" -msgstr "Uitloggen" - -#: boot.php:1406 -msgid "Nickname or Email address: " -msgstr "Bijnaam of e-mailadres:" - -#: boot.php:1407 -msgid "Password: " -msgstr "Wachtwoord:" - -#: boot.php:1408 -msgid "Remember me" -msgstr "Onthou me" - -#: boot.php:1411 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" - -#: boot.php:1417 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: boot.php:1420 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" - -#: boot.php:1421 -msgid "terms of service" -msgstr "servicevoorwaarden" - -#: boot.php:1423 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" - -#: boot.php:1424 -msgid "privacy policy" -msgstr "privacybeleid" - -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "" - -#: object/Item.php:191 -msgid "I will attend" -msgstr "" - -#: object/Item.php:191 -msgid "I will not attend" -msgstr "" - -#: object/Item.php:191 -msgid "I might attend" -msgstr "" - -#: object/Item.php:230 -msgid "ignore thread" -msgstr "" - -#: object/Item.php:231 -msgid "unignore thread" -msgstr "" - -#: object/Item.php:232 -msgid "toggle ignore status" -msgstr "" - -#: object/Item.php:345 include/conversation.php:687 -msgid "Categories:" -msgstr "Categorieën:" - -#: object/Item.php:346 include/conversation.php:688 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: object/Item.php:360 -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:153 -msgid "Errors encountered creating database tables." -msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/auth.php:44 -msgid "Logged out." -msgstr "Uitgelogd." - -#: include/auth.php:134 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:134 include/user.php:75 -msgid "The error message was:" -msgstr "De foutboodschap was:" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Nieuw Contact toevoegen" @@ -6285,6 +37,12 @@ msgstr "Voeg een webadres of -locatie in:" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Verbinden" + #: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" @@ -6300,12 +58,26 @@ msgstr "Zoek mensen" msgid "Enter name or interest" msgstr "Vul naam of interesse in" +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "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 -#: view/theme/vier/theme.php:206 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Zoek" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 msgid "Similar Interests" msgstr "Dezelfde interesses" @@ -6313,8 +85,7 @@ msgstr "Dezelfde interesses" msgid "Random Profile" msgstr "Willekeurig Profiel" -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -#: view/theme/vier/theme.php:208 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 msgid "Invite Friends" msgstr "Vrienden uitnodigen" @@ -6326,7 +97,7 @@ msgstr "Netwerken" msgid "All Networks" msgstr "Alle netwerken" -#: include/contact_widgets.php:141 include/features.php:102 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Bewaarde Mappen" @@ -6345,1470 +116,21 @@ msgid_plural "%d contacts in common" msgstr[0] "%d gedeeld contact" msgstr[1] "%d gedeelde contacten" -#: include/features.php:63 -msgid "General Features" -msgstr "Algemene functies" - -#: include/features.php:65 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: include/features.php:65 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: include/features.php:66 -msgid "Photo Location" -msgstr "" - -#: include/features.php:66 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:71 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: include/features.php:72 -msgid "Richtext Editor" -msgstr "Tekstverwerker met opmaak" - -#: include/features.php:72 -msgid "Enable richtext editor" -msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" - -#: include/features.php:73 -msgid "Post Preview" -msgstr "Voorvertoning bericht" - -#: include/features.php:73 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: include/features.php:74 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:74 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: include/features.php:79 -msgid "Network Sidebar Widgets" -msgstr "Zijbalkwidgets op netwerkpagina" - -#: include/features.php:80 -msgid "Search by Date" -msgstr "Zoeken op datum" - -#: include/features.php:80 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: include/features.php:81 include/features.php:111 -msgid "List Forums" -msgstr "" - -#: include/features.php:81 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: include/features.php:82 -msgid "Group Filter" -msgstr "Groepsfilter" - -#: include/features.php:82 -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:83 -msgid "Network Filter" -msgstr "Netwerkfilter" - -#: include/features.php:83 -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:84 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: include/features.php:89 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: include/features.php:90 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: include/features.php:90 -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:91 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: include/features.php:91 -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:92 -msgid "Network Shared Links Tab" -msgstr "" - -#: include/features.php:92 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: include/features.php:97 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: include/features.php:98 -msgid "Multiple Deletion" -msgstr "Meervoudige verwijdering" - -#: include/features.php:98 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" - -#: include/features.php:99 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: include/features.php:99 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties na verzending" - -#: include/features.php:100 -msgid "Tagging" -msgstr "Labelen" - -#: include/features.php:100 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: include/features.php:101 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: include/features.php:101 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: include/features.php:102 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen te bewaren" - -#: include/features.php:103 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: include/features.php:103 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" - -#: include/features.php:104 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: include/features.php:104 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: include/features.php:105 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:105 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: include/features.php:110 -msgid "Advanced Profile Settings" -msgstr "" - -#: include/features.php:111 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: include/follow.php:77 -msgid "Connect URL missing." -msgstr "" - -#: include/follow.php:104 -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:105 include/follow.php:125 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: include/follow.php:123 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: include/follow.php:127 -msgid "An author or name was not found." -msgstr "" - -#: include/follow.php:129 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: include/follow.php:131 -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:132 -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:138 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: include/follow.php:148 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "" - -#: include/follow.php:302 -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:209 -msgid "Default privacy group for new contacts" -msgstr "" - -#: include/group.php:239 -msgid "Everybody" -msgstr "Iedereen" - -#: include/group.php:262 -msgid "edit" -msgstr "verander" - -#: include/group.php:285 -msgid "Edit groups" -msgstr "" - -#: include/group.php:287 -msgid "Edit group" -msgstr "Verander groep" - -#: include/group.php:288 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: include/group.php:291 -msgid "Contacts not in any group" -msgstr "" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:271 -msgid "never" -msgstr "nooit" - -#: include/datetime.php:277 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: include/datetime.php:287 -msgid "year" -msgstr "jaar" - -#: include/datetime.php:287 -msgid "years" -msgstr "jaren" - -#: include/datetime.php:288 -msgid "months" -msgstr "maanden" - -#: include/datetime.php:289 -msgid "weeks" -msgstr "weken" - -#: include/datetime.php:290 -msgid "days" -msgstr "dagen" - -#: include/datetime.php:291 -msgid "hour" -msgstr "uur" - -#: include/datetime.php:291 -msgid "hours" -msgstr "uren" - -#: include/datetime.php:292 -msgid "minute" -msgstr "minuut" - -#: include/datetime.php:292 -msgid "minutes" -msgstr "minuten" - -#: include/datetime.php:293 -msgid "second" -msgstr "seconde" - -#: include/datetime.php:293 -msgid "seconds" -msgstr "secondes" - -#: include/datetime.php:302 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: include/datetime.php:474 include/items.php:2477 -#, php-format -msgid "%s's birthday" -msgstr "%s's verjaardag" - -#: include/datetime.php:475 include/items.php:2478 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gefeliciteerd %s" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "Gevraagde account is niet beschikbaar." - -#: include/identity.php:95 include/identity.php:284 include/identity.php:662 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: include/identity.php:244 -msgid "Atom feed" -msgstr "" - -#: include/identity.php:249 -msgid "Message" -msgstr "Bericht" - -#: include/identity.php:255 include/nav.php:185 -msgid "Profiles" -msgstr "Profielen" - -#: include/identity.php:255 -msgid "Manage/edit profiles" -msgstr "Beheer/wijzig profielen" - -#: include/identity.php:425 include/identity.php:509 -msgid "g A l F d" -msgstr "G l j F" - -#: include/identity.php:426 include/identity.php:510 -msgid "F d" -msgstr "d F" - -#: include/identity.php:471 include/identity.php:556 -msgid "[today]" -msgstr "[vandaag]" - -#: include/identity.php:483 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: include/identity.php:484 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: include/identity.php:543 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: include/identity.php:567 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: include/identity.php:568 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: include/identity.php:595 -msgid "j F, Y" -msgstr "F j Y" - -#: include/identity.php:596 -msgid "j F" -msgstr "F j" - -#: include/identity.php:603 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: include/identity.php:607 -msgid "Age:" -msgstr "Leeftijd:" - -#: include/identity.php:616 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: include/identity.php:629 -msgid "Religion:" -msgstr "Religie:" - -#: include/identity.php:633 -msgid "Hobbies/Interests:" -msgstr "Hobby:" - -#: include/identity.php:640 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: include/identity.php:642 -msgid "Musical interests:" -msgstr "Muzikale interesse " - -#: include/identity.php:644 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: include/identity.php:646 -msgid "Television:" -msgstr "Televisie" - -#: include/identity.php:648 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultuur/ontspanning:" - -#: include/identity.php:650 -msgid "Love/Romance:" -msgstr "Liefde/romance:" - -#: include/identity.php:652 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: include/identity.php:654 -msgid "School/education:" -msgstr "School/opleiding:" - -#: include/identity.php:658 -msgid "Forums:" -msgstr "" - -#: include/identity.php:710 include/identity.php:713 include/nav.php:78 -msgid "Videos" -msgstr "Video's" - -#: include/identity.php:725 include/nav.php:140 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: include/identity.php:733 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: include/like.php:167 include/conversation.php:122 -#: include/conversation.php:258 include/text.php:1991 -#: view/theme/diabook/theme.php:463 -msgid "event" -msgstr "gebeurtenis" - -#: include/like.php:184 include/conversation.php:141 include/diaspora.php:2163 -#: 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" - -#: include/like.php:186 include/conversation.php:144 -#, 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" - -#: include/like.php:188 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:190 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:192 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/acl_selectors.php:325 -msgid "Post to Email" -msgstr "Verzenden per e-mail" - -#: include/acl_selectors.php:330 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:336 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 -msgid "show" -msgstr "tonen" - -#: include/acl_selectors.php:338 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "niet tonen" - -#: include/acl_selectors.php:348 -msgid "Close" -msgstr "Afsluiten" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:337 include/conversation.php:911 -msgid "View Status" -msgstr "Bekijk status" - -#: include/Contact.php:339 include/conversation.php:913 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: include/Contact.php:340 include/conversation.php:914 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: include/Contact.php:341 include/conversation.php:915 -msgid "Edit Contact" -msgstr "Bewerk contact" - -#: include/Contact.php:342 -msgid "Drop Contact" -msgstr "Verwijder contact" - -#: include/Contact.php:343 include/conversation.php:916 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: include/Contact.php:344 include/conversation.php:920 -msgid "Poke" -msgstr "Aanstoten" - -#: 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: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/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stootte %2$s aan" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "bericht/item" - -#: include/conversation.php:304 -#, 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:792 -msgid "remove" -msgstr "verwijder" - -#: include/conversation.php:796 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: include/conversation.php:910 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: include/conversation.php:1034 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: include/conversation.php:1037 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: include/conversation.php:1040 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1043 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1046 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1056 -msgid "and" -msgstr "en" - -#: include/conversation.php:1062 -#, php-format -msgid ", and %d other people" -msgstr ", en %d andere mensen" - -#: include/conversation.php:1071 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: include/conversation.php:1072 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1075 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: include/conversation.php:1076 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1079 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1080 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1083 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1084 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1087 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "" - -#: include/conversation.php:1088 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1127 include/conversation.php:1145 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: include/conversation.php:1129 include/conversation.php:1147 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: include/conversation.php:1130 include/conversation.php:1148 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: include/conversation.php:1131 include/conversation.php:1149 -msgid "Tag term:" -msgstr "Label:" - -#: include/conversation.php:1133 include/conversation.php:1151 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: include/conversation.php:1134 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: include/conversation.php:1203 -msgid "permissions" -msgstr "rechten" - -#: include/conversation.php:1226 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: include/conversation.php:1227 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: include/conversation.php:1228 -msgid "Private post" -msgstr "Privé verzending" - -#: include/conversation.php:1385 -msgid "View all" -msgstr "" - -#: include/conversation.php:1407 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1410 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1416 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1419 include/profile_selectors.php:6 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: include/forums.php:105 include/text.php:1015 include/nav.php:126 -#: view/theme/vier/theme.php:259 +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "toon meer" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 msgid "Forums" msgstr "" -#: include/forums.php:107 view/theme/vier/theme.php:261 +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 msgid "External link to forum" msgstr "" -#: include/network.php:967 -msgid "view full size" -msgstr "Volledig formaat" - -#: include/text.php:303 -msgid "newer" -msgstr "nieuwere berichten" - -#: include/text.php:305 -msgid "older" -msgstr "oudere berichten" - -#: include/text.php:310 -msgid "prev" -msgstr "vorige" - -#: include/text.php:312 -msgid "first" -msgstr "eerste" - -#: include/text.php:344 -msgid "last" -msgstr "laatste" - -#: include/text.php:347 -msgid "next" -msgstr "volgende" - -#: include/text.php:402 -msgid "Loading more entries..." -msgstr "" - -#: include/text.php:403 -msgid "The end" -msgstr "" - -#: include/text.php:894 -msgid "No contacts" -msgstr "Geen contacten" - -#: include/text.php:909 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" - -#: include/text.php:921 -msgid "View Contacts" -msgstr "Bekijk contacten" - -#: include/text.php:1010 include/nav.php:121 -msgid "Full Text" -msgstr "" - -#: include/text.php:1011 include/nav.php:122 -msgid "Tags" -msgstr "" - -#: include/text.php:1066 -msgid "poke" -msgstr "aanstoten" - -#: include/text.php:1066 -msgid "poked" -msgstr "aangestoten" - -#: include/text.php:1067 -msgid "ping" -msgstr "ping" - -#: include/text.php:1067 -msgid "pinged" -msgstr "gepingd" - -#: include/text.php:1068 -msgid "prod" -msgstr "porren" - -#: include/text.php:1068 -msgid "prodded" -msgstr "gepord" - -#: include/text.php:1069 -msgid "slap" -msgstr "slaan" - -#: include/text.php:1069 -msgid "slapped" -msgstr "geslagen" - -#: include/text.php:1070 -msgid "finger" -msgstr "finger" - -#: include/text.php:1070 -msgid "fingered" -msgstr "gerfingerd" - -#: include/text.php:1071 -msgid "rebuff" -msgstr "afpoeieren" - -#: include/text.php:1071 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: include/text.php:1085 -msgid "happy" -msgstr "Blij" - -#: include/text.php:1086 -msgid "sad" -msgstr "Verdrietig" - -#: include/text.php:1087 -msgid "mellow" -msgstr "mellow" - -#: include/text.php:1088 -msgid "tired" -msgstr "vermoeid" - -#: include/text.php:1089 -msgid "perky" -msgstr "parmantig" - -#: include/text.php:1090 -msgid "angry" -msgstr "boos" - -#: include/text.php:1091 -msgid "stupified" -msgstr "verbijsterd" - -#: include/text.php:1092 -msgid "puzzled" -msgstr "onzeker" - -#: include/text.php:1093 -msgid "interested" -msgstr "Geïnteresseerd" - -#: include/text.php:1094 -msgid "bitter" -msgstr "bitter" - -#: include/text.php:1095 -msgid "cheerful" -msgstr "vrolijk" - -#: include/text.php:1096 -msgid "alive" -msgstr "levend" - -#: include/text.php:1097 -msgid "annoyed" -msgstr "verveeld" - -#: include/text.php:1098 -msgid "anxious" -msgstr "bezorgd" - -#: include/text.php:1099 -msgid "cranky" -msgstr "humeurig " - -#: include/text.php:1100 -msgid "disturbed" -msgstr "verontrust" - -#: include/text.php:1101 -msgid "frustrated" -msgstr "gefrustreerd" - -#: include/text.php:1102 -msgid "motivated" -msgstr "gemotiveerd" - -#: include/text.php:1103 -msgid "relaxed" -msgstr "ontspannen" - -#: include/text.php:1104 -msgid "surprised" -msgstr "verbaasd" - -#: include/text.php:1497 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1529 include/text.php:1541 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: include/text.php:1715 -msgid "View on separate page" -msgstr "" - -#: include/text.php:1716 -msgid "view on separate page" -msgstr "" - -#: include/text.php:1995 -msgid "activity" -msgstr "activiteit" - -#: include/text.php:1998 -msgid "post" -msgstr "bericht" - -#: include/text.php:2166 -msgid "Item filed" -msgstr "Item bewaard" - -#: include/bbcode.php:482 include/bbcode.php:1157 include/bbcode.php:1158 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: include/bbcode.php:595 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:629 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: include/bbcode.php:1117 include/bbcode.php:1137 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: include/bbcode.php:1166 include/bbcode.php:1167 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: include/dba_pdo.php:72 include/dba.php:55 -#, 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:81 -msgid "Facebook" -msgstr "Facebook" - -#: 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 "GNU Social" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "" - -#: include/Scrape.php:624 -msgid " on Last.fm" -msgstr " op Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 -msgid "Starts:" -msgstr "Begint:" - -#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 -msgid "Finishes:" -msgstr "Eindigt:" - -#: include/plugin.php:522 include/plugin.php:524 -msgid "Click here to upgrade." -msgstr "" - -#: include/plugin.php:530 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: include/plugin.php:535 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: include/nav.php:72 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: include/nav.php:76 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: include/nav.php:77 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Jouw foto's" - -#: include/nav.php:78 -msgid "Your videos" -msgstr "" - -#: include/nav.php:79 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: include/nav.php:80 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Persoonlijke nota's" - -#: include/nav.php:80 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:91 -msgid "Sign in" -msgstr "Inloggen" - -#: include/nav.php:104 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: include/nav.php:108 -msgid "Create an account" -msgstr "Maak een accoount" - -#: include/nav.php:113 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: include/nav.php:116 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: include/nav.php:118 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: include/nav.php:136 -msgid "Conversations on this site" -msgstr "Conversaties op deze website" - -#: include/nav.php:138 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:142 -msgid "Directory" -msgstr "Gids" - -#: include/nav.php:142 -msgid "People directory" -msgstr "Personengids" - -#: include/nav.php:144 -msgid "Information" -msgstr "Informatie" - -#: include/nav.php:144 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:154 -msgid "Conversations from your friends" -msgstr "Conversaties van je vrienden" - -#: include/nav.php:155 -msgid "Network Reset" -msgstr "Netwerkpagina opnieuw instellen" - -#: include/nav.php:155 -msgid "Load Network page with no filters" -msgstr "Laad de netwerkpagina zonder filters" - -#: include/nav.php:162 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: include/nav.php:166 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: include/nav.php:167 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: include/nav.php:171 -msgid "Private mail" -msgstr "Privéberichten" - -#: include/nav.php:172 -msgid "Inbox" -msgstr "Inbox" - -#: include/nav.php:173 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: include/nav.php:177 -msgid "Manage" -msgstr "Beheren" - -#: include/nav.php:177 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: include/nav.php:182 -msgid "Account settings" -msgstr "Account instellingen" - -#: include/nav.php:185 -msgid "Manage/Edit Profiles" -msgstr "Beheer/Wijzig Profielen" - -#: include/nav.php:187 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: include/nav.php:194 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: include/nav.php:198 -msgid "Navigation" -msgstr "Navigatie" - -#: include/nav.php:198 -msgid "Site map" -msgstr "Sitemap" - -#: include/api.php:878 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:897 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:916 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "gebruik een kortere naam" - -#: include/user.php:98 -msgid "Name too short." -msgstr "Naam te kort" - -#: include/user.php:113 -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:118 -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:121 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: include/user.php:157 -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:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "standaard" - -#: include/user.php:266 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: include/user.php:299 include/user.php:303 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Vrienden" - -#: include/user.php:387 -#, 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:391 -#, 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:720 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: include/diaspora.php:2604 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: include/delivery.php:533 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: include/delivery.php:544 include/enotify.php:37 -msgid "noreply" -msgstr "geen reactie" - -#: include/items.php:4903 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" - -#: include/items.php:5178 -msgid "Archives" -msgstr "Archieven" - #: include/profile_selectors.php:6 msgid "Male" msgstr "Man" @@ -7861,6 +183,12 @@ msgstr "Niet-specifiek" msgid "Other" msgstr "Anders" +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + #: include/profile_selectors.php:23 msgid "Males" msgstr "Mannen" @@ -7949,6 +277,10 @@ msgstr "Ontrouw" msgid "Sex Addict" msgstr "Seksverslaafd" +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Vrienden" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Vriendschap plus" @@ -8033,301 +365,299 @@ msgstr "Kan me niet schelen" 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:24 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "%s Administrator" -msgstr "%s Beheerder" - -#: include/enotify.php:26 -#, php-format -msgid "%1$s, %2$s Administrator" +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: include/enotify.php:68 -#, php-format -msgid "%s " -msgstr "%s " +#: include/auth.php:45 +msgid "Logged out." +msgstr "Uitgelogd." -#: include/enotify.php:82 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Login mislukt." -#: include/enotify.php:84 -#, 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:85 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s stuurde jou %2$s." - -#: include/enotify.php:85 -msgid "a private message" -msgstr "een prive bericht" - -#: include/enotify.php:86 -#, 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:138 -#, 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:145 -#, 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:153 -#, 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:163 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: include/enotify.php:164 -#, 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:167 include/enotify.php:182 include/enotify.php:195 -#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 -#, 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:174 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: include/enotify.php:176 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: include/enotify.php:178 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: include/enotify.php:189 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificatie] %s heeft jou genoemd" - -#: include/enotify.php:190 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s heeft jou in %2$s genoemd" - -#: include/enotify.php:191 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." - -#: include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:203 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:216 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" - -#: include/enotify.php:217 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s heeft jou aangestoten op %2$s" - -#: include/enotify.php:218 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:233 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s heeft jouw bericht gelabeld in %2$s" - -#: include/enotify.php:235 -#, 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:246 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" - -#: include/enotify.php:247 -#, 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:248 -#, 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:251 include/enotify.php:293 -#, php-format -msgid "You may visit their profile at %s" -msgstr "U kunt hun profiel bezoeken op %s" - -#: include/enotify.php:253 -#, 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:261 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:262 include/enotify.php:263 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:269 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: include/enotify.php:270 include/enotify.php:271 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:284 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: include/enotify.php:285 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:286 -#, php-format +#: include/auth.php:132 include/user.php:75 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: include/enotify.php:291 -msgid "Name:" -msgstr "Naam:" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "De foutboodschap was:" -#: include/enotify.php:292 -msgid "Photo:" -msgstr "Foto: " - -#: include/enotify.php:295 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: include/enotify.php:303 include/enotify.php:316 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:304 include/enotify.php:317 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:305 include/enotify.php:318 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:308 +#: include/group.php:25 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." +"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:209 +msgid "Default privacy group for new contacts" msgstr "" -#: include/enotify.php:311 include/enotify.php:325 +#: include/group.php:242 +msgid "Everybody" +msgstr "Iedereen" + +#: include/group.php:265 +msgid "edit" +msgstr "verander" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Groepen" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Verander groep" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Groepsnaam:" + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "toevoegen" + +#: 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:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Frequent" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "elk uur" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "dagelijks" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "wekelijks" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "maandelijks" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "E-mail" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "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 "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: include/acl_selectors.php:332 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/enotify.php:321 +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Je profieldetails verbergen voor onbekende bezoekers?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "tonen" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "niet tonen" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Rechten" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Afsluiten" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "status" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "gebeurtenis" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, 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 "" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s leuk" -#: include/enotify.php:323 +#: include/like.php:184 include/conversation.php:144 #, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s niet leuk" -#: include/enotify.php:336 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: include/enotify.php:337 +#: include/like.php:186 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: include/enotify.php:338 +#: include/like.php:188 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: include/enotify.php:341 +#: include/like.php:190 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: include/enotify.php:344 -#, php-format -msgid "Please visit %s to approve or reject the request." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" msgstr "" -#: include/oembed.php:214 -msgid "Embedded content" -msgstr "Ingebedde inhoud" +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "" -#: include/oembed.php:223 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "" #: include/uimport.php:94 msgid "Error decoding account file" @@ -8365,34 +695,8071 @@ msgstr[1] "%d contacten werden niet geïmporteerd" msgid "Done. You can now login with your username and password" msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" -#: index.php:442 -msgid "toggle mobile" -msgstr "mobiel thema omwisselen" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Diversen" -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Verjaardag:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Leeftijd:" + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" 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" +#: include/datetime.php:341 +msgid "never" +msgstr "nooit" -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stel breedte van het thema in" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Kleurschema" +#: include/datetime.php:350 +msgid "year" +msgstr "jaar" -#: 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" +#: include/datetime.php:350 +msgid "years" +msgstr "jaren" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stel kleurschema in" +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "maand" + +#: include/datetime.php:351 +msgid "months" +msgstr "maanden" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "week" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "weken" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "dag" + +#: include/datetime.php:353 +msgid "days" +msgstr "dagen" + +#: include/datetime.php:354 +msgid "hour" +msgstr "uur" + +#: include/datetime.php:354 +msgid "hours" +msgstr "uren" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minuut" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minuten" + +#: include/datetime.php:356 +msgid "second" +msgstr "seconde" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "secondes" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "%s's verjaardag" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gefeliciteerd %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica Notificatie" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Bedankt" + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s Beheerder" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "geen reactie" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" + +#: include/enotify.php:85 +#, 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:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s stuurde jou %2$s." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "een prive bericht" + +#: include/enotify.php:88 +#, 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:134 +#, 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:141 +#, 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:149 +#, 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:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:161 +#, 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:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, 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:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificatie] %s heeft jou genoemd" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s heeft jou in %2$s genoemd" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s heeft jou aangestoten op %2$s" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s heeft jouw bericht gelabeld in %2$s" + +#: include/enotify.php:234 +#, 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:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" + +#: include/enotify.php:247 +#, 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:248 +#, 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:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "U kunt hun profiel bezoeken op %s" + +#: include/enotify.php:254 +#, 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:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Naam:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Foto: " + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Begint:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Eindigt:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Plaats:" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Zondag" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Maandag" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Dinsdag" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Woensdag" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Donderdag" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Vrijdag" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Zaterdag" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Mei" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Januari" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Februari" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Maart" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "April" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Juni" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Juli" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Augustus" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "September" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Oktober" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "November" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "December" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l j F" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Uitloggen" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Tijdlijn" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profiel" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Foto's" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Jouw foto's" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Video's" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Gebeurtenissen" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Jouw gebeurtenissen" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Login" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Inloggen" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Tijdlijn" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registreer" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Maak een accoount" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Help" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Zoeken" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Contacten" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Website" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Conversaties op deze website" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Gids" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Personengids" + +#: include/nav.php:154 +msgid "Information" +msgstr "Informatie" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Netwerk" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Conversaties van je vrienden" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Netwerkpagina opnieuw instellen" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Laad de netwerkpagina zonder filters" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Verzoeken" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notificaties" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Privéberichten" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Privéberichten" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Inbox" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nieuw Bericht" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Beheren" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Paginabeheer uitbesteden" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Instellingen" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Account instellingen" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profielen" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Beheer/Wijzig Profielen" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Beheer" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navigatie" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Sitemap" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Contactfoto's" + +#: 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:373 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Systeem" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Persoonlijk" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s gaf een reactie op het bericht van %s" + +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s schreef een nieuw bericht" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "%s vond het bericht van %s leuk" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s vond het bericht van %s niet leuk" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is nu bevriend met %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Vriendschapsvoorstel" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Vriendschapsverzoek" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nieuwe Volger" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(geen onderwerp)" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: include/network.php:595 +msgid "view full size" +msgstr "Volledig formaat" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Bekijk status" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Verwijder contact" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Stuur een privébericht" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Aanstoten" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "Forum" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is nu bevriend met %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stootte %2$s aan" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is op dit moment %2$s" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde %3$s van %2$s met %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "bericht/item" + +#: include/conversation.php:304 +#, 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:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Houdt van" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Kies" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Verwijder" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Categorieën:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s van %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "In context bekijken" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Even geduld" + +#: include/conversation.php:870 +msgid "remove" +msgstr "verwijder" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "en" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", en %d andere mensen" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d mensen vinden dit leuk" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people vinden dit niet leuk" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "Label:" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Bewaren in map:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Delen" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "Foto uploaden" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Voeg een webadres in" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "webadres" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "video adres" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "audio adres" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Stel uw locatie in" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "Stel uw locatie in" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Titel plaatsen" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "rechten" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Openbare post" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Voorvertoning" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Annuleren" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Verzenden naar Groepen" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Verzenden naar Contacten" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Privé verzending" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Bericht" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 +msgid "General Features" +msgstr "Algemene functies" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "Tekstverwerker met opmaak" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "Voorvertoning bericht" + +#: include/features.php:81 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:82 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "Zijbalkwidgets op netwerkpagina" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Zoeken op datum" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "Groepsfilter" + +#: include/features.php:90 +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:91 +msgid "Network Filter" +msgstr "Netwerkfilter" + +#: include/features.php:91 +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:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "Netwerktabs" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: include/features.php:98 +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:99 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: include/features.php:99 +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:100 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:100 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:105 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "Meervoudige verwijdering" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties na verzending" + +#: include/features.php:108 +msgid "Tagging" +msgstr "Labelen" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen te bewaren" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." + +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: include/follow.php:141 +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:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:258 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Gevraagde account is niet beschikbaar." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Gevraagde profiel is niet beschikbaar." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Bewerk profiel" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Beheer/wijzig profielen" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Maak nieuw profiel" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Profiel afbeelding" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "zichtbaar voor iedereen" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Pas zichtbaarheid aan" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Geslacht:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Tijdlijn:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Website:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Over:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Netwerk:" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "G l j F" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "d F" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[vandaag]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "F j Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "F j" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Leeftijd:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Labels:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religie:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Hobby:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Houdt van:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Muzikale interesse " + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Televisie" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultuur/ontspanning:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Liefde/romance:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "School/opleiding:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Geavanceerd" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Profieldetails" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Naam achtergehouden]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Wil je echt dit item verwijderen?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Ja" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Toegang geweigerd" + +#: include/items.php:2239 +msgid "Archives" +msgstr "Archieven" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Ingebedde inhoud" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Inbedden uitgeschakeld" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "volgend" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "" + +#: include/text.php:304 +msgid "newer" +msgstr "nieuwere berichten" + +#: include/text.php:306 +msgid "older" +msgstr "oudere berichten" + +#: include/text.php:311 +msgid "prev" +msgstr "vorige" + +#: include/text.php:313 +msgid "first" +msgstr "eerste" + +#: include/text.php:345 +msgid "last" +msgstr "laatste" + +#: include/text.php:348 +msgid "next" +msgstr "volgende" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Geen contacten" + +#: include/text.php:912 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: include/text.php:925 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Bewaren" + +#: include/text.php:1076 +msgid "poke" +msgstr "aanstoten" + +#: include/text.php:1076 +msgid "poked" +msgstr "aangestoten" + +#: include/text.php:1077 +msgid "ping" +msgstr "ping" + +#: include/text.php:1077 +msgid "pinged" +msgstr "gepingd" + +#: include/text.php:1078 +msgid "prod" +msgstr "porren" + +#: include/text.php:1078 +msgid "prodded" +msgstr "gepord" + +#: include/text.php:1079 +msgid "slap" +msgstr "slaan" + +#: include/text.php:1079 +msgid "slapped" +msgstr "geslagen" + +#: include/text.php:1080 +msgid "finger" +msgstr "finger" + +#: include/text.php:1080 +msgid "fingered" +msgstr "gerfingerd" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "afpoeieren" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: include/text.php:1095 +msgid "happy" +msgstr "Blij" + +#: include/text.php:1096 +msgid "sad" +msgstr "Verdrietig" + +#: include/text.php:1097 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1098 +msgid "tired" +msgstr "vermoeid" + +#: include/text.php:1099 +msgid "perky" +msgstr "parmantig" + +#: include/text.php:1100 +msgid "angry" +msgstr "boos" + +#: include/text.php:1101 +msgid "stupified" +msgstr "verbijsterd" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "onzeker" + +#: include/text.php:1103 +msgid "interested" +msgstr "Geïnteresseerd" + +#: include/text.php:1104 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "vrolijk" + +#: include/text.php:1106 +msgid "alive" +msgstr "levend" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "verveeld" + +#: include/text.php:1108 +msgid "anxious" +msgstr "bezorgd" + +#: include/text.php:1109 +msgid "cranky" +msgstr "humeurig " + +#: include/text.php:1110 +msgid "disturbed" +msgstr "verontrust" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "gefrustreerd" + +#: include/text.php:1112 +msgid "motivated" +msgstr "gemotiveerd" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "ontspannen" + +#: include/text.php:1114 +msgid "surprised" +msgstr "verbaasd" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Bekijk Video" + +#: include/text.php:1356 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1806 +msgid "activity" +msgstr "activiteit" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "reactie" +msgstr[1] "reacties" + +#: include/text.php:1809 +msgid "post" +msgstr "bericht" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "Item bewaard" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "gebruik een kortere naam" + +#: include/user.php:98 +msgid "Name too short." +msgstr "Naam te kort" + +#: include/user.php:113 +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:118 +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:121 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: include/user.php:157 +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:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "standaard" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 +#, 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:438 +#, 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:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Registratie details voor %s" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Bericht succesvol geplaatst." + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Toegang geweigerd" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Geen resultaten." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Dit is Friendica, versie" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "draaiend op web-adres" + +#: mod/friendica.php:73 +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:75 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:76 +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:90 +msgid "Installed plugins/addons/apps:" +msgstr "Geïnstalleerde plugins/toepassingen:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Geen plugins of toepassingen geïnstalleerd" + +#: 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:1807 +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 "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\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 "" + +#: 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 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Bijnaam of e-mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Opnieuw" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Geen profiel" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Help:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Niet gevonden" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: 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/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol fout. Geen ID Gevonden." + +#: mod/openid.php:60 +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/uimport.php:50 mod/register.php:198 +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/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Importeren" + +#: 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 (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: 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/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Contact bewerken" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Contacten die geen leden zijn van een groep" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "Account exporteren" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "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:30 +msgid "Export all" +msgstr "Alles exporteren" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "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/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" + +#: 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:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: 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/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Opslaan" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Bestanden" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificatie." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle contacten (met veilige profieltoegang)" + +#: 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/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Verwijderen" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "Klaar" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "Houd dit scherm open tot het klaar is" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." + +#: 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/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- Kies -" + +#: 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/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/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Toepassingen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: mod/p.php:9 +msgid "Not Extended" +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 mod/profile_photo.php:250 mod/profiles.php:707 +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:51 +msgid "Importing Emails" +msgstr "E-mails importeren" + +#: mod/newmember.php:51 +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:53 +msgid "Go to Your Contacts Page" +msgstr "Ga naar je contactenpagina" + +#: mod/newmember.php:53 +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:55 +msgid "Go to Your Site's Directory" +msgstr "Ga naar de gids van je website" + +#: mod/newmember.php:55 +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:57 +msgid "Finding New People" +msgstr "Nieuwe mensen vinden" + +#: mod/newmember.php:57 +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:65 +msgid "Group Your Contacts" +msgstr "Groepeer je contacten" + +#: mod/newmember.php:65 +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:68 +msgid "Why Aren't My Posts Public?" +msgstr "Waarom zijn mijn berichten niet openbaar?" + +#: mod/newmember.php:68 +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:73 +msgid "Getting Help" +msgstr "Hulp krijgen" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Ga naar de help" + +#: mod/newmember.php:77 +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/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/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tijdsconversie" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC tijd: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Huidige Tijdzone: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Omgerekende lokale tijd: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selecteer je tijdzone:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Groep aangemaakt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Kon de groep niet aanmaken." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Groep niet gevonden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Groepsnaam gewijzigd." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Bewaar groep" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Maak een groep contacten/vrienden aan." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Groep verwijderd." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Niet in staat om groep te verwijderen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Groepsbewerker" + +#: mod/group.php:190 +msgid "Members" +msgstr "Leden" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Alle Contacten" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "De groep is leeg" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "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:78 +msgid "Message could not be sent." +msgstr "Bericht kon niet verzonden worden." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Fout bij het verzamelen van berichten." + +#: mod/wallmessage.php:68 mod/message.php:84 +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:341 +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:342 mod/message.php:536 +msgid "To:" +msgstr "Aan:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Onderwerp:" + +#: mod/share.php:38 +msgid "link" +msgstr "link" + +#: 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/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Nee" + +#: 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/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "Succesvol" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "Mislukt" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "Verboden" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heet %2$s van harte welkom" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Bericht verwijderd." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Gesprek verwijderd." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Geen berichten." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Verwijder bericht" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Verwijder gesprek" + +#: mod/message.php:531 +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:535 +msgid "Send Reply" +msgstr "Verstuur Antwoord" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Jij en %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s en jij" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Beheer Identiteiten en/of Pagina's" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Selecteer een identiteit om te beheren:" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Contactinstellingen toegepast." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button 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:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Naam" + +#: 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/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Zo'n groep bestaat niet" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Privébericht" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "leuk" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "niet leuk" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Delen" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "Delen" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Dit ben jij" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Reacties" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Vet" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Cursief" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Onderstrepen" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Citeren" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Broncode" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Afbeelding" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Bewerken" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "ster toevoegen" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "ster verwijderen" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "ster toevoegen of verwijderen" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "met ster" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "label toevoegen" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "Bewaren in map" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "aan" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "wall-to-wall" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "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/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/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/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleining van de afbeelding [%s] mislukt." + +#: mod/profile_photo.php:124 +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." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Ik kan de afbeelding niet verwerken" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Upload bestand:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Kies een profiel:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Uploaden" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "of" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "Deze stap overslaan" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit je fotoalbums" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: mod/profile_photo.php:269 +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:271 +msgid "Done Editing" +msgstr "Wijzigingen compleet" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Uploaden van afbeelding gelukt." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + +#: 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/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Ongeldige request identifier." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Verwerpen" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Negeren" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Notificatiesoort:" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "Voorgesteld door %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Bericht over een nieuwe vriend" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "Indien toepasbaar" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Goedkeuren" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Denkt dat u hem of haar kent:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "Ja" + +#: mod/notifications.php:196 +msgid "no" +msgstr "Nee" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Vriend" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Deler" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Bewonderaar" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "Profiel url" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd" + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profiel-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Echtelijke staat" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Werk" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Godsdienst" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Politieke standpunten" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Geslacht" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Seksuele Voorkeur" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Tijdlijn" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Interesses" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Adres" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Plaats" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Profiel bijgewerkt." + +#: mod/profiles.php:564 +msgid " and " +msgstr "en" + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "publiek profiel" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Bezoek %2$s van %1$s" + +#: mod/profiles.php:579 +#, 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:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Dit profiel bekijken" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Nieuw profiel aanmaken met deze instellingen" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Je Geslacht:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Echtelijke Staat:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: vissen fotografie software" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Profiel Naam:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Vereist" + +#: mod/profiles.php:718 +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:719 +msgid "Your Full Name:" +msgstr "Je volledige naam:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Postadres:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Wie: (indien toepasbaar)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Vertel iets over jezelf..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Geloof:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: mod/profiles.php:740 +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:741 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Televisie" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Werk" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "School/opleiding" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Wijzig/Beheer Profielen" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Vorige" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Volgende" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Globale gids" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Websitegids" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Geen resultaten" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Item is verwijderd." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Pas aan aan de tijdzone van de gebruiker" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Beschrijving:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Systeem onbeschikbaar wegens onderhoud" + +#: mod/match.php:33 +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:86 +msgid "is interested in:" +msgstr "Is geïnteresseerd in:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Profielmatch" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Wil je echt dit voorstel verwijderen?" + +#: mod/suggest.php:71 +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:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "iedereen" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Contactinformatie niet beschikbaar" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Album niet gevonden" + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Verwijder album" + +#: mod/photos.php:230 +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:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Wil je echt deze foto verwijderen?" + +#: mod/photos.php:688 +#, 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:688 +msgid "a photo" +msgstr "een foto" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: mod/photos.php:1114 +#, 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:1148 +msgid "Upload Photos" +msgstr "Upload foto's" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "of bestaande albumnaam: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Toon geen bericht op je tijdlijn van deze upload" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Privé foto" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Publieke foto" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Album wijzigen" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Toon niewste eerst" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Toon oudste eerst" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Foto is niet beschikbaar" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Bewerk foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Gebruik als profielfoto" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Bekijk in volledig formaat" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Labels: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Alle labels verwijderen]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Onderschrift" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Een label toevoegen" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Privé foto" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Publieke foto" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Album bekijken" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: mod/register.php:98 +#, 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 "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: mod/register.php:226 +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:227 +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:228 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Je uitnodigingsid:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Registratie" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Je email adres:" + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Bevestig:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'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:286 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Account" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Extra functies" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Weergave" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "Sociale netwerken" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Plugins" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Account verwijderen" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Wijzigen" + +#: mod/settings.php:269 +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:274 +msgid "Email settings updated." +msgstr "E-mail instellingen bijgewerkt.." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Functies bijgewerkt" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Verkeerd wachtwoord." + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr "Naam te kort." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr "Geen geldig e-mailadres." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr "Kan niet veranderen naar die e-mail." + +#: mod/settings.php:557 +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:561 +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:601 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Doorverwijzing" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "URL pictogram" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Geen naam" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Plugin Instellingen" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Uit" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Aan" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Extra functies" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "ingeschakeld" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "uitgeschakeld" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "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:893 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Beveiliging:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Geen" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: mod/settings.php:1005 +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:1006 +msgid "Don't show emoticons" +msgstr "Emoticons niet tonen" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "Oneindig scrollen" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Deze account is een normaal persoonlijk profiel" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: mod/settings.php:1129 +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:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Privé-forum - enkel voor goedgekeurde leden" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +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:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Je standaardprofiel in je lokale gids publiceren?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Je standaardprofiel in de globale sociale gids publiceren?" + +#: mod/settings.php:1177 +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:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jou profielpagina te posten?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: mod/settings.php:1198 +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:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Profiel is niet gepubliceerd." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: mod/settings.php:1227 +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:1228 +msgid "Advanced expiration settings" +msgstr "Geavanceerde instellingen voor vervallen" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Geavanceerd Verval:" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Laat berichten vervallen:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Laat persoonlijke aantekeningen verlopen:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Laat berichten met ster verlopen" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Laat foto's vervallen:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Laat alleen berichten door anderen vervallen:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Wachtwoord:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Standaard Privé Post" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Standaard Publieke Post" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Post automatisch een bericht op je tijdlijn wanneer:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "Een vriendschapsverzoek accepteren" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "Lid worden van een groep/forum" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "Een interessante verandering aan je profiel" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "Wil je deze video echt verwijderen?" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "Verwijder video" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Recente video's" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Thema-instellingen aangepast." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Website" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Gebruiker" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Thema's" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "DB aanpassingen" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Logs" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Plugin Functies" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Gebruikersregistraties wachten op bevestiging" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Beheer" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Normaal account" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Zeepkist-account" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Account voor een groep/forum of beroemdheid" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Automatisch Vriendschapsaccount" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Blog Account" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Privéforum/-groep" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Bericht-wachtrijen" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Samenvatting" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Registraties die in de wacht staan" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Versie" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Actieve plug-ins" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Site instellingen gewijzigd." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Nooit" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:907 +msgid "One year" +msgstr "" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Server voor meerdere gebruikers" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Gesloten" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Toestemming vereist" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Open" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Verplicht alle links om SSL te gebruiken" + +#: mod/admin.php:943 +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:957 +msgid "File upload" +msgstr "Uploaden bestand" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Beleid" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Performantie" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Site naam" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Systeemtaal" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Systeem thema" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "Mobiel systeem thema" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Beleid SSL-links" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "Verberg de 'help' uit het navigatiemenu" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "Server voor één gebruiker" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Maximum afbeeldingsgrootte" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "Maximum afbeeldingslengte" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "JPEG afbeeldingskwaliteit" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Registratiebeleid" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Maximum aantal registraties per dag" + +#: mod/admin.php:986 +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 "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Registratietekst" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Dit zal prominent op de registratiepagina getoond worden." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Verlaten accounts na x dagen" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Toegelaten vriend domeinen" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Toegelaten e-mail domeinen" + +#: mod/admin.php:990 +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 "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Dwing publiceren af" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "Sta threads in conversaties toe" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "Privéberichten als standaard voor nieuwe gebruikers" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" + +#: mod/admin.php:996 +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 "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Blokkeer meerdere registraties" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "OpenID ondersteuning" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "OpenID ondersteuning voor registraties en logins." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Controleer volledige naam" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 reguliere uitdrukkingen" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Activeer OStatus ondersteuning" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Activeer Diaspora ondersteuning" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Laat alleen Friendica contacten toe" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Controleer SSL" + +#: mod/admin.php:1014 +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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Proxy-gebruiker" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Netwerk timeout" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "Afleverinterval" + +#: mod/admin.php:1018 +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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Poll-interval" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Maximum gemiddelde belasting" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "Gebruik de tekst-zoekfunctie van MySQL" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "Pad naar cache voor items" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "Cache tijdsduur in seconden" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "Pad voor lock bestand" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Tijdelijk pad" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "Basispad voor installatie" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Wijziging succesvol gemarkeerd " + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Wijziging %s geslaagd." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Geen misluke wijzigingen" + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Misluke wijzigingen" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Probeer deze stap automatisch uit te voeren" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" +msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s gebruiker verwijderd" +msgstr[1] "%s gebruikers verwijderd" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Gebruiker '%s' verwijderd" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Gebruiker '%s' niet meer geblokkeerd" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Gebruiker '%s' geblokkeerd" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Registratiedatum" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Laatste login" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Laatste item" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "Gebruiker toevoegen" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "Alles selecteren" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Gebruikersregistraties wachten op een bevestiging" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Registratiedatum" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Geen registraties." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Weiger" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Blokkeren" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Sitebeheerder" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Account verlopen" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "Nieuwe gebruiker" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "Verwijderd sinds" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: mod/admin.php:1428 +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 "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "Naam van nieuwe gebruiker" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "Bijnaam" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "Bijnaam van nieuwe gebruiker" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "E-mailadres van nieuwe gebruiker" + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s uitgeschakeld." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s ingeschakeld." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Uitschakelen" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Inschakelen" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Schakelaar" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Auteur:" + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Onderhoud:" + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Geen thema's gevonden." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Log instellingen gewijzigd" + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Wis" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Logbestand" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Log niveau" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Kon het geselecteerde profiel niet vinden." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Contact bijgewerkt." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: mod/contacts.php:579 +#, 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:580 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Repareer URL-instellingen" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Toon conversaties" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Wijzig nu" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: mod/contacts.php:613 +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:614 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Voorstellen" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Toon alleen niet-geblokkeerde contacten" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Genegeerd" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Gearchiveerd" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Archiveer" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: mod/dfrn_confirm.php:127 +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." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Antwoord van de website op afstand werd niet begrepen." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Onverwacht antwoord van website op afstand:" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Bevestiging werd correct voltooid." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Website op afstand berichtte: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Verzoek mislukt of herroepen." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Ik kan geen contact foto instellen." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Geen gebruiker gevonden voor '%s'" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." + +#: mod/dfrn_confirm.php:578 +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:599 +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:613 +#, 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:633 +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:644 +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:703 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s is toegetreden tot %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "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:180 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: mod/dfrn_request.php:279 +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:341 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Geen geldig e-mailadres" + +#: mod/dfrn_request.php:375 +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:478 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar bent u al bevriend met %s." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: mod/dfrn_request.php:674 +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:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Bevestig" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Welkom terug %s." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." + +#: mod/dfrn_request.php:833 +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:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: mod/dfrn_request.php:860 +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:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "Kent %s jou?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Gefedereerde Sociale Web" + +#: mod/dfrn_request.php:871 +#, 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:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Adres van uw identiteit:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Aanvraag indienen" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Je hebt deze kontakt al toegevoegd" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Contact toegevoegd" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Kon geen toegang krijgen tot de database." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Kon tabel niet aanmaken." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "De database van je Friendica-website is geïnstalleerd." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Zie het bestand \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Systeemcontrole" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Controleer opnieuw" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Verbinding met database" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Servernaam database" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Gebruikersnaam database" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Wachtwoord database" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Naam database" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "E-mailadres van de websitebeheerder" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Selecteer een standaard tijdzone voor uw website" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Website-instellingen" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "PATH van het PHP commando" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "PHP-opdrachtregel" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "Gevonden PHP versie:" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "mysqli PHP module" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is schrijfbaar" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is schrijfbaar" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Wat nu

                                              " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Systeemfout. Post niet bewaard." + +#: mod/item.php:992 +#, 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." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" + +#: mod/item.php:995 +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." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Ongeldig contact." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" + +#: mod/network.php:856 +msgid "New" +msgstr "Nieuw" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Gedeelde links" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Interessante links" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Met ster" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} wilt je vriend worden" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} stuurde jou een bericht" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} vroeg om zich te registreren" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Geen contacten." + +#: object/Item.php:370 +msgid "via" +msgstr "via" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" #: view/theme/quattro/config.php:67 msgid "Alignment" @@ -8406,6 +8773,10 @@ msgstr "Links" msgid "Center" msgstr "Gecentreerd" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Kleurschema" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Lettergrootte berichten" @@ -8414,95 +8785,29 @@ msgstr "Lettergrootte berichten" 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 -#: view/theme/vier/config.php:111 -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 view/theme/vier/config.php:112 -#: view/theme/vier/theme.php:156 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "Forum/groepsprofielen" -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 -#: view/theme/vier/theme.php:377 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 -#: view/theme/vier/theme.php:203 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 -#: view/theme/vier/theme.php:185 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 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/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Zoek vrienden" -#: 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 view/theme/vier/theme.php:204 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Lokale gids" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" msgstr "" -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Diensten verbinden" #: view/theme/vier/config.php:64 msgid "Comma separated list of helper forums" @@ -8512,8 +8817,12 @@ msgstr "" msgid "Set style" msgstr "" -#: view/theme/vier/theme.php:295 -msgid "Quick Start" +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Forum/groepspagina's" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" msgstr "" #: view/theme/duepuntozero/config.php:45 @@ -8543,3 +8852,56 @@ msgstr "" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: boot.php:973 +msgid "show fewer" +msgstr "Minder tonen" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" + +#: boot.php:1796 +msgid "Password: " +msgstr "Wachtwoord:" + +#: boot.php:1797 +msgid "Remember me" +msgstr "Onthou me" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" + +#: boot.php:1810 +msgid "terms of service" +msgstr "servicevoorwaarden" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "privacybeleid" + +#: index.php:451 +msgid "toggle mobile" +msgstr "mobiel thema omwisselen" diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index 0e8399be7..6151bd7ab 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -5,269 +5,747 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; -$a->strings["Network:"] = "Netwerk:"; -$a->strings["Forum"] = "Forum"; -$a->strings["%d contact edited."] = array( - 0 => "%d contact gewijzigd.", - 1 => "%d contacten gewijzigd.", +$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["Connect"] = "Verbinden"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", ); -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; -$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"; -$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"; -$a->strings["%s is sharing with you"] = "%s deelt met jou"; -$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; -$a->strings["Never"] = "Nooit"; -$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["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = "Uitgeschakeld"; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$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"; -$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; -$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; -$a->strings["Ignore contact"] = "Negeer contact"; -$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; -$a->strings["View conversations"] = "Toon conversaties"; -$a->strings["Delete contact"] = "Verwijder contact"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare posts aanpassen"; -$a->strings["Update now"] = "Wijzig nu"; +$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["Unblock"] = "Blokkering opheffen"; -$a->strings["Block"] = "Blokkeren"; -$a->strings["Unignore"] = "Negeer niet meer"; -$a->strings["Ignore"] = "Negeren"; -$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["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["Profile URL"] = "Profiel url"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["About:"] = "Over:"; -$a->strings["Tags:"] = "Labels:"; -$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"; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; -$a->strings["Contacts"] = "Contacten"; -$a->strings["Search your contacts"] = "Doorzoek je contacten"; -$a->strings["Finding: "] = "Gevonden:"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; $a->strings["Find"] = "Zoek"; -$a->strings["Update"] = "Wijzigen"; -$a->strings["Archive"] = "Archiveer"; -$a->strings["Unarchive"] = "Archiveer niet meer"; -$a->strings["Delete"] = "Verwijder"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Profile Details"] = "Profieldetails"; -$a->strings["View all contacts"] = "Alle contacten zien"; -$a->strings["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["View all common friends"] = ""; -$a->strings["Repair"] = "Herstellen"; -$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; -$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; -$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; -$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; -$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["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["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["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["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["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["Friend Suggestions"] = "Vriendschapsvoorstellen"; +$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["%d contact in common"] = array( + 0 => "%d gedeeld contact", + 1 => "%d gedeelde contacten", +); +$a->strings["show more"] = "toon meer"; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; +$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"] = array( + 0 => "", + 1 => "", +); +$a->strings["Males"] = "Mannen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homo"; +$a->strings["Lesbian"] = "Lesbienne"; +$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"] = "getrouwd voor-de-wet"; +$a->strings["Happy"] = "Blij"; +$a->strings["Not looking"] = "Niet op zoek"; +$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["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Logged out."] = "Uitgelogd."; $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 %s"] = ""; -$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["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["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 groups"] = ""; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Contacts not in any group"] = ""; +$a->strings["add"] = "toevoegen"; +$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["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$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["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["show"] = "tonen"; +$a->strings["don't show"] = "niet tonen"; +$a->strings["CC: email addresses"] = "CC: e-mailadressen"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Close"] = "Afsluiten"; $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["Subscribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = ""; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["Done"] = "Klaar"; -$a->strings["success"] = "Succesvol"; -$a->strings["failed"] = "Mislukt"; -$a->strings["ignored"] = "Verboden"; -$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is"; -$a->strings["Save to Folder:"] = "Bewaren in map:"; -$a->strings["- select -"] = "- Kies -"; -$a->strings["Save"] = "Bewaren"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd"; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; -$a->strings["OStatus support is disabled. Contact can't be added."] = ""; -$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Does %s know you?"] = "Kent %s jou?"; -$a->strings["No"] = "Nee"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; -$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; -$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["event"] = "gebeurtenis"; +$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["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[geen onderwerp]"; $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"] = "Bewaar groep"; -$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["Group is empty"] = "De groep is leeg"; -$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["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["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["Miscellaneous"] = "Diversen"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$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["Friendica Notification"] = "Friendica Notificatie"; +$a->strings["Thank You,"] = "Bedankt"; +$a->strings["%s Administrator"] = "%s Beheerder"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$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 accepted 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 without 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["Please visit %s if you wish to make any changes to this relationship."] = ""; +$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["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Zondag"; +$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["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Mei"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "Januari"; +$a->strings["February"] = "Februari"; +$a->strings["March"] = "Maart"; +$a->strings["April"] = "April"; +$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["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["link to source"] = "Verwijzing naar bron"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Status"] = "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["Photos"] = "Foto's"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Videos"] = "Video's"; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Login"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Home"] = "Tijdlijn"; +$a->strings["Home Page"] = "Jouw tijdlijn"; +$a->strings["Register"] = "Registreer"; +$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["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Contacten"; +$a->strings["Community"] = "Website"; +$a->strings["Conversations on this site"] = "Conversaties op deze website"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$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 as seen"] = "Als 'gelezen' markeren"; +$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["Settings"] = "Instellingen"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Profiles"] = "Profielen"; +$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["Contact Photos"] = "Contactfoto's"; +$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["System"] = "Systeem"; +$a->strings["Personal"] = "Persoonlijk"; +$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s"; +$a->strings["%s created a new post"] = "%s schreef een nieuw bericht"; +$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 attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; +$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; +$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; +$a->strings["New Follower"] = "Nieuwe Volger"; +$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["(no subject)"] = "(geen onderwerp)"; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["view full size"] = "Volledig formaat"; +$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["View Status"] = "Bekijk status"; +$a->strings["View Photos"] = "Bekijk foto's"; +$a->strings["Network Posts"] = "Netwerkberichten"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Send PM"] = "Stuur een privébericht"; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = "Forum"; +$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["Image/photo"] = "Afbeelding/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; $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["Do you really want to delete this video?"] = "Wil je deze video echt verwijderen?"; -$a->strings["Delete Video"] = "Verwijder video"; -$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 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["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["Invalid request."] = ""; +$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["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$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["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = ", en %d andere mensen"; +$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$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["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["Public post"] = "Openbare post"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Post to Groups"] = "Verzenden naar Groepen"; +$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; +$a->strings["Private post"] = "Privé verzending"; +$a->strings["Message"] = "Bericht"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$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["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$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 forum 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["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$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["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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$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["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["Atom feed"] = ""; +$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["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Tijdlijn:"; +$a->strings["Homepage:"] = "Website:"; +$a->strings["About:"] = "Over:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = "Netwerk:"; +$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["Full Name:"] = "Volledige Naam:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$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["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Geavanceerd"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; +$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["Permission denied."] = "Toegang geweigerd"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Embedded content"] = "Ingebedde inhoud"; +$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "volgend"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = ""; +$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["View Video"] = "Bekijk Video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "activiteit"; +$a->strings["comment"] = array( + 0 => "reactie", + 1 => "reacties", +); +$a->strings["post"] = "bericht"; +$a->strings["Item filed"] = "Item bewaard"; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; +$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 \"_\"."] = ""; +$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["default"] = "standaard"; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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["Post successful."] = "Bericht succesvol geplaatst."; +$a->strings["Access denied."] = "Toegang geweigerd"; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Public access denied."] = "Niet vrij toegankelijk"; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$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["the bugtracker at github"] = ""; +$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["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."] = ""; @@ -287,51 +765,156 @@ $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["{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["No contacts."] = "Geen 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["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["Gender:"] = "Geslacht:"; -$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["No profile"] = "Geen profiel"; +$a->strings["Help:"] = "Help:"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Page not found."] = "Pagina niet gevonden"; +$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$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["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["Import"] = "Importeren"; +$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 (GNU Social/Statusnet) or from Diaspora"] = ""; +$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["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; +$a->strings["Edit contact"] = "Contact bewerken"; +$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; +$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["Export personal data"] = "Persoonlijke gegevens exporteren"; +$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["Your message:"] = "Jouw bericht:"; +$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["Submit"] = "Opslaan"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; +$a->strings["Profile Visibility Editor"] = ""; +$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["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["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = "Klaar"; +$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is"; +$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["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen gegevens."; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- Kies -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; +$a->strings["Item not available."] = "Item niet beschikbaar"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$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["Not Extended"] = ""; +$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 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["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["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["Item not found"] = "Item niet gevonden"; +$a->strings["Edit post"] = "Bericht bewerken"; +$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["The post was created"] = ""; +$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"] = "Bewaar groep"; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$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["Group is empty"] = "De groep is leeg"; +$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["link"] = "link"; +$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["No"] = "Nee"; $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:"; @@ -344,26 +927,18 @@ $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["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = "Succesvol"; +$a->strings["failed"] = "Mislukt"; +$a->strings["ignored"] = "Verboden"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; $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["Message not available."] = "Bericht niet beschikbaar."; $a->strings["Delete message"] = "Verwijder bericht"; @@ -378,9 +953,12 @@ $a->strings["%d message"] = array( 0 => "%d bericht", 1 => "%d berichten", ); -$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$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["Contact settings applied."] = "Contactinstellingen toegepast."; $a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; +$a->strings["Contact not found."] = "Contact niet gevonden"; $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["No mirroring"] = ""; @@ -388,6 +966,9 @@ $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; $a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; $a->strings["Refetch contact data"] = ""; +$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["Name"] = "Naam"; $a->strings["Account Nickname"] = "Bijnaam account"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; @@ -397,26 +978,482 @@ $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["Login"] = "Login"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["No such group"] = "Zo'n groep bestaat niet"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = ""; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties", +); +$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["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["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "Bewaren in map"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "aan"; +$a->strings["Wall-to-Wall"] = "wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; +$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["Mood"] = "Stemming"; +$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$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["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["Image exceeds size limit of %s"] = ""; +$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["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["Invalid request identifier."] = "Ongeldige request identifier."; +$a->strings["Discard"] = "Verwerpen"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["Network Notifications"] = "Netwerknotificaties"; +$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; +$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; +$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; +$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; +$a->strings["Notification type: "] = "Notificatiesoort:"; +$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["Profile URL"] = "Profiel url"; +$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$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["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["XMPP"] = ""; +$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["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$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["Relation"] = ""; +$a->strings["Your Gender:"] = "Je Geslacht:"; +$a->strings[" Marital Status:"] = " Echtelijke Staat:"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; +$a->strings["Profile Name:"] = "Profiel Naam:"; +$a->strings["Required"] = "Vereist"; +$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["Your Full Name:"] = "Je volledige naam:"; +$a->strings["Title/Description:"] = "Titel/Beschrijving:"; +$a->strings["Street Address:"] = "Postadres:"; +$a->strings["Locality/City:"] = "Gemeente/Stad:"; +$a->strings["Region/State:"] = "Regio/Staat:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$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["Tell us about yourself..."] = "Vertel iets over jezelf..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Adres tijdlijn:"; +$a->strings["Religious Views:"] = "Geloof:"; +$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; +$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["Private Keywords:"] = "Privé Sleutelwoorden:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; +$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["Hobbies/Interests"] = "Hobby's/Interesses"; +$a->strings["Love/romance"] = "Liefde/romance"; +$a->strings["Work/employment"] = "Werk"; +$a->strings["School/education"] = "School/opleiding"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Vorige"; +$a->strings["Next"] = "Volgende"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["Not available."] = "Niet beschikbaar"; +$a->strings["Global Directory"] = "Globale gids"; +$a->strings["Find on this site"] = "Op deze website zoeken"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Websitegids"; +$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; $a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; $a->strings["No matches"] = "Geen resultaten"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Contact Photos"] = "Contactfoto'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["Item has been removed."] = "Item is verwijderd."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; +$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; +$a->strings["Event details"] = "Gebeurtenis details"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Gebeurtenis begint:"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; +$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["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; +$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["Profile Match"] = "Profielmatch"; +$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; +$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["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["everybody"] = "iedereen"; +$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 file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$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["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$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["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["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["Private photo"] = "Privé foto"; +$a->strings["Public photo"] = "Publieke foto"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Album bekijken"; +$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["Registration successful."] = ""; +$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["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["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$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, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Je email adres:"; +$a->strings["New Password:"] = "Nieuw Wachtwoord:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Bevestig:"; +$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 your profile to this friendica instance"] = ""; +$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["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["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["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["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$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["GNU Social (OStatus)"] = ""; +$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["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["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$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["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$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["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$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["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$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["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["Your Identity Address is '%s' or '%s'."] = ""; +$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["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["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$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["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["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$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["Do you really want to delete this video?"] = "Wil je deze video echt verwijderen?"; +$a->strings["Delete Video"] = "Verwijder video"; +$a->strings["No videos selected"] = "Geen video's geselecteerd"; +$a->strings["Recent Videos"] = "Recente video's"; +$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; +$a->strings["Invalid request."] = ""; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; $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["Additional features"] = "Extra functies"; $a->strings["DB updates"] = "DB aanpassingen"; $a->strings["Inspect Queue"] = ""; $a->strings["Federation Statistics"] = ""; @@ -424,20 +1461,22 @@ $a->strings["Logs"] = "Logs"; $a->strings["View 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"; +$a->strings["unknown"] = ""; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; $a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; $a->strings["Administration"] = "Beheer"; -$a->strings["Currently this node is aware of nodes from the following platforms:"] = ""; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = ""; $a->strings["Recipient Profile"] = ""; $a->strings["Created"] = ""; $a->strings["Last Tried"] = ""; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; $a->strings["Normal Account"] = "Normaal account"; $a->strings["Soapbox Account"] = "Zeepkist-account"; $a->strings["Community/Celebrity Account"] = "Account voor een groep/forum of beroemdheid"; @@ -453,15 +1492,12 @@ $a->strings["Active plugins"] = "Actieve plug-ins"; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["RINO2 needs mcrypt php extension to work."] = ""; $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["Never"] = "Nooit"; $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["Disabled"] = "Uitgeschakeld"; $a->strings["Users, Global Contacts"] = ""; $a->strings["Users, Global Contacts/fallback"] = ""; $a->strings["One month"] = ""; @@ -475,13 +1511,11 @@ $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"; $a->strings["Auto Discovered Contact Directory"] = ""; $a->strings["Performance"] = "Performantie"; +$a->strings["Worker"] = ""; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = "Site naam"; $a->strings["Host name"] = ""; @@ -560,6 +1594,8 @@ $a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; $a->strings["OStatus support can only be enabled if threading is enabled."] = ""; $a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; $a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning"; @@ -626,6 +1662,16 @@ $a->strings["RINO Encryption"] = ""; $a->strings["Encryption layer between nodes."] = ""; $a->strings["Embedly API key"] = ""; $a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; $a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd "; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -641,7 +1687,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", @@ -653,22 +1698,23 @@ $a->strings["%s user deleted"] = array( $a->strings["User '%s' deleted"] = "Gebruiker '%s' verwijderd"; $a->strings["User '%s' unblocked"] = "Gebruiker '%s' niet meer geblokkeerd"; $a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd"; +$a->strings["Register date"] = "Registratiedatum"; +$a->strings["Last login"] = "Laatste login"; +$a->strings["Last item"] = "Laatste item"; $a->strings["Add User"] = "Gebruiker toevoegen"; $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["Note from the user"] = ""; $a->strings["Deny"] = "Weiger"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Unblock"] = "Blokkering opheffen"; $a->strings["Site admin"] = "Sitebeheerder"; $a->strings["Account expired"] = "Account verlopen"; $a->strings["New User"] = "Nieuwe gebruiker"; -$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"; @@ -691,6 +1737,8 @@ $a->strings["No themes found on the system. They should be paced in %1\$s"] = "" $a->strings["[Experimental]"] = "[Experimenteel]"; $a->strings["[Unsupported]"] = "[Niet ondersteund]"; $a->strings["Log settings updated."] = "Log instellingen gewijzigd"; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; $a->strings["Clear"] = "Wis"; $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Logbestand"; @@ -698,141 +1746,148 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Log niveau"; $a->strings["PHP logging"] = ""; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; $a->strings["Lock feature %s"] = ""; $a->strings["Manage Additional Features"] = ""; -$a->strings["Search Results For: %s"] = ""; -$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"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Shared Links"] = "Gedeelde links"; -$a->strings["Interesting Links"] = "Interessante links"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", - 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; -$a->strings["No such group"] = "Zo'n groep bestaat niet"; -$a->strings["Group: %s"] = ""; -$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["No friends to display."] = "Geen vrienden om te laten zien."; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; -$a->strings["Sun"] = ""; -$a->strings["Mon"] = ""; -$a->strings["Tue"] = ""; -$a->strings["Wed"] = ""; -$a->strings["Thu"] = ""; -$a->strings["Fri"] = ""; -$a->strings["Sat"] = ""; -$a->strings["Sunday"] = "Zondag"; -$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["Jan"] = ""; -$a->strings["Feb"] = ""; -$a->strings["Mar"] = ""; -$a->strings["Apr"] = ""; -$a->strings["May"] = "Mei"; -$a->strings["Jun"] = ""; -$a->strings["Jul"] = ""; -$a->strings["Aug"] = ""; -$a->strings["Sept"] = ""; -$a->strings["Oct"] = ""; -$a->strings["Nov"] = ""; -$a->strings["Dec"] = ""; -$a->strings["January"] = "Januari"; -$a->strings["February"] = "Februari"; -$a->strings["March"] = "Maart"; -$a->strings["April"] = "April"; -$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["today"] = ""; -$a->strings["month"] = "maand"; -$a->strings["week"] = "week"; -$a->strings["day"] = "dag"; -$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"; -$a->strings["Event details"] = "Gebeurtenis details"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Gebeurtenis begint:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; -$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["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Credits"] = ""; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; -$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["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; +$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["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"; +$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["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; +$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"; +$a->strings["%s is sharing with you"] = "%s deelt met jou"; +$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; +$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["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$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"; +$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; +$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; +$a->strings["Ignore contact"] = "Negeer contact"; +$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; +$a->strings["View conversations"] = "Toon conversaties"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare posts aanpassen"; +$a->strings["Update now"] = "Wijzig nu"; +$a->strings["Unignore"] = "Negeer niet meer"; +$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["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["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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Voorstellen"; +$a->strings["Suggest potential friends"] = "Stel vrienden voor"; +$a->strings["Show all contacts"] = "Toon alle contacten"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; +$a->strings["Search your contacts"] = "Doorzoek je contacten"; +$a->strings["Archive"] = "Archiveer"; +$a->strings["Unarchive"] = "Archiveer niet meer"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Alle contacten zien"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; +$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["Toggle Blocked status"] = "Schakel geblokkeerde status"; +$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; +$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; +$a->strings["Delete contact"] = "Verwijder contact"; +$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["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["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["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["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["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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$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["Confirm"] = "Bevestig"; +$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."] = ""; +$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["You already added this contact."] = "Je hebt deze kontakt al toegevoegd"; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Contact toegevoegd"; $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."; @@ -854,6 +1909,8 @@ $a->strings["Site administrator email address"] = "E-mailadres van de websitebeh $a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."; $a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website"; $a->strings["Site settings"] = "Website-instellingen"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."; $a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; $a->strings["PHP executable path"] = "PATH van het PHP commando"; @@ -874,6 +1931,8 @@ $a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; $a->strings["mysqli PHP module"] = "mysqli PHP module"; $a->strings["mb_string PHP module"] = "mb_string PHP module"; $a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; $a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."; $a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."; @@ -882,8 +1941,11 @@ $a->strings["Error: openssl PHP module required but not installed."] = "Fout: PH $a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."; $a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."; $a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; $a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; $a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; $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."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."; $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."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."; $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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."; @@ -896,507 +1958,89 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; $a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is not installed"] = ""; $a->strings["ImageMagick PHP extension is installed"] = ""; $a->strings["ImageMagick supports GIF"] = ""; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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["%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 %s"] = ""; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$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["Profile Match"] = "Profielmatch"; -$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["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["Additional Features"] = "Extra functies"; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$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."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = ""; -$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["GNU Social (OStatus)"] = ""; -$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. Enter -1 to disable it."] = ""; -$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["Calendar"] = ""; -$a->strings["Beginning of week:"] = ""; -$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["Theme settings"] = "Thema-instellingen"; -$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["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 '%s' or '%s'."] = ""; -$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["Your Language:"] = ""; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; -$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["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$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["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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; -$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["Confirm"] = "Bevestig"; -$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."] = ""; -$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["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["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["Registration successful."] = ""; -$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, real or real-looking): "] = ""; -$a->strings["Your Email Address: "] = "Je email adres:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$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["Only logged in users are permitted to perform a search."] = ""; -$a->strings["Too Many Requests"] = ""; -$a->strings["Only one search per minute is permitted for not logged in users."] = ""; -$a->strings["Search"] = "Zoeken"; -$a->strings["Items tagged with: %s"] = ""; -$a->strings["Search results for: %s"] = ""; -$a->strings["Status:"] = "Tijdlijn:"; -$a->strings["Homepage:"] = "Website:"; -$a->strings["Global Directory"] = "Globale gids"; -$a->strings["Find on this site"] = "Op deze website zoeken"; -$a->strings["Finding:"] = ""; -$a->strings["Site Directory"] = "Websitegids"; -$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["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["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["Friend Suggestions"] = "Vriendschapsvoorstellen"; -$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["Show more profile fields:"] = ""; -$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 :"] = ""; -$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["Age: "] = "Leeftijd:"; -$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["the bugtracker at github"] = ""; -$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["Resubscribing to OStatus contacts"] = ""; -$a->strings["Error"] = ""; -$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["Recent Photos"] = "Recente foto'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 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["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["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["Private photo"] = "Privé foto"; -$a->strings["Public photo"] = "Publieke foto"; -$a->strings["Share"] = "Delen"; -$a->strings["Attending"] = array( +$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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( 0 => "", 1 => "", ); -$a->strings["Not attending"] = ""; -$a->strings["Might attend"] = ""; -$a->strings["Map"] = ""; -$a->strings["Not Extended"] = ""; -$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 (GNU Social/Statusnet) or from Diaspora"] = ""; -$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["Messages in this group won't be send to these receivers."] = ""; +$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["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Shared Links"] = "Gedeelde links"; +$a->strings["Interesting Links"] = "Interessante links"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$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["No contacts."] = "Geen contacten."; +$a->strings["via"] = "via"; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; +$a->strings["Alignment"] = "Uitlijning"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Gecentreerd"; +$a->strings["Color scheme"] = "Kleurschema"; +$a->strings["Posts font size"] = "Lettergrootte berichten"; +$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; +$a->strings["Community Profiles"] = "Forum/groepsprofielen"; +$a->strings["Last users"] = "Laatste gebruikers"; +$a->strings["Find Friends"] = "Zoek vrienden"; +$a->strings["Local Directory"] = "Lokale gids"; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = "Diensten verbinden"; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Community Pages"] = "Forum/groepspagina's"; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; $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"] = "Nieuwe 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:"; @@ -1405,565 +2049,4 @@ $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["This entry was edited"] = ""; -$a->strings["I will attend"] = ""; -$a->strings["I will not attend"] = ""; -$a->strings["I might attend"] = ""; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$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["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["%d contact in common"] = array( - 0 => "%d gedeeld contact", - 1 => "%d gedeelde contacten", -); -$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["Photo Location"] = ""; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$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["List Forums"] = ""; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$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["Advanced Profile Settings"] = ""; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$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 groups"] = ""; -$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["YYYY-MM-DD or MM-DD"] = ""; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["year"] = "jaar"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$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["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Atom feed"] = ""; -$a->strings["Message"] = "Bericht"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; -$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["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["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["Forums:"] = ""; -$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["event"] = "gebeurtenis"; -$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["%1\$s is attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; -$a->strings["Post to Email"] = "Verzenden per e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["show"] = "tonen"; -$a->strings["don't show"] = "niet tonen"; -$a->strings["Close"] = "Afsluiten"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["stopped following"] = ""; -$a->strings["View Status"] = "Bekijk status"; -$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["Poke"] = "Aanstoten"; -$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["%1\$s attends %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; -$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["%s attends."] = ""; -$a->strings["%s doesn't attend."] = ""; -$a->strings["%s attends maybe."] = ""; -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = ", en %d andere mensen"; -$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; -$a->strings["%s like this."] = ""; -$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; -$a->strings["%s don't like this."] = ""; -$a->strings["%2\$d people attend"] = ""; -$a->strings["%s attend."] = ""; -$a->strings["%2\$d people don't attend"] = ""; -$a->strings["%s don't attend."] = ""; -$a->strings["%2\$d people anttend maybe"] = ""; -$a->strings["%s anttend maybe."] = ""; -$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["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 all"] = ""; -$a->strings["Like"] = array( - 0 => "", - 1 => "", -); -$a->strings["Dislike"] = array( - 0 => "", - 1 => "", -); -$a->strings["Not Attending"] = array( - 0 => "", - 1 => "", -); -$a->strings["Undecided"] = array( - 0 => "", - 1 => "", -); -$a->strings["Forums"] = ""; -$a->strings["External link to forum"] = ""; -$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["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["Full Text"] = ""; -$a->strings["Tags"] = ""; -$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["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "klik om te openen/sluiten"; -$a->strings["View on separate page"] = ""; -$a->strings["view on separate page"] = ""; -$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["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["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["GNU Social"] = ""; -$a->strings["App.net"] = ""; -$a->strings["Redmatrix"] = ""; -$a->strings[" on Last.fm"] = " op Last.fm"; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$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["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["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 \"_\"."] = ""; -$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["default"] = "standaard"; -$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["(no subject)"] = "(geen onderwerp)"; -$a->strings["noreply"] = "geen reactie"; -$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["Males"] = "Mannen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homo"; -$a->strings["Lesbian"] = "Lesbienne"; -$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"] = "getrouwd voor-de-wet"; -$a->strings["Happy"] = "Blij"; -$a->strings["Not looking"] = "Niet op zoek"; -$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["%1\$s, %2\$s Administrator"] = ""; -$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 accepted 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["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["Comma separated list of helper forums"] = ""; -$a->strings["Set style"] = ""; -$a->strings["Quick Start"] = ""; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index 7f65e8f1b..77c5cddd7 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -1,6599 +1,32 @@ # FRIENDICA Distributed Social Network # Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project # This file is distributed under the same license as the Friendica package. -# +# # Translators: -# Aliaksei Sakalou , 2016 -# Alex , 2013 +# Alex , 2012-2013 +# soko1 , 2016 # vislav , 2014 # Alex , 2013 # Alex , 2012 # Pavel Morozov , 2011 # Pavel Morozov , 2011 -# Stanislav N. , 2012 +# Stanislav N. , 2012 +# Stanislav N. , 2012 +# vislav , 2014 # Михаил , 2013 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-24 06:49+0100\n" -"PO-Revision-Date: 2016-02-16 18:28+0300\n" -"Last-Translator: Aliaksei Sakalou \n" -"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/" -"language/ru/)\n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" +"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" -"X-Generator: Poedit 1.5.4\n" - -#: mod/contacts.php:50 include/identity.php:395 -msgid "Network:" -msgstr "Сеть:" - -#: mod/contacts.php:51 mod/contacts.php:961 mod/videos.php:37 -#: mod/viewcontacts.php:105 mod/dirfind.php:214 mod/network.php:598 -#: mod/allfriends.php:77 mod/match.php:82 mod/directory.php:172 -#: mod/common.php:123 mod/suggest.php:95 mod/photos.php:41 -#: include/identity.php:298 -msgid "Forum" -msgstr "Форум" - -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: mod/contacts.php:159 mod/contacts.php:383 -msgid "Could not access contact record." -msgstr "Не удалось получить доступ к записи контакта." - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Не удалось найти выбранный профиль." - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Контакт обновлен." - -#: mod/contacts.php:208 mod/dfrn_request.php:575 -msgid "Failed to update contact record." -msgstr "Не удалось обновить запись контакта." - -#: mod/contacts.php:365 mod/manage.php:96 mod/display.php:509 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 -#: mod/ostatus_subscribe.php:9 mod/follow.php:11 mod/follow.php:73 -#: mod/follow.php:155 mod/item.php:180 mod/item.php:192 mod/group.php:19 -#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69 -#: mod/message.php:45 mod/message.php:181 mod/crepair.php:117 -#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 -#: mod/settings.php:126 mod/settings.php:646 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 -#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 -#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5096 index.php:383 -msgid "Permission denied." -msgstr "Нет разрешения." - -#: mod/contacts.php:404 -msgid "Contact has been blocked" -msgstr "Контакт заблокирован" - -#: mod/contacts.php:404 -msgid "Contact has been unblocked" -msgstr "Контакт разблокирован" - -#: mod/contacts.php:415 -msgid "Contact has been ignored" -msgstr "Контакт проигнорирован" - -#: mod/contacts.php:415 -msgid "Contact has been unignored" -msgstr "У контакта отменено игнорирование" - -#: mod/contacts.php:427 -msgid "Contact has been archived" -msgstr "Контакт заархивирован" - -#: mod/contacts.php:427 -msgid "Contact has been unarchived" -msgstr "Контакт разархивирован" - -#: mod/contacts.php:454 mod/contacts.php:802 -msgid "Do you really want to delete this contact?" -msgstr "Вы действительно хотите удалить этот контакт?" - -#: mod/contacts.php:456 mod/follow.php:110 mod/message.php:216 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1117 -#: mod/settings.php:1121 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1138 mod/settings.php:1144 mod/settings.php:1170 -#: mod/settings.php:1171 mod/settings.php:1172 mod/settings.php:1173 -#: mod/settings.php:1174 mod/dfrn_request.php:857 mod/register.php:238 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/profiles.php:687 mod/api.php:105 include/items.php:4928 -msgid "Yes" -msgstr "Да" - -#: mod/contacts.php:459 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121 -#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:660 mod/settings.php:686 -#: mod/dfrn_request.php:871 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1220 -#: include/items.php:4931 -msgid "Cancel" -msgstr "Отмена" - -#: mod/contacts.php:471 -msgid "Contact has been removed." -msgstr "Контакт удален." - -#: mod/contacts.php:512 -#, php-format -msgid "You are mutual friends with %s" -msgstr "У Вас взаимная дружба с %s" - -#: mod/contacts.php:516 -#, php-format -msgid "You are sharing with %s" -msgstr "Вы делитесь с %s" - -#: mod/contacts.php:521 -#, php-format -msgid "%s is sharing with you" -msgstr "%s делитса с Вами" - -#: mod/contacts.php:541 -msgid "Private communications are not available for this contact." -msgstr "Личные коммуникации недоступны для этого контакта." - -#: mod/contacts.php:544 mod/admin.php:822 -msgid "Never" -msgstr "Никогда" - -#: mod/contacts.php:548 -msgid "(Update was successful)" -msgstr "(Обновление было успешно)" - -#: mod/contacts.php:548 -msgid "(Update was not successful)" -msgstr "(Обновление не удалось)" - -#: mod/contacts.php:550 -msgid "Suggest friends" -msgstr "Предложить друзей" - -#: mod/contacts.php:554 -#, php-format -msgid "Network type: %s" -msgstr "Сеть: %s" - -#: mod/contacts.php:567 -msgid "Communications lost with this contact!" -msgstr "Связь с контактом утеряна!" - -#: mod/contacts.php:570 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:571 mod/admin.php:831 -msgid "Disabled" -msgstr "Отключенный" - -#: mod/contacts.php:571 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:571 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:587 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196 -#: mod/events.php:574 mod/content.php:712 mod/install.php:261 -#: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 -#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 -#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579 -#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766 -#: object/Item.php:710 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:107 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Добавить" - -#: mod/contacts.php:588 -msgid "Profile Visibility" -msgstr "Видимость профиля" - -#: mod/contacts.php:589 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" -"Пожалуйста, выберите профиль, который вы хотите отображать %s, когда " -"просмотр вашего профиля безопасен." - -#: mod/contacts.php:590 -msgid "Contact Information / Notes" -msgstr "Информация о контакте / Заметки" - -#: mod/contacts.php:591 -msgid "Edit contact notes" -msgstr "Редактировать заметки контакта" - -#: mod/contacts.php:596 mod/contacts.php:952 mod/viewcontacts.php:97 -#: mod/nogroup.php:41 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Посетить профиль %s [%s]" - -#: mod/contacts.php:597 -msgid "Block/Unblock contact" -msgstr "Блокировать / Разблокировать контакт" - -#: mod/contacts.php:598 -msgid "Ignore contact" -msgstr "Игнорировать контакт" - -#: mod/contacts.php:599 -msgid "Repair URL settings" -msgstr "Восстановить настройки URL" - -#: mod/contacts.php:600 -msgid "View conversations" -msgstr "Просмотр бесед" - -#: mod/contacts.php:602 -msgid "Delete contact" -msgstr "Удалить контакт" - -#: mod/contacts.php:606 -msgid "Last update:" -msgstr "Последнее обновление: " - -#: mod/contacts.php:608 -msgid "Update public posts" -msgstr "Обновить публичные сообщения" - -#: mod/contacts.php:610 -msgid "Update now" -msgstr "Обновить сейчас" - -#: mod/contacts.php:612 mod/follow.php:103 mod/dirfind.php:196 -#: mod/allfriends.php:65 mod/match.php:71 mod/suggest.php:82 -#: include/contact_widgets.php:32 include/Contact.php:297 -#: include/conversation.php:924 -msgid "Connect/Follow" -msgstr "Подключиться/Следовать" - -#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865 -#: mod/admin.php:1312 -msgid "Unblock" -msgstr "Разблокировать" - -#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865 -#: mod/admin.php:1311 -msgid "Block" -msgstr "Заблокировать" - -#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872 -msgid "Unignore" -msgstr "Не игнорировать" - -#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872 -#: mod/notifications.php:54 mod/notifications.php:179 -#: mod/notifications.php:259 -msgid "Ignore" -msgstr "Игнорировать" - -#: mod/contacts.php:619 -msgid "Currently blocked" -msgstr "В настоящее время заблокирован" - -#: mod/contacts.php:620 -msgid "Currently ignored" -msgstr "В настоящее время игнорируется" - -#: mod/contacts.php:621 -msgid "Currently archived" -msgstr "В данный момент архивирован" - -#: mod/contacts.php:622 mod/notifications.php:172 mod/notifications.php:251 -msgid "Hide this contact from others" -msgstr "Скрыть этот контакт от других" - -#: mod/contacts.php:622 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Ответы/лайки ваших публичных сообщений будут видимы." - -#: mod/contacts.php:623 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:623 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:626 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:626 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:633 mod/follow.php:126 mod/notifications.php:255 -msgid "Profile URL" -msgstr "URL профиля" - -#: mod/contacts.php:636 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:145 include/identity.php:308 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "Откуда:" - -#: mod/contacts.php:638 mod/notifications.php:246 mod/directory.php:153 -#: include/identity.php:317 include/identity.php:631 -msgid "About:" -msgstr "О себе:" - -#: mod/contacts.php:640 mod/follow.php:134 mod/notifications.php:248 -#: include/identity.php:625 -msgid "Tags:" -msgstr "Ключевые слова: " - -#: mod/contacts.php:685 -msgid "Suggestions" -msgstr "Предложения" - -#: mod/contacts.php:688 -msgid "Suggest potential friends" -msgstr "Предложить потенциального знакомого" - -#: mod/contacts.php:693 mod/group.php:192 -msgid "All Contacts" -msgstr "Все контакты" - -#: mod/contacts.php:696 -msgid "Show all contacts" -msgstr "Показать все контакты" - -#: mod/contacts.php:701 -msgid "Unblocked" -msgstr "Не блокирован" - -#: mod/contacts.php:704 -msgid "Only show unblocked contacts" -msgstr "Показать только не блокированные контакты" - -#: mod/contacts.php:710 -msgid "Blocked" -msgstr "Заблокирован" - -#: mod/contacts.php:713 -msgid "Only show blocked contacts" -msgstr "Показать только блокированные контакты" - -#: mod/contacts.php:719 -msgid "Ignored" -msgstr "Игнорирован" - -#: mod/contacts.php:722 -msgid "Only show ignored contacts" -msgstr "Показать только игнорируемые контакты" - -#: mod/contacts.php:728 -msgid "Archived" -msgstr "Архивированные" - -#: mod/contacts.php:731 -msgid "Only show archived contacts" -msgstr "Показывать только архивные контакты" - -#: mod/contacts.php:737 -msgid "Hidden" -msgstr "Скрытые" - -#: mod/contacts.php:740 -msgid "Only show hidden contacts" -msgstr "Показывать только скрытые контакты" - -#: mod/contacts.php:793 mod/contacts.php:841 mod/viewcontacts.php:116 -#: include/identity.php:741 include/identity.php:744 include/text.php:1012 -#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Контакты" - -#: mod/contacts.php:797 -msgid "Search your contacts" -msgstr "Поиск ваших контактов" - -#: mod/contacts.php:798 -msgid "Finding: " -msgstr "Результат поиска: " - -#: mod/contacts.php:799 mod/directory.php:210 include/contact_widgets.php:34 -msgid "Find" -msgstr "Найти" - -#: mod/contacts.php:805 mod/settings.php:156 mod/settings.php:685 -msgid "Update" -msgstr "Обновление" - -#: mod/contacts.php:808 mod/contacts.php:879 -msgid "Archive" -msgstr "Архивировать" - -#: mod/contacts.php:808 mod/contacts.php:879 -msgid "Unarchive" -msgstr "Разархивировать" - -#: mod/contacts.php:809 mod/group.php:171 mod/admin.php:1310 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:722 -#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 -msgid "Delete" -msgstr "Удалить" - -#: mod/contacts.php:822 include/identity.php:686 include/nav.php:75 -msgid "Status" -msgstr "Посты" - -#: mod/contacts.php:825 mod/follow.php:143 include/identity.php:689 -msgid "Status Messages and Posts" -msgstr "Ваши посты" - -#: mod/contacts.php:830 mod/profperm.php:104 mod/newmember.php:32 -#: include/identity.php:579 include/identity.php:665 include/identity.php:694 -#: include/nav.php:76 view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Информация" - -#: mod/contacts.php:833 include/identity.php:697 -msgid "Profile Details" -msgstr "Информация о вас" - -#: mod/contacts.php:844 -msgid "View all contacts" -msgstr "Показать все контакты" - -#: mod/contacts.php:850 mod/common.php:134 -msgid "Common Friends" -msgstr "Общие друзья" - -#: mod/contacts.php:853 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:857 -msgid "Repair" -msgstr "Восстановить" - -#: mod/contacts.php:860 -msgid "Advanced Contact Settings" -msgstr "Дополнительные Настройки Контакта" - -#: mod/contacts.php:868 -msgid "Toggle Blocked status" -msgstr "Изменить статус блокированности (заблокировать/разблокировать)" - -#: mod/contacts.php:875 -msgid "Toggle Ignored status" -msgstr "Изменить статус игнорирования" - -#: mod/contacts.php:882 -msgid "Toggle Archive status" -msgstr "Сменить статус архивации (архивирова/не архивировать)" - -#: mod/contacts.php:924 -msgid "Mutual Friendship" -msgstr "Взаимная дружба" - -#: mod/contacts.php:928 -msgid "is a fan of yours" -msgstr "является вашим поклонником" - -#: mod/contacts.php:932 -msgid "you are a fan of" -msgstr "Вы - поклонник" - -#: mod/contacts.php:953 mod/nogroup.php:42 -msgid "Edit contact" -msgstr "Редактировать контакт" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Нет профиля" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Управление идентификацией и / или страницами" - -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Выберите идентификацию для управления: " - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Успешно добавлено." - -#: mod/profperm.php:19 mod/group.php:72 index.php:382 -msgid "Permission denied" -msgstr "Доступ запрещен" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Недопустимый идентификатор профиля." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Редактор видимости профиля" - -#: mod/profperm.php:106 mod/group.php:223 -msgid "Click on a contact to add or remove." -msgstr "Нажмите на контакт, чтобы добавить или удалить." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Видимый для" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Все контакты (с безопасным доступом к профилю)" - -#: mod/display.php:82 mod/display.php:291 mod/display.php:513 -#: mod/viewsrc.php:15 mod/admin.php:234 mod/admin.php:1365 mod/admin.php:1599 -#: mod/notice.php:15 include/items.php:4887 -msgid "Item not found." -msgstr "Пункт не найден." - -#: mod/display.php:220 mod/videos.php:197 mod/viewcontacts.php:35 -#: mod/community.php:22 mod/dfrn_request.php:786 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 -msgid "Public access denied." -msgstr "Свободный доступ закрыт." - -#: mod/display.php:339 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Доступ к этому профилю ограничен." - -#: mod/display.php:506 -msgid "Item has been removed." -msgstr "Пункт был удален." - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Добро пожаловать в Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Новый контрольный список участников" - -#: 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 "" -"Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу " -"работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую " -"страницу. Ссылка на эту страницу будет видна на вашей домашней странице в " -"течение двух недель после первоначальной регистрации, а затем она исчезнет." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Начало работы" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "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 "" -"На вашей странице Быстрый старт - можно найти краткое введение в " -"ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы " -"присоединиться к ним." - -#: mod/newmember.php:22 mod/admin.php:1418 mod/admin.php:1676 -#: mod/settings.php:109 include/nav.php:182 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Настройки" - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Перейти к вашим настройкам" - -#: 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 "" -"На вашей странице Настройки - вы можете изменить свой " -"первоначальный пароль. Также обратите внимание на ваш личный адрес. Он " -"выглядит так же, как адрес электронной почты - и будет полезен для поиска " -"друзей в свободной социальной сети." - -#: 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 "" -"Просмотрите другие установки, в частности, параметры конфиденциальности. " -"Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, " -"вероятно, следует опубликовать свою информацию - если все ваши друзья и " -"потенциальные друзья точно знают, как вас найти." - -#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709 -msgid "Upload Profile Photo" -msgstr "Загрузить фото профиля" - -#: 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 "" -"Загрузите фотографию профиля, если вы еще не сделали это. Исследования " -"показали, что люди с реальными фотографиями имеют в десять раз больше шансов " -"подружиться, чем люди, которые этого не делают." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Редактировать профиль" - -#: 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 "" -"Отредактируйте профиль по умолчанию на свой ​​вкус. " -"Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля " -"от неизвестных посетителей." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Ключевые слова профиля" - -#: 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 "" -"Установите некоторые публичные ключевые слова для вашего профиля по " -"умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти " -"других людей со схожими интересами и предложить дружбу." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Подключение" - -#: mod/newmember.php:51 -msgid "Importing Emails" -msgstr "Импортирование Email-ов" - -#: mod/newmember.php:51 -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 "" -"Введите информацию о доступе к вашему email на странице настроек вашего " -"коннектора, если вы хотите импортировать, и общаться с друзьями или получать " -"рассылки на ваш ящик электронной почты" - -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" -msgstr "Перейти на страницу ваших контактов" - -#: mod/newmember.php:53 -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 "" -"Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с " -"друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в " -"диалог Добавить новый контакт." - -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" -msgstr "Перейти в каталог вашего сайта" - -#: mod/newmember.php:55 -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 "" -"На странице каталога вы можете найти других людей в этой сети или на других " -"похожих сайтах. Ищите ссылки Подключить или Следовать на " -"страницах их профилей. Укажите свой собственный адрес идентификации, если " -"требуется." - -#: mod/newmember.php:57 -msgid "Finding New People" -msgstr "Поиск людей" - -#: mod/newmember.php:57 -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 "" -"На боковой панели страницы Контакты есть несколько инструментов, чтобы найти " -"новых друзей. Мы можем искать по соответствию интересам, посмотреть людей " -"по имени или интересам, и внести предложения на основе сетевых отношений. На " -"новом сайте, предложения дружбы, как правило, начинают заполняться в течение " -"24 часов." - -#: mod/newmember.php:61 include/group.php:283 -msgid "Groups" -msgstr "Группы" - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "Группа \"ваши контакты\"" - -#: mod/newmember.php:65 -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 "" -"После того, как вы найдете несколько друзей, организуйте их в группы частных " -"бесед в боковой панели на странице Контакты, а затем вы можете " -"взаимодействовать с каждой группой приватно или на вашей странице Сеть." - -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" -msgstr "Почему мои посты не публичные?" - -#: mod/newmember.php:68 -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 уважает вашу приватность. По умолчанию, ваши сообщения будут " -"показываться только для людей, которых вы добавили в список друзей. Для " -"получения дополнительной информации см. раздел справки по ссылке выше." - -#: mod/newmember.php:73 -msgid "Getting Help" -msgstr "Получить помощь" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "Перейти в раздел справки" - -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." -msgstr "" -"Наши страницы помощи могут проконсультировать о " -"подробностях и возможностях программы и ресурса." - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Ошибка протокола OpenID. Не возвращён ID." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте." - -#: mod/openid.php:93 include/auth.php:118 include/auth.php:181 -msgid "Login failed." -msgstr "Войти не удалось." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Изображение загружено, но обрезка изображения не удалась." - -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192 -#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268 -#: mod/photos.php:1862 include/user.php:345 include/user.php:352 -#: include/user.php:359 view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Фотографии профиля" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Уменьшение размера изображения [%s] не удалось." - -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" -"Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть " -"свое новое фото немедленно." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Не удается обработать изображение" - -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 -msgid "Unable to process image." -msgstr "Невозможно обработать фото." - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Загрузить файл:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Выбрать этот профиль:" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Загрузить" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "или" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "пропустить этот шаг" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "выберите фото из ваших фотоальбомов" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Обрезать изображение" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Редактирование выполнено" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Изображение загружено успешно." - -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 -msgid "Image upload failed." -msgstr "Загрузка фото неудачная." - -#: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165 -#: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:2000 include/diaspora.php:2169 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "фото" - -#: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165 -#: include/like.php:334 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 include/diaspora.php:2169 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -msgid "status" -msgstr "статус" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Ключевое слово удалено" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Удалить ключевое слово" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Выберите ключевое слово для удаления: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Удалить" - -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 -msgid "Done" -msgstr "Готово" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "удачно" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "неудача" - -#: mod/ostatus_subscribe.php:69 object/Item.php:235 -msgid "ignored" -msgstr "" - -#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 -msgid "Keep this window open until done." -msgstr "" - -#: mod/filer.php:30 include/conversation.php:1132 -#: include/conversation.php:1150 -msgid "Save to Folder:" -msgstr "Сохранить в папку:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- выбрать -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 -#: include/text.php:1004 -msgid "Save" -msgstr "Сохранить" - -#: mod/follow.php:19 mod/dfrn_request.php:870 -msgid "Submit Request" -msgstr "Отправить запрос" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:109 mod/dfrn_request.php:856 -msgid "Please answer the following:" -msgstr "Пожалуйста, ответьте следующее:" - -#: mod/follow.php:110 mod/dfrn_request.php:857 -#, php-format -msgid "Does %s know you?" -msgstr "%s знает вас?" - -#: mod/follow.php:110 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1117 mod/settings.php:1121 mod/settings.php:1126 -#: mod/settings.php:1132 mod/settings.php:1138 mod/settings.php:1144 -#: mod/settings.php:1170 mod/settings.php:1171 mod/settings.php:1172 -#: mod/settings.php:1173 mod/settings.php:1174 mod/dfrn_request.php:857 -#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 -#: mod/profiles.php:687 mod/api.php:106 -msgid "No" -msgstr "Нет" - -#: mod/follow.php:111 mod/dfrn_request.php:861 -msgid "Add a personal note:" -msgstr "Добавить личную заметку:" - -#: mod/follow.php:117 mod/dfrn_request.php:867 -msgid "Your Identity Address:" -msgstr "Ваш идентификационный адрес:" - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Контакт добавлен" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Не удалось найти оригинальный пост." - -#: mod/item.php:329 -msgid "Empty post discarded." -msgstr "Пустое сообщение отбрасывается." - -#: mod/item.php:467 mod/wall_upload.php:213 mod/wall_upload.php:227 -#: mod/wall_upload.php:234 include/Photo.php:958 include/Photo.php:973 -#: include/Photo.php:980 include/Photo.php:1002 include/message.php:145 -msgid "Wall Photos" -msgstr "Фото стены" - -#: mod/item.php:842 -msgid "System error. Post not saved." -msgstr "Системная ошибка. Сообщение не сохранено." - -#: mod/item.php:971 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social network." -msgstr "" -"Это сообщение было отправлено вам %s, участником социальной сети Friendica." - -#: mod/item.php:973 -#, php-format -msgid "You may visit them online at %s" -msgstr "Вы можете посетить их в онлайне на %s" - -#: mod/item.php:974 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" -"Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не " -"хотите получать эти сообщения." - -#: mod/item.php:978 -#, php-format -msgid "%s posted an update." -msgstr "%s отправил/а/ обновление." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Группа создана." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Не удалось создать группу." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Группа не найдена." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Название группы изменено." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Сохранить группу" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Создать группу контактов / друзей." - -#: mod/group.php:94 mod/group.php:178 include/group.php:289 -msgid "Group Name: " -msgstr "Название группы: " - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Группа удалена." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Не удается удалить группу." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Редактор групп" - -#: mod/group.php:190 -msgid "Members" -msgstr "Участники" - -#: mod/group.php:193 mod/network.php:576 mod/content.php:130 -msgid "Group is empty" -msgstr "Группа пуста" - -#: mod/apps.php:7 index.php:226 -msgid "You must be logged in to use addons. " -msgstr "Вы должны войти в систему, чтобы использовать аддоны." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Приложения" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Нет установленных приложений." - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Профиль не найден." - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:131 -msgid "Contact not found." -msgstr "Контакт не найден." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" -"Это может иногда происходить, если контакт запрашивали двое людей, и он был " -"уже одобрен." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Ответ от удаленного сайта не был понят." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Неожиданный ответ от удаленного сайта: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Подтверждение успешно завершено." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Удаленный сайт сообщил: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Временные неудачи. Подождите и попробуйте еще раз." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Запрос ошибочен или был отозван." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Не удается установить фото контакта." - -#: mod/dfrn_confirm.php:487 include/conversation.php:185 -#: include/diaspora.php:637 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s и %2$s теперь друзья" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Не найдено записи пользователя для '%s' " - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Наш ключ шифрования сайта, по-видимому, перепутался." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" -"Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Запись контакта не найдена для вас на нашем сайте." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s" - -#: 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 "" -"ID, предложенный вашей системой, является дубликатом в нашей системе. Он " -"должен работать, если вы повторите попытку." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Не удалось установить ваши учетные данные контакта в нашей системе." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Не удается обновить ваши контактные детали профиля в нашей системе" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:741 include/items.php:4299 -msgid "[Name Withheld]" -msgstr "[Имя не разглашается]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s присоединился %2$s" - -#: mod/profile.php:21 include/identity.php:51 -msgid "Requested profile is not available." -msgstr "Запрашиваемый профиль недоступен." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Советы для новых участников" - -#: mod/videos.php:123 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:128 -msgid "Delete Video" -msgstr "Удалить видео" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Видео не выбрано" - -#: mod/videos.php:308 mod/photos.php:1087 -msgid "Access to this item is restricted." -msgstr "Доступ к этому пункту ограничен." - -#: mod/videos.php:383 include/text.php:1472 -msgid "View Video" -msgstr "Просмотреть видео" - -#: mod/videos.php:390 mod/photos.php:1890 -msgid "View Album" -msgstr "Просмотреть альбом" - -#: mod/videos.php:399 -msgid "Recent Videos" -msgstr "Последние видео" - -#: mod/videos.php:401 -msgid "Upload New Videos" -msgstr "Загрузить новые видео" - -#: mod/tagger.php:95 include/conversation.php:278 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s tagged %2$s's %3$s в %4$s" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Приглашение в друзья отправлено." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Предложить друзей" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Предложить друга для %s." - -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1781 -msgid "Invalid request." -msgstr "Неверный запрос." - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Не найдено действительного аккаунта." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту." - -#: 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 "Запрос на сброс пароля получен %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" -"Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) " -"Попытка сброса пароля неудачная." - -#: mod/lostpass.php:109 boot.php:1444 -msgid "Password Reset" -msgstr "Сброс пароля" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Ваш пароль был сброшен по требованию." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Ваш новый пароль" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Сохраните или скопируйте новый пароль - и затем" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "нажмите здесь для входа" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" -"Ваш пароль может быть изменен на странице Настройки после успешного " -"входа." - -#: 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 "Ваш пароль был изменен %s" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Забыли пароль?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" -"Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш " -"пароль. Затем проверьте свою электронную почту для получения дальнейших " -"инструкций." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Ник или E-mail: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Сброс" - -#: mod/ping.php:265 -msgid "{0} wants to be your friend" -msgstr "{0} хочет стать Вашим другом" - -#: mod/ping.php:280 -msgid "{0} sent you a message" -msgstr "{0} отправил Вам сообщение" - -#: mod/ping.php:295 -msgid "{0} requested registration" -msgstr "{0} требуемая регистрация" - -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Нет контактов." - -#: mod/notifications.php:29 -msgid "Invalid request identifier." -msgstr "Неверный идентификатор запроса." - -#: mod/notifications.php:38 mod/notifications.php:180 -#: mod/notifications.php:260 -msgid "Discard" -msgstr "Отказаться" - -#: mod/notifications.php:81 -msgid "System" -msgstr "Система" - -#: mod/notifications.php:87 mod/admin.php:390 include/nav.php:154 -msgid "Network" -msgstr "Новости" - -#: mod/notifications.php:93 mod/network.php:384 -msgid "Personal" -msgstr "Персонал" - -#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Мой профиль" - -#: mod/notifications.php:105 include/nav.php:162 -msgid "Introductions" -msgstr "Запросы" - -#: mod/notifications.php:130 -msgid "Show Ignored Requests" -msgstr "Показать проигнорированные запросы" - -#: mod/notifications.php:130 -msgid "Hide Ignored Requests" -msgstr "Скрыть проигнорированные запросы" - -#: mod/notifications.php:164 mod/notifications.php:234 -msgid "Notification type: " -msgstr "Тип уведомления: " - -#: mod/notifications.php:165 -msgid "Friend Suggestion" -msgstr "Предложение в друзья" - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "предложено юзером %s" - -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "Post a new friend activity" -msgstr "Настроение" - -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "if applicable" -msgstr "если требуется" - -#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1308 -msgid "Approve" -msgstr "Одобрить" - -#: mod/notifications.php:196 -msgid "Claims to be known to you: " -msgstr "Утверждения, о которых должно быть вам известно: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "да" - -#: mod/notifications.php:196 -msgid "no" -msgstr "нет" - -#: mod/notifications.php:197 -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:200 -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:208 -msgid "Friend" -msgstr "Друг" - -#: mod/notifications.php:209 -msgid "Sharer" -msgstr "Участник" - -#: mod/notifications.php:209 -msgid "Fan/Admirer" -msgstr "Фанат / Поклонник" - -#: mod/notifications.php:235 -msgid "Friend/Connect Request" -msgstr "Запрос в друзья / на подключение" - -#: mod/notifications.php:235 -msgid "New Follower" -msgstr "Новый фолловер" - -#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:310 -#: include/identity.php:590 -msgid "Gender:" -msgstr "Пол:" - -#: mod/notifications.php:266 -msgid "No introductions." -msgstr "Запросов нет." - -#: mod/notifications.php:269 include/nav.php:165 -msgid "Notifications" -msgstr "Уведомления" - -#: mod/notifications.php:307 mod/notifications.php:436 -#: mod/notifications.php:527 -#, php-format -msgid "%s liked %s's post" -msgstr "%s нравится %s сообшение" - -#: mod/notifications.php:317 mod/notifications.php:446 -#: mod/notifications.php:537 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s не нравится %s сообшение" - -#: mod/notifications.php:332 mod/notifications.php:461 -#: mod/notifications.php:552 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s теперь друзья с %s" - -#: mod/notifications.php:339 mod/notifications.php:468 -#, php-format -msgid "%s created a new post" -msgstr "%s написал новое сообщение" - -#: mod/notifications.php:340 mod/notifications.php:469 -#: mod/notifications.php:562 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s прокомментировал %s сообщение" - -#: mod/notifications.php:355 -msgid "No more network notifications." -msgstr "Уведомлений из сети больше нет." - -#: mod/notifications.php:359 -msgid "Network Notifications" -msgstr "Уведомления сети" - -#: mod/notifications.php:385 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Системных уведомлений больше нет." - -#: mod/notifications.php:389 mod/notify.php:76 -msgid "System Notifications" -msgstr "Уведомления системы" - -#: mod/notifications.php:484 -msgid "No more personal notifications." -msgstr "Персональных уведомлений больше нет." - -#: mod/notifications.php:488 -msgid "Personal Notifications" -msgstr "Личные уведомления" - -#: mod/notifications.php:569 -msgid "No more home notifications." -msgstr "Уведомлений больше нет." - -#: mod/notifications.php:573 -msgid "Home Notifications" -msgstr "Уведомления" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Код (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Код (Diaspora) для конвертации в BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Ввести код:" - -#: 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 "Ввод кода (формат Diaspora):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/navigation.php:19 include/nav.php:33 -msgid "Nothing new here" -msgstr "Ничего нового здесь" - -#: mod/navigation.php:23 include/nav.php:37 -msgid "Clear notifications" -msgstr "Стереть уведомления" - -#: mod/message.php:15 include/nav.php:174 -msgid "New Message" -msgstr "Новое сообщение" - -#: mod/message.php:70 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Не выбран получатель." - -#: mod/message.php:74 -msgid "Unable to locate contact information." -msgstr "Не удалось найти контактную информацию." - -#: mod/message.php:77 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Сообщение не может быть отправлено." - -#: mod/message.php:80 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Неудача коллекции сообщения." - -#: mod/message.php:83 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Сообщение отправлено." - -#: mod/message.php:189 include/nav.php:171 -msgid "Messages" -msgstr "Сообщения" - -#: mod/message.php:214 -msgid "Do you really want to delete this message?" -msgstr "Вы действительно хотите удалить это сообщение?" - -#: mod/message.php:234 -msgid "Message deleted." -msgstr "Сообщение удалено." - -#: mod/message.php:265 -msgid "Conversation removed." -msgstr "Беседа удалена." - -#: mod/message.php:290 mod/message.php:298 mod/message.php:427 -#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1128 include/conversation.php:1146 -msgid "Please enter a link URL:" -msgstr "Пожалуйста, введите URL ссылки:" - -#: mod/message.php:326 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Отправить личное сообщение" - -#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 -msgid "To:" -msgstr "Кому:" - -#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Тема:" - -#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Ваше сообщение:" - -#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1183 -msgid "Upload photo" -msgstr "Загрузить фото" - -#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1187 -msgid "Insert web link" -msgstr "Вставить веб-ссылку" - -#: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713 -#: include/conversation.php:1201 -msgid "Please wait" -msgstr "Пожалуйста, подождите" - -#: mod/message.php:368 -msgid "No messages." -msgstr "Нет сообщений." - -#: mod/message.php:411 -msgid "Message not available." -msgstr "Сообщение не доступно." - -#: mod/message.php:481 -msgid "Delete message" -msgstr "Удалить сообщение" - -#: mod/message.php:507 mod/message.php:584 -msgid "Delete conversation" -msgstr "Удалить историю общения" - -#: mod/message.php:509 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" -"Невозможно защищённое соединение. Вы имеете возможность " -"ответить со страницы профиля отправителя." - -#: mod/message.php:513 -msgid "Send Reply" -msgstr "Отправить ответ" - -#: mod/message.php:557 -#, php-format -msgid "Unknown sender - %s" -msgstr "Неизвестный отправитель - %s" - -#: mod/message.php:560 -#, php-format -msgid "You and %s" -msgstr "Вы и %s" - -#: mod/message.php:563 -#, php-format -msgid "%s and You" -msgstr "%s и Вы" - -#: mod/message.php:587 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:590 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d сообщение" -msgstr[1] "%d сообщений" -msgstr[2] "%d сообщений" -msgstr[3] "%d сообщений" - -#: 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 "[Встроенное содержание - перезагрузите страницу для просмотра]" - -#: mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Установки контакта приняты." - -#: mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Обновление контакта неудачное." - -#: mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." -msgstr "" -"ВНИМАНИЕ: Это крайне важно! Если вы введете неверную " -"информацию, ваша связь с этим контактом перестанет работать." - -#: mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" -"Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' " -"сейчас, если вы не уверены, что делаете на этой странице." - -#: mod/crepair.php:151 mod/crepair.php:153 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:151 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:151 mod/crepair.php:153 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:167 -msgid "Return to contact editor" -msgstr "Возврат к редактору контакта" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:170 mod/admin.php:1306 mod/admin.php:1318 -#: mod/admin.php:1319 mod/admin.php:1332 mod/settings.php:661 -#: mod/settings.php:687 -msgid "Name" -msgstr "Имя" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Ник аккаунта" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL аккаунта" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL запроса в друзья" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL подтверждения друга" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL эндпоинта уведомления" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL опроса/ленты" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Новое фото из этой URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:182 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:184 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/bookmarklet.php:12 boot.php:1430 include/nav.php:91 -msgid "Login" -msgstr "Вход" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Доступ запрещен." - -#: mod/dirfind.php:194 mod/allfriends.php:80 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:212 -msgid "Connect" -msgstr "Подключить" - -#: mod/dirfind.php:195 mod/allfriends.php:64 mod/match.php:70 -#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:283 -#: include/Contact.php:296 include/Contact.php:338 -#: include/conversation.php:912 include/conversation.php:926 -msgid "View Profile" -msgstr "Просмотреть профиль" - -#: mod/dirfind.php:224 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:231 mod/match.php:105 -msgid "No matches" -msgstr "Нет соответствий" - -#: mod/fbrowser.php:32 include/identity.php:702 include/nav.php:77 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Фото" - -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 -#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245 -#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850 -#: view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Фотографии контакта" - -#: mod/fbrowser.php:125 -msgid "Files" -msgstr "Файлы" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Контакты, которые не являются членами группы" - -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Настройки темы обновлены." - -#: mod/admin.php:156 mod/admin.php:888 -msgid "Site" -msgstr "Сайт" - -#: mod/admin.php:157 mod/admin.php:832 mod/admin.php:1301 mod/admin.php:1316 -msgid "Users" -msgstr "Пользователи" - -#: mod/admin.php:158 mod/admin.php:1416 mod/admin.php:1476 mod/settings.php:72 -msgid "Plugins" -msgstr "Плагины" - -#: mod/admin.php:159 mod/admin.php:1674 mod/admin.php:1724 -msgid "Themes" -msgstr "Темы" - -#: mod/admin.php:160 mod/settings.php:50 -msgid "Additional features" -msgstr "Дополнительные возможности" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "Обновление БД" - -#: mod/admin.php:162 mod/admin.php:385 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:163 mod/admin.php:354 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1792 -msgid "Logs" -msgstr "Журналы" - -#: mod/admin.php:178 mod/admin.php:1859 -msgid "View Logs" -msgstr "Просмотр логов" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:186 include/nav.php:194 -msgid "Admin" -msgstr "Администратор" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Возможности плагина" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "Диагностика" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: mod/admin.php:347 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:348 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:353 mod/admin.php:384 mod/admin.php:441 mod/admin.php:887 -#: mod/admin.php:1300 mod/admin.php:1415 mod/admin.php:1475 mod/admin.php:1673 -#: mod/admin.php:1723 mod/admin.php:1791 mod/admin.php:1858 -msgid "Administration" -msgstr "Администрация" - -#: mod/admin.php:360 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:387 -msgid "ID" -msgstr "" - -#: mod/admin.php:388 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:389 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:391 -msgid "Created" -msgstr "" - -#: mod/admin.php:392 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:393 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:412 mod/admin.php:1254 -msgid "Normal Account" -msgstr "Обычный аккаунт" - -#: mod/admin.php:413 mod/admin.php:1255 -msgid "Soapbox Account" -msgstr "Аккаунт Витрина" - -#: mod/admin.php:414 mod/admin.php:1256 -msgid "Community/Celebrity Account" -msgstr "Аккаунт Сообщество / Знаменитость" - -#: mod/admin.php:415 mod/admin.php:1257 -msgid "Automatic Friend Account" -msgstr "\"Автоматический друг\" Аккаунт" - -#: mod/admin.php:416 -msgid "Blog Account" -msgstr "Аккаунт блога" - -#: mod/admin.php:417 -msgid "Private Forum" -msgstr "Личный форум" - -#: mod/admin.php:436 -msgid "Message queues" -msgstr "Очереди сообщений" - -#: mod/admin.php:442 -msgid "Summary" -msgstr "Резюме" - -#: mod/admin.php:444 -msgid "Registered users" -msgstr "Зарегистрированные пользователи" - -#: mod/admin.php:446 -msgid "Pending registrations" -msgstr "Ожидающие регистрации" - -#: mod/admin.php:447 -msgid "Version" -msgstr "Версия" - -#: mod/admin.php:452 -msgid "Active plugins" -msgstr "Активные плагины" - -#: mod/admin.php:475 -msgid "Can not parse base url. Must have at least ://" -msgstr "" -"Невозможно определить базовый URL. Он должен иметь следующий вид - " -"://" - -#: mod/admin.php:760 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "Для функционирования RINO2 необходим пакет php5-mcrypt" - -#: mod/admin.php:768 -msgid "Site settings updated." -msgstr "Установки сайта обновлены." - -#: mod/admin.php:796 mod/settings.php:912 -msgid "No special theme for mobile devices" -msgstr "Нет специальной темы для мобильных устройств" - -#: mod/admin.php:815 -msgid "No community page" -msgstr "" - -#: mod/admin.php:816 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:817 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:823 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:824 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Часто" - -#: mod/admin.php:825 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Раз в час" - -#: mod/admin.php:826 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Два раза в день" - -#: mod/admin.php:827 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Ежедневно" - -#: mod/admin.php:833 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:834 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:838 -msgid "One month" -msgstr "Один месяц" - -#: mod/admin.php:839 -msgid "Three months" -msgstr "Три месяца" - -#: mod/admin.php:840 -msgid "Half a year" -msgstr "Пол года" - -#: mod/admin.php:841 -msgid "One year" -msgstr "Один год" - -#: mod/admin.php:846 -msgid "Multi user instance" -msgstr "Многопользовательский вид" - -#: mod/admin.php:869 -msgid "Closed" -msgstr "Закрыто" - -#: mod/admin.php:870 -msgid "Requires approval" -msgstr "Требуется подтверждение" - -#: mod/admin.php:871 -msgid "Open" -msgstr "Открыто" - -#: mod/admin.php:875 -msgid "No SSL policy, links will track page SSL state" -msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" - -#: mod/admin.php:876 -msgid "Force all links to use SSL" -msgstr "Заставить все ссылки использовать SSL" - -#: mod/admin.php:877 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" -"Само-подписанный сертификат, использовать SSL только локально (не " -"рекомендуется)" - -#: mod/admin.php:889 mod/admin.php:1477 mod/admin.php:1725 mod/admin.php:1793 -#: mod/admin.php:1942 mod/settings.php:659 mod/settings.php:769 -#: mod/settings.php:813 mod/settings.php:882 mod/settings.php:969 -#: mod/settings.php:1204 -msgid "Save Settings" -msgstr "Сохранить настройки" - -#: mod/admin.php:890 mod/register.php:263 -msgid "Registration" -msgstr "Регистрация" - -#: mod/admin.php:891 -msgid "File upload" -msgstr "Загрузка файлов" - -#: mod/admin.php:892 -msgid "Policies" -msgstr "Политики" - -#: mod/admin.php:893 -msgid "Advanced" -msgstr "Расширенный" - -#: mod/admin.php:894 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:895 -msgid "Performance" -msgstr "Производительность" - -#: mod/admin.php:896 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" -"Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер " -"недоступным." - -#: mod/admin.php:899 -msgid "Site name" -msgstr "Название сайта" - -#: mod/admin.php:900 -msgid "Host name" -msgstr "Имя хоста" - -#: mod/admin.php:901 -msgid "Sender Email" -msgstr "Системный Email" - -#: mod/admin.php:901 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Адрес с которого будут приходить письма пользователям." - -#: mod/admin.php:902 -msgid "Banner/Logo" -msgstr "Баннер/Логотип" - -#: mod/admin.php:903 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:903 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:904 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:904 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:905 -msgid "Additional Info" -msgstr "Дополнительная информация" - -#: mod/admin.php:905 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:906 -msgid "System language" -msgstr "Системный язык" - -#: mod/admin.php:907 -msgid "System theme" -msgstr "Системная тема" - -#: mod/admin.php:907 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" -"Тема системы по умолчанию - может быть переопределена пользователем - изменить настройки темы" - -#: mod/admin.php:908 -msgid "Mobile system theme" -msgstr "Мобильная тема системы" - -#: mod/admin.php:908 -msgid "Theme for mobile devices" -msgstr "Тема для мобильных устройств" - -#: mod/admin.php:909 -msgid "SSL link policy" -msgstr "Политика SSL" - -#: mod/admin.php:909 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Ссылки должны быть вынуждены использовать SSL" - -#: mod/admin.php:910 -msgid "Force SSL" -msgstr "SSL принудительно" - -#: mod/admin.php:910 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " -"to endless loops." -msgstr "" - -#: mod/admin.php:911 -msgid "Old style 'Share'" -msgstr "Старый стиль 'Share'" - -#: mod/admin.php:911 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Отключение BBCode элемента 'share' для повторяющихся элементов." - -#: mod/admin.php:912 -msgid "Hide help entry from navigation menu" -msgstr "Скрыть пункт \"помощь\" в меню навигации" - -#: mod/admin.php:912 -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:913 -msgid "Single user instance" -msgstr "Однопользовательский режим" - -#: mod/admin.php:913 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" -"Сделать этот экземпляр многопользовательским, или однопользовательским для " -"названного пользователя" - -#: mod/admin.php:914 -msgid "Maximum image size" -msgstr "Максимальный размер изображения" - -#: mod/admin.php:914 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" -"Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, " -"что означает отсутствие ограничений." - -#: mod/admin.php:915 -msgid "Maximum image length" -msgstr "Максимальная длина картинки" - -#: mod/admin.php:915 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" -"Максимальная длина в пикселях для длинной стороны загруженных изображений. " -"По умолчанию равно -1, что означает отсутствие ограничений." - -#: mod/admin.php:916 -msgid "JPEG image quality" -msgstr "Качество JPEG изображения" - -#: mod/admin.php:916 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" -"Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По " -"умолчанию 100, что означает полное качество." - -#: mod/admin.php:918 -msgid "Register policy" -msgstr "Политика регистрация" - -#: mod/admin.php:919 -msgid "Maximum Daily Registrations" -msgstr "Максимальное число регистраций в день" - -#: mod/admin.php:919 -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:920 -msgid "Register text" -msgstr "Текст регистрации" - -#: mod/admin.php:920 -msgid "Will be displayed prominently on the registration page." -msgstr "Будет находиться на видном месте на странице регистрации." - -#: mod/admin.php:921 -msgid "Accounts abandoned after x days" -msgstr "Аккаунт считается после x дней не воспользованным" - -#: mod/admin.php:921 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" -"Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите " -"0 для отключения лимита времени." - -#: mod/admin.php:922 -msgid "Allowed friend domains" -msgstr "Разрешенные домены друзей" - -#: mod/admin.php:922 -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:923 -msgid "Allowed email domains" -msgstr "Разрешенные почтовые домены" - -#: mod/admin.php:923 -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:924 -msgid "Block public" -msgstr "Блокировать общественный доступ" - -#: mod/admin.php:924 -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:925 -msgid "Force publish" -msgstr "Принудительная публикация" - -#: mod/admin.php:925 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" -"Отметьте, чтобы принудительно заставить все профили на этом сайте, быть " -"перечислеными в каталоге сайта." - -#: mod/admin.php:926 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:926 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:927 -msgid "Allow threaded items" -msgstr "Разрешить темы в обсуждении" - -#: mod/admin.php:927 -msgid "Allow infinite level threading for items on this site." -msgstr "Разрешить бесконечный уровень для тем на этом сайте." - -#: mod/admin.php:928 -msgid "Private posts by default for new users" -msgstr "Частные сообщения по умолчанию для новых пользователей" - -#: mod/admin.php:928 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" -"Установить права на создание постов по умолчанию для всех участников в " -"дефолтной приватной группе, а не для публичных участников." - -#: mod/admin.php:929 -msgid "Don't include post content in email notifications" -msgstr "Не включать текст сообщения в email-оповещение." - -#: mod/admin.php:929 -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:930 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." - -#: mod/admin.php:930 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" -"При установке этого флажка, будут ограничены аддоны, перечисленные в меню " -"приложений, только для участников." - -#: mod/admin.php:931 -msgid "Don't embed private images in posts" -msgstr "Не вставлять личные картинки в постах" - -#: mod/admin.php:931 -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:932 -msgid "Allow Users to set remote_self" -msgstr "Разрешить пользователям установить remote_self" - -#: mod/admin.php:932 -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:933 -msgid "Block multiple registrations" -msgstr "Блокировать множественные регистрации" - -#: mod/admin.php:933 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" -"Запретить пользователям регистрировать дополнительные аккаунты для " -"использования в качестве страниц." - -#: mod/admin.php:934 -msgid "OpenID support" -msgstr "Поддержка OpenID" - -#: mod/admin.php:934 -msgid "OpenID support for registration and logins." -msgstr "OpenID поддержка для регистрации и входа в систему." - -#: mod/admin.php:935 -msgid "Fullname check" -msgstr "Проверка полного имени" - -#: mod/admin.php:935 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" -"Принудить пользователей регистрироваться с пробелом между именем и фамилией " -"в строке \"полное имя\". Антиспам мера." - -#: mod/admin.php:936 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 регулярные выражения" - -#: mod/admin.php:936 -msgid "Use PHP UTF8 regular expressions" -msgstr "Используйте PHP UTF-8 для регулярных выражений" - -#: mod/admin.php:937 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:937 -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:938 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:938 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:939 -msgid "Enable OStatus support" -msgstr "Включить поддержку OStatus" - -#: mod/admin.php:939 -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:940 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:940 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" -"Как часто процессы должны проверять наличие новых записей в OStatus " -"разговорах? Это может быть очень ресурсоёмкой задачей." - -#: mod/admin.php:941 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:943 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub " -"directory." -msgstr "" - -#: mod/admin.php:944 -msgid "Enable Diaspora support" -msgstr "Включить поддержку Diaspora" - -#: mod/admin.php:944 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Обеспечить встроенную поддержку сети Diaspora." - -#: mod/admin.php:945 -msgid "Only allow Friendica contacts" -msgstr "Позвольть только Friendica контакты" - -#: mod/admin.php:945 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" -"Все контакты должны использовать только Friendica протоколы. Все другие " -"встроенные коммуникационные протоколы отключены." - -#: mod/admin.php:946 -msgid "Verify SSL" -msgstr "Проверка SSL" - -#: mod/admin.php:946 -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 "" -"Если хотите, вы можете включить строгую проверку сертификатов. Это будет " -"означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-" -"подписанный SSL сертификат." - -#: mod/admin.php:947 -msgid "Proxy user" -msgstr "Прокси пользователь" - -#: mod/admin.php:948 -msgid "Proxy URL" -msgstr "Прокси URL" - -#: mod/admin.php:949 -msgid "Network timeout" -msgstr "Тайм-аут сети" - -#: mod/admin.php:949 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" -"Значение указывается в секундах. Установите 0 для снятия ограничений (не " -"рекомендуется)." - -#: mod/admin.php:950 -msgid "Delivery interval" -msgstr "Интервал поставки" - -#: mod/admin.php:950 -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 "" -"Установите задержку выполнения фоновых процессов доставки до указанного " -"количества секунд, чтобы уменьшить нагрузку на систему. Рекомендация: 4-5 " -"для обычного shared хостинга, 2-3 для виртуальных частных серверов. 0-1 для " -"мощных выделенных серверов." - -#: mod/admin.php:951 -msgid "Poll interval" -msgstr "Интервал опроса" - -#: mod/admin.php:951 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" -"Установить задержку фоновых процессов опросов путем ограничения количества " -"секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал " -"доставки." - -#: mod/admin.php:952 -msgid "Maximum Load Average" -msgstr "Средняя максимальная нагрузка" - -#: mod/admin.php:952 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" -"Максимальная нагрузка на систему перед приостановкой процессов доставки и " -"опросов - по умолчанию 50." - -#: mod/admin.php:953 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:953 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:954 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:954 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:955 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:955 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:957 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:957 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:958 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:958 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:959 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:959 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:960 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:960 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:961 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:961 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:963 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:963 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:965 -msgid "Use MySQL full text engine" -msgstr "Использовать систему полнотексного поиска MySQL" - -#: mod/admin.php:965 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" -"Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать " -"только при указании четырех и более символов." - -#: mod/admin.php:966 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:966 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:967 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:967 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:968 -msgid "Path to item cache" -msgstr "Путь к элементам кэша" - -#: mod/admin.php:968 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:969 -msgid "Cache duration in seconds" -msgstr "Время жизни кэша в секундах" - -#: mod/admin.php:969 -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:970 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:970 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:971 -msgid "Path for lock file" -msgstr "Путь к файлу блокировки" - -#: mod/admin.php:971 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:972 -msgid "Temp path" -msgstr "Временная папка" - -#: mod/admin.php:972 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:973 -msgid "Base path to installation" -msgstr "Путь для установки" - -#: mod/admin.php:973 -msgid "" -"If the system cannot detect the correct path to your installation, enter the " -"correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:974 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:974 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on " -"systems with very low bandwith." -msgstr "" - -#: mod/admin.php:975 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:975 -msgid "" -"The old style pager has page numbers but slows down massively the page speed." -msgstr "" - -#: mod/admin.php:976 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:976 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:978 -msgid "New base url" -msgstr "Новый базовый url" - -#: mod/admin.php:978 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts " -"of all users." -msgstr "" - -#: mod/admin.php:980 -msgid "RINO Encryption" -msgstr "RINO шифрование" - -#: mod/admin.php:980 -msgid "Encryption layer between nodes." -msgstr "Слой шифрования между узлами." - -#: mod/admin.php:981 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:981 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1010 -msgid "Update has been marked successful" -msgstr "Обновление было успешно отмечено" - -#: mod/admin.php:1018 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1021 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1033 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1036 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Обновление %s успешно применено." - -#: mod/admin.php:1040 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" -"Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." - -#: mod/admin.php:1042 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1061 -msgid "No failed updates." -msgstr "Неудавшихся обновлений нет." - -#: mod/admin.php:1062 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1067 -msgid "Failed Updates" -msgstr "Неудавшиеся обновления" - -#: mod/admin.php:1068 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" -"Эта цифра не включает обновления до 1139, которое не возвращает статус." - -#: mod/admin.php:1069 -msgid "Mark success (if update was manually applied)" -msgstr "Отмечено успешно (если обновление было применено вручную)" - -#: mod/admin.php:1070 -msgid "Attempt to execute this update step automatically" -msgstr "Попытаться выполнить этот шаг обновления автоматически" - -#: mod/admin.php:1102 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1105 -#, php-format -msgid "" -"\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." -msgstr "" - -#: mod/admin.php:1137 include/user.php:423 -#, php-format -msgid "Registration details for %s" -msgstr "Подробности регистрации для %s" - -#: mod/admin.php:1149 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s пользователь заблокирован/разблокирован" -msgstr[1] "%s пользователей заблокировано/разблокировано" -msgstr[2] "%s пользователей заблокировано/разблокировано" -msgstr[3] "%s пользователей заблокировано/разблокировано" - -#: mod/admin.php:1156 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s человек удален" -msgstr[1] "%s чел. удалено" -msgstr[2] "%s чел. удалено" -msgstr[3] "%s чел. удалено" - -#: mod/admin.php:1203 -#, php-format -msgid "User '%s' deleted" -msgstr "Пользователь '%s' удален" - -#: mod/admin.php:1211 -#, php-format -msgid "User '%s' unblocked" -msgstr "Пользователь '%s' разблокирован" - -#: mod/admin.php:1211 -#, php-format -msgid "User '%s' blocked" -msgstr "Пользователь '%s' блокирован" - -#: mod/admin.php:1302 -msgid "Add User" -msgstr "Добавить пользователя" - -#: mod/admin.php:1303 -msgid "select all" -msgstr "выбрать все" - -#: mod/admin.php:1304 -msgid "User registrations waiting for confirm" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: mod/admin.php:1305 -msgid "User waiting for permanent deletion" -msgstr "Пользователь ожидает окончательного удаления" - -#: mod/admin.php:1306 -msgid "Request date" -msgstr "Запрос даты" - -#: mod/admin.php:1306 mod/admin.php:1318 mod/admin.php:1319 mod/admin.php:1334 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "Эл. почта" - -#: mod/admin.php:1307 -msgid "No registrations." -msgstr "Нет регистраций." - -#: mod/admin.php:1309 -msgid "Deny" -msgstr "Отклонить" - -#: mod/admin.php:1313 -msgid "Site admin" -msgstr "Админ сайта" - -#: mod/admin.php:1314 -msgid "Account expired" -msgstr "Аккаунт просрочен" - -#: mod/admin.php:1317 -msgid "New User" -msgstr "Новый пользователь" - -#: mod/admin.php:1318 mod/admin.php:1319 -msgid "Register date" -msgstr "Дата регистрации" - -#: mod/admin.php:1318 mod/admin.php:1319 -msgid "Last login" -msgstr "Последний вход" - -#: mod/admin.php:1318 mod/admin.php:1319 -msgid "Last item" -msgstr "Последний пункт" - -#: mod/admin.php:1318 -msgid "Deleted since" -msgstr "Удалён с" - -#: mod/admin.php:1319 mod/settings.php:41 -msgid "Account" -msgstr "Аккаунт" - -#: mod/admin.php:1321 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" -"Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи " -"написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" - -#: mod/admin.php:1322 -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 "" -"Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на " -"этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" - -#: mod/admin.php:1332 -msgid "Name of the new user." -msgstr "Имя нового пользователя." - -#: mod/admin.php:1333 -msgid "Nickname" -msgstr "Ник" - -#: mod/admin.php:1333 -msgid "Nickname of the new user." -msgstr "Ник нового пользователя." - -#: mod/admin.php:1334 -msgid "Email address of the new user." -msgstr "Email адрес нового пользователя." - -#: mod/admin.php:1377 -#, php-format -msgid "Plugin %s disabled." -msgstr "Плагин %s отключен." - -#: mod/admin.php:1381 -#, php-format -msgid "Plugin %s enabled." -msgstr "Плагин %s включен." - -#: mod/admin.php:1392 mod/admin.php:1628 -msgid "Disable" -msgstr "Отключить" - -#: mod/admin.php:1394 mod/admin.php:1630 -msgid "Enable" -msgstr "Включить" - -#: mod/admin.php:1417 mod/admin.php:1675 -msgid "Toggle" -msgstr "Переключить" - -#: mod/admin.php:1425 mod/admin.php:1684 -msgid "Author: " -msgstr "Автор:" - -#: mod/admin.php:1426 mod/admin.php:1685 -msgid "Maintainer: " -msgstr "Программа обслуживания: " - -#: mod/admin.php:1478 -msgid "Reload active plugins" -msgstr "" - -#: mod/admin.php:1483 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" -msgstr "" - -#: mod/admin.php:1588 -msgid "No themes found." -msgstr "Темы не найдены." - -#: mod/admin.php:1666 -msgid "Screenshot" -msgstr "Скриншот" - -#: mod/admin.php:1726 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:1731 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" -msgstr "" - -#: mod/admin.php:1732 -msgid "[Experimental]" -msgstr "[экспериментально]" - -#: mod/admin.php:1733 -msgid "[Unsupported]" -msgstr "[Неподдерживаемое]" - -#: mod/admin.php:1757 -msgid "Log settings updated." -msgstr "Настройки журнала обновлены." - -#: mod/admin.php:1794 -msgid "Clear" -msgstr "Очистить" - -#: mod/admin.php:1799 -msgid "Enable Debugging" -msgstr "Включить отладку" - -#: mod/admin.php:1800 -msgid "Log file" -msgstr "Лог-файл" - -#: mod/admin.php:1800 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" -"Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica " -"каталога верхнего уровня." - -#: mod/admin.php:1801 -msgid "Log level" -msgstr "Уровень лога" - -#: mod/admin.php:1804 -msgid "PHP logging" -msgstr "PHP логирование" - -#: mod/admin.php:1805 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:1931 mod/admin.php:1932 mod/settings.php:759 -msgid "Off" -msgstr "Выкл." - -#: mod/admin.php:1931 mod/admin.php:1932 mod/settings.php:759 -msgid "On" -msgstr "Вкл." - -#: mod/admin.php:1932 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:1940 -msgid "Manage Additional Features" -msgstr "" - -#: mod/network.php:146 -#, php-format -msgid "Search Results For: %s" -msgstr "" - -#: mod/network.php:191 mod/search.php:25 -msgid "Remove term" -msgstr "Удалить элемент" - -#: mod/network.php:200 mod/search.php:34 include/features.php:84 -msgid "Saved Searches" -msgstr "запомненные поиски" - -#: mod/network.php:201 include/group.php:293 -msgid "add" -msgstr "добавить" - -#: mod/network.php:365 -msgid "Commented Order" -msgstr "Последние комментарии" - -#: mod/network.php:368 -msgid "Sort by Comment Date" -msgstr "Сортировать по дате комментария" - -#: mod/network.php:373 -msgid "Posted Order" -msgstr "Лента записей" - -#: mod/network.php:376 -msgid "Sort by Post Date" -msgstr "Сортировать по дате отправки" - -#: mod/network.php:387 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:395 -msgid "New" -msgstr "Новый" - -#: mod/network.php:398 -msgid "Activity Stream - by date" -msgstr "Лента активности - по дате" - -#: mod/network.php:406 -msgid "Shared Links" -msgstr "Ссылки, которыми поделились" - -#: mod/network.php:409 -msgid "Interesting Links" -msgstr "Интересные ссылки" - -#: mod/network.php:417 -msgid "Starred" -msgstr "Помеченный" - -#: mod/network.php:420 -msgid "Favourite Posts" -msgstr "Избранные посты" - -#: mod/network.php:479 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Внимание: Эта группа содержит %s участника с незащищенной сети." -msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети." -msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети." -msgstr[3] "Внимание: Эта группа содержит %s участников с незащищенной сети." - -#: mod/network.php:482 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Личные сообщения к этой группе находятся под угрозой обнародования." - -#: mod/network.php:549 mod/content.php:119 -msgid "No such group" -msgstr "Нет такой группы" - -#: mod/network.php:580 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Группа: %s" - -#: mod/network.php:608 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Личные сообщения этому человеку находятся под угрозой обнародования." - -#: mod/network.php:613 -msgid "Invalid contact." -msgstr "Недопустимый контакт." - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Нет друзей." - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Название мероприятия и время начала обязательны для заполнения." - -#: mod/events.php:201 -msgid "Sun" -msgstr "Вс" - -#: mod/events.php:202 -msgid "Mon" -msgstr "Пн" - -#: mod/events.php:203 -msgid "Tue" -msgstr "Вт" - -#: mod/events.php:204 -msgid "Wed" -msgstr "Ср" - -#: mod/events.php:205 -msgid "Thu" -msgstr "Чт" - -#: mod/events.php:206 -msgid "Fri" -msgstr "Пт" - -#: mod/events.php:207 -msgid "Sat" -msgstr "Сб" - -#: mod/events.php:208 mod/settings.php:948 include/text.php:1274 -msgid "Sunday" -msgstr "Воскресенье" - -#: mod/events.php:209 mod/settings.php:948 include/text.php:1274 -msgid "Monday" -msgstr "Понедельник" - -#: mod/events.php:210 include/text.php:1274 -msgid "Tuesday" -msgstr "Вторник" - -#: mod/events.php:211 include/text.php:1274 -msgid "Wednesday" -msgstr "Среда" - -#: mod/events.php:212 include/text.php:1274 -msgid "Thursday" -msgstr "Четверг" - -#: mod/events.php:213 include/text.php:1274 -msgid "Friday" -msgstr "Пятница" - -#: mod/events.php:214 include/text.php:1274 -msgid "Saturday" -msgstr "Суббота" - -#: mod/events.php:215 -msgid "Jan" -msgstr "Янв" - -#: mod/events.php:216 -msgid "Feb" -msgstr "Фев" - -#: mod/events.php:217 -msgid "Mar" -msgstr "Мрт" - -#: mod/events.php:218 -msgid "Apr" -msgstr "Апр" - -#: mod/events.php:219 mod/events.php:231 include/text.php:1278 -msgid "May" -msgstr "Май" - -#: mod/events.php:220 -msgid "Jun" -msgstr "Июн" - -#: mod/events.php:221 -msgid "Jul" -msgstr "Июл" - -#: mod/events.php:222 -msgid "Aug" -msgstr "Авг" - -#: mod/events.php:223 -msgid "Sept" -msgstr "Сен" - -#: mod/events.php:224 -msgid "Oct" -msgstr "Окт" - -#: mod/events.php:225 -msgid "Nov" -msgstr "Нбр" - -#: mod/events.php:226 -msgid "Dec" -msgstr "Дек" - -#: mod/events.php:227 include/text.php:1278 -msgid "January" -msgstr "Январь" - -#: mod/events.php:228 include/text.php:1278 -msgid "February" -msgstr "Февраль" - -#: mod/events.php:229 include/text.php:1278 -msgid "March" -msgstr "Март" - -#: mod/events.php:230 include/text.php:1278 -msgid "April" -msgstr "Апрель" - -#: mod/events.php:232 include/text.php:1278 -msgid "June" -msgstr "Июнь" - -#: mod/events.php:233 include/text.php:1278 -msgid "July" -msgstr "Июль" - -#: mod/events.php:234 include/text.php:1278 -msgid "August" -msgstr "Август" - -#: mod/events.php:235 include/text.php:1278 -msgid "September" -msgstr "Сентябрь" - -#: mod/events.php:236 include/text.php:1278 -msgid "October" -msgstr "Октябрь" - -#: mod/events.php:237 include/text.php:1278 -msgid "November" -msgstr "Ноябрь" - -#: mod/events.php:238 include/text.php:1278 -msgid "December" -msgstr "Декабрь" - -#: mod/events.php:239 -msgid "today" -msgstr "сегодня" - -#: mod/events.php:240 include/datetime.php:288 -msgid "month" -msgstr "мес." - -#: mod/events.php:241 include/datetime.php:289 -msgid "week" -msgstr "неделя" - -#: mod/events.php:242 include/datetime.php:290 -msgid "day" -msgstr "день" - -#: mod/events.php:377 -msgid "l, F j" -msgstr "l, j F" - -#: mod/events.php:399 -msgid "Edit event" -msgstr "Редактировать мероприятие" - -#: mod/events.php:421 include/text.php:1728 include/text.php:1735 -msgid "link to source" -msgstr "ссылка на сообщение" - -#: mod/events.php:456 include/identity.php:722 include/nav.php:79 -#: include/nav.php:140 view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Мероприятия" - -#: mod/events.php:457 -msgid "Create New Event" -msgstr "Создать новое мероприятие" - -#: mod/events.php:458 -msgid "Previous" -msgstr "Назад" - -#: mod/events.php:459 mod/install.php:220 -msgid "Next" -msgstr "Далее" - -#: mod/events.php:554 -msgid "Event details" -msgstr "Сведения о мероприятии" - -#: mod/events.php:555 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:556 -msgid "Event Starts:" -msgstr "Начало мероприятия:" - -#: mod/events.php:556 mod/events.php:568 -msgid "Required" -msgstr "Требуется" - -#: mod/events.php:558 -msgid "Finish date/time is not known or not relevant" -msgstr "Дата/время окончания не известны, или не указаны" - -#: mod/events.php:560 -msgid "Event Finishes:" -msgstr "Окончание мероприятия:" - -#: mod/events.php:562 -msgid "Adjust for viewer timezone" -msgstr "Настройка часового пояса" - -#: mod/events.php:564 -msgid "Description:" -msgstr "Описание:" - -#: mod/events.php:568 -msgid "Title:" -msgstr "Титул:" - -#: mod/events.php:570 -msgid "Share this event" -msgstr "Поделитесь этим мероприятием" - -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767 -#: object/Item.php:719 include/conversation.php:1216 -msgid "Preview" -msgstr "Предварительный просмотр" - -#: mod/credits.php:16 -msgid "Credits" -msgstr "" - -#: mod/credits.php:17 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 -#: object/Item.php:133 include/conversation.php:634 -msgid "Select" -msgstr "Выберите" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Просмотреть профиль %s [@ %s]" - -#: mod/content.php:483 mod/content.php:866 object/Item.php:371 -#: include/conversation.php:695 -#, php-format -msgid "%s from %s" -msgstr "%s с %s" - -#: mod/content.php:499 include/conversation.php:711 -msgid "View in context" -msgstr "Смотреть в контексте" - -#: mod/content.php:605 object/Item.php:419 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d комментарий" -msgstr[1] "%d комментариев" -msgstr[2] "%d комментариев" -msgstr[3] "%d комментариев" - -#: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:2004 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "комментарий" -msgstr[3] "комментарий" - -#: mod/content.php:608 boot.php:870 object/Item.php:422 -#: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5207 view/theme/vier/theme.php:264 -msgid "show more" -msgstr "показать больше" - -#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 -msgid "Private Message" -msgstr "Личное сообщение" - -#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 -msgid "I like this (toggle)" -msgstr "Нравится" - -#: mod/content.php:686 object/Item.php:253 -msgid "like" -msgstr "нравится" - -#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 -msgid "I don't like this (toggle)" -msgstr "Не нравится" - -#: mod/content.php:687 object/Item.php:254 -msgid "dislike" -msgstr "не нравитса" - -#: mod/content.php:689 object/Item.php:256 -msgid "Share this" -msgstr "Поделитесь этим" - -#: mod/content.php:689 object/Item.php:256 -msgid "share" -msgstr "делиться" - -#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675 -#: mod/photos.php:1763 object/Item.php:707 -msgid "This is you" -msgstr "Это вы" - -#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 -#: mod/photos.php:1765 boot.php:869 object/Item.php:393 object/Item.php:709 -msgid "Comment" -msgstr "Оставить комментарий" - -#: mod/content.php:713 object/Item.php:711 -msgid "Bold" -msgstr "Жирный" - -#: mod/content.php:714 object/Item.php:712 -msgid "Italic" -msgstr "Kурсивный" - -#: mod/content.php:715 object/Item.php:713 -msgid "Underline" -msgstr "Подчеркнутый" - -#: mod/content.php:716 object/Item.php:714 -msgid "Quote" -msgstr "Цитата" - -#: mod/content.php:717 object/Item.php:715 -msgid "Code" -msgstr "Код" - -#: mod/content.php:718 object/Item.php:716 -msgid "Image" -msgstr "Изображение / Фото" - -#: mod/content.php:719 object/Item.php:717 -msgid "Link" -msgstr "Ссылка" - -#: mod/content.php:720 object/Item.php:718 -msgid "Video" -msgstr "Видео" - -#: mod/content.php:730 mod/settings.php:721 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Редактировать" - -#: mod/content.php:755 object/Item.php:217 -msgid "add star" -msgstr "пометить" - -#: mod/content.php:756 object/Item.php:218 -msgid "remove star" -msgstr "убрать метку" - -#: mod/content.php:757 object/Item.php:219 -msgid "toggle star status" -msgstr "переключить статус" - -#: mod/content.php:760 object/Item.php:222 -msgid "starred" -msgstr "помечено" - -#: mod/content.php:761 object/Item.php:242 -msgid "add tag" -msgstr "добавить ключевое слово (таг)" - -#: mod/content.php:765 object/Item.php:137 -msgid "save to folder" -msgstr "сохранить в папке" - -#: mod/content.php:856 object/Item.php:359 -msgid "to" -msgstr "к" - -#: mod/content.php:857 object/Item.php:361 -msgid "Wall-to-Wall" -msgstr "Стена-на-Стену" - -#: mod/content.php:858 object/Item.php:362 -msgid "via Wall-To-Wall:" -msgstr "через Стена-на-Стену:" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Удалить мой аккаунт" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" -"Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, " -"аккаунт восстановлению не подлежит." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Пожалуйста, введите свой пароль для проверки:" - -#: mod/install.php:128 -msgid "Friendica Communications Server - Setup" -msgstr "Коммуникационный сервер Friendica - Доступ" - -#: mod/install.php:134 -msgid "Could not connect to database." -msgstr "Не удалось подключиться к базе данных." - -#: mod/install.php:138 -msgid "Could not create table." -msgstr "Не удалось создать таблицу." - -#: mod/install.php:144 -msgid "Your Friendica site database has been installed." -msgstr "База данных сайта установлена." - -#: mod/install.php:149 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" -"Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью " -"PhpMyAdmin или MySQL." - -#: mod/install.php:150 mod/install.php:219 mod/install.php:577 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"." - -#: mod/install.php:162 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:216 -msgid "System check" -msgstr "Проверить систему" - -#: mod/install.php:221 -msgid "Check again" -msgstr "Проверить еще раз" - -#: mod/install.php:240 -msgid "Database connection" -msgstr "Подключение к базе данных" - -#: mod/install.php:241 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" -"Для того, чтобы установить Friendica, мы должны знать, как подключиться к " -"базе данных." - -#: mod/install.php:242 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" -"Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, " -"если у вас есть вопросы об этих параметрах." - -#: mod/install.php:243 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" -"Базы данных, указанная ниже, должна уже существовать. Если этого нет, " -"пожалуйста, создайте ее перед продолжением." - -#: mod/install.php:247 -msgid "Database Server Name" -msgstr "Имя сервера базы данных" - -#: mod/install.php:248 -msgid "Database Login Name" -msgstr "Логин базы данных" - -#: mod/install.php:249 -msgid "Database Login Password" -msgstr "Пароль базы данных" - -#: mod/install.php:250 -msgid "Database Name" -msgstr "Имя базы данных" - -#: mod/install.php:251 mod/install.php:290 -msgid "Site administrator email address" -msgstr "Адрес электронной почты администратора сайта" - -#: mod/install.php:251 mod/install.php:290 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" -"Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы " -"использовать веб-панель администратора." - -#: mod/install.php:255 mod/install.php:293 -msgid "Please select a default timezone for your website" -msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" - -#: mod/install.php:280 -msgid "Site settings" -msgstr "Настройки сайта" - -#: mod/install.php:334 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Не удалось найти PATH веб-сервера в установках PHP." - -#: mod/install.php:335 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" -msgstr "" - -#: mod/install.php:339 -msgid "PHP executable path" -msgstr "PHP executable path" - -#: mod/install.php:339 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" -"Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле " -"пустым, чтобы продолжить установку." - -#: mod/install.php:344 -msgid "Command line PHP" -msgstr "Command line PHP" - -#: mod/install.php:353 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:354 -msgid "Found PHP version: " -msgstr "Найденная PHP версия: " - -#: mod/install.php:356 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: mod/install.php:367 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Не включено \"register_argc_argv\" в установках PHP." - -#: mod/install.php:368 -msgid "This is required for message delivery to work." -msgstr "Это необходимо для работы доставки сообщений." - -#: mod/install.php:370 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:391 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" -"Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии " -"генерировать ключи шифрования" - -#: mod/install.php:392 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" -"Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl." -"installation.php\"." - -#: mod/install.php:394 -msgid "Generate encryption keys" -msgstr "Генерация шифрованых ключей" - -#: mod/install.php:401 -msgid "libCurl PHP module" -msgstr "libCurl PHP модуль" - -#: mod/install.php:402 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP модуль" - -#: mod/install.php:403 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP модуль" - -#: mod/install.php:404 -msgid "mysqli PHP module" -msgstr "mysqli PHP модуль" - -#: mod/install.php:405 -msgid "mb_string PHP module" -msgstr "mb_string PHP модуль" - -#: mod/install.php:406 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:411 mod/install.php:413 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:411 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" -"Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." - -#: mod/install.php:419 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." - -#: mod/install.php:423 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" -"Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не " -"установлен." - -#: mod/install.php:427 -msgid "Error: openssl PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." - -#: mod/install.php:431 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен." - -#: mod/install.php:435 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." - -#: mod/install.php:439 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:451 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "" - -#: mod/install.php:453 -msgid "mcrypt_create_iv() function" -msgstr "" - -#: mod/install.php:469 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" -"Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в " -"верхней папке веб-сервера, но он не в состоянии это сделать." - -#: mod/install.php:470 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" -"Это наиболее частые параметры разрешений, когда веб-сервер не может записать " -"файлы в папке - даже если вы можете." - -#: mod/install.php:471 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" -"В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем ." -"htconfig.php в корневой папке, где установлена Friendica." - -#: mod/install.php:472 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" -"В качестве альтернативы вы можете пропустить эту процедуру и выполнить " -"установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для " -"получения инструкций." - -#: mod/install.php:475 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" - -#: mod/install.php:485 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" -"Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. " -"Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." - -#: mod/install.php:486 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" -"Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь " -"доступ на запись для папки view/smarty3 в директории, где установлена " -"Friendica." - -#: mod/install.php:487 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" -"Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер " -"(например www-data), имеет доступ на запись в этой папке." - -#: mod/install.php:488 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" -"Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ " -"на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., " -"Которые содержатся в этой папке." - -#: mod/install.php:491 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 доступен для записи" - -#: mod/install.php:507 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" -"Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.." - -#: mod/install.php:509 -msgid "Url rewrite is working" -msgstr "Url rewrite работает" - -#: mod/install.php:526 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:528 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:536 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" -"Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. " -"Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный " -"файл в корневом каталоге веб-сервера." - -#: mod/install.php:575 -msgid "

                                              What next

                                              " -msgstr "

                                              Что далее

                                              " - -#: mod/install.php:576 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" -"ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для " -"регистратора." - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" -"Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Невозможно проверить местоположение." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Без адресата." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" -"Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки " -"конфиденциальности на Вашем сайте принимать персональную почту от " -"неизвестных отправителей." - -#: mod/help.php:41 -msgid "Help:" -msgstr "Помощь:" - -#: mod/help.php:47 include/nav.php:113 view/theme/vier/theme.php:302 -msgid "Help" -msgstr "Помощь" - -#: mod/help.php:53 mod/p.php:16 mod/p.php:25 index.php:270 -msgid "Not Found" -msgstr "Не найдено" - -#: mod/help.php:56 index.php:273 -msgid "Page not found." -msgstr "Страница не найдена." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s добро пожаловать %2$s" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Добро пожаловать на %s!" - -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Загрузка файла не удалась." - -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" -"Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для " -"вашего профиля по умолчанию." - -#: mod/match.php:84 -msgid "is interested in:" -msgstr "интересуется:" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Похожие профили" - -#: mod/share.php:38 -msgid "link" -msgstr "ссылка" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Недоступно." - -#: mod/community.php:36 include/nav.php:136 include/nav.php:138 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Сообщество" - -#: mod/community.php:66 mod/community.php:75 mod/search.php:228 -msgid "No results." -msgstr "Нет результатов." - -#: mod/settings.php:34 mod/photos.php:117 -msgid "everybody" -msgstr "каждый" - -#: mod/settings.php:58 -msgid "Display" -msgstr "Внешний вид" - -#: mod/settings.php:65 mod/settings.php:864 -msgid "Social Networks" -msgstr "Социальные сети" - -#: mod/settings.php:79 include/nav.php:180 -msgid "Delegations" -msgstr "Делегирование" - -#: mod/settings.php:86 -msgid "Connected apps" -msgstr "Подключенные приложения" - -#: mod/settings.php:93 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Экспорт личных данных" - -#: mod/settings.php:100 -msgid "Remove account" -msgstr "Удалить аккаунт" - -#: mod/settings.php:153 -msgid "Missing some important data!" -msgstr "Не хватает важных данных!" - -#: mod/settings.php:266 -msgid "Failed to connect with email account using the settings provided." -msgstr "" -"Не удалось подключиться к аккаунту e-mail, используя указанные настройки." - -#: mod/settings.php:271 -msgid "Email settings updated." -msgstr "Настройки эл. почты обновлены." - -#: mod/settings.php:286 -msgid "Features updated" -msgstr "Настройки обновлены" - -#: mod/settings.php:353 -msgid "Relocate message has been send to your contacts" -msgstr "Перемещённое сообщение было отправлено списку контактов" - -#: mod/settings.php:367 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Пароли не совпадают. Пароль не изменен." - -#: mod/settings.php:372 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Пустые пароли не допускаются. Пароль не изменен." - -#: mod/settings.php:380 -msgid "Wrong password." -msgstr "Неверный пароль." - -#: mod/settings.php:391 -msgid "Password changed." -msgstr "Пароль изменен." - -#: mod/settings.php:393 -msgid "Password update failed. Please try again." -msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." - -#: mod/settings.php:462 -msgid " Please use a shorter name." -msgstr " Пожалуйста, используйте более короткое имя." - -#: mod/settings.php:464 -msgid " Name too short." -msgstr " Имя слишком короткое." - -#: mod/settings.php:473 -msgid "Wrong Password" -msgstr "Неверный пароль." - -#: mod/settings.php:478 -msgid " Not valid email." -msgstr " Неверный e-mail." - -#: mod/settings.php:484 -msgid " Cannot change to that email." -msgstr " Невозможно изменить на этот e-mail." - -#: mod/settings.php:540 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" -"Частный форум не имеет настроек приватности. Используется группа " -"конфиденциальности по умолчанию." - -#: mod/settings.php:544 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" -"Частный форум не имеет настроек приватности и не имеет групп приватности по " -"умолчанию." - -#: mod/settings.php:583 -msgid "Settings updated." -msgstr "Настройки обновлены." - -#: mod/settings.php:658 mod/settings.php:684 mod/settings.php:720 -msgid "Add application" -msgstr "Добавить приложения" - -#: mod/settings.php:662 mod/settings.php:688 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:663 mod/settings.php:689 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:664 mod/settings.php:690 -msgid "Redirect" -msgstr "Перенаправление" - -#: mod/settings.php:665 mod/settings.php:691 -msgid "Icon url" -msgstr "URL символа" - -#: mod/settings.php:676 -msgid "You can't edit this application." -msgstr "Вы не можете изменить это приложение." - -#: mod/settings.php:719 -msgid "Connected Apps" -msgstr "Подключенные приложения" - -#: mod/settings.php:723 -msgid "Client key starts with" -msgstr "Ключ клиента начинается с" - -#: mod/settings.php:724 -msgid "No name" -msgstr "Нет имени" - -#: mod/settings.php:725 -msgid "Remove authorization" -msgstr "Удалить авторизацию" - -#: mod/settings.php:737 -msgid "No Plugin settings configured" -msgstr "Нет сконфигурированных настроек плагина" - -#: mod/settings.php:745 -msgid "Plugin Settings" -msgstr "Настройки плагина" - -#: mod/settings.php:767 -msgid "Additional Features" -msgstr "Дополнительные возможности" - -#: mod/settings.php:777 mod/settings.php:781 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:787 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:789 -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:795 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:797 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:806 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:808 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:811 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:820 mod/settings.php:821 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Встроенная поддержка для %s подключение %s" - -#: mod/settings.php:820 mod/dfrn_request.php:865 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:820 mod/settings.php:821 -msgid "enabled" -msgstr "подключено" - -#: mod/settings.php:820 mod/settings.php:821 -msgid "disabled" -msgstr "отключено" - -#: mod/settings.php:821 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:857 -msgid "Email access is disabled on this site." -msgstr "Доступ эл. почты отключен на этом сайте." - -#: mod/settings.php:869 -msgid "Email/Mailbox Setup" -msgstr "Настройка эл. почты / почтового ящика" - -#: mod/settings.php:870 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" -"Если вы хотите общаться с Email контактами, используя этот сервис (по " -"желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." - -#: mod/settings.php:871 -msgid "Last successful email check:" -msgstr "Последняя успешная проверка электронной почты:" - -#: mod/settings.php:873 -msgid "IMAP server name:" -msgstr "Имя IMAP сервера:" - -#: mod/settings.php:874 -msgid "IMAP port:" -msgstr "Порт IMAP:" - -#: mod/settings.php:875 -msgid "Security:" -msgstr "Безопасность:" - -#: mod/settings.php:875 mod/settings.php:880 -msgid "None" -msgstr "Ничего" - -#: mod/settings.php:876 -msgid "Email login name:" -msgstr "Логин эл. почты:" - -#: mod/settings.php:877 -msgid "Email password:" -msgstr "Пароль эл. почты:" - -#: mod/settings.php:878 -msgid "Reply-to address:" -msgstr "Адрес для ответа:" - -#: mod/settings.php:879 -msgid "Send public posts to all email contacts:" -msgstr "Отправлять открытые сообщения на все контакты электронной почты:" - -#: mod/settings.php:880 -msgid "Action after import:" -msgstr "Действие после импорта:" - -#: mod/settings.php:880 -msgid "Mark as seen" -msgstr "Отметить, как прочитанное" - -#: mod/settings.php:880 -msgid "Move to folder" -msgstr "Переместить в папку" - -#: mod/settings.php:881 -msgid "Move to folder:" -msgstr "Переместить в папку:" - -#: mod/settings.php:967 -msgid "Display Settings" -msgstr "Параметры дисплея" - -#: mod/settings.php:973 mod/settings.php:991 -msgid "Display Theme:" -msgstr "Показать тему:" - -#: mod/settings.php:974 -msgid "Mobile Theme:" -msgstr "Мобильная тема:" - -#: mod/settings.php:975 -msgid "Update browser every xx seconds" -msgstr "Обновление браузера каждые хх секунд" - -#: mod/settings.php:975 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:976 -msgid "Number of items to display per page:" -msgstr "Количество элементов, отображаемых на одной странице:" - -#: mod/settings.php:976 mod/settings.php:977 -msgid "Maximum of 100 items" -msgstr "Максимум 100 элементов" - -#: mod/settings.php:977 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" -"Количество элементов на странице, когда просмотр осуществляется с мобильных " -"устройств:" - -#: mod/settings.php:978 -msgid "Don't show emoticons" -msgstr "не показывать emoticons" - -#: mod/settings.php:979 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:980 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:981 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:982 -msgid "Infinite scroll" -msgstr "Бесконечная прокрутка" - -#: mod/settings.php:983 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:985 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:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Настройки темы" - -#: mod/settings.php:1062 -msgid "User Types" -msgstr "" - -#: mod/settings.php:1063 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:1064 -msgid "Normal Account Page" -msgstr "Стандартная страница аккаунта" - -#: mod/settings.php:1065 -msgid "This account is a normal personal profile" -msgstr "Этот аккаунт является обычным персональным профилем" - -#: mod/settings.php:1068 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1069 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" -"Автоматически одобряются все подключения / запросы в друзья, \"только для " -"чтения\" поклонниками" - -#: mod/settings.php:1072 -msgid "Community Forum/Celebrity Account" -msgstr "Аккаунт сообщества Форум/Знаменитость" - -#: mod/settings.php:1073 -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "" -"Автоматически одобряются все подключения / запросы в друзья, \"для чтения и " -"записей\" поклонников" - -#: mod/settings.php:1076 -msgid "Automatic Friend Page" -msgstr "\"Автоматический друг\" страница" - -#: mod/settings.php:1077 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" -"Автоматически одобряются все подключения / запросы в друзья, расширяется " -"список друзей" - -#: mod/settings.php:1080 -msgid "Private Forum [Experimental]" -msgstr "Личный форум [экспериментально]" - -#: mod/settings.php:1081 -msgid "Private forum - approved members only" -msgstr "Приватный форум - разрешено только участникам" - -#: mod/settings.php:1093 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1093 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" - -#: mod/settings.php:1103 -msgid "Publish your default profile in your local site directory?" -msgstr "" -"Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?" - -#: mod/settings.php:1109 -msgid "Publish your default profile in the global social directory?" -msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?" - -#: mod/settings.php:1117 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" -"Скрывать ваш список контактов/друзей от посетителей вашего профиля по " -"умолчанию?" - -#: mod/settings.php:1121 include/acl_selectors.php:331 -msgid "Hide your profile details from unknown viewers?" -msgstr "Скрыть данные профиля из неизвестных зрителей?" - -#: mod/settings.php:1121 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1126 -msgid "Allow friends to post to your profile page?" -msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" - -#: mod/settings.php:1132 -msgid "Allow friends to tag your posts?" -msgstr "Разрешить друзьям отмечять ваши сообщения?" - -#: mod/settings.php:1138 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Позвольть предлогать Вам потенциальных друзей?" - -#: mod/settings.php:1144 -msgid "Permit unknown people to send you private mail?" -msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?" - -#: mod/settings.php:1152 -msgid "Profile is not published." -msgstr "Профиль не публикуется." - -#: mod/settings.php:1160 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1167 -msgid "Automatically expire posts after this many days:" -msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" - -#: mod/settings.php:1167 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" -"Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим " -"сроком действия будут удалены" - -#: mod/settings.php:1168 -msgid "Advanced expiration settings" -msgstr "Настройки расширенного окончания срока действия" - -#: mod/settings.php:1169 -msgid "Advanced Expiration" -msgstr "Расширенное окончание срока действия" - -#: mod/settings.php:1170 -msgid "Expire posts:" -msgstr "Срок хранения сообщений:" - -#: mod/settings.php:1171 -msgid "Expire personal notes:" -msgstr "Срок хранения личных заметок:" - -#: mod/settings.php:1172 -msgid "Expire starred posts:" -msgstr "Срок хранения усеянных сообщений:" - -#: mod/settings.php:1173 -msgid "Expire photos:" -msgstr "Срок хранения фотографий:" - -#: mod/settings.php:1174 -msgid "Only expire posts by others:" -msgstr "Только устаревшие посты других:" - -#: mod/settings.php:1202 -msgid "Account Settings" -msgstr "Настройки аккаунта" - -#: mod/settings.php:1210 -msgid "Password Settings" -msgstr "Смена пароля" - -#: mod/settings.php:1211 mod/register.php:274 -msgid "New Password:" -msgstr "Новый пароль:" - -#: mod/settings.php:1212 mod/register.php:275 -msgid "Confirm:" -msgstr "Подтвердите:" - -#: mod/settings.php:1212 -msgid "Leave password fields blank unless changing" -msgstr "Оставьте поля пароля пустыми, если он не изменяется" - -#: mod/settings.php:1213 -msgid "Current Password:" -msgstr "Текущий пароль:" - -#: mod/settings.php:1213 mod/settings.php:1214 -msgid "Your current password to confirm the changes" -msgstr "Ваш текущий пароль, для подтверждения изменений" - -#: mod/settings.php:1214 -msgid "Password:" -msgstr "Пароль:" - -#: mod/settings.php:1218 -msgid "Basic Settings" -msgstr "Основные параметры" - -#: mod/settings.php:1219 include/identity.php:588 -msgid "Full Name:" -msgstr "Полное имя:" - -#: mod/settings.php:1220 -msgid "Email Address:" -msgstr "Адрес электронной почты:" - -#: mod/settings.php:1221 -msgid "Your Timezone:" -msgstr "Ваш часовой пояс:" - -#: mod/settings.php:1222 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1222 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1223 -msgid "Default Post Location:" -msgstr "Местонахождение по умолчанию:" - -#: mod/settings.php:1224 -msgid "Use Browser Location:" -msgstr "Использовать определение местоположения браузером:" - -#: mod/settings.php:1227 -msgid "Security and Privacy Settings" -msgstr "Параметры безопасности и конфиденциальности" - -#: mod/settings.php:1229 -msgid "Maximum Friend Requests/Day:" -msgstr "Максимум запросов в друзья в день:" - -#: mod/settings.php:1229 mod/settings.php:1259 -msgid "(to prevent spam abuse)" -msgstr "(для предотвращения спама)" - -#: mod/settings.php:1230 -msgid "Default Post Permissions" -msgstr "Разрешение на сообщения по умолчанию" - -#: mod/settings.php:1231 -msgid "(click to open/close)" -msgstr "(нажмите, чтобы открыть / закрыть)" - -#: mod/settings.php:1240 mod/photos.php:1199 mod/photos.php:1584 -msgid "Show to Groups" -msgstr "Показать в группах" - -#: mod/settings.php:1241 mod/photos.php:1200 mod/photos.php:1585 -msgid "Show to Contacts" -msgstr "Показывать контактам" - -#: mod/settings.php:1242 -msgid "Default Private Post" -msgstr "Личное сообщение по умолчанию" - -#: mod/settings.php:1243 -msgid "Default Public Post" -msgstr "Публичное сообщение по умолчанию" - -#: mod/settings.php:1247 -msgid "Default Permissions for New Posts" -msgstr "Права для новых записей по умолчанию" - -#: mod/settings.php:1259 -msgid "Maximum private messages per day from unknown people:" -msgstr "Максимальное количество личных сообщений от незнакомых людей в день:" - -#: mod/settings.php:1262 -msgid "Notification Settings" -msgstr "Настройка уведомлений" - -#: mod/settings.php:1263 -msgid "By default post a status message when:" -msgstr "Отправить состояние о статусе по умолчанию, если:" - -#: mod/settings.php:1264 -msgid "accepting a friend request" -msgstr "принятие запроса на добавление в друзья" - -#: mod/settings.php:1265 -msgid "joining a forum/community" -msgstr "вступление в сообщество/форум" - -#: mod/settings.php:1266 -msgid "making an interesting profile change" -msgstr "сделать изменения в настройках интересов профиля" - -#: mod/settings.php:1267 -msgid "Send a notification email when:" -msgstr "Отправлять уведомление по электронной почте, когда:" - -#: mod/settings.php:1268 -msgid "You receive an introduction" -msgstr "Вы получили запрос" - -#: mod/settings.php:1269 -msgid "Your introductions are confirmed" -msgstr "Ваши запросы подтверждены" - -#: mod/settings.php:1270 -msgid "Someone writes on your profile wall" -msgstr "Кто-то пишет на стене вашего профиля" - -#: mod/settings.php:1271 -msgid "Someone writes a followup comment" -msgstr "Кто-то пишет последующий комментарий" - -#: mod/settings.php:1272 -msgid "You receive a private message" -msgstr "Вы получаете личное сообщение" - -#: mod/settings.php:1273 -msgid "You receive a friend suggestion" -msgstr "Вы полулили предложение о добавлении в друзья" - -#: mod/settings.php:1274 -msgid "You are tagged in a post" -msgstr "Вы отмечены в посте" - -#: mod/settings.php:1275 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1277 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1277 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1279 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1281 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1283 -msgid "Advanced Account/Page Type Settings" -msgstr "Расширенные настройки учётной записи" - -#: mod/settings.php:1284 -msgid "Change the behaviour of this account for special situations" -msgstr "Измените поведение этого аккаунта в специальных ситуациях" - -#: mod/settings.php:1287 -msgid "Relocate" -msgstr "Перемещение" - -#: mod/settings.php:1288 -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:1289 -msgid "Resend relocate message to contacts" -msgstr "Отправить перемещённые сообщения контактам" - -#: mod/dfrn_request.php:96 -msgid "This introduction has already been accepted." -msgstr "Этот запрос был уже принят." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:516 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" -"Местоположение профиля является недопустимым или не содержит информацию о " -"профиле." - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:521 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" -"Внимание: местоположение профиля не имеет идентифицируемого имени владельца." - -#: mod/dfrn_request.php:126 mod/dfrn_request.php:523 -msgid "Warning: profile location has no profile photo." -msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:526 -#, 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 требуемый параметр не был найден в заданном месте" -msgstr[1] "%d требуемых параметров не были найдены в заданном месте" -msgstr[2] "%d требуемых параметров не были найдены в заданном месте" -msgstr[3] "%d требуемых параметров не были найдены в заданном месте" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Запрос создан." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Неисправимая ошибка протокола." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Профиль недоступен." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "К %s пришло сегодня слишком много запросов на подключение." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Были применены меры защиты от спама." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Недопустимый локатор" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Неверный адрес электронной почты." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался." - -#: mod/dfrn_request.php:474 -msgid "You have already introduced yourself here." -msgstr "Вы уже ввели информацию о себе здесь." - -#: mod/dfrn_request.php:478 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Похоже, что вы уже друзья с %s." - -#: mod/dfrn_request.php:499 -msgid "Invalid profile URL." -msgstr "Неверный URL профиля." - -#: mod/dfrn_request.php:505 include/follow.php:72 -msgid "Disallowed profile URL." -msgstr "Запрещенный URL профиля." - -#: mod/dfrn_request.php:596 -msgid "Your introduction has been sent." -msgstr "Ваш запрос отправлен." - -#: mod/dfrn_request.php:636 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:659 -msgid "Please login to confirm introduction." -msgstr "Для подтверждения запроса войдите пожалуйста с паролем." - -#: mod/dfrn_request.php:669 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." -msgstr "" -"Неверно идентифицирован вход. Пожалуйста, войдите в этот " -"профиль." - -#: mod/dfrn_request.php:683 mod/dfrn_request.php:700 -msgid "Confirm" -msgstr "Подтвердить" - -#: mod/dfrn_request.php:695 -msgid "Hide this contact" -msgstr "Скрыть этот контакт" - -#: mod/dfrn_request.php:698 -#, php-format -msgid "Welcome home %s." -msgstr "Добро пожаловать домой, %s!" - -#: mod/dfrn_request.php:699 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" -"Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." - -#: mod/dfrn_request.php:828 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" -"Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих " -"поддерживаемых социальных сетей:" - -#: mod/dfrn_request.php:849 -#, php-format -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:854 -msgid "Friend/Connection Request" -msgstr "Запрос в друзья / на подключение" - -#: mod/dfrn_request.php:855 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" -"Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" - -#: mod/dfrn_request.php:863 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:864 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federated Social Web" - -#: mod/dfrn_request.php:866 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." -msgstr "" -"Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо " -"этого введите %s в строке поиска Diaspora" - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" -"Регистрация успешна. Пожалуйста, проверьте свою электронную почту для " -"получения дальнейших инструкций." - -#: mod/register.php:97 -#, 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:104 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:110 -msgid "Your registration can not be processed." -msgstr "Ваша регистрация не может быть обработана." - -#: mod/register.php:153 -msgid "Your registration is pending approval by the site owner." -msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." - -#: mod/register.php:191 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" -"Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, " -"повторите попытку завтра." - -#: mod/register.php:219 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" -"Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая " -"ваш OpenID и нажав клавишу \"Регистрация\"." - -#: mod/register.php:220 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" -"Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и " -"заполните остальные элементы." - -#: mod/register.php:221 -msgid "Your OpenID (optional): " -msgstr "Ваш OpenID (необязательно):" - -#: mod/register.php:235 -msgid "Include your profile in member directory?" -msgstr "Включить ваш профиль в каталог участников?" - -#: mod/register.php:259 -msgid "Membership on this site is by invitation only." -msgstr "Членство на сайте только по приглашению." - -#: mod/register.php:260 -msgid "Your invitation ID: " -msgstr "ID вашего приглашения:" - -#: mod/register.php:271 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:272 -msgid "Your Email Address: " -msgstr "Ваш адрес электронной почты: " - -#: mod/register.php:274 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:276 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" -"Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля " -"на данном сайте будет в этом случае 'nickname@$sitename'." - -#: mod/register.php:277 -msgid "Choose a nickname: " -msgstr "Выберите псевдоним: " - -#: mod/register.php:280 boot.php:1405 include/nav.php:108 -msgid "Register" -msgstr "Регистрация" - -#: mod/register.php:286 mod/uimport.php:64 -msgid "Import" -msgstr "Импорт" - -#: mod/register.php:287 -msgid "Import your profile to this friendica instance" -msgstr "Импорт своего профиля в этот экземпляр friendica" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Система закрыта на техническое обслуживание" - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:136 include/text.php:1003 include/nav.php:118 -msgid "Search" -msgstr "Поиск" - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:236 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: mod/directory.php:149 include/identity.php:313 include/identity.php:610 -msgid "Status:" -msgstr "Статус:" - -#: mod/directory.php:151 include/identity.php:315 include/identity.php:621 -msgid "Homepage:" -msgstr "Домашняя страничка:" - -#: mod/directory.php:203 view/theme/diabook/theme.php:525 -#: view/theme/vier/theme.php:205 -msgid "Global Directory" -msgstr "Глобальный каталог" - -#: mod/directory.php:205 -msgid "Find on this site" -msgstr "Найти на этом сайте" - -#: mod/directory.php:207 -msgid "Finding:" -msgstr "" - -#: mod/directory.php:209 -msgid "Site Directory" -msgstr "Каталог сайта" - -#: mod/directory.php:216 -msgid "No entries (some entries may be hidden)." -msgstr "Нет записей (некоторые записи могут быть скрыты)." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "" - -#: mod/delegate.php:130 include/nav.php:180 -msgid "Delegate Page Management" -msgstr "Делегировать управление страницей" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" -"Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за " -"исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ " -"в личный кабинет тому, кому вы не полностью доверяете." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Существующие менеджеры страницы" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Существующие уполномоченные страницы" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Возможные доверенные лица" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Добавить" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Нет записей." - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Нет общих контактов." - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Экспорт аккаунта" - -#: 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 "" -"Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать " -"резервную копию вашего аккаунта и/или переместить его на другой сервер." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Экспорт всего" - -#: 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 "" -"Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как " -"JSON. Может получиться очень большой файл и это может занять много времени. " -"Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не " -"экспортируются)" - -#: mod/mood.php:62 include/conversation.php:239 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Настроение" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Напишите о вашем настроении и расскажите своим друзьям" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Вы действительно хотите удалить это предложение?" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" -"Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 " -"часа." - -#: mod/suggest.php:83 mod/suggest.php:101 -msgid "Ignore/Hide" -msgstr "Проигнорировать/Скрыть" - -#: mod/suggest.php:111 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:207 -msgid "Friend Suggestions" -msgstr "Предложения друзей" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Профиль удален." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Профиль-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Новый профиль создан." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Профиль недоступен для клонирования." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Необходимо имя профиля." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Семейное положение" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Любимый человек" - -#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 -msgid "Likes" -msgstr "Лайки" - -#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 -msgid "Dislikes" -msgstr "Дизлайк" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Работа/Занятость" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Религия" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Политические взгляды" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Пол" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Сексуальные предпочтения" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Домашняя страница" - -#: mod/profiles.php:375 mod/profiles.php:708 -msgid "Interests" -msgstr "Хобби / Интересы" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Адрес" - -#: mod/profiles.php:386 mod/profiles.php:704 -msgid "Location" -msgstr "Местонахождение" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Профиль обновлен." - -#: mod/profiles.php:565 -msgid " and " -msgstr "и" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "публичный профиль" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s изменились с %2$s на “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Посетить профиль %1$s [%2$s]" - -#: mod/profiles.php:580 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:655 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?" - -#: mod/profiles.php:684 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:695 -msgid "Edit Profile Details" -msgstr "Редактировать детали профиля" - -#: mod/profiles.php:697 -msgid "Change Profile Photo" -msgstr "Изменить фото профиля" - -#: mod/profiles.php:698 -msgid "View this profile" -msgstr "Просмотреть этот профиль" - -#: mod/profiles.php:699 -msgid "Create a new profile using these settings" -msgstr "Создать новый профиль, используя эти настройки" - -#: mod/profiles.php:700 -msgid "Clone this profile" -msgstr "Клонировать этот профиль" - -#: mod/profiles.php:701 -msgid "Delete this profile" -msgstr "Удалить этот профиль" - -#: mod/profiles.php:702 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:703 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:705 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:706 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:707 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:710 -msgid "Profile Name:" -msgstr "Имя профиля:" - -#: mod/profiles.php:711 -msgid "Your Full Name:" -msgstr "Ваше полное имя:" - -#: mod/profiles.php:712 -msgid "Title/Description:" -msgstr "Заголовок / Описание:" - -#: mod/profiles.php:713 -msgid "Your Gender:" -msgstr "Ваш пол:" - -#: mod/profiles.php:714 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:715 -msgid "Street Address:" -msgstr "Адрес:" - -#: mod/profiles.php:716 -msgid "Locality/City:" -msgstr "Город / Населенный пункт:" - -#: mod/profiles.php:717 -msgid "Postal/Zip Code:" -msgstr "Почтовый индекс:" - -#: mod/profiles.php:718 -msgid "Country:" -msgstr "Страна:" - -#: mod/profiles.php:719 -msgid "Region/State:" -msgstr "Район / Область:" - -#: mod/profiles.php:720 -msgid " Marital Status:" -msgstr " Семейное положение:" - -#: mod/profiles.php:721 -msgid "Who: (if applicable)" -msgstr "Кто: (если требуется)" - -#: mod/profiles.php:722 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com" - -#: mod/profiles.php:723 -msgid "Since [date]:" -msgstr "С какого времени [дата]:" - -#: mod/profiles.php:724 include/identity.php:619 -msgid "Sexual Preference:" -msgstr "Сексуальные предпочтения:" - -#: mod/profiles.php:725 -msgid "Homepage URL:" -msgstr "Адрес домашней странички:" - -#: mod/profiles.php:726 include/identity.php:623 -msgid "Hometown:" -msgstr "Родной город:" - -#: mod/profiles.php:727 include/identity.php:627 -msgid "Political Views:" -msgstr "Политические взгляды:" - -#: mod/profiles.php:728 -msgid "Religious Views:" -msgstr "Религиозные взгляды:" - -#: mod/profiles.php:729 -msgid "Public Keywords:" -msgstr "Общественные ключевые слова:" - -#: mod/profiles.php:730 -msgid "Private Keywords:" -msgstr "Личные ключевые слова:" - -#: mod/profiles.php:731 include/identity.php:635 -msgid "Likes:" -msgstr "Нравится:" - -#: mod/profiles.php:732 include/identity.php:637 -msgid "Dislikes:" -msgstr "Не нравится:" - -#: mod/profiles.php:733 -msgid "Example: fishing photography software" -msgstr "Пример: рыбалка фотографии программное обеспечение" - -#: mod/profiles.php:734 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" -"(Используется для предложения потенциальным друзьям, могут увидеть другие)" - -#: mod/profiles.php:735 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Используется для поиска профилей, никогда не показывается другим)" - -#: mod/profiles.php:736 -msgid "Tell us about yourself..." -msgstr "Расскажите нам о себе ..." - -#: mod/profiles.php:737 -msgid "Hobbies/Interests" -msgstr "Хобби / Интересы" - -#: mod/profiles.php:738 -msgid "Contact information and Social Networks" -msgstr "Контактная информация и социальные сети" - -#: mod/profiles.php:739 -msgid "Musical interests" -msgstr "Музыкальные интересы" - -#: mod/profiles.php:740 -msgid "Books, literature" -msgstr "Книги, литература" - -#: mod/profiles.php:741 -msgid "Television" -msgstr "Телевидение" - -#: mod/profiles.php:742 -msgid "Film/dance/culture/entertainment" -msgstr "Кино / танцы / культура / развлечения" - -#: mod/profiles.php:743 -msgid "Love/romance" -msgstr "Любовь / романтика" - -#: mod/profiles.php:744 -msgid "Work/employment" -msgstr "Работа / занятость" - -#: mod/profiles.php:745 -msgid "School/education" -msgstr "Школа / образование" - -#: mod/profiles.php:750 -msgid "" -"This is your public profile.
                                              It may " -"be visible to anybody using the internet." -msgstr "" -"Это ваш публичный профиль.
                                              Он может " -"быть виден каждому через Интернет." - -#: mod/profiles.php:760 -msgid "Age: " -msgstr "Возраст: " - -#: mod/profiles.php:813 -msgid "Edit/Manage Profiles" -msgstr "Редактировать профиль" - -#: mod/profiles.php:814 include/identity.php:260 include/identity.php:286 -msgid "Change profile photo" -msgstr "Изменить фото профиля" - -#: mod/profiles.php:815 include/identity.php:261 -msgid "Create New Profile" -msgstr "Создать новый профиль" - -#: mod/profiles.php:826 include/identity.php:271 -msgid "Profile Image" -msgstr "Фото профиля" - -#: mod/profiles.php:828 include/identity.php:274 -msgid "visible to everybody" -msgstr "видимый всем" - -#: mod/profiles.php:829 include/identity.php:275 -msgid "Edit visibility" -msgstr "Редактировать видимость" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Элемент не найден" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Редактировать сообщение" - -#: mod/editpost.php:111 include/conversation.php:1184 -msgid "upload photo" -msgstr "загрузить фото" - -#: mod/editpost.php:112 include/conversation.php:1185 -msgid "Attach file" -msgstr "Прикрепить файл" - -#: mod/editpost.php:113 include/conversation.php:1186 -msgid "attach file" -msgstr "приложить файл" - -#: mod/editpost.php:115 include/conversation.php:1188 -msgid "web link" -msgstr "веб-ссылка" - -#: mod/editpost.php:116 include/conversation.php:1189 -msgid "Insert video link" -msgstr "Вставить ссылку видео" - -#: mod/editpost.php:117 include/conversation.php:1190 -msgid "video link" -msgstr "видео-ссылка" - -#: mod/editpost.php:118 include/conversation.php:1191 -msgid "Insert audio link" -msgstr "Вставить ссылку аудио" - -#: mod/editpost.php:119 include/conversation.php:1192 -msgid "audio link" -msgstr "аудио-ссылка" - -#: mod/editpost.php:120 include/conversation.php:1193 -msgid "Set your location" -msgstr "Задать ваше местоположение" - -#: mod/editpost.php:121 include/conversation.php:1194 -msgid "set location" -msgstr "установить местонахождение" - -#: mod/editpost.php:122 include/conversation.php:1195 -msgid "Clear browser location" -msgstr "Очистить местонахождение браузера" - -#: mod/editpost.php:123 include/conversation.php:1196 -msgid "clear location" -msgstr "убрать местонахождение" - -#: mod/editpost.php:125 include/conversation.php:1202 -msgid "Permission settings" -msgstr "Настройки разрешений" - -#: mod/editpost.php:133 include/acl_selectors.php:344 -msgid "CC: email addresses" -msgstr "Копии на email адреса" - -#: mod/editpost.php:134 include/conversation.php:1211 -msgid "Public post" -msgstr "Публичное сообщение" - -#: mod/editpost.php:137 include/conversation.php:1198 -msgid "Set title" -msgstr "Установить заголовок" - -#: mod/editpost.php:139 include/conversation.php:1200 -msgid "Categories (comma-separated list)" -msgstr "Категории (список через запятую)" - -#: mod/editpost.php:140 include/acl_selectors.php:345 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Пример: bob@example.com, mary@example.com" - -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Это Friendica, версия" - -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "работает на веб-узле" - -#: mod/friendica.php:73 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "" -"Пожалуйста, посетите сайт Friendica.com, чтобы узнать больше о проекте Friendica." - -#: mod/friendica.php:75 -msgid "Bug reports and issues: please visit" -msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" - -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:76 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" -"Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка " -"com" - -#: mod/friendica.php:90 -msgid "Installed plugins/addons/apps:" -msgstr "Установленные плагины / добавки / приложения:" - -#: mod/friendica.php:103 -msgid "No installed plugins/addons/apps" -msgstr "Нет установленных плагинов / добавок / приложений" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Разрешить связь с приложением" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Вернитесь в ваше приложение и задайте этот код:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Пожалуйста, войдите для продолжения." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" -"Вы действительно хотите разрешить этому приложению доступ к своим постам и " -"контактам, а также создавать новые записи от вашего имени?" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Личная информация удаленно недоступна." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Кто может видеть:" - -#: mod/notes.php:46 include/identity.php:730 -msgid "Personal Notes" -msgstr "Личные заметки" - -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "История общения" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" -"Friendica предоставляет этот сервис для обмена событиями с другими сетями и " -"друзьями, находящимися в неопределённых часовых поясах." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC время: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Ваш часовой пояс: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ваше изменённое время: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Выберите пожалуйста ваш часовой пояс:" - -#: mod/poke.php:191 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:192 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:193 -msgid "Recipient" -msgstr "Получатель" - -#: mod/poke.php:194 -msgid "Choose what you wish to do to recipient" -msgstr "Выберите действия для получателя" - -#: mod/poke.php:197 -msgid "Make this post private" -msgstr "Сделать эту запись личной" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Ошибка" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Превышен общий лимит приглашений." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Неверный адрес электронной почты." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Пожалуйста, присоединяйтесь к нам на Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" -"Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Доставка сообщения не удалась." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d сообщение отправлено." -msgstr[1] "%d сообщений отправлено." -msgstr[2] "%d сообщений отправлено." -msgstr[3] "%d сообщений отправлено." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "У вас нет больше приглашений" - -#: mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many " -"other social networks." -msgstr "" -"Посетите %s со списком общедоступных сайтов, к которым вы можете " -"присоединиться. Все участники Friendica на других сайтах могут соединиться " -"друг с другом, а также с участниками многих других социальных сетей." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" -"Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на " -"%s ,или любом другом публичном сервере Friendica" - -#: 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, подключившись между собой, могут создать сеть с повышенной " -"безопасностью, которая принадлежит и управляется её членами. Они также могут " -"подключаться ко многим традиционным социальным сетям. См. %s со списком " -"альтернативных сайтов Friendica, к которым вы можете присоединиться." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." -msgstr "" -"Извините. Эта система в настоящее время не сконфигурирована для соединения с " -"другими общественными сайтами и для приглашения участников." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Отправить приглашения" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Введите адреса электронной почты, по одному в строке:" - -#: mod/invite.php: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 "" -"Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - " -"помочь нам создать лучшую социальную сеть." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "" -"После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через " -"мою страницу профиля по адресу:" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" -"Для получения более подробной информации о проекте Friendica, пожалуйста, " -"посетите http://friendica.com" - -#: mod/photos.php:99 include/identity.php:705 -msgid "Photo Albums" -msgstr "Фотоальбомы" - -#: mod/photos.php:100 mod/photos.php:1899 -msgid "Recent Photos" -msgstr "Последние фото" - -#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 -msgid "Upload New Photos" -msgstr "Загрузить новые фото" - -#: mod/photos.php:181 -msgid "Contact information unavailable" -msgstr "Информация о контакте недоступна" - -#: mod/photos.php:202 -msgid "Album not found." -msgstr "Альбом не найден." - -#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 -msgid "Delete Album" -msgstr "Удалить альбом" - -#: mod/photos.php:242 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" - -#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 -msgid "Delete Photo" -msgstr "Удалить фото" - -#: mod/photos.php:331 -msgid "Do you really want to delete this photo?" -msgstr "Вы действительно хотите удалить эту фотографию?" - -#: mod/photos.php:706 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s отмечен/а/ в %2$s by %3$s" - -#: mod/photos.php:706 -msgid "a photo" -msgstr "фото" - -#: mod/photos.php:819 -msgid "Image file is empty." -msgstr "Файл изображения пуст." - -#: mod/photos.php:986 -msgid "No photos selected" -msgstr "Не выбрано фото." - -#: mod/photos.php:1147 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" -"Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий." - -#: mod/photos.php:1182 -msgid "Upload Photos" -msgstr "Загрузить фото" - -#: mod/photos.php:1186 mod/photos.php:1257 -msgid "New album name: " -msgstr "Название нового альбома: " - -#: mod/photos.php:1187 -msgid "or existing album name: " -msgstr "или название существующего альбома: " - -#: mod/photos.php:1188 -msgid "Do not show a status post for this upload" -msgstr "Не показывать статус-сообщение для этой закачки" - -#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 -msgid "Permissions" -msgstr "Разрешения" - -#: mod/photos.php:1201 -msgid "Private Photo" -msgstr "Личное фото" - -#: mod/photos.php:1202 -msgid "Public Photo" -msgstr "Публичное фото" - -#: mod/photos.php:1270 -msgid "Edit Album" -msgstr "Редактировать альбом" - -#: mod/photos.php:1276 -msgid "Show Newest First" -msgstr "Показать новые первыми" - -#: mod/photos.php:1278 -msgid "Show Oldest First" -msgstr "Показать старые первыми" - -#: mod/photos.php:1306 mod/photos.php:1884 -msgid "View Photo" -msgstr "Просмотр фото" - -#: mod/photos.php:1353 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Нет разрешения. Доступ к этому элементу ограничен." - -#: mod/photos.php:1355 -msgid "Photo not available" -msgstr "Фото недоступно" - -#: mod/photos.php:1411 -msgid "View photo" -msgstr "Просмотр фото" - -#: mod/photos.php:1411 -msgid "Edit photo" -msgstr "Редактировать фото" - -#: mod/photos.php:1412 -msgid "Use as profile photo" -msgstr "Использовать как фото профиля" - -#: mod/photos.php:1437 -msgid "View Full Size" -msgstr "Просмотреть полный размер" - -#: mod/photos.php:1523 -msgid "Tags: " -msgstr "Ключевые слова: " - -#: mod/photos.php:1526 -msgid "[Remove any tag]" -msgstr "[Удалить любое ключевое слово]" - -#: mod/photos.php:1566 -msgid "New album name" -msgstr "Название нового альбома" - -#: mod/photos.php:1567 -msgid "Caption" -msgstr "Подпись" - -#: mod/photos.php:1568 -msgid "Add a Tag" -msgstr "Добавить ключевое слово (таг)" - -#: mod/photos.php:1568 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1569 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1570 -msgid "Rotate CW (right)" -msgstr "Поворот по часовой стрелке (направо)" - -#: mod/photos.php:1571 -msgid "Rotate CCW (left)" -msgstr "Поворот против часовой стрелки (налево)" - -#: mod/photos.php:1586 -msgid "Private photo" -msgstr "Личное фото" - -#: mod/photos.php:1587 -msgid "Public photo" -msgstr "Публичное фото" - -#: mod/photos.php:1609 include/conversation.php:1182 -msgid "Share" -msgstr "Поделиться" - -#: mod/photos.php:1648 include/conversation.php:509 -#: include/conversation.php:1413 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: mod/photos.php:1648 include/conversation.php:509 -msgid "Not attending" -msgstr "" - -#: mod/photos.php:1648 include/conversation.php:509 -msgid "Might attend" -msgstr "" - -#: mod/photos.php:1813 -msgid "Map" -msgstr "Карта" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Аккаунт утвержден." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Регистрация отменена для %s" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Пожалуйста, войдите с паролем." - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Удалить аккаунт" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Вы можете импортировать учетную запись с другого сервера 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 "" -"Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его " -"сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы " -"постараемся также сообщить друзьям, что вы переехали сюда." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Файл аккаунта" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" -"Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" " -"и выберите \"Экспорт аккаунта\"" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Пункт не доступен." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Пункт не был найден." - -#: boot.php:868 -msgid "Delete this item?" -msgstr "Удалить этот элемент?" - -#: boot.php:871 -msgid "show fewer" -msgstr "показать меньше" - -#: boot.php:1292 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Обновление %s не удалось. Смотрите журнал ошибок." - -#: boot.php:1404 -msgid "Create a New Account" -msgstr "Создать новый аккаунт" - -#: boot.php:1429 include/nav.php:72 -msgid "Logout" -msgstr "Выход" - -#: boot.php:1432 -msgid "Nickname or Email address: " -msgstr "Ник или адрес электронной почты: " - -#: boot.php:1433 -msgid "Password: " -msgstr "Пароль: " - -#: boot.php:1434 -msgid "Remember me" -msgstr "Запомнить" - -#: boot.php:1437 -msgid "Or login using OpenID: " -msgstr "Или зайти с OpenID: " - -#: boot.php:1443 -msgid "Forgot your password?" -msgstr "Забыли пароль?" - -#: boot.php:1446 -msgid "Website Terms of Service" -msgstr "Правила сайта" - -#: boot.php:1447 -msgid "terms of service" -msgstr "правила" - -#: boot.php:1449 -msgid "Website Privacy Policy" -msgstr "Политика конфиденциальности сервера" - -#: boot.php:1450 -msgid "privacy policy" -msgstr "политика конфиденциальности" - -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Эта запись была отредактирована" - -#: object/Item.php:191 -msgid "I will attend" -msgstr "" - -#: object/Item.php:191 -msgid "I will not attend" -msgstr "" - -#: object/Item.php:191 -msgid "I might attend" -msgstr "" - -#: object/Item.php:230 -msgid "ignore thread" -msgstr "" - -#: object/Item.php:231 -msgid "unignore thread" -msgstr "" - -#: object/Item.php:232 -msgid "toggle ignore status" -msgstr "" - -#: object/Item.php:345 include/conversation.php:687 -msgid "Categories:" -msgstr "Категории:" - -#: object/Item.php:346 include/conversation.php:688 -msgid "Filed under:" -msgstr "В рубрике:" - -#: object/Item.php:360 -msgid "via" -msgstr "через" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:153 -msgid "Errors encountered creating database tables." -msgstr "Обнаружены ошибки при создании таблиц базы данных." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/auth.php:44 -msgid "Logged out." -msgstr "Выход из системы." - -#: include/auth.php:134 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" -"Мы столкнулись с проблемой при входе с OpenID, который вы указали. " -"Пожалуйста, проверьте правильность написания ID." - -#: include/auth.php:134 include/user.php:75 -msgid "The error message was:" -msgstr "Сообщение об ошибке было:" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: include/contact_widgets.php:6 msgid "Add New Contact" @@ -6607,6 +40,12 @@ msgstr "Введите адрес или веб-местонахождение" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara" +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Подключить" + #: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" @@ -6624,12 +63,26 @@ msgstr "Поиск людей" msgid "Enter name or interest" msgstr "Введите имя или интерес" +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "Подключиться/Следовать" + #: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примеры: Роберт Morgenstein, Рыбалка" -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -#: view/theme/vier/theme.php:206 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Найти" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Предложения друзей" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 msgid "Similar Interests" msgstr "Похожие интересы" @@ -6637,8 +90,7 @@ msgstr "Похожие интересы" msgid "Random Profile" msgstr "Случайный профиль" -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -#: view/theme/vier/theme.php:208 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 msgid "Invite Friends" msgstr "Пригласить друзей" @@ -6650,7 +102,7 @@ msgstr "Сети" msgid "All Networks" msgstr "Все сети" -#: include/contact_widgets.php:141 include/features.php:102 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Сохранённые папки" @@ -6671,1504 +123,21 @@ msgstr[1] "%d Контактов" msgstr[2] "%d Контактов" msgstr[3] "%d Контактов" -#: include/features.php:63 -msgid "General Features" -msgstr "Основные возможности" - -#: include/features.php:65 -msgid "Multiple Profiles" -msgstr "Несколько профилей" - -#: include/features.php:65 -msgid "Ability to create multiple profiles" -msgstr "Возможность создания нескольких профилей" - -#: include/features.php:66 -msgid "Photo Location" -msgstr "" - -#: include/features.php:66 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present) " -"prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:71 -msgid "Post Composition Features" -msgstr "Составление сообщений" - -#: include/features.php:72 -msgid "Richtext Editor" -msgstr "Редактор RTF" - -#: include/features.php:72 -msgid "Enable richtext editor" -msgstr "Включить редактор RTF" - -#: include/features.php:73 -msgid "Post Preview" -msgstr "Предварительный просмотр" - -#: include/features.php:73 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией" - -#: include/features.php:74 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:74 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: include/features.php:79 -msgid "Network Sidebar Widgets" -msgstr "Виджет боковой панели \"Сеть\"" - -#: include/features.php:80 -msgid "Search by Date" -msgstr "Поиск по датам" - -#: include/features.php:80 -msgid "Ability to select posts by date ranges" -msgstr "Возможность выбора постов по диапазону дат" - -#: include/features.php:81 include/features.php:111 -msgid "List Forums" -msgstr "" - -#: include/features.php:81 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: include/features.php:82 -msgid "Group Filter" -msgstr "Фильтр групп" - -#: include/features.php:82 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" -"Включить виджет для отображения сообщений сети только от выбранной группы" - -#: include/features.php:83 -msgid "Network Filter" -msgstr "Фильтр сети" - -#: include/features.php:83 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" -"Включить виджет для отображения сообщений сети только от выбранной сети" - -#: include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Сохранить условия поиска для повторного использования" - -#: include/features.php:89 -msgid "Network Tabs" -msgstr "Сетевые вкладки" - -#: include/features.php:90 -msgid "Network Personal Tab" -msgstr "Персональные сетевые вкладки" - -#: include/features.php:90 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" -"Включить вкладку для отображения только сообщений сети, с которой вы " -"взаимодействовали" - -#: include/features.php:91 -msgid "Network New Tab" -msgstr "Новая вкладка сеть" - -#: include/features.php:91 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" -"Включить вкладку для отображения только новых сообщений сети (за последние " -"12 часов)" - -#: include/features.php:92 -msgid "Network Shared Links Tab" -msgstr "Вкладка shared ссылок сети" - -#: include/features.php:92 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" -"Включить вкладку для отображения только сообщений сети со ссылками на них" - -#: include/features.php:97 -msgid "Post/Comment Tools" -msgstr "Инструменты пост/комментарий" - -#: include/features.php:98 -msgid "Multiple Deletion" -msgstr "Множественное удаление" - -#: include/features.php:98 -msgid "Select and delete multiple posts/comments at once" -msgstr "Выбрать и удалить несколько постов/комментариев одновременно." - -#: include/features.php:99 -msgid "Edit Sent Posts" -msgstr "Редактировать отправленные посты" - -#: include/features.php:99 -msgid "Edit and correct posts and comments after sending" -msgstr "Редактировать и править посты и комментарии после отправления" - -#: include/features.php:100 -msgid "Tagging" -msgstr "Отмеченное" - -#: include/features.php:100 -msgid "Ability to tag existing posts" -msgstr "Возможность отмечать существующие посты" - -#: include/features.php:101 -msgid "Post Categories" -msgstr "Категории постов" - -#: include/features.php:101 -msgid "Add categories to your posts" -msgstr "Добавить категории вашего поста" - -#: include/features.php:102 -msgid "Ability to file posts under folders" -msgstr "" - -#: include/features.php:103 -msgid "Dislike Posts" -msgstr "Посты дизлайк" - -#: include/features.php:103 -msgid "Ability to dislike posts/comments" -msgstr "Возможность дизлайка постов/комментариев" - -#: include/features.php:104 -msgid "Star Posts" -msgstr "Популярные посты" - -#: include/features.php:104 -msgid "Ability to mark special posts with a star indicator" -msgstr "Возможность отметить специальные сообщения индикатором популярности" - -#: include/features.php:105 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:105 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: include/features.php:110 -msgid "Advanced Profile Settings" -msgstr "Расширенные настройки профиля" - -#: include/features.php:111 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: include/follow.php:77 -msgid "Connect URL missing." -msgstr "Connect-URL отсутствует." - -#: include/follow.php:104 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями." - -#: include/follow.php:105 include/follow.php:125 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Обнаружены несовместимые протоколы связи или каналы." - -#: include/follow.php:123 -msgid "The profile address specified does not provide adequate information." -msgstr "Указанный адрес профиля не дает адекватной информации." - -#: include/follow.php:127 -msgid "An author or name was not found." -msgstr "Автор или имя не найдены." - -#: include/follow.php:129 -msgid "No browser URL could be matched to this address." -msgstr "Нет URL браузера, который соответствует этому адресу." - -#: include/follow.php:131 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: include/follow.php:132 -msgid "Use mailto: in front of address to force email check." -msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." - -#: include/follow.php:138 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." - -#: include/follow.php:148 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" -"Ограниченный профиль. Этот человек не сможет получить прямые / личные " -"уведомления от вас." - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "Невозможно получить контактную информацию." - -#: include/follow.php:302 -msgid "following" -msgstr "следует" - -#: 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 "" -"Удаленная группа с таким названием была восстановлена. Существующие права " -"доступа могут применяться к этой группе и любым будущим " -"участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну " -"группу с другим названием." - -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "Группа доступа по умолчанию для новых контактов" - -#: include/group.php:239 -msgid "Everybody" -msgstr "Каждый" - -#: include/group.php:262 -msgid "edit" -msgstr "редактировать" - -#: include/group.php:285 -msgid "Edit groups" -msgstr "" - -#: include/group.php:287 -msgid "Edit group" -msgstr "Редактировать группу" - -#: include/group.php:288 -msgid "Create a new group" -msgstr "Создать новую группу" - -#: include/group.php:291 -msgid "Contacts not in any group" -msgstr "Контакты не состоят в группе" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Разное" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:271 -msgid "never" -msgstr "никогда" - -#: include/datetime.php:277 -msgid "less than a second ago" -msgstr "менее сек. назад" - -#: include/datetime.php:287 -msgid "year" -msgstr "год" - -#: include/datetime.php:287 -msgid "years" -msgstr "лет" - -#: include/datetime.php:288 -msgid "months" -msgstr "мес." - -#: include/datetime.php:289 -msgid "weeks" -msgstr "недель" - -#: include/datetime.php:290 -msgid "days" -msgstr "дней" - -#: include/datetime.php:291 -msgid "hour" -msgstr "час" - -#: include/datetime.php:291 -msgid "hours" -msgstr "час." - -#: include/datetime.php:292 -msgid "minute" -msgstr "минута" - -#: include/datetime.php:292 -msgid "minutes" -msgstr "мин." - -#: include/datetime.php:293 -msgid "second" -msgstr "секунда" - -#: include/datetime.php:293 -msgid "seconds" -msgstr "сек." - -#: include/datetime.php:302 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s назад" - -#: include/datetime.php:474 include/items.php:2500 -#, php-format -msgid "%s's birthday" -msgstr "день рождения %s" - -#: include/datetime.php:475 include/items.php:2501 -#, php-format -msgid "Happy Birthday %s" -msgstr "С днём рождения %s" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "Запрашиваемый профиль недоступен." - -#: include/identity.php:95 include/identity.php:284 include/identity.php:662 -msgid "Edit profile" -msgstr "Редактировать профиль" - -#: include/identity.php:244 -msgid "Atom feed" -msgstr "" - -#: include/identity.php:249 -msgid "Message" -msgstr "Сообщение" - -#: include/identity.php:255 include/nav.php:185 -msgid "Profiles" -msgstr "Профили" - -#: include/identity.php:255 -msgid "Manage/edit profiles" -msgstr "Управление / редактирование профилей" - -#: include/identity.php:425 include/identity.php:509 -msgid "g A l F d" -msgstr "g A l F d" - -#: include/identity.php:426 include/identity.php:510 -msgid "F d" -msgstr "F d" - -#: include/identity.php:471 include/identity.php:556 -msgid "[today]" -msgstr "[сегодня]" - -#: include/identity.php:483 -msgid "Birthday Reminders" -msgstr "Напоминания о днях рождения" - -#: include/identity.php:484 -msgid "Birthdays this week:" -msgstr "Дни рождения на этой неделе:" - -#: include/identity.php:543 -msgid "[No description]" -msgstr "[без описания]" - -#: include/identity.php:567 -msgid "Event Reminders" -msgstr "Напоминания о мероприятиях" - -#: include/identity.php:568 -msgid "Events this week:" -msgstr "Мероприятия на этой неделе:" - -#: include/identity.php:595 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:596 -msgid "j F" -msgstr "j F" - -#: include/identity.php:603 -msgid "Birthday:" -msgstr "День рождения:" - -#: include/identity.php:607 -msgid "Age:" -msgstr "Возраст:" - -#: include/identity.php:616 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: include/identity.php:629 -msgid "Religion:" -msgstr "Религия:" - -#: include/identity.php:633 -msgid "Hobbies/Interests:" -msgstr "Хобби / Интересы:" - -#: include/identity.php:640 -msgid "Contact information and Social Networks:" -msgstr "Информация о контакте и социальных сетях:" - -#: include/identity.php:642 -msgid "Musical interests:" -msgstr "Музыкальные интересы:" - -#: include/identity.php:644 -msgid "Books, literature:" -msgstr "Книги, литература:" - -#: include/identity.php:646 -msgid "Television:" -msgstr "Телевидение:" - -#: include/identity.php:648 -msgid "Film/dance/culture/entertainment:" -msgstr "Кино / Танцы / Культура / Развлечения:" - -#: include/identity.php:650 -msgid "Love/Romance:" -msgstr "Любовь / Романтика:" - -#: include/identity.php:652 -msgid "Work/employment:" -msgstr "Работа / Занятость:" - -#: include/identity.php:654 -msgid "School/education:" -msgstr "Школа / Образование:" - -#: include/identity.php:658 -msgid "Forums:" -msgstr "" - -#: include/identity.php:710 include/identity.php:713 include/nav.php:78 -msgid "Videos" -msgstr "Видео" - -#: include/identity.php:725 include/nav.php:140 -msgid "Events and Calendar" -msgstr "Календарь и события" - -#: include/identity.php:733 -msgid "Only You Can See This" -msgstr "Только вы можете это видеть" - -#: include/like.php:167 include/conversation.php:122 -#: include/conversation.php:258 include/text.php:1998 -#: view/theme/diabook/theme.php:463 -msgid "event" -msgstr "мероприятие" - -#: include/like.php:184 include/conversation.php:141 include/diaspora.php:2185 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s нравится %3$s от %2$s " - -#: include/like.php:186 include/conversation.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s не нравится %3$s от %2$s " - -#: include/like.php:188 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:190 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:192 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/acl_selectors.php:325 -msgid "Post to Email" -msgstr "Отправить на Email" - -#: include/acl_selectors.php:330 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:336 -msgid "Visible to everybody" -msgstr "Видимо всем" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 -msgid "show" -msgstr "показывать" - -#: include/acl_selectors.php:338 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "не показывать" - -#: include/acl_selectors.php:348 -msgid "Close" -msgstr "Закрыть" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[без темы]" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "остановлено следование" - -#: include/Contact.php:337 include/conversation.php:911 -msgid "View Status" -msgstr "Просмотреть статус" - -#: include/Contact.php:339 include/conversation.php:913 -msgid "View Photos" -msgstr "Просмотреть фото" - -#: include/Contact.php:340 include/conversation.php:914 -msgid "Network Posts" -msgstr "Посты сети" - -#: include/Contact.php:341 include/conversation.php:915 -msgid "Edit Contact" -msgstr "Редактировать контакт" - -#: include/Contact.php:342 -msgid "Drop Contact" -msgstr "Удалить контакт" - -#: include/Contact.php:343 include/conversation.php:916 -msgid "Send PM" -msgstr "Отправить ЛС" - -#: include/Contact.php:344 include/conversation.php:920 -msgid "Poke" -msgstr "" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Добро пожаловать, " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Пожалуйста, загрузите фотографию профиля." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Добро пожаловать обратно, " - -#: 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 "" -"Ключ формы безопасности неправильный. Вероятно, это произошло потому, что " -"форма была открыта слишком долго (более 3 часов) до её отправки." - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "пост/элемент" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s пометил %2$s %3$s как Фаворит" - -#: include/conversation.php:792 -msgid "remove" -msgstr "удалить" - -#: include/conversation.php:796 -msgid "Delete Selected Items" -msgstr "Удалить выбранные позиции" - -#: include/conversation.php:910 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:1034 -#, php-format -msgid "%s likes this." -msgstr "%s нравится это." - -#: include/conversation.php:1037 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не нравится это." - -#: include/conversation.php:1040 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1043 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1046 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1056 -msgid "and" -msgstr "и" - -#: include/conversation.php:1062 -#, php-format -msgid ", and %d other people" -msgstr ", и %d других чел." - -#: include/conversation.php:1071 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d людям нравится это" - -#: include/conversation.php:1072 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1075 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d людям не нравится это" - -#: include/conversation.php:1076 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1079 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1080 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1083 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1084 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1087 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "" - -#: include/conversation.php:1088 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1127 include/conversation.php:1145 -msgid "Visible to everybody" -msgstr "Видимое всем" - -#: include/conversation.php:1129 include/conversation.php:1147 -msgid "Please enter a video link/URL:" -msgstr "Введите ссылку на видео link/URL:" - -#: include/conversation.php:1130 include/conversation.php:1148 -msgid "Please enter an audio link/URL:" -msgstr "Введите ссылку на аудио link/URL:" - -#: include/conversation.php:1131 include/conversation.php:1149 -msgid "Tag term:" -msgstr "" - -#: include/conversation.php:1133 include/conversation.php:1151 -msgid "Where are you right now?" -msgstr "И где вы сейчас?" - -#: include/conversation.php:1134 -msgid "Delete item(s)?" -msgstr "Удалить елемент(ты)?" - -#: include/conversation.php:1203 -msgid "permissions" -msgstr "разрешения" - -#: include/conversation.php:1226 -msgid "Post to Groups" -msgstr "Пост для групп" - -#: include/conversation.php:1227 -msgid "Post to Contacts" -msgstr "Пост для контактов" - -#: include/conversation.php:1228 -msgid "Private post" -msgstr "Личное сообщение" - -#: include/conversation.php:1385 -msgid "View all" -msgstr "" - -#: include/conversation.php:1407 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:1410 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:1416 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:1419 include/profile_selectors.php:6 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/forums.php:105 include/text.php:1015 include/nav.php:126 -#: view/theme/vier/theme.php:259 +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "показать больше" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 msgid "Forums" msgstr "" -#: include/forums.php:107 view/theme/vier/theme.php:261 +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 msgid "External link to forum" msgstr "" -#: include/network.php:967 -msgid "view full size" -msgstr "посмотреть в полный размер" - -#: include/text.php:303 -msgid "newer" -msgstr "новее" - -#: include/text.php:305 -msgid "older" -msgstr "старее" - -#: include/text.php:310 -msgid "prev" -msgstr "пред." - -#: include/text.php:312 -msgid "first" -msgstr "первый" - -#: include/text.php:344 -msgid "last" -msgstr "последний" - -#: include/text.php:347 -msgid "next" -msgstr "след." - -#: include/text.php:402 -msgid "Loading more entries..." -msgstr "" - -#: include/text.php:403 -msgid "The end" -msgstr "" - -#: include/text.php:894 -msgid "No contacts" -msgstr "Нет контактов" - -#: include/text.php:909 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d контакт" -msgstr[1] "%d контактов" -msgstr[2] "%d контактов" -msgstr[3] "%d контактов" - -#: include/text.php:921 -msgid "View Contacts" -msgstr "Просмотр контактов" - -#: include/text.php:1010 include/nav.php:121 -msgid "Full Text" -msgstr "Контент" - -#: include/text.php:1011 include/nav.php:122 -msgid "Tags" -msgstr "Тэги" - -#: include/text.php:1066 -msgid "poke" -msgstr "poke" - -#: include/text.php:1066 -msgid "poked" -msgstr "" - -#: include/text.php:1067 -msgid "ping" -msgstr "пинг" - -#: include/text.php:1067 -msgid "pinged" -msgstr "пингуется" - -#: include/text.php:1068 -msgid "prod" -msgstr "" - -#: include/text.php:1068 -msgid "prodded" -msgstr "" - -#: include/text.php:1069 -msgid "slap" -msgstr "" - -#: include/text.php:1069 -msgid "slapped" -msgstr "" - -#: include/text.php:1070 -msgid "finger" -msgstr "" - -#: include/text.php:1070 -msgid "fingered" -msgstr "" - -#: include/text.php:1071 -msgid "rebuff" -msgstr "" - -#: include/text.php:1071 -msgid "rebuffed" -msgstr "" - -#: include/text.php:1085 -msgid "happy" -msgstr "" - -#: include/text.php:1086 -msgid "sad" -msgstr "" - -#: include/text.php:1087 -msgid "mellow" -msgstr "" - -#: include/text.php:1088 -msgid "tired" -msgstr "" - -#: include/text.php:1089 -msgid "perky" -msgstr "" - -#: include/text.php:1090 -msgid "angry" -msgstr "" - -#: include/text.php:1091 -msgid "stupified" -msgstr "" - -#: include/text.php:1092 -msgid "puzzled" -msgstr "" - -#: include/text.php:1093 -msgid "interested" -msgstr "" - -#: include/text.php:1094 -msgid "bitter" -msgstr "" - -#: include/text.php:1095 -msgid "cheerful" -msgstr "" - -#: include/text.php:1096 -msgid "alive" -msgstr "" - -#: include/text.php:1097 -msgid "annoyed" -msgstr "" - -#: include/text.php:1098 -msgid "anxious" -msgstr "" - -#: include/text.php:1099 -msgid "cranky" -msgstr "" - -#: include/text.php:1100 -msgid "disturbed" -msgstr "" - -#: include/text.php:1101 -msgid "frustrated" -msgstr "" - -#: include/text.php:1102 -msgid "motivated" -msgstr "" - -#: include/text.php:1103 -msgid "relaxed" -msgstr "" - -#: include/text.php:1104 -msgid "surprised" -msgstr "" - -#: include/text.php:1504 -msgid "bytes" -msgstr "байт" - -#: include/text.php:1536 include/text.php:1548 -msgid "Click to open/close" -msgstr "Нажмите, чтобы открыть / закрыть" - -#: include/text.php:1722 -msgid "View on separate page" -msgstr "" - -#: include/text.php:1723 -msgid "view on separate page" -msgstr "" - -#: include/text.php:2002 -msgid "activity" -msgstr "активность" - -#: include/text.php:2005 -msgid "post" -msgstr "сообщение" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "" - -#: include/bbcode.php:482 include/bbcode.php:1157 include/bbcode.php:1158 -msgid "Image/photo" -msgstr "Изображение / Фото" - -#: include/bbcode.php:595 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:629 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: include/bbcode.php:1117 include/bbcode.php:1137 -msgid "$1 wrote:" -msgstr "$1 написал:" - -#: include/bbcode.php:1166 include/bbcode.php:1167 -msgid "Encrypted content" -msgstr "Зашифрованный контент" - -#: include/dba_pdo.php:72 include/dba.php:55 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Неизвестно | Не определено" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Блокировать немедленно" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Тролль, спаммер, рассылает рекламу" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Известные мне, но нет определенного мнения" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Хорошо, наверное, безвредные" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Уважаемые, есть мое доверие" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Еженедельно" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Ежемесячно" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: 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 "" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "" - -#: include/Scrape.php:624 -msgid " on Last.fm" -msgstr "на Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 -msgid "Starts:" -msgstr "Начало:" - -#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 -msgid "Finishes:" -msgstr "Окончание:" - -#: include/plugin.php:522 include/plugin.php:524 -msgid "Click here to upgrade." -msgstr "Нажмите для обновления." - -#: include/plugin.php:530 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Это действие превышает лимиты, установленные вашим тарифным планом." - -#: include/plugin.php:535 -msgid "This action is not available under your subscription plan." -msgstr "Это действие не доступно в соответствии с вашим планом подписки." - -#: include/nav.php:72 -msgid "End this session" -msgstr "Завершить эту сессию" - -#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Данные вашей учётной записи" - -#: include/nav.php:76 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Информация о вас" - -#: include/nav.php:77 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Ваши фотографии" - -#: include/nav.php:78 -msgid "Your videos" -msgstr "" - -#: include/nav.php:79 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Ваши события" - -#: include/nav.php:80 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Личные заметки" - -#: include/nav.php:80 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:91 -msgid "Sign in" -msgstr "Вход" - -#: include/nav.php:104 -msgid "Home Page" -msgstr "Главная страница" - -#: include/nav.php:108 -msgid "Create an account" -msgstr "Создать аккаунт" - -#: include/nav.php:113 -msgid "Help and documentation" -msgstr "Помощь и документация" - -#: include/nav.php:116 -msgid "Apps" -msgstr "Приложения" - -#: include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Дополнительные приложения, утилиты, игры" - -#: include/nav.php:118 -msgid "Search site content" -msgstr "Поиск по сайту" - -#: include/nav.php:136 -msgid "Conversations on this site" -msgstr "Беседы на этом сайте" - -#: include/nav.php:138 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:142 -msgid "Directory" -msgstr "Каталог" - -#: include/nav.php:142 -msgid "People directory" -msgstr "Каталог участников" - -#: include/nav.php:144 -msgid "Information" -msgstr "Информация" - -#: include/nav.php:144 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:154 -msgid "Conversations from your friends" -msgstr "Посты ваших друзей" - -#: include/nav.php:155 -msgid "Network Reset" -msgstr "Перезагрузка сети" - -#: include/nav.php:155 -msgid "Load Network page with no filters" -msgstr "Загрузить страницу сети без фильтров" - -#: include/nav.php:162 -msgid "Friend Requests" -msgstr "Запросы на добавление в список друзей" - -#: include/nav.php:166 -msgid "See all notifications" -msgstr "Посмотреть все уведомления" - -#: include/nav.php:167 -msgid "Mark all system notifications seen" -msgstr "Отметить все системные уведомления, как прочитанные" - -#: include/nav.php:171 -msgid "Private mail" -msgstr "Личная почта" - -#: include/nav.php:172 -msgid "Inbox" -msgstr "Входящие" - -#: include/nav.php:173 -msgid "Outbox" -msgstr "Исходящие" - -#: include/nav.php:177 -msgid "Manage" -msgstr "Управлять" - -#: include/nav.php:177 -msgid "Manage other pages" -msgstr "Управление другими страницами" - -#: include/nav.php:182 -msgid "Account settings" -msgstr "Настройки аккаунта" - -#: include/nav.php:185 -msgid "Manage/Edit Profiles" -msgstr "Управление/редактирование профилей" - -#: include/nav.php:187 -msgid "Manage/edit friends and contacts" -msgstr "Управление / редактирование друзей и контактов" - -#: include/nav.php:194 -msgid "Site setup and configuration" -msgstr "Конфигурация сайта" - -#: include/nav.php:198 -msgid "Navigation" -msgstr "Навигация" - -#: include/nav.php:198 -msgid "Site map" -msgstr "Карта сайта" - -#: include/api.php:878 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:897 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:916 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Требуется приглашение." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Приглашение не может быть проверено." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Неверный URL OpenID" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Пожалуйста, введите необходимую информацию." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Пожалуйста, используйте более короткое имя." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Имя слишком короткое." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "" -"Домен вашего адреса электронной почты не относится к числу разрешенных на " -"этом сайте." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Неверный адрес электронной почты." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Нельзя использовать этот Email." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." - -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" -"Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, " -"выберите другой ник." - -#: include/user.php:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." - -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "значение по умолчанию" - -#: include/user.php:266 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." - -#: include/user.php:299 include/user.php:303 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Друзья" - -#: include/user.php:387 -#, 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:391 -#, 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:720 -msgid "Sharing notification from Diaspora network" -msgstr "Делиться уведомлениями из сети Diaspora" - -#: include/diaspora.php:2625 -msgid "Attachments:" -msgstr "Вложения:" - -#: include/delivery.php:533 -msgid "(no subject)" -msgstr "(без темы)" - -#: include/delivery.php:544 include/enotify.php:37 -msgid "noreply" -msgstr "без ответа" - -#: include/items.php:4926 -msgid "Do you really want to delete this item?" -msgstr "Вы действительно хотите удалить этот элемент?" - -#: include/items.php:5201 -msgid "Archives" -msgstr "Архивы" - #: include/profile_selectors.php:6 msgid "Male" msgstr "Мужчина" @@ -8221,6 +190,14 @@ msgstr "Не определен" msgid "Other" msgstr "Другой" +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: include/profile_selectors.php:23 msgid "Males" msgstr "Мужчины" @@ -8309,6 +286,10 @@ msgstr "Изменяю супругу" msgid "Sex Addict" msgstr "Люблю секс" +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Друзья" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Друзья / Предпочтения" @@ -8393,302 +374,299 @@ msgstr "Не беспокоить" msgid "Ask me" msgstr "Спросите меня" -#: include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica уведомления" - -#: include/enotify.php:21 -msgid "Thank You," -msgstr "Спасибо," - -#: include/enotify.php:24 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "%s Administrator" -msgstr "%s администратор" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'" -#: include/enotify.php:26 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "" +#: include/auth.php:45 +msgid "Logged out." +msgstr "Выход из системы." -#: include/enotify.php:68 -#, php-format -msgid "%s " -msgstr "%s " +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Войти не удалось." -#: include/enotify.php:82 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s" - -#: include/enotify.php:84 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s отправил вам новое личное сообщение на %2$s." - -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s послал вам %2$s." - -#: include/enotify.php:85 -msgid "a private message" -msgstr "личное сообщение" - -#: include/enotify.php:86 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" -"Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." - -#: include/enotify.php:138 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]" - -#: include/enotify.php:145 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]" - -#: include/enotify.php:153 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]" - -#: include/enotify.php:163 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: include/enotify.php:164 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "" - -#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195 -#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: include/enotify.php:174 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля" - -#: include/enotify.php:176 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: include/enotify.php:178 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: include/enotify.php:189 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: include/enotify.php:190 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: include/enotify.php:191 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:203 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:216 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: include/enotify.php:217 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: include/enotify.php:218 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:233 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: include/enotify.php:235 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: include/enotify.php:246 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Сообщение] получен запрос" - -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: include/enotify.php:251 include/enotify.php:293 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Вы можете посмотреть его профиль здесь %s" - -#: include/enotify.php:253 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Посетите %s для подтверждения или отказа запроса." - -#: include/enotify.php:261 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:262 include/enotify.php:263 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:269 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: include/enotify.php:270 include/enotify.php:271 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:284 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica: Оповещение] получено предложение дружбы" - -#: include/enotify.php:285 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" - -#: include/enotify.php:286 -#, php-format -msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: include/enotify.php:291 -msgid "Name:" -msgstr "Имя:" - -#: include/enotify.php:292 -msgid "Photo:" -msgstr "Фото:" - -#: include/enotify.php:295 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." - -#: include/enotify.php:303 include/enotify.php:316 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:304 include/enotify.php:317 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:305 include/enotify.php:318 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:308 +#: include/auth.php:132 include/user.php:75 msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email\n" -"\twithout restriction." -msgstr "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID." -#: include/enotify.php:311 include/enotify.php:325 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "Сообщение об ошибке было:" -#: include/enotify.php:321 -#, php-format +#: include/group.php:25 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." +"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 "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием." + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Группа доступа по умолчанию для новых контактов" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Каждый" + +#: include/group.php:265 +msgid "edit" +msgstr "редактировать" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Группы" + +#: include/group.php:288 +msgid "Edit groups" msgstr "" -#: include/enotify.php:323 +#: include/group.php:290 +msgid "Edit group" +msgstr "Редактировать группу" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Создать новую группу" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Название группы: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Контакты не состоят в группе" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "добавить" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Неизвестно | Не определено" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Блокировать немедленно" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Тролль, спаммер, рассылает рекламу" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Известные мне, но нет определенного мнения" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Хорошо, наверное, безвредные" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Уважаемые, есть мое доверие" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Часто" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Раз в час" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Два раза в день" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Ежедневно" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Еженедельно" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Ежемесячно" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Эл. почта" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "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 "" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Отправить на Email" + +#: include/acl_selectors.php:332 #, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/enotify.php:336 -msgid "[Friendica System:Notify] registration request" -msgstr "" +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Скрыть данные профиля из неизвестных зрителей?" -#: include/enotify.php:337 +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Видимо всем" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "показывать" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "не показывать" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "Копии на email адреса" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Пример: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Разрешения" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Закрыть" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "фото" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "статус" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "мероприятие" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s нравится %3$s от %2$s " -#: include/enotify.php:338 +#: include/like.php:184 include/conversation.php:144 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s не нравится %3$s от %2$s " -#: include/enotify.php:341 +#: include/like.php:186 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: include/enotify.php:344 +#: include/like.php:188 #, php-format -msgid "Please visit %s to approve or reject the request." +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: include/oembed.php:226 -msgid "Embedded content" -msgstr "Встроенное содержание" +#: include/like.php:190 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" -#: include/oembed.php:235 -msgid "Embedding disabled" -msgstr "Встраивание отключено" +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[без темы]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Фото стены" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Нажмите для обновления." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Это действие превышает лимиты, установленные вашим тарифным планом." + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "Это действие не доступно в соответствии с вашим планом подписки." #: include/uimport.php:94 msgid "Error decoding account file" @@ -8696,8 +674,7 @@ msgstr "Ошибка расшифровки файла аккаунта" #: include/uimport.php:100 msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" -"Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" +msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" #: include/uimport.php:116 include/uimport.php:127 msgid "Error! Cannot check nickname" @@ -8729,36 +706,8099 @@ msgstr[3] "%d контакты не импортированы" msgid "Done. You can now login with your username and password" msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" -#: index.php:442 -msgid "toggle mobile" -msgstr "мобильная версия" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Разное" -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "День рождения:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Возраст: " + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -"Установить уровень изменения размера изображений в постах и ​​комментариях " -"(ширина и высота)" -#: 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 "Установить шрифт-размер для постов и комментариев" +#: include/datetime.php:341 +msgid "never" +msgstr "никогда" -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Установить ширину темы" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "менее сек. назад" -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Цветовая схема" +#: include/datetime.php:350 +msgid "year" +msgstr "год" -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Установить высоту строки для постов и комментариев" +#: include/datetime.php:350 +msgid "years" +msgstr "лет" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Установить цветовую схему" +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "мес." + +#: include/datetime.php:351 +msgid "months" +msgstr "мес." + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "неделя" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "недель" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "день" + +#: include/datetime.php:353 +msgid "days" +msgstr "дней" + +#: include/datetime.php:354 +msgid "hour" +msgstr "час" + +#: include/datetime.php:354 +msgid "hours" +msgstr "час." + +#: include/datetime.php:355 +msgid "minute" +msgstr "минута" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "мин." + +#: include/datetime.php:356 +msgid "second" +msgstr "секунда" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "сек." + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s назад" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "день рождения %s" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "С днём рождения %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica уведомления" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Спасибо," + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s администратор" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "без ответа" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s отправил вам новое личное сообщение на %2$s." + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s послал вам %2$s." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "личное сообщение" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "" + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Сообщение] получен запрос" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Вы можете посмотреть его профиль здесь %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Посетите %s для подтверждения или отказа запроса." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica: Оповещение] получено предложение дружбы" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Имя:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Фото:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Начало:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Окончание:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Откуда:" + +#: include/event.php:441 +msgid "Sun" +msgstr "Вс" + +#: include/event.php:442 +msgid "Mon" +msgstr "Пн" + +#: include/event.php:443 +msgid "Tue" +msgstr "Вт" + +#: include/event.php:444 +msgid "Wed" +msgstr "Ср" + +#: include/event.php:445 +msgid "Thu" +msgstr "Чт" + +#: include/event.php:446 +msgid "Fri" +msgstr "Пт" + +#: include/event.php:447 +msgid "Sat" +msgstr "Сб" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Воскресенье" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Понедельник" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Вторник" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Среда" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Четверг" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Пятница" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Суббота" + +#: include/event.php:455 +msgid "Jan" +msgstr "Янв" + +#: include/event.php:456 +msgid "Feb" +msgstr "Фев" + +#: include/event.php:457 +msgid "Mar" +msgstr "Мрт" + +#: include/event.php:458 +msgid "Apr" +msgstr "Апр" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Май" + +#: include/event.php:460 +msgid "Jun" +msgstr "Июн" + +#: include/event.php:461 +msgid "Jul" +msgstr "Июл" + +#: include/event.php:462 +msgid "Aug" +msgstr "Авг" + +#: include/event.php:463 +msgid "Sept" +msgstr "Сен" + +#: include/event.php:464 +msgid "Oct" +msgstr "Окт" + +#: include/event.php:465 +msgid "Nov" +msgstr "Нбр" + +#: include/event.php:466 +msgid "Dec" +msgstr "Дек" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Январь" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Февраль" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Март" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Апрель" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Июнь" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Июль" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Август" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Сентябрь" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Октябрь" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Ноябрь" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Декабрь" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "сегодня" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "l, j F" + +#: include/event.php:593 +msgid "Edit event" +msgstr "Редактировать мероприятие" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "ссылка на сообщение" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Ничего нового здесь" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Стереть уведомления" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Выход" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Завершить эту сессию" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Посты" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Данные вашей учётной записи" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Информация" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Информация о вас" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Фото" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Ваши фотографии" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Видео" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Мероприятия" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Ваши события" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Личные заметки" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Вход" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Вход" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Мой профиль" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Главная страница" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Регистрация" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Создать аккаунт" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Помощь" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Помощь и документация" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Приложения" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Дополнительные приложения, утилиты, игры" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Поиск" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Поиск по сайту" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "Контент" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "Тэги" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Контакты" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Сообщество" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Беседы на этом сайте" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Календарь и события" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Каталог" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Каталог участников" + +#: include/nav.php:154 +msgid "Information" +msgstr "Информация" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Новости" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Посты ваших друзей" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Перезагрузка сети" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Загрузить страницу сети без фильтров" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Запросы" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Запросы на добавление в список друзей" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Уведомления" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Посмотреть все уведомления" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Отметить, как прочитанное" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Отметить все системные уведомления, как прочитанные" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Сообщения" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Личная почта" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Входящие" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Исходящие" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Новое сообщение" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Управлять" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Управление другими страницами" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Делегирование" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Делегировать управление страницей" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Настройки" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Настройки аккаунта" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Профили" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Управление/редактирование профилей" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Управление / редактирование друзей и контактов" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Администратор" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Конфигурация сайта" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Навигация" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Карта сайта" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Фотографии контакта" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Добро пожаловать, " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Пожалуйста, загрузите фотографию профиля." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Добро пожаловать обратно, " + +#: include/security.php:373 +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 "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Система" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Персонал" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s прокомментировал %s сообщение" + +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s написал новое сообщение" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "%s нравится %s сообшение" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s не нравится %s сообшение" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s теперь друзья с %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Предложение в друзья" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Запрос в друзья / на подключение" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Новый фолловер" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Обнаружены ошибки при создании таблиц базы данных." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(без темы)" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Делиться уведомлениями из сети Diaspora" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Вложения:" + +#: include/network.php:595 +msgid "view full size" +msgstr "посмотреть в полный размер" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Просмотреть профиль" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Просмотреть статус" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Просмотреть фото" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Посты сети" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Удалить контакт" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Отправить ЛС" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "Форум" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Изображение / Фото" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 написал:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Зашифрованный контент" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s и %2$s теперь друзья" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s в %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "пост/элемент" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s пометил %2$s %3$s как Фаворит" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Лайки" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Дизлайк" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Выберите" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Удалить" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Просмотреть профиль %s [@ %s]" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Категории:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "В рубрике:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s с %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Смотреть в контексте" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Пожалуйста, подождите" + +#: include/conversation.php:870 +msgid "remove" +msgstr "удалить" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Удалить выбранные позиции" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s нравится это." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s не нравится это." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "и" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", и %d других чел." + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d людям нравится это" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d людям не нравится это" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Видимое всем" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Пожалуйста, введите URL ссылки:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Введите ссылку на видео link/URL:" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Введите ссылку на аудио link/URL:" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Сохранить в папку:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "И где вы сейчас?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Удалить елемент(ты)?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Поделиться" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Загрузить фото" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "загрузить фото" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Прикрепить файл" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "приложить файл" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Вставить веб-ссылку" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "веб-ссылка" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Вставить ссылку видео" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "видео-ссылка" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Вставить ссылку аудио" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "аудио-ссылка" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Задать ваше местоположение" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "установить местонахождение" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Очистить местонахождение браузера" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "убрать местонахождение" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Установить заголовок" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Категории (список через запятую)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Настройки разрешений" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "разрешения" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Публичное сообщение" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Предварительный просмотр" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Отмена" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Пост для групп" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Пост для контактов" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Личное сообщение" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Сообщение" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 +msgid "General Features" +msgstr "Основные возможности" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "Несколько профилей" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "Возможность создания нескольких профилей" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "Составление сообщений" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "Редактор RTF" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "Включить редактор RTF" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "Предварительный просмотр" + +#: include/features.php:81 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией" + +#: include/features.php:82 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "Виджет боковой панели \"Сеть\"" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Поиск по датам" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "Возможность выбора постов по диапазону дат" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "Фильтр групп" + +#: include/features.php:90 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Включить виджет для отображения сообщений сети только от выбранной группы" + +#: include/features.php:91 +msgid "Network Filter" +msgstr "Фильтр сети" + +#: include/features.php:91 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Включить виджет для отображения сообщений сети только от выбранной сети" + +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "запомненные поиски" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "Сохранить условия поиска для повторного использования" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "Сетевые вкладки" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "Персональные сетевые вкладки" + +#: include/features.php:98 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Включить вкладку для отображения только сообщений сети, с которой вы взаимодействовали" + +#: include/features.php:99 +msgid "Network New Tab" +msgstr "Новая вкладка сеть" + +#: include/features.php:99 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)" + +#: include/features.php:100 +msgid "Network Shared Links Tab" +msgstr "Вкладка shared ссылок сети" + +#: include/features.php:100 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Включить вкладку для отображения только сообщений сети со ссылками на них" + +#: include/features.php:105 +msgid "Post/Comment Tools" +msgstr "Инструменты пост/комментарий" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "Множественное удаление" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "Выбрать и удалить несколько постов/комментариев одновременно." + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "Редактировать отправленные посты" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "Редактировать и править посты и комментарии после отправления" + +#: include/features.php:108 +msgid "Tagging" +msgstr "Отмеченное" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "Возможность отмечать существующие посты" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "Категории постов" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "Добавить категории вашего поста" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "Посты дизлайк" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "Возможность дизлайка постов/комментариев" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "Популярные посты" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "Возможность отметить специальные сообщения индикатором популярности" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "Расширенные настройки профиля" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Запрещенный URL профиля." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "Connect-URL отсутствует." + +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями." + +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Обнаружены несовместимые протоколы связи или каналы." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "Указанный адрес профиля не дает адекватной информации." + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "Автор или имя не найдены." + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Нет URL браузера, который соответствует этому адресу." + +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:141 +msgid "Use mailto: in front of address to force email check." +msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." + +#: include/follow.php:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." + +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." + +#: include/follow.php:258 +msgid "Unable to retrieve contact information." +msgstr "Невозможно получить контактную информацию." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Запрашиваемый профиль недоступен." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Запрашиваемый профиль недоступен." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Редактировать профиль" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Управление / редактирование профилей" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Изменить фото профиля" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Создать новый профиль" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Фото профиля" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "видимый всем" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Редактировать видимость" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Пол:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Статус:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Домашняя страничка:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "О себе:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Сеть:" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "F d" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[сегодня]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Напоминания о днях рождения" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Дни рождения на этой неделе:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[без описания]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Напоминания о мероприятиях" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Мероприятия на этой неделе:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Полное имя:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Возраст:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Сексуальные предпочтения:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Родной город:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Ключевые слова: " + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Политические взгляды:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Религия:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Хобби / Интересы:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Нравится:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "Не нравится:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Информация о контакте и социальных сетях:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Музыкальные интересы:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Книги, литература:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Телевидение:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Кино / Танцы / Культура / Развлечения:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Любовь / Романтика:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Работа / Занятость:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Школа / Образование:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Расширенный" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Ваши посты" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Информация о вас" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Фотоальбомы" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Личные заметки" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Только вы можете это видеть" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Имя не разглашается]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Пункт не найден." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "Вы действительно хотите удалить этот элемент?" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Да" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Нет разрешения." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Архивы" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Встроенное содержание" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Встраивание отключено" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "следует" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "остановлено следование" + +#: include/text.php:304 +msgid "newer" +msgstr "новее" + +#: include/text.php:306 +msgid "older" +msgstr "старее" + +#: include/text.php:311 +msgid "prev" +msgstr "пред." + +#: include/text.php:313 +msgid "first" +msgstr "первый" + +#: include/text.php:345 +msgid "last" +msgstr "последний" + +#: include/text.php:348 +msgid "next" +msgstr "след." + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Нет контактов" + +#: include/text.php:912 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d контакт" +msgstr[1] "%d контактов" +msgstr[2] "%d контактов" +msgstr[3] "%d контактов" + +#: include/text.php:925 +msgid "View Contacts" +msgstr "Просмотр контактов" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Сохранить" + +#: include/text.php:1076 +msgid "poke" +msgstr "poke" + +#: include/text.php:1076 +msgid "poked" +msgstr "" + +#: include/text.php:1077 +msgid "ping" +msgstr "пинг" + +#: include/text.php:1077 +msgid "pinged" +msgstr "пингуется" + +#: include/text.php:1078 +msgid "prod" +msgstr "" + +#: include/text.php:1078 +msgid "prodded" +msgstr "" + +#: include/text.php:1079 +msgid "slap" +msgstr "" + +#: include/text.php:1079 +msgid "slapped" +msgstr "" + +#: include/text.php:1080 +msgid "finger" +msgstr "" + +#: include/text.php:1080 +msgid "fingered" +msgstr "" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1095 +msgid "happy" +msgstr "" + +#: include/text.php:1096 +msgid "sad" +msgstr "" + +#: include/text.php:1097 +msgid "mellow" +msgstr "" + +#: include/text.php:1098 +msgid "tired" +msgstr "" + +#: include/text.php:1099 +msgid "perky" +msgstr "" + +#: include/text.php:1100 +msgid "angry" +msgstr "" + +#: include/text.php:1101 +msgid "stupified" +msgstr "" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "" + +#: include/text.php:1103 +msgid "interested" +msgstr "" + +#: include/text.php:1104 +msgid "bitter" +msgstr "" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "" + +#: include/text.php:1106 +msgid "alive" +msgstr "" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "" + +#: include/text.php:1108 +msgid "anxious" +msgstr "" + +#: include/text.php:1109 +msgid "cranky" +msgstr "" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "" + +#: include/text.php:1112 +msgid "motivated" +msgstr "" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "" + +#: include/text.php:1114 +msgid "surprised" +msgstr "" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Просмотреть видео" + +#: include/text.php:1356 +msgid "bytes" +msgstr "байт" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "Нажмите, чтобы открыть / закрыть" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1806 +msgid "activity" +msgstr "активность" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "комментарий" +msgstr[3] "комментарий" + +#: include/text.php:1809 +msgid "post" +msgstr "сообщение" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Пароли не совпадают. Пароль не изменен." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Требуется приглашение." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Приглашение не может быть проверено." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Неверный URL OpenID" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Пожалуйста, введите необходимую информацию." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Пожалуйста, используйте более короткое имя." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Имя слишком короткое." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Неверный адрес электронной почты." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Нельзя использовать этот Email." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." + +#: include/user.php:157 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник." + +#: include/user.php:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "значение по умолчанию" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." + +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Фотографии профиля" + +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 +#, 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:438 +#, 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:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Подробности регистрации для %s" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Успешно добавлено." + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Доступ запрещен." + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Добро пожаловать на %s!" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Системных уведомлений больше нет." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Уведомления системы" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Удалить элемент" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Свободный доступ закрыт." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Нет результатов." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Это Friendica, версия" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "работает на веб-узле" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Пожалуйста, посетите сайт Friendica.com, чтобы узнать больше о проекте Friendica." + +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com" + +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "Установленные плагины / добавки / приложения:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Нет установленных плагинов / добавок / приложений" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Не найдено действительного аккаунта." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту." + +#: 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 "Запрос на сброс пароля получен %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная." + +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Сброс пароля" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Ваш пароль был сброшен по требованию." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Ваш новый пароль" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Сохраните или скопируйте новый пароль - и затем" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "нажмите здесь для входа" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ваш пароль может быть изменен на странице Настройки после успешного входа." + +#: 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 "Ваш пароль был изменен %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Забыли пароль?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций." + +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Ник или E-mail: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Сброс" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Нет профиля" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Помощь:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Не найдено" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Страница не найдена." + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Личная информация удаленно недоступна." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Кто может видеть:" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Ошибка протокола OpenID. Не возвращён ID." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте." + +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." + +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Импорт" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Удалить аккаунт" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Вы можете импортировать учетную запись с другого сервера 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 "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Файл аккаунта" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" + +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Посетить профиль %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Редактировать контакт" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Контакты, которые не являются членами группы" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "Экспорт аккаунта" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер." + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "Экспорт всего" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Экспорт личных данных" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Превышен общий лимит приглашений." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Неверный адрес электронной почты." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Пожалуйста, присоединяйтесь к нам на Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Доставка сообщения не удалась." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d сообщение отправлено." +msgstr[1] "%d сообщений отправлено." +msgstr[2] "%d сообщений отправлено." +msgstr[3] "%d сообщений отправлено." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "У вас нет больше приглашений" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica" + +#: 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, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Отправить приглашения" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Введите адреса электронной почты, по одному в строке:" + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Ваше сообщение:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com" + +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Добавить" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Файлы" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Доступ запрещен" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Недопустимый идентификатор профиля." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Редактор видимости профиля" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Нажмите на контакт, чтобы добавить или удалить." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Видимый для" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Все контакты (с безопасным доступом к профилю)" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Ключевое слово удалено" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Удалить ключевое слово" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Выберите ключевое слово для удаления: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Удалить" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Ошибка" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "Готово" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Существующие менеджеры страницы" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Существующие уполномоченные страницы" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Возможные доверенные лица" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Добавить" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Нет записей." + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- выбрать -" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Пункт не доступен." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Пункт не был найден." + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Вы должны войти в систему, чтобы использовать аддоны." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Приложения" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Нет установленных приложений." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Добро пожаловать в Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Новый контрольный список участников" + +#: 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 "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Начало работы" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "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 "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним." + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Перейти к вашим настройкам" + +#: 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 "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети." + +#: 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 "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Загрузить фото профиля" + +#: 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 "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Редактировать профиль" + +#: 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 "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Ключевые слова профиля" + +#: 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 "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Подключение" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Импортирование Email-ов" + +#: mod/newmember.php:51 +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 "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Перейти на страницу ваших контактов" + +#: mod/newmember.php:53 +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 "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "Перейти в каталог вашего сайта" + +#: mod/newmember.php:55 +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 "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Следовать на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Поиск людей" + +#: mod/newmember.php:57 +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 "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "Группа \"ваши контакты\"" + +#: mod/newmember.php:65 +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 "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "Почему мои посты не публичные?" + +#: mod/newmember.php:68 +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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше." + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "Получить помощь" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Перейти в раздел справки" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Удалить мой аккаунт" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Пожалуйста, введите свой пароль для проверки:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Элемент не найден" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Редактировать сообщение" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "История общения" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC время: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Ваш часовой пояс: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ваше изменённое время: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Выберите пожалуйста ваш часовой пояс:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Группа создана." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Не удалось создать группу." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Группа не найдена." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Название группы изменено." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Сохранить группу" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Создать группу контактов / друзей." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Группа удалена." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Не удается удалить группу." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Редактор групп" + +#: mod/group.php:190 +msgid "Members" +msgstr "Участники" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Все контакты" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Группа пуста" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Не выбран получатель." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Невозможно проверить местоположение." + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Сообщение не может быть отправлено." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Неудача коллекции сообщения." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Сообщение отправлено." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Без адресата." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Отправить личное сообщение" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей." + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Кому:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Тема:" + +#: mod/share.php:38 +msgid "link" +msgstr "ссылка" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Разрешить связь с приложением" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Вернитесь в ваше приложение и задайте этот код:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Пожалуйста, войдите для продолжения." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Нет" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Код (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Код (Diaspora) для конвертации в BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Ввести код:" + +#: 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 "Ввод кода (формат Diaspora):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "удачно" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "неудача" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s добро пожаловать %2$s" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Не удалось найти контактную информацию." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Вы действительно хотите удалить это сообщение?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Сообщение удалено." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Беседа удалена." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Нет сообщений." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Сообщение не доступно." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Удалить сообщение" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Удалить историю общения" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Отправить ответ" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Неизвестный отправитель - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Вы и %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s и Вы" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d сообщение" +msgstr[1] "%d сообщений" +msgstr[2] "%d сообщений" +msgstr[3] "%d сообщений" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Управление идентификацией и / или страницами" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Выберите идентификацию для управления: " + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Установки контакта приняты." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Обновление контакта неудачное." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Контакт не найден." + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ВНИМАНИЕ: Это крайне важно! Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' сейчас, если вы не уверены, что делаете на этой странице." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Возврат к редактору контакта" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Имя" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Ник аккаунта" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "URL аккаунта" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL запроса в друзья" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL подтверждения друга" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "URL эндпоинта уведомления" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "URL опроса/ленты" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Новое фото из этой URL" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Нет такой группы" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "Группа: %s" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Эта запись была отредактирована" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d комментарий" +msgstr[1] "%d комментариев" +msgstr[2] "%d комментариев" +msgstr[3] "%d комментариев" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Личное сообщение" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Нравится" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "нравится" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Не нравится" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "не нравитса" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Поделитесь этим" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "делиться" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Это вы" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Оставить комментарий" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Жирный" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Kурсивный" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Подчеркнутый" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Цитата" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Код" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Изображение / Фото" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Ссылка" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Видео" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Редактировать" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "пометить" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "убрать метку" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "переключить статус" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "помечено" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "добавить ключевое слово (таг)" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "сохранить в папке" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "к" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Стена-на-Стену" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "через Стена-на-Стену:" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Приглашение в друзья отправлено." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Предложить друзей" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Предложить друга для %s." + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Настроение" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Напишите о вашем настроении и расскажите своим друзьям" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Получатель" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Выберите действия для получателя" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Сделать эту запись личной" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Изображение загружено, но обрезка изображения не удалась." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Уменьшение размера изображения [%s] не удалось." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Не удается обработать изображение" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Невозможно обработать фото." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Загрузить файл:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Выбрать этот профиль:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Загрузить" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "или" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "пропустить этот шаг" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "выберите фото из ваших фотоальбомов" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Обрезать изображение" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Редактирование выполнено" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Изображение загружено успешно." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Загрузка фото неудачная." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Аккаунт утвержден." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Регистрация отменена для %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Пожалуйста, войдите с паролем." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Неверный идентификатор запроса." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Отказаться" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Игнорировать" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Уведомления сети" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Личные уведомления" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Уведомления" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Показать проигнорированные запросы" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Скрыть проигнорированные запросы" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Тип уведомления: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "предложено юзером %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Скрыть этот контакт от других" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Настроение" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "если требуется" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Одобрить" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Утверждения, о которых должно быть вам известно: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "да" + +#: mod/notifications.php:196 +msgid "no" +msgstr "нет" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Друг" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Участник" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Фанат / Поклонник" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "URL профиля" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Запросов нет." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Профиль не найден." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Профиль удален." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Профиль-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Новый профиль создан." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Профиль недоступен для клонирования." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Необходимо имя профиля." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Семейное положение" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Любимый человек" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Работа/Занятость" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Религия" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Политические взгляды" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Пол" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Сексуальные предпочтения" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Домашняя страница" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Хобби / Интересы" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Адрес" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Местонахождение" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Профиль обновлен." + +#: mod/profiles.php:564 +msgid " and " +msgstr "и" + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "публичный профиль" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s изменились с %2$s на “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Посетить профиль %1$s [%2$s]" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Редактировать детали профиля" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Изменить фото профиля" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Просмотреть этот профиль" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Создать новый профиль, используя эти настройки" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Клонировать этот профиль" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Удалить этот профиль" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Ваш пол:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Семейное положение:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Пример: рыбалка фотографии программное обеспечение" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Имя профиля:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Требуется" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "Это ваш публичный профиль.
                                              Он может быть виден каждому через Интернет." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Ваше полное имя:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Заголовок / Описание:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Адрес:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Город / Населенный пункт:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Район / Область:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Почтовый индекс:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Страна:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Кто: (если требуется)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "С какого времени [дата]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Расскажите нам о себе ..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Адрес домашней странички:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Религиозные взгляды:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Общественные ключевые слова:" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Личные ключевые слова:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Используется для поиска профилей, никогда не показывается другим)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Музыкальные интересы" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Книги, литература" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Телевидение" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Кино / танцы / культура / развлечения" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Хобби / Интересы" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Любовь / романтика" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Работа / занятость" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Школа / образование" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Контактная информация и социальные сети" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Редактировать профиль" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Нет друзей." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Доступ к этому профилю ограничен." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Назад" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Далее" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Нет общих контактов." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Общие друзья" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Недоступно." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Глобальный каталог" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Найти на этом сайте" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Каталог сайта" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Нет записей (некоторые записи могут быть скрыты)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Нет соответствий" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Пункт был удален." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Название мероприятия и время начала обязательны для заполнения." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Создать новое мероприятие" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Сведения о мероприятии" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Начало мероприятия:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Дата/время окончания не известны, или не указаны" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Окончание мероприятия:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Настройка часового пояса" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Описание:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Титул:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Поделитесь этим мероприятием" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Система закрыта на техническое обслуживание" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "интересуется:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Похожие профили" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Советы для новых участников" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Вы действительно хотите удалить это предложение?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Проигнорировать/Скрыть" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Последние фото" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Загрузить новые фото" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "каждый" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Информация о контакте недоступна" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Альбом не найден." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Удалить альбом" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Удалить фото" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Вы действительно хотите удалить эту фотографию?" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s отмечен/а/ в %2$s by %3$s" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "фото" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Файл изображения пуст." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Не выбрано фото." + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Доступ к этому пункту ограничен." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий." + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Загрузить фото" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Название нового альбома: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "или название существующего альбома: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Не показывать статус-сообщение для этой закачки" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Показать в группах" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Показывать контактам" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Личное фото" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Публичное фото" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Редактировать альбом" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Показать новые первыми" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Показать старые первыми" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Просмотр фото" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Нет разрешения. Доступ к этому элементу ограничен." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Фото недоступно" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Просмотр фото" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Редактировать фото" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Использовать как фото профиля" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Просмотреть полный размер" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Ключевые слова: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Удалить любое ключевое слово]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Название нового альбома" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Подпись" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Добавить ключевое слово (таг)" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Поворот по часовой стрелке (направо)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Поворот против часовой стрелки (налево)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Личное фото" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Публичное фото" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "Карта" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Просмотреть альбом" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций." + +#: mod/register.php:98 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
                                              login: %s
                                              " +"password: %s

                                              You can change your password after login." +msgstr "" + +#: mod/register.php:105 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Ваша регистрация не может быть обработана." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "Ваш OpenID (необязательно):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Включить ваш профиль в каталог участников?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Членство на сайте только по приглашению." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "ID вашего приглашения:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Регистрация" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Ваш адрес электронной почты: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Новый пароль:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Подтвердите:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае 'nickname@$sitename'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Выберите псевдоним: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "Импорт своего профиля в этот экземпляр friendica" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Аккаунт" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Дополнительные возможности" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Внешний вид" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "Социальные сети" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Плагины" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Подключенные приложения" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Удалить аккаунт" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Не хватает важных данных!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Обновление" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Настройки эл. почты обновлены." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Настройки обновлены" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "Перемещённое сообщение было отправлено списку контактов" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Пустые пароли не допускаются. Пароль не изменен." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Неверный пароль." + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Пароль изменен." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Пожалуйста, используйте более короткое имя." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Имя слишком короткое." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Неверный пароль." + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Неверный e-mail." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr " Невозможно изменить на этот e-mail." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию." + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию." + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Настройки обновлены." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Добавить приложения" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Сохранить настройки" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Перенаправление" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "URL символа" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Вы не можете изменить это приложение." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Подключенные приложения" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Ключ клиента начинается с" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Нет имени" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Удалить авторизацию" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Нет сконфигурированных настроек плагина" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Настройки плагина" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Выкл." + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Вкл." + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Дополнительные возможности" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Встроенная поддержка для %s подключение %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "подключено" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "отключено" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "Доступ эл. почты отключен на этом сайте." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Настройка эл. почты / почтового ящика" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Последняя успешная проверка электронной почты:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Имя IMAP сервера:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Порт IMAP:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Безопасность:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Ничего" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Логин эл. почты:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Пароль эл. почты:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Адрес для ответа:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Отправлять открытые сообщения на все контакты электронной почты:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Действие после импорта:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Переместить в папку" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Переместить в папку:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "Нет специальной темы для мобильных устройств" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Параметры дисплея" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Показать тему:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Мобильная тема:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Обновление браузера каждые хх секунд" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Количество элементов, отображаемых на одной странице:" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Максимум 100 элементов" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "не показывать emoticons" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "Бесконечная прокрутка" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Настройки темы" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Стандартная страница аккаунта" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Этот аккаунт является обычным персональным профилем" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками" + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "\"Автоматический друг\" страница" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Личный форум [экспериментально]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Приватный форум - разрешено только участникам" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Разрешить друзьям отмечять ваши сообщения?" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Позвольть предлогать Вам потенциальных друзей?" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Профиль не публикуется." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Настройки расширенного окончания срока действия" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Расширенное окончание срока действия" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Срок хранения сообщений:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Срок хранения личных заметок:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "Срок хранения усеянных сообщений:" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Срок хранения фотографий:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Только устаревшие посты других:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Настройки аккаунта" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Смена пароля" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Оставьте поля пароля пустыми, если он не изменяется" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Текущий пароль:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "Ваш текущий пароль, для подтверждения изменений" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Пароль:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Основные параметры" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Адрес электронной почты:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Ваш часовой пояс:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Местонахождение по умолчанию:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Использовать определение местоположения браузером:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Параметры безопасности и конфиденциальности" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Максимум запросов в друзья в день:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(для предотвращения спама)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Разрешение на сообщения по умолчанию" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(нажмите, чтобы открыть / закрыть)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Личное сообщение по умолчанию" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Публичное сообщение по умолчанию" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Права для новых записей по умолчанию" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Максимальное количество личных сообщений от незнакомых людей в день:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Настройка уведомлений" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Отправить состояние о статусе по умолчанию, если:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "принятие запроса на добавление в друзья" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "вступление в сообщество/форум" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "сделать изменения в настройках интересов профиля" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Отправлять уведомление по электронной почте, когда:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Вы получили запрос" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Ваши запросы подтверждены" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Кто-то пишет на стене вашего профиля" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Кто-то пишет последующий комментарий" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Вы получаете личное сообщение" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Вы полулили предложение о добавлении в друзья" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Вы отмечены в посте" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Расширенные настройки учётной записи" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Измените поведение этого аккаунта в специальных ситуациях" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "Перемещение" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку." + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "Отправить перемещённые сообщения контактам" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "Удалить видео" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Видео не выбрано" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Последние видео" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Загрузить новые видео" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "Неверный запрос." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Загрузка файла не удалась." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Настройки темы обновлены." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Сайт" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Пользователи" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Темы" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Обновление БД" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Журналы" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "Просмотр логов" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Возможности плагина" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "Диагностика" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Администрация" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Обычный аккаунт" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Аккаунт Витрина" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Аккаунт Сообщество / Знаменитость" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "\"Автоматический друг\" Аккаунт" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Аккаунт блога" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Личный форум" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Очереди сообщений" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Резюме" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Зарегистрированные пользователи" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Ожидающие регистрации" + +#: mod/admin.php:491 +msgid "Version" +msgstr "Версия" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Активные плагины" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - ://" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "Для функционирования RINO2 необходим пакет php5-mcrypt" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Установки сайта обновлены." + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Никогда" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "Отключенный" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "Один месяц" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "Три месяца" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "Пол года" + +#: mod/admin.php:907 +msgid "One year" +msgstr "Один год" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Многопользовательский вид" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Закрыто" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Требуется подтверждение" + +#: mod/admin.php:937 +msgid "Open" +msgstr "Открыто" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Заставить все ссылки использовать SSL" + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" + +#: mod/admin.php:957 +msgid "File upload" +msgstr "Загрузка файлов" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "Политики" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Производительность" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным." + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Название сайта" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "Имя хоста" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "Системный Email" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Адрес с которого будут приходить письма пользователям." + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Баннер/Логотип" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "Дополнительная информация" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Системный язык" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Системная тема" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Тема системы по умолчанию - может быть переопределена пользователем - изменить настройки темы" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "Мобильная тема системы" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Тема для мобильных устройств" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "Политика SSL" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Ссылки должны быть вынуждены использовать SSL" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "SSL принудительно" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "Старый стиль 'Share'" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Отключение BBCode элемента 'share' для повторяющихся элементов." + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "Скрыть пункт \"помощь\" в меню навигации" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую." + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "Однопользовательский режим" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Максимальный размер изображения" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "Максимальная длина картинки" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "Качество JPEG изображения" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Политика регистрация" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Максимальное число регистраций в день" + +#: mod/admin.php:986 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта." + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Текст регистрации" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "Будет находиться на видном месте на странице регистрации." + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Аккаунт считается после x дней не воспользованным" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Разрешенные домены друзей" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Разрешенные почтовые домены" + +#: mod/admin.php:990 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Блокировать общественный доступ" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт." + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Принудительная публикация" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "Разрешить темы в обсуждении" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "Разрешить бесконечный уровень для тем на этом сайте." + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "Частные сообщения по умолчанию для новых пользователей" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "Не включать текст сообщения в email-оповещение." + +#: mod/admin.php:996 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности." + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "Не вставлять личные картинки в постах" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "Разрешить пользователям установить remote_self" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Блокировать множественные регистрации" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Поддержка OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "OpenID поддержка для регистрации и входа в систему." + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Проверка полного имени" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера." + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 регулярные выражения" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Используйте PHP UTF-8 для регулярных выражений" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Включить поддержку OStatus" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей." + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Включить поддержку Diaspora" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Обеспечить встроенную поддержку сети Diaspora." + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Позвольть только Friendica контакты" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены." + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Проверка SSL" + +#: mod/admin.php:1014 +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 "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат." + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Прокси пользователь" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "Прокси URL" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Тайм-аут сети" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "Интервал поставки" + +#: mod/admin.php:1018 +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 "Установите задержку выполнения фоновых процессов доставки до указанного количества секунд, чтобы уменьшить нагрузку на систему. Рекомендация: 4-5 для обычного shared хостинга, 2-3 для виртуальных частных серверов. 0-1 для мощных выделенных серверов." + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "Интервал опроса" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Установить задержку фоновых процессов опросов путем ограничения количества секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал доставки." + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "Средняя максимальная нагрузка" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50." + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "Использовать систему полнотексного поиска MySQL" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов." + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "Путь к элементам кэша" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "Время жизни кэша в секундах" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "Путь к файлу блокировки" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Временная папка" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "Путь для установки" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "Новый базовый url" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "RINO шифрование" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "Слой шифрования между узлами." + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "Обновление было успешно отмечено" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Обновление %s успешно применено." + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Неудавшихся обновлений нет." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Неудавшиеся обновления" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "Отмечено успешно (если обновление было применено вручную)" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "Попытаться выполнить этот шаг обновления автоматически" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s пользователь заблокирован/разблокирован" +msgstr[1] "%s пользователей заблокировано/разблокировано" +msgstr[2] "%s пользователей заблокировано/разблокировано" +msgstr[3] "%s пользователей заблокировано/разблокировано" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s человек удален" +msgstr[1] "%s чел. удалено" +msgstr[2] "%s чел. удалено" +msgstr[3] "%s чел. удалено" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Пользователь '%s' удален" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Пользователь '%s' разблокирован" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Пользователь '%s' блокирован" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Дата регистрации" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Последний вход" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Последний пункт" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "Добавить пользователя" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "выбрать все" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "Пользователь ожидает окончательного удаления" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Запрос даты" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Нет регистраций." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Отклонить" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Заблокировать" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Разблокировать" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Админ сайта" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Аккаунт просрочен" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "Новый пользователь" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "Удалён с" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" + +#: mod/admin.php:1428 +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 "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "Имя нового пользователя." + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "Ник" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "Ник нового пользователя." + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "Email адрес нового пользователя." + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Плагин %s отключен." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Плагин %s включен." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Отключить" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Включить" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Переключить" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Автор:" + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "Программа обслуживания: " + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Темы не найдены." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Скриншот" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[экспериментально]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Неподдерживаемое]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Настройки журнала обновлены." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Очистить" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "Включить отладку" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Лог-файл" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Уровень лога" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "PHP логирование" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Не удалось получить доступ к записи контакта." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Не удалось найти выбранный профиль." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Контакт обновлен." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Не удалось обновить запись контакта." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Контакт заблокирован" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Контакт разблокирован" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Контакт проигнорирован" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "У контакта отменено игнорирование" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Контакт заархивирован" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Контакт разархивирован" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Вы действительно хотите удалить этот контакт?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Контакт удален." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "У Вас взаимная дружба с %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Вы делитесь с %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s делитса с Вами" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Личные коммуникации недоступны для этого контакта." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Обновление было успешно)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Обновление не удалось)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Предложить друзей" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Сеть: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Связь с контактом утеряна!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Видимость профиля" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен." + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Информация о контакте / Заметки" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Редактировать заметки контакта" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Блокировать / Разблокировать контакт" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Игнорировать контакт" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Восстановить настройки URL" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Просмотр бесед" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Последнее обновление: " + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Обновить публичные сообщения" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Обновить сейчас" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Не игнорировать" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "В настоящее время заблокирован" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "В настоящее время игнорируется" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "В данный момент архивирован" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Ответы/лайки ваших публичных сообщений будут видимы." + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Предложения" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Предложить потенциального знакомого" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Показать все контакты" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Не блокирован" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Показать только не блокированные контакты" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Заблокирован" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Показать только блокированные контакты" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Игнорирован" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Показать только игнорируемые контакты" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Архивированные" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Показывать только архивные контакты" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Скрытые" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Показывать только скрытые контакты" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Поиск ваших контактов" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Архивировать" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Разархивировать" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Показать все контакты" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Дополнительные Настройки Контакта" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Взаимная дружба" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "является вашим поклонником" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "Вы - поклонник" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Изменить статус блокированности (заблокировать/разблокировать)" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Изменить статус игнорирования" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Сменить статус архивации (архивирова/не архивировать)" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Удалить контакт" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Ответ от удаленного сайта не был понят." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Неожиданный ответ от удаленного сайта: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Подтверждение успешно завершено." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Удаленный сайт сообщил: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Временные неудачи. Подождите и попробуйте еще раз." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Запрос ошибочен или был отозван." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Не удается установить фото контакта." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Не найдено записи пользователя для '%s' " + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Наш ключ шифрования сайта, по-видимому, перепутался." + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "Запись контакта не найдена для вас на нашем сайте." + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s" + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "Не удалось установить ваши учетные данные контакта в нашей системе." + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "Не удается обновить ваши контактные детали профиля в нашей системе" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s присоединился %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Этот запрос был уже принят." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d требуемый параметр не был найден в заданном месте" +msgstr[1] "%d требуемых параметров не были найдены в заданном месте" +msgstr[2] "%d требуемых параметров не были найдены в заданном месте" +msgstr[3] "%d требуемых параметров не были найдены в заданном месте" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Запрос создан." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Неисправимая ошибка протокола." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Профиль недоступен." + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "К %s пришло сегодня слишком много запросов на подключение." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Были применены меры защиты от спама." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Недопустимый локатор" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Неверный адрес электронной почты." + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался." + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Вы уже ввели информацию о себе здесь." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Похоже, что вы уже друзья с %s." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Неверный URL профиля." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Ваш запрос отправлен." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Для подтверждения запроса войдите пожалуйста с паролем." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Подтвердить" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Скрыть этот контакт" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Добро пожаловать домой, %s!" + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:859 +msgid "Friend/Connection Request" +msgstr "Запрос в друзья / на подключение" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Пожалуйста, ответьте следующее:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "%s знает вас?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Добавить личную заметку:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federated Social Web" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora" + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Ваш идентификационный адрес:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Отправить запрос" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Контакт добавлен" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "Коммуникационный сервер Friendica - Доступ" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Не удалось подключиться к базе данных." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Не удалось создать таблицу." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "База данных сайта установлена." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Проверить систему" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Проверить еще раз" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Подключение к базе данных" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Имя сервера базы данных" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Логин базы данных" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Пароль базы данных" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Имя базы данных" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Адрес электронной почты администратора сайта" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Настройки сайта" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Не удалось найти PATH веб-сервера в установках PHP." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "Command line PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "Найденная PHP версия: " + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Не включено \"register_argc_argv\" в установках PHP." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Это необходимо для работы доставки сообщений." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Генерация шифрованых ключей" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "libCurl PHP модуль" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP модуль" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP модуль" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "mysqli PHP модуль" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "mb_string PHP модуль" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica." + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций." + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 доступен для записи" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.." + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "Url rewrite работает" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Что далее

                                              " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Не удалось найти оригинальный пост." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Пустое сообщение отбрасывается." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Системная ошибка. Сообщение не сохранено." + +#: mod/item.php:992 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Вы можете посетить их в онлайне на %s" + +#: mod/item.php:995 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s отправил/а/ обновление." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Личные сообщения этому человеку находятся под угрозой обнародования." + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Недопустимый контакт." + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Последние комментарии" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Сортировать по дате комментария" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Лента записей" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Сортировать по дате отправки" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:856 +msgid "New" +msgstr "Новый" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "Лента активности - по дате" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Ссылки, которыми поделились" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Интересные ссылки" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Помеченный" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Избранные посты" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} хочет стать Вашим другом" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} отправил Вам сообщение" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} требуемая регистрация" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Нет контактов." + +#: object/Item.php:370 +msgid "via" +msgstr "через" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" #: view/theme/quattro/config.php:67 msgid "Alignment" @@ -8772,6 +8812,10 @@ msgstr "" msgid "Center" msgstr "Центр" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Цветовая схема" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Размер шрифта постов" @@ -8780,95 +8824,29 @@ msgstr "Размер шрифта постов" msgid "Textareas font size" msgstr "Размер шрифта текстовых полей" -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Установить разрешение для средней колонки" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Установить цветовую схему" - -#: 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 "Установить длину (X) карты" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Установить ширину (Y) карты" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -#: view/theme/vier/config.php:111 -msgid "Community Pages" -msgstr "Страницы сообщества" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Карта" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 -#: view/theme/vier/theme.php:156 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "Профили сообщества" -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 -msgid "Help or @NewHere ?" -msgstr "Помощь" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 -#: view/theme/vier/theme.php:377 -msgid "Connect Services" -msgstr "Подключить службы" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 -#: view/theme/vier/theme.php:203 -msgid "Find Friends" -msgstr "Найти друзей" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 -#: view/theme/vier/theme.php:185 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 msgid "Last users" msgstr "Последние пользователи" -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Последние фото" +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Найти друзей" -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Последние likes" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Ваши контакты" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Ваши личные фотографии" - -#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Локальный каталог" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Установить масштаб карты" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "Быстрый запуск" -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Показать/скрыть блоки в правой колонке:" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Подключить службы" #: view/theme/vier/config.php:64 msgid "Comma separated list of helper forums" @@ -8878,9 +8856,13 @@ msgstr "" msgid "Set style" msgstr "" -#: view/theme/vier/theme.php:295 -msgid "Quick Start" -msgstr "Быстрый запуск" +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Страницы сообщества" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Помощь" #: view/theme/duepuntozero/config.php:45 msgid "greenzero" @@ -8909,3 +8891,56 @@ msgstr "" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Удалить этот элемент?" + +#: boot.php:973 +msgid "show fewer" +msgstr "показать меньше" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Обновление %s не удалось. Смотрите журнал ошибок." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Создать новый аккаунт" + +#: boot.php:1796 +msgid "Password: " +msgstr "Пароль: " + +#: boot.php:1797 +msgid "Remember me" +msgstr "Запомнить" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Или зайти с OpenID: " + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Забыли пароль?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Правила сайта" + +#: boot.php:1810 +msgid "terms of service" +msgstr "правила" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Политика конфиденциальности сервера" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "политика конфиденциальности" + +#: index.php:451 +msgid "toggle mobile" +msgstr "мобильная версия" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index 81600c48f..477be4cb2 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -2,274 +2,770 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ - return ; + return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; -$a->strings["Network:"] = "Сеть:"; -$a->strings["Forum"] = "Форум"; -$a->strings["%d contact edited."] = array( +$a->strings["Add New Contact"] = "Добавить контакт"; +$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Подключить"; +$a->strings["%d invitation available"] = array( + 0 => "%d приглашение доступно", + 1 => "%d приглашений доступно", + 2 => "%d приглашений доступно", + 3 => "%d приглашений доступно", +); +$a->strings["Find People"] = "Поиск людей"; +$a->strings["Enter name or interest"] = "Введите имя или интерес"; +$a->strings["Connect/Follow"] = "Подключиться/Следовать"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка"; +$a->strings["Find"] = "Найти"; +$a->strings["Friend Suggestions"] = "Предложения друзей"; +$a->strings["Similar Interests"] = "Похожие интересы"; +$a->strings["Random Profile"] = "Случайный профиль"; +$a->strings["Invite Friends"] = "Пригласить друзей"; +$a->strings["Networks"] = "Сети"; +$a->strings["All Networks"] = "Все сети"; +$a->strings["Saved Folders"] = "Сохранённые папки"; +$a->strings["Everything"] = "Всё"; +$a->strings["Categories"] = "Категории"; +$a->strings["%d contact in common"] = array( + 0 => "%d Контакт", + 1 => "%d Контактов", + 2 => "%d Контактов", + 3 => "%d Контактов", +); +$a->strings["show more"] = "показать больше"; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; +$a->strings["Male"] = "Мужчина"; +$a->strings["Female"] = "Женщина"; +$a->strings["Currently Male"] = "В данный момент мужчина"; +$a->strings["Currently Female"] = "В настоящее время женщина"; +$a->strings["Mostly Male"] = "В основном мужчина"; +$a->strings["Mostly Female"] = "В основном женщина"; +$a->strings["Transgender"] = "Транссексуал"; +$a->strings["Intersex"] = "Интерсексуал"; +$a->strings["Transsexual"] = "Транссексуал"; +$a->strings["Hermaphrodite"] = "Гермафродит"; +$a->strings["Neuter"] = "Средний род"; +$a->strings["Non-specific"] = "Не определен"; +$a->strings["Other"] = "Другой"; +$a->strings["Undecided"] = array( 0 => "", 1 => "", 2 => "", 3 => "", ); -$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; -$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль."; -$a->strings["Contact updated."] = "Контакт обновлен."; -$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта."; -$a->strings["Permission denied."] = "Нет разрешения."; -$a->strings["Contact has been blocked"] = "Контакт заблокирован"; -$a->strings["Contact has been unblocked"] = "Контакт разблокирован"; -$a->strings["Contact has been ignored"] = "Контакт проигнорирован"; -$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование"; -$a->strings["Contact has been archived"] = "Контакт заархивирован"; -$a->strings["Contact has been unarchived"] = "Контакт разархивирован"; -$a->strings["Do you really want to delete this contact?"] = "Вы действительно хотите удалить этот контакт?"; -$a->strings["Yes"] = "Да"; -$a->strings["Cancel"] = "Отмена"; -$a->strings["Contact has been removed."] = "Контакт удален."; -$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s"; -$a->strings["You are sharing with %s"] = "Вы делитесь с %s"; -$a->strings["%s is sharing with you"] = "%s делитса с Вами"; -$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта."; -$a->strings["Never"] = "Никогда"; -$a->strings["(Update was successful)"] = "(Обновление было успешно)"; -$a->strings["(Update was not successful)"] = "(Обновление не удалось)"; -$a->strings["Suggest friends"] = "Предложить друзей"; -$a->strings["Network type: %s"] = "Сеть: %s"; -$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = "Отключенный"; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Submit"] = "Добавить"; -$a->strings["Profile Visibility"] = "Видимость профиля"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."; -$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки"; -$a->strings["Edit contact notes"] = "Редактировать заметки контакта"; -$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]"; -$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт"; -$a->strings["Ignore contact"] = "Игнорировать контакт"; -$a->strings["Repair URL settings"] = "Восстановить настройки URL"; -$a->strings["View conversations"] = "Просмотр бесед"; -$a->strings["Delete contact"] = "Удалить контакт"; -$a->strings["Last update:"] = "Последнее обновление: "; -$a->strings["Update public posts"] = "Обновить публичные сообщения"; -$a->strings["Update now"] = "Обновить сейчас"; -$a->strings["Connect/Follow"] = "Подключиться/Следовать"; -$a->strings["Unblock"] = "Разблокировать"; -$a->strings["Block"] = "Заблокировать"; -$a->strings["Unignore"] = "Не игнорировать"; -$a->strings["Ignore"] = "Игнорировать"; -$a->strings["Currently blocked"] = "В настоящее время заблокирован"; -$a->strings["Currently ignored"] = "В настоящее время игнорируется"; -$a->strings["Currently archived"] = "В данный момент архивирован"; -$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Ответы/лайки ваших публичных сообщений будут видимы."; -$a->strings["Notification for new posts"] = ""; -$a->strings["Send a notification of every new post of this contact"] = ""; -$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["Profile URL"] = "URL профиля"; -$a->strings["Location:"] = "Откуда:"; -$a->strings["About:"] = "О себе:"; -$a->strings["Tags:"] = "Ключевые слова: "; -$a->strings["Suggestions"] = "Предложения"; -$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого"; -$a->strings["All Contacts"] = "Все контакты"; -$a->strings["Show all contacts"] = "Показать все контакты"; -$a->strings["Unblocked"] = "Не блокирован"; -$a->strings["Only show unblocked contacts"] = "Показать только не блокированные контакты"; -$a->strings["Blocked"] = "Заблокирован"; -$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты"; -$a->strings["Ignored"] = "Игнорирован"; -$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты"; -$a->strings["Archived"] = "Архивированные"; -$a->strings["Only show archived contacts"] = "Показывать только архивные контакты"; -$a->strings["Hidden"] = "Скрытые"; -$a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты"; -$a->strings["Contacts"] = "Контакты"; -$a->strings["Search your contacts"] = "Поиск ваших контактов"; -$a->strings["Finding: "] = "Результат поиска: "; -$a->strings["Find"] = "Найти"; -$a->strings["Update"] = "Обновление"; -$a->strings["Archive"] = "Архивировать"; -$a->strings["Unarchive"] = "Разархивировать"; -$a->strings["Delete"] = "Удалить"; -$a->strings["Status"] = "Посты"; -$a->strings["Status Messages and Posts"] = "Ваши посты"; -$a->strings["Profile"] = "Информация"; -$a->strings["Profile Details"] = "Информация о вас"; -$a->strings["View all contacts"] = "Показать все контакты"; -$a->strings["Common Friends"] = "Общие друзья"; -$a->strings["View all common friends"] = ""; -$a->strings["Repair"] = "Восстановить"; -$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта"; -$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)"; -$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования"; -$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)"; -$a->strings["Mutual Friendship"] = "Взаимная дружба"; -$a->strings["is a fan of yours"] = "является вашим поклонником"; -$a->strings["you are a fan of"] = "Вы - поклонник"; -$a->strings["Edit contact"] = "Редактировать контакт"; -$a->strings["No profile"] = "Нет профиля"; -$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; -$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: "; -$a->strings["Post successful."] = "Успешно добавлено."; -$a->strings["Permission denied"] = "Доступ запрещен"; -$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля."; -$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля"; -$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; -$a->strings["Visible To"] = "Видимый для"; -$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)"; -$a->strings["Item not found."] = "Пункт не найден."; -$a->strings["Public access denied."] = "Свободный доступ закрыт."; -$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; -$a->strings["Item has been removed."] = "Пункт был удален."; -$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica"; -$a->strings["New Member Checklist"] = "Новый контрольный список участников"; -$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."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."; -$a->strings["Getting Started"] = "Начало работы"; -$a->strings["Friendica Walk-Through"] = "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."] = "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."; -$a->strings["Settings"] = "Настройки"; -$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам"; -$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."] = "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."; -$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."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."; -$a->strings["Upload Profile Photo"] = "Загрузить фото профиля"; -$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."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."; -$a->strings["Edit Your Profile"] = "Редактировать профиль"; -$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."] = "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."; -$a->strings["Profile Keywords"] = "Ключевые слова профиля"; -$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."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."; -$a->strings["Connecting"] = "Подключение"; -$a->strings["Importing Emails"] = "Импортирование 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"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; -$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; -$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."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт."; -$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта"; -$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."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Следовать на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."; -$a->strings["Finding New People"] = "Поиск людей"; -$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."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."; -$a->strings["Groups"] = "Группы"; -$a->strings["Group Your 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."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."; -$a->strings["Why Aren't My Posts Public?"] = "Почему мои посты не публичные?"; -$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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."; -$a->strings["Getting Help"] = "Получить помощь"; -$a->strings["Go to the Help Section"] = "Перейти в раздел справки"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса."; -$a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."; +$a->strings["Males"] = "Мужчины"; +$a->strings["Females"] = "Женщины"; +$a->strings["Gay"] = "Гей"; +$a->strings["Lesbian"] = "Лесбиянка"; +$a->strings["No Preference"] = "Без предпочтений"; +$a->strings["Bisexual"] = "Бисексуал"; +$a->strings["Autosexual"] = "Автосексуал"; +$a->strings["Abstinent"] = "Воздержанный"; +$a->strings["Virgin"] = "Девственница"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Фетиш"; +$a->strings["Oodles"] = "Групповой"; +$a->strings["Nonsexual"] = "Нет интереса к сексу"; +$a->strings["Single"] = "Без пары"; +$a->strings["Lonely"] = "Пока никого нет"; +$a->strings["Available"] = "Доступный"; +$a->strings["Unavailable"] = "Не ищу никого"; +$a->strings["Has crush"] = "Имеет ошибку"; +$a->strings["Infatuated"] = "Влюблён"; +$a->strings["Dating"] = "Свидания"; +$a->strings["Unfaithful"] = "Изменяю супругу"; +$a->strings["Sex Addict"] = "Люблю секс"; +$a->strings["Friends"] = "Друзья"; +$a->strings["Friends/Benefits"] = "Друзья / Предпочтения"; +$a->strings["Casual"] = "Обычный"; +$a->strings["Engaged"] = "Занят"; +$a->strings["Married"] = "Женат / Замужем"; +$a->strings["Imaginarily married"] = ""; +$a->strings["Partners"] = "Партнеры"; +$a->strings["Cohabiting"] = "Партнерство"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "Счастлив/а/"; +$a->strings["Not looking"] = "Не в поиске"; +$a->strings["Swinger"] = "Свинг"; +$a->strings["Betrayed"] = "Преданный"; +$a->strings["Separated"] = "Разделенный"; +$a->strings["Unstable"] = "Нестабильный"; +$a->strings["Divorced"] = "Разведен(а)"; +$a->strings["Imaginarily divorced"] = ""; +$a->strings["Widowed"] = "Овдовевший"; +$a->strings["Uncertain"] = "Неопределенный"; +$a->strings["It's complicated"] = "влишком сложно"; +$a->strings["Don't care"] = "Не беспокоить"; +$a->strings["Ask me"] = "Спросите меня"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'"; +$a->strings["Logged out."] = "Выход из системы."; $a->strings["Login failed."] = "Войти не удалось."; -$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась."; -$a->strings["Profile Photos"] = "Фотографии профиля"; -$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."; -$a->strings["Unable to process image"] = "Не удается обработать изображение"; -$a->strings["Image exceeds size limit of %s"] = ""; -$a->strings["Unable to process image."] = "Невозможно обработать фото."; -$a->strings["Upload File:"] = "Загрузить файл:"; -$a->strings["Select a profile:"] = "Выбрать этот профиль:"; -$a->strings["Upload"] = "Загрузить"; -$a->strings["or"] = "или"; -$a->strings["skip this step"] = "пропустить этот шаг"; -$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов"; -$a->strings["Crop Image"] = "Обрезать изображение"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра."; -$a->strings["Done Editing"] = "Редактирование выполнено"; -$a->strings["Image uploaded successfully."] = "Изображение загружено успешно."; -$a->strings["Image upload failed."] = "Загрузка фото неудачная."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."; +$a->strings["The error message was:"] = "Сообщение об ошибке было:"; +$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."] = "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."; +$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов"; +$a->strings["Everybody"] = "Каждый"; +$a->strings["edit"] = "редактировать"; +$a->strings["Groups"] = "Группы"; +$a->strings["Edit groups"] = ""; +$a->strings["Edit group"] = "Редактировать группу"; +$a->strings["Create a new group"] = "Создать новую группу"; +$a->strings["Group Name: "] = "Название группы: "; +$a->strings["Contacts not in any group"] = "Контакты не состоят в группе"; +$a->strings["add"] = "добавить"; +$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено"; +$a->strings["Block immediately"] = "Блокировать немедленно"; +$a->strings["Shady, spammer, self-marketer"] = "Тролль, спаммер, рассылает рекламу"; +$a->strings["Known to me, but no opinion"] = "Известные мне, но нет определенного мнения"; +$a->strings["OK, probably harmless"] = "Хорошо, наверное, безвредные"; +$a->strings["Reputable, has my trust"] = "Уважаемые, есть мое доверие"; +$a->strings["Frequently"] = "Часто"; +$a->strings["Hourly"] = "Раз в час"; +$a->strings["Twice daily"] = "Два раза в день"; +$a->strings["Daily"] = "Ежедневно"; +$a->strings["Weekly"] = "Еженедельно"; +$a->strings["Monthly"] = "Ежемесячно"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["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"] = ""; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$a->strings["Post to Email"] = "Отправить на Email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?"; +$a->strings["Visible to everybody"] = "Видимо всем"; +$a->strings["show"] = "показывать"; +$a->strings["don't show"] = "не показывать"; +$a->strings["CC: email addresses"] = "Копии на email адреса"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Разрешения"; +$a->strings["Close"] = "Закрыть"; $a->strings["photo"] = "фото"; $a->strings["status"] = "статус"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Tag removed"] = "Ключевое слово удалено"; -$a->strings["Remove Item Tag"] = "Удалить ключевое слово"; -$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: "; -$a->strings["Remove"] = "Удалить"; -$a->strings["Subscribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = ""; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["Done"] = "Готово"; -$a->strings["success"] = "удачно"; -$a->strings["failed"] = "неудача"; -$a->strings["ignored"] = ""; -$a->strings["Keep this window open until done."] = ""; -$a->strings["Save to Folder:"] = "Сохранить в папку:"; -$a->strings["- select -"] = "- выбрать -"; -$a->strings["Save"] = "Сохранить"; -$a->strings["Submit Request"] = "Отправить запрос"; -$a->strings["You already added this contact."] = ""; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; -$a->strings["OStatus support is disabled. Contact can't be added."] = ""; -$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; -$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:"; -$a->strings["Does %s know you?"] = "%s знает вас?"; -$a->strings["No"] = "Нет"; -$a->strings["Add a personal note:"] = "Добавить личную заметку:"; -$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:"; -$a->strings["Contact added"] = "Контакт добавлен"; -$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост."; -$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; +$a->strings["event"] = "мероприятие"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s "; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[без темы]"; $a->strings["Wall Photos"] = "Фото стены"; -$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica."; -$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."; -$a->strings["%s posted an update."] = "%s отправил/а/ обновление."; -$a->strings["Group created."] = "Группа создана."; -$a->strings["Could not create group."] = "Не удалось создать группу."; -$a->strings["Group not found."] = "Группа не найдена."; -$a->strings["Group name changed."] = "Название группы изменено."; -$a->strings["Save Group"] = "Сохранить группу"; -$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей."; -$a->strings["Group Name: "] = "Название группы: "; -$a->strings["Group removed."] = "Группа удалена."; -$a->strings["Unable to remove group."] = "Не удается удалить группу."; -$a->strings["Group Editor"] = "Редактор групп"; -$a->strings["Members"] = "Участники"; -$a->strings["Group is empty"] = "Группа пуста"; -$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; -$a->strings["Applications"] = "Приложения"; -$a->strings["No installed applications."] = "Нет установленных приложений."; -$a->strings["Profile not found."] = "Профиль не найден."; -$a->strings["Contact not found."] = "Контакт не найден."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."; -$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят."; -$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: "; -$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено."; -$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: "; -$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз."; -$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван."; -$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта."; +$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["Error decoding account file"] = "Ошибка расшифровки файла аккаунта"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм"; +$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!"; +$a->strings["User creation error"] = "Ошибка создания пользователя"; +$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя"; +$a->strings["%d contact not imported"] = array( + 0 => "%d контакт не импортирован", + 1 => "%d контакты не импортированы", + 2 => "%d контакты не импортированы", + 3 => "%d контакты не импортированы", +); +$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем"; +$a->strings["Miscellaneous"] = "Разное"; +$a->strings["Birthday:"] = "День рождения:"; +$a->strings["Age: "] = "Возраст: "; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "никогда"; +$a->strings["less than a second ago"] = "менее сек. назад"; +$a->strings["year"] = "год"; +$a->strings["years"] = "лет"; +$a->strings["month"] = "мес."; +$a->strings["months"] = "мес."; +$a->strings["week"] = "неделя"; +$a->strings["weeks"] = "недель"; +$a->strings["day"] = "день"; +$a->strings["days"] = "дней"; +$a->strings["hour"] = "час"; +$a->strings["hours"] = "час."; +$a->strings["minute"] = "минута"; +$a->strings["minutes"] = "мин."; +$a->strings["second"] = "секунда"; +$a->strings["seconds"] = "сек."; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; +$a->strings["%s's birthday"] = "день рождения %s"; +$a->strings["Happy Birthday %s"] = "С днём рождения %s"; +$a->strings["Friendica Notification"] = "Friendica уведомления"; +$a->strings["Thank You,"] = "Спасибо,"; +$a->strings["%s Administrator"] = "%s администратор"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$a->strings["noreply"] = "без ответа"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение на %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; +$a->strings["a private message"] = "личное сообщение"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]your %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."] = ""; +$a->strings["Please visit %s to view and/or reply to the conversation."] = ""; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Оповещение] %s написал на стене вашего профиля"; +$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"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]tagged you[/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"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Сообщение] получен запрос"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "Вы можете посмотреть его профиль здесь %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Посетите %s для подтверждения или отказа запроса."; +$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: Оповещение] получено предложение дружбы"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружбы от '%1\$s' на %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "Имя:"; +$a->strings["Photo:"] = "Фото:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s для подтверждения, или отказа запроса."; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has accepted 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 without 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["Please visit %s if you wish to make any changes to this relationship."] = ""; +$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["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Начало:"; +$a->strings["Finishes:"] = "Окончание:"; +$a->strings["Location:"] = "Откуда:"; +$a->strings["Sun"] = "Вс"; +$a->strings["Mon"] = "Пн"; +$a->strings["Tue"] = "Вт"; +$a->strings["Wed"] = "Ср"; +$a->strings["Thu"] = "Чт"; +$a->strings["Fri"] = "Пт"; +$a->strings["Sat"] = "Сб"; +$a->strings["Sunday"] = "Воскресенье"; +$a->strings["Monday"] = "Понедельник"; +$a->strings["Tuesday"] = "Вторник"; +$a->strings["Wednesday"] = "Среда"; +$a->strings["Thursday"] = "Четверг"; +$a->strings["Friday"] = "Пятница"; +$a->strings["Saturday"] = "Суббота"; +$a->strings["Jan"] = "Янв"; +$a->strings["Feb"] = "Фев"; +$a->strings["Mar"] = "Мрт"; +$a->strings["Apr"] = "Апр"; +$a->strings["May"] = "Май"; +$a->strings["Jun"] = "Июн"; +$a->strings["Jul"] = "Июл"; +$a->strings["Aug"] = "Авг"; +$a->strings["Sept"] = "Сен"; +$a->strings["Oct"] = "Окт"; +$a->strings["Nov"] = "Нбр"; +$a->strings["Dec"] = "Дек"; +$a->strings["January"] = "Январь"; +$a->strings["February"] = "Февраль"; +$a->strings["March"] = "Март"; +$a->strings["April"] = "Апрель"; +$a->strings["June"] = "Июнь"; +$a->strings["July"] = "Июль"; +$a->strings["August"] = "Август"; +$a->strings["September"] = "Сентябрь"; +$a->strings["October"] = "Октябрь"; +$a->strings["November"] = "Ноябрь"; +$a->strings["December"] = "Декабрь"; +$a->strings["today"] = "сегодня"; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "l, j F"; +$a->strings["Edit event"] = "Редактировать мероприятие"; +$a->strings["link to source"] = "ссылка на сообщение"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Ничего нового здесь"; +$a->strings["Clear notifications"] = "Стереть уведомления"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Выход"; +$a->strings["End this session"] = "Завершить эту сессию"; +$a->strings["Status"] = "Посты"; +$a->strings["Your posts and conversations"] = "Данные вашей учётной записи"; +$a->strings["Profile"] = "Информация"; +$a->strings["Your profile page"] = "Информация о вас"; +$a->strings["Photos"] = "Фото"; +$a->strings["Your photos"] = "Ваши фотографии"; +$a->strings["Videos"] = "Видео"; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = "Мероприятия"; +$a->strings["Your events"] = "Ваши события"; +$a->strings["Personal notes"] = "Личные заметки"; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Вход"; +$a->strings["Sign in"] = "Вход"; +$a->strings["Home"] = "Мой профиль"; +$a->strings["Home Page"] = "Главная страница"; +$a->strings["Register"] = "Регистрация"; +$a->strings["Create an account"] = "Создать аккаунт"; +$a->strings["Help"] = "Помощь"; +$a->strings["Help and documentation"] = "Помощь и документация"; +$a->strings["Apps"] = "Приложения"; +$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры"; +$a->strings["Search"] = "Поиск"; +$a->strings["Search site content"] = "Поиск по сайту"; +$a->strings["Full Text"] = "Контент"; +$a->strings["Tags"] = "Тэги"; +$a->strings["Contacts"] = "Контакты"; +$a->strings["Community"] = "Сообщество"; +$a->strings["Conversations on this site"] = "Беседы на этом сайте"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = "Календарь и события"; +$a->strings["Directory"] = "Каталог"; +$a->strings["People directory"] = "Каталог участников"; +$a->strings["Information"] = "Информация"; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Новости"; +$a->strings["Conversations from your friends"] = "Посты ваших друзей"; +$a->strings["Network Reset"] = "Перезагрузка сети"; +$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров"; +$a->strings["Introductions"] = "Запросы"; +$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; +$a->strings["Notifications"] = "Уведомления"; +$a->strings["See all notifications"] = "Посмотреть все уведомления"; +$a->strings["Mark as seen"] = "Отметить, как прочитанное"; +$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные"; +$a->strings["Messages"] = "Сообщения"; +$a->strings["Private mail"] = "Личная почта"; +$a->strings["Inbox"] = "Входящие"; +$a->strings["Outbox"] = "Исходящие"; +$a->strings["New Message"] = "Новое сообщение"; +$a->strings["Manage"] = "Управлять"; +$a->strings["Manage other pages"] = "Управление другими страницами"; +$a->strings["Delegations"] = "Делегирование"; +$a->strings["Delegate Page Management"] = "Делегировать управление страницей"; +$a->strings["Settings"] = "Настройки"; +$a->strings["Account settings"] = "Настройки аккаунта"; +$a->strings["Profiles"] = "Профили"; +$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей"; +$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; +$a->strings["Admin"] = "Администратор"; +$a->strings["Site setup and configuration"] = "Конфигурация сайта"; +$a->strings["Navigation"] = "Навигация"; +$a->strings["Site map"] = "Карта сайта"; +$a->strings["Contact Photos"] = "Фотографии контакта"; +$a->strings["Welcome "] = "Добро пожаловать, "; +$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля."; +$a->strings["Welcome back "] = "Добро пожаловать обратно, "; +$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."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; +$a->strings["System"] = "Система"; +$a->strings["Personal"] = "Персонал"; +$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение"; +$a->strings["%s created a new post"] = "%s написал новое сообщение"; +$a->strings["%s liked %s's post"] = "%s нравится %s сообшение"; +$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение"; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s"; +$a->strings["Friend Suggestion"] = "Предложение в друзья"; +$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение"; +$a->strings["New Follower"] = "Новый фолловер"; +$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."] = "Обнаружены ошибки при создании таблиц базы данных."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(без темы)"; +$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora"; +$a->strings["Attachments:"] = "Вложения:"; +$a->strings["view full size"] = "посмотреть в полный размер"; +$a->strings["View Profile"] = "Просмотреть профиль"; +$a->strings["View Status"] = "Просмотреть статус"; +$a->strings["View Photos"] = "Просмотреть фото"; +$a->strings["Network Posts"] = "Посты сети"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = "Удалить контакт"; +$a->strings["Send PM"] = "Отправить ЛС"; +$a->strings["Poke"] = ""; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = "Форум"; +$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["Image/photo"] = "Изображение / Фото"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 написал:"; +$a->strings["Encrypted content"] = "Зашифрованный контент"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья"; -$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."; -$a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте."; -$a->strings["Site public key not available in contact record for URL %s."] = "Публичный ключ недоступен в записи о контакте по ссылке %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."; -$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе."; -$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе"; -$a->strings["[Name Withheld]"] = "[Имя не разглашается]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s"; -$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен."; -$a->strings["Tips for New Members"] = "Советы для новых участников"; -$a->strings["Do you really want to delete this video?"] = ""; -$a->strings["Delete Video"] = "Удалить видео"; -$a->strings["No videos selected"] = "Видео не выбрано"; -$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен."; -$a->strings["View Video"] = "Просмотреть видео"; -$a->strings["View Album"] = "Просмотреть альбом"; -$a->strings["Recent Videos"] = "Последние видео"; -$a->strings["Upload New Videos"] = "Загрузить новые видео"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s"; -$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; -$a->strings["Suggest Friends"] = "Предложить друзей"; -$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; -$a->strings["Invalid request."] = "Неверный запрос."; +$a->strings["post/item"] = "пост/элемент"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит"; +$a->strings["Likes"] = "Лайки"; +$a->strings["Dislikes"] = "Дизлайк"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", + 2 => "", + 3 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Select"] = "Выберите"; +$a->strings["Delete"] = "Удалить"; +$a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]"; +$a->strings["Categories:"] = "Категории:"; +$a->strings["Filed under:"] = "В рубрике:"; +$a->strings["%s from %s"] = "%s с %s"; +$a->strings["View in context"] = "Смотреть в контексте"; +$a->strings["Please wait"] = "Пожалуйста, подождите"; +$a->strings["remove"] = "удалить"; +$a->strings["Delete Selected Items"] = "Удалить выбранные позиции"; +$a->strings["Follow Thread"] = ""; +$a->strings["%s likes this."] = "%s нравится это."; +$a->strings["%s doesn't like this."] = "%s не нравится это."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "и"; +$a->strings[", and %d other people"] = ", и %d других чел."; +$a->strings["%2\$d people like this"] = "%2\$d людям нравится это"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d людям не нравится это"; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Видимое всем"; +$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:"; +$a->strings["Please enter a video link/URL:"] = "Введите ссылку на видео link/URL:"; +$a->strings["Please enter an audio link/URL:"] = "Введите ссылку на аудио link/URL:"; +$a->strings["Tag term:"] = ""; +$a->strings["Save to Folder:"] = "Сохранить в папку:"; +$a->strings["Where are you right now?"] = "И где вы сейчас?"; +$a->strings["Delete item(s)?"] = "Удалить елемент(ты)?"; +$a->strings["Share"] = "Поделиться"; +$a->strings["Upload photo"] = "Загрузить фото"; +$a->strings["upload photo"] = "загрузить фото"; +$a->strings["Attach file"] = "Прикрепить файл"; +$a->strings["attach file"] = "приложить файл"; +$a->strings["Insert web link"] = "Вставить веб-ссылку"; +$a->strings["web link"] = "веб-ссылка"; +$a->strings["Insert video link"] = "Вставить ссылку видео"; +$a->strings["video link"] = "видео-ссылка"; +$a->strings["Insert audio link"] = "Вставить ссылку аудио"; +$a->strings["audio link"] = "аудио-ссылка"; +$a->strings["Set your location"] = "Задать ваше местоположение"; +$a->strings["set location"] = "установить местонахождение"; +$a->strings["Clear browser location"] = "Очистить местонахождение браузера"; +$a->strings["clear location"] = "убрать местонахождение"; +$a->strings["Set title"] = "Установить заголовок"; +$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)"; +$a->strings["Permission settings"] = "Настройки разрешений"; +$a->strings["permissions"] = "разрешения"; +$a->strings["Public post"] = "Публичное сообщение"; +$a->strings["Preview"] = "Предварительный просмотр"; +$a->strings["Cancel"] = "Отмена"; +$a->strings["Post to Groups"] = "Пост для групп"; +$a->strings["Post to Contacts"] = "Пост для контактов"; +$a->strings["Private post"] = "Личное сообщение"; +$a->strings["Message"] = "Сообщение"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", + 2 => "", + 3 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", + 2 => "", + 3 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", + 2 => "", + 3 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$a->strings["General Features"] = "Основные возможности"; +$a->strings["Multiple Profiles"] = "Несколько профилей"; +$a->strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = "Составление сообщений"; +$a->strings["Richtext Editor"] = "Редактор RTF"; +$a->strings["Enable richtext editor"] = "Включить редактор RTF"; +$a->strings["Post Preview"] = "Предварительный просмотр"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Разрешить предпросмотр сообщения и комментария перед их публикацией"; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Виджет боковой панели \"Сеть\""; +$a->strings["Search by Date"] = "Поиск по датам"; +$a->strings["Ability to select posts by date ranges"] = "Возможность выбора постов по диапазону дат"; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = "Фильтр групп"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Включить виджет для отображения сообщений сети только от выбранной группы"; +$a->strings["Network Filter"] = "Фильтр сети"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Включить виджет для отображения сообщений сети только от выбранной сети"; +$a->strings["Saved Searches"] = "запомненные поиски"; +$a->strings["Save search terms for re-use"] = "Сохранить условия поиска для повторного использования"; +$a->strings["Network Tabs"] = "Сетевые вкладки"; +$a->strings["Network Personal Tab"] = "Персональные сетевые вкладки"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Включить вкладку для отображения только сообщений сети, с которой вы взаимодействовали"; +$a->strings["Network New Tab"] = "Новая вкладка сеть"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)"; +$a->strings["Network Shared Links Tab"] = "Вкладка shared ссылок сети"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Включить вкладку для отображения только сообщений сети со ссылками на них"; +$a->strings["Post/Comment Tools"] = "Инструменты пост/комментарий"; +$a->strings["Multiple Deletion"] = "Множественное удаление"; +$a->strings["Select and delete multiple posts/comments at once"] = "Выбрать и удалить несколько постов/комментариев одновременно."; +$a->strings["Edit Sent Posts"] = "Редактировать отправленные посты"; +$a->strings["Edit and correct posts and comments after sending"] = "Редактировать и править посты и комментарии после отправления"; +$a->strings["Tagging"] = "Отмеченное"; +$a->strings["Ability to tag existing posts"] = "Возможность отмечать существующие посты"; +$a->strings["Post Categories"] = "Категории постов"; +$a->strings["Add categories to your posts"] = "Добавить категории вашего поста"; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = "Посты дизлайк"; +$a->strings["Ability to dislike posts/comments"] = "Возможность дизлайка постов/комментариев"; +$a->strings["Star Posts"] = "Популярные посты"; +$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["Advanced Profile Settings"] = "Расширенные настройки профиля"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля."; +$a->strings["Connect URL missing."] = "Connect-URL отсутствует."; +$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы."; +$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."] = "Нет URL браузера, который соответствует этому адресу."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."; +$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["Requested account is not available."] = "Запрашиваемый профиль недоступен."; +$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен."; +$a->strings["Edit profile"] = "Редактировать профиль"; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей"; +$a->strings["Change profile photo"] = "Изменить фото профиля"; +$a->strings["Create New Profile"] = "Создать новый профиль"; +$a->strings["Profile Image"] = "Фото профиля"; +$a->strings["visible to everybody"] = "видимый всем"; +$a->strings["Edit visibility"] = "Редактировать видимость"; +$a->strings["Gender:"] = "Пол:"; +$a->strings["Status:"] = "Статус:"; +$a->strings["Homepage:"] = "Домашняя страничка:"; +$a->strings["About:"] = "О себе:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = "Сеть:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[сегодня]"; +$a->strings["Birthday Reminders"] = "Напоминания о днях рождения"; +$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:"; +$a->strings["[No description]"] = "[без описания]"; +$a->strings["Event Reminders"] = "Напоминания о мероприятиях"; +$a->strings["Events this week:"] = "Мероприятия на этой неделе:"; +$a->strings["Full Name:"] = "Полное имя:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Возраст:"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:"; +$a->strings["Hometown:"] = "Родной город:"; +$a->strings["Tags:"] = "Ключевые слова: "; +$a->strings["Political Views:"] = "Политические взгляды:"; +$a->strings["Religion:"] = "Религия:"; +$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:"; +$a->strings["Likes:"] = "Нравится:"; +$a->strings["Dislikes:"] = "Не нравится:"; +$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:"; +$a->strings["Musical interests:"] = "Музыкальные интересы:"; +$a->strings["Books, literature:"] = "Книги, литература:"; +$a->strings["Television:"] = "Телевидение:"; +$a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Культура / Развлечения:"; +$a->strings["Love/Romance:"] = "Любовь / Романтика:"; +$a->strings["Work/employment:"] = "Работа / Занятость:"; +$a->strings["School/education:"] = "Школа / Образование:"; +$a->strings["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Расширенный"; +$a->strings["Status Messages and Posts"] = "Ваши посты"; +$a->strings["Profile Details"] = "Информация о вас"; +$a->strings["Photo Albums"] = "Фотоальбомы"; +$a->strings["Personal Notes"] = "Личные заметки"; +$a->strings["Only You Can See This"] = "Только вы можете это видеть"; +$a->strings["[Name Withheld]"] = "[Имя не разглашается]"; +$a->strings["Item not found."] = "Пункт не найден."; +$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?"; +$a->strings["Yes"] = "Да"; +$a->strings["Permission denied."] = "Нет разрешения."; +$a->strings["Archives"] = "Архивы"; +$a->strings["Embedded content"] = "Встроенное содержание"; +$a->strings["Embedding disabled"] = "Встраивание отключено"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "следует"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "остановлено следование"; +$a->strings["newer"] = "новее"; +$a->strings["older"] = "старее"; +$a->strings["prev"] = "пред."; +$a->strings["first"] = "первый"; +$a->strings["last"] = "последний"; +$a->strings["next"] = "след."; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Нет контактов"; +$a->strings["%d Contact"] = array( + 0 => "%d контакт", + 1 => "%d контактов", + 2 => "%d контактов", + 3 => "%d контактов", +); +$a->strings["View Contacts"] = "Просмотр контактов"; +$a->strings["Save"] = "Сохранить"; +$a->strings["poke"] = "poke"; +$a->strings["poked"] = ""; +$a->strings["ping"] = "пинг"; +$a->strings["pinged"] = "пингуется"; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; +$a->strings["View Video"] = "Просмотреть видео"; +$a->strings["bytes"] = "байт"; +$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "активность"; +$a->strings["comment"] = array( + 0 => "", + 1 => "", + 2 => "комментарий", + 3 => "комментарий", +); +$a->strings["post"] = "сообщение"; +$a->strings["Item filed"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен."; +$a->strings["An invitation is required."] = "Требуется приглашение."; +$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; +$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; +$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; +$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя."; +$a->strings["Name too short."] = "Имя слишком короткое."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя."; +$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; +$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; +$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; +$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; +$a->strings["default"] = "значение по умолчанию"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; +$a->strings["Profile Photos"] = "Фотографии профиля"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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"] = "Подробности регистрации для %s"; +$a->strings["Post successful."] = "Успешно добавлено."; +$a->strings["Access denied."] = "Доступ запрещен."; +$a->strings["Welcome to %s"] = "Добро пожаловать на %s!"; +$a->strings["No more system notifications."] = "Системных уведомлений больше нет."; +$a->strings["System Notifications"] = "Уведомления системы"; +$a->strings["Remove term"] = "Удалить элемент"; +$a->strings["Public access denied."] = "Свободный доступ закрыт."; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Нет результатов."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$a->strings["This is Friendica, version"] = "Это Friendica, версия"; +$a->strings["running at web location"] = "работает на веб-узле"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Пожалуйста, посетите сайт Friendica.com, чтобы узнать больше о проекте Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"; +$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:"; +$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений"; $a->strings["No valid account found."] = "Не найдено действительного аккаунта."; $a->strings["Password reset request issued. Check your 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."] = ""; @@ -289,51 +785,158 @@ $a->strings["Forgot your Password?"] = "Забыли пароль?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."; $a->strings["Nickname or Email: "] = "Ник или E-mail: "; $a->strings["Reset"] = "Сброс"; -$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; -$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение"; -$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; -$a->strings["No contacts."] = "Нет контактов."; -$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса."; -$a->strings["Discard"] = "Отказаться"; -$a->strings["System"] = "Система"; -$a->strings["Network"] = "Новости"; -$a->strings["Personal"] = "Персонал"; -$a->strings["Home"] = "Мой профиль"; -$a->strings["Introductions"] = "Запросы"; -$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; -$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; -$a->strings["Notification type: "] = "Тип уведомления: "; -$a->strings["Friend Suggestion"] = "Предложение в друзья"; -$a->strings["suggested by %s"] = "предложено юзером %s"; -$a->strings["Post a new friend activity"] = "Настроение"; -$a->strings["if applicable"] = "если требуется"; -$a->strings["Approve"] = "Одобрить"; -$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; -$a->strings["yes"] = "да"; -$a->strings["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: "] = ""; -$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"] = "Друг"; -$a->strings["Sharer"] = "Участник"; -$a->strings["Fan/Admirer"] = "Фанат / Поклонник"; -$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение"; -$a->strings["New Follower"] = "Новый фолловер"; -$a->strings["Gender:"] = "Пол:"; -$a->strings["No introductions."] = "Запросов нет."; -$a->strings["Notifications"] = "Уведомления"; -$a->strings["%s liked %s's post"] = "%s нравится %s сообшение"; -$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение"; -$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s"; -$a->strings["%s created a new post"] = "%s написал новое сообщение"; -$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение"; -$a->strings["No more network notifications."] = "Уведомлений из сети больше нет."; -$a->strings["Network Notifications"] = "Уведомления сети"; -$a->strings["No more system notifications."] = "Системных уведомлений больше нет."; -$a->strings["System Notifications"] = "Уведомления системы"; -$a->strings["No more personal notifications."] = "Персональных уведомлений больше нет."; -$a->strings["Personal Notifications"] = "Личные уведомления"; -$a->strings["No more home notifications."] = "Уведомлений больше нет."; -$a->strings["Home Notifications"] = "Уведомления"; +$a->strings["No profile"] = "Нет профиля"; +$a->strings["Help:"] = "Помощь:"; +$a->strings["Not Found"] = "Не найдено"; +$a->strings["Page not found."] = "Страница не найдена."; +$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна."; +$a->strings["Visible to:"] = "Кто может видеть:"; +$a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."; +$a->strings["Import"] = "Импорт"; +$a->strings["Move account"] = "Удалить аккаунт"; +$a->strings["You can import an account from another Friendica 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."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = "Файл аккаунта"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""; +$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]"; +$a->strings["Edit contact"] = "Редактировать контакт"; +$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы"; +$a->strings["Export 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."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."; +$a->strings["Export all"] = "Экспорт всего"; +$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)"] = "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"; +$a->strings["Export personal data"] = "Экспорт личных данных"; +$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; +$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; +$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."; +$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась."; +$a->strings["%d message sent."] = array( + 0 => "%d сообщение отправлено.", + 1 => "%d сообщений отправлено.", + 2 => "%d сообщений отправлено.", + 3 => "%d сообщений отправлено.", +); +$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; +$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."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"; +$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, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."; +$a->strings["Send invitations"] = "Отправить приглашения"; +$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; +$a->strings["Your message:"] = "Ваше сообщение:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"; +$a->strings["Submit"] = "Добавить"; +$a->strings["Files"] = "Файлы"; +$a->strings["Permission denied"] = "Доступ запрещен"; +$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля."; +$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля"; +$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; +$a->strings["Visible To"] = "Видимый для"; +$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)"; +$a->strings["Tag removed"] = "Ключевое слово удалено"; +$a->strings["Remove Item Tag"] = "Удалить ключевое слово"; +$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: "; +$a->strings["Remove"] = "Удалить"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = "Ошибка"; +$a->strings["Done"] = "Готово"; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = ""; +$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."] = "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."; +$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы"; +$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы"; +$a->strings["Potential Delegates"] = "Возможные доверенные лица"; +$a->strings["Add"] = "Добавить"; +$a->strings["No entries."] = "Нет записей."; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- выбрать -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = "Пункт не доступен."; +$a->strings["Item was not found."] = "Пункт не был найден."; +$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; +$a->strings["Applications"] = "Приложения"; +$a->strings["No installed applications."] = "Нет установленных приложений."; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica"; +$a->strings["New Member Checklist"] = "Новый контрольный список участников"; +$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."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."; +$a->strings["Getting Started"] = "Начало работы"; +$a->strings["Friendica Walk-Through"] = "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."] = "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."; +$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам"; +$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."] = "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."; +$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."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."; +$a->strings["Upload Profile Photo"] = "Загрузить фото профиля"; +$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."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."; +$a->strings["Edit Your Profile"] = "Редактировать профиль"; +$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."] = "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."; +$a->strings["Profile Keywords"] = "Ключевые слова профиля"; +$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."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."; +$a->strings["Connecting"] = "Подключение"; +$a->strings["Importing Emails"] = "Импортирование 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"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; +$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; +$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."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт."; +$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта"; +$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."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Следовать на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."; +$a->strings["Finding New People"] = "Поиск людей"; +$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."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."; +$a->strings["Group Your 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."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."; +$a->strings["Why Aren't My Posts Public?"] = "Почему мои посты не публичные?"; +$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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."; +$a->strings["Getting Help"] = "Получить помощь"; +$a->strings["Go to the Help Section"] = "Перейти в раздел справки"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса."; +$a->strings["Remove My Account"] = "Удалить мой аккаунт"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."; +$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:"; +$a->strings["Item not found"] = "Элемент не найден"; +$a->strings["Edit post"] = "Редактировать сообщение"; +$a->strings["Time Conversion"] = "История общения"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."; +$a->strings["UTC time: %s"] = "UTC время: %s"; +$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s"; +$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s"; +$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Группа создана."; +$a->strings["Could not create group."] = "Не удалось создать группу."; +$a->strings["Group not found."] = "Группа не найдена."; +$a->strings["Group name changed."] = "Название группы изменено."; +$a->strings["Save Group"] = "Сохранить группу"; +$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей."; +$a->strings["Group removed."] = "Группа удалена."; +$a->strings["Unable to remove group."] = "Не удается удалить группу."; +$a->strings["Group Editor"] = "Редактор групп"; +$a->strings["Members"] = "Участники"; +$a->strings["All Contacts"] = "Все контакты"; +$a->strings["Group is empty"] = "Группа пуста"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."; +$a->strings["No recipient selected."] = "Не выбран получатель."; +$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение."; +$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено."; +$a->strings["Message collection failure."] = "Неудача коллекции сообщения."; +$a->strings["Message sent."] = "Сообщение отправлено."; +$a->strings["No recipient."] = "Без адресата."; +$a->strings["Send Private Message"] = "Отправить личное сообщение"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей."; +$a->strings["To:"] = "Кому:"; +$a->strings["Subject:"] = "Тема:"; +$a->strings["link"] = "ссылка"; +$a->strings["Authorize application connection"] = "Разрешить связь с приложением"; +$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:"; +$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"; +$a->strings["No"] = "Нет"; $a->strings["Source (bbcode) text:"] = "Код (bbcode):"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:"; $a->strings["Source input: "] = "Ввести код:"; @@ -346,26 +949,18 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Ничего нового здесь"; -$a->strings["Clear notifications"] = "Стереть уведомления"; -$a->strings["New Message"] = "Новое сообщение"; -$a->strings["No recipient selected."] = "Не выбран получатель."; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = "удачно"; +$a->strings["failed"] = "неудача"; +$a->strings["ignored"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s"; $a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию."; -$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено."; -$a->strings["Message collection failure."] = "Неудача коллекции сообщения."; -$a->strings["Message sent."] = "Сообщение отправлено."; -$a->strings["Messages"] = "Сообщения"; $a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?"; $a->strings["Message deleted."] = "Сообщение удалено."; $a->strings["Conversation removed."] = "Беседа удалена."; -$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:"; -$a->strings["Send Private Message"] = "Отправить личное сообщение"; -$a->strings["To:"] = "Кому:"; -$a->strings["Subject:"] = "Тема:"; -$a->strings["Your message:"] = "Ваше сообщение:"; -$a->strings["Upload photo"] = "Загрузить фото"; -$a->strings["Insert web link"] = "Вставить веб-ссылку"; -$a->strings["Please wait"] = "Пожалуйста, подождите"; $a->strings["No messages."] = "Нет сообщений."; $a->strings["Message not available."] = "Сообщение не доступно."; $a->strings["Delete message"] = "Удалить сообщение"; @@ -382,9 +977,12 @@ $a->strings["%d message"] = array( 2 => "%d сообщений", 3 => "%d сообщений", ); -$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]"; +$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: "; $a->strings["Contact settings applied."] = "Установки контакта приняты."; $a->strings["Contact update failed."] = "Обновление контакта неудачное."; +$a->strings["Contact not found."] = "Контакт не найден."; $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."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' сейчас, если вы не уверены, что делаете на этой странице."; $a->strings["No mirroring"] = ""; @@ -392,6 +990,9 @@ $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; $a->strings["Return to contact editor"] = "Возврат к редактору контакта"; $a->strings["Refetch contact data"] = ""; +$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["Name"] = "Имя"; $a->strings["Account Nickname"] = "Ник аккаунта"; $a->strings["@Tagname - overrides Name/Nickname"] = ""; @@ -401,26 +1002,484 @@ $a->strings["Friend Confirm URL"] = "URL подтверждения друга"; $a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления"; $a->strings["Poll/Feed URL"] = "URL опроса/ленты"; $a->strings["New photo from this URL"] = "Новое фото из этой 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"] = "Вход"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Доступ запрещен."; -$a->strings["Connect"] = "Подключить"; -$a->strings["View Profile"] = "Просмотреть профиль"; +$a->strings["No such group"] = "Нет такой группы"; +$a->strings["Group: %s"] = "Группа: %s"; +$a->strings["This entry was edited"] = "Эта запись была отредактирована"; +$a->strings["%d comment"] = array( + 0 => "%d комментарий", + 1 => "%d комментариев", + 2 => "%d комментариев", + 3 => "%d комментариев", +); +$a->strings["Private Message"] = "Личное сообщение"; +$a->strings["I like this (toggle)"] = "Нравится"; +$a->strings["like"] = "нравится"; +$a->strings["I don't like this (toggle)"] = "Не нравится"; +$a->strings["dislike"] = "не нравитса"; +$a->strings["Share this"] = "Поделитесь этим"; +$a->strings["share"] = "делиться"; +$a->strings["This is you"] = "Это вы"; +$a->strings["Comment"] = "Оставить комментарий"; +$a->strings["Bold"] = "Жирный"; +$a->strings["Italic"] = "Kурсивный"; +$a->strings["Underline"] = "Подчеркнутый"; +$a->strings["Quote"] = "Цитата"; +$a->strings["Code"] = "Код"; +$a->strings["Image"] = "Изображение / Фото"; +$a->strings["Link"] = "Ссылка"; +$a->strings["Video"] = "Видео"; +$a->strings["Edit"] = "Редактировать"; +$a->strings["add star"] = "пометить"; +$a->strings["remove star"] = "убрать метку"; +$a->strings["toggle star status"] = "переключить статус"; +$a->strings["starred"] = "помечено"; +$a->strings["add tag"] = "добавить ключевое слово (таг)"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "сохранить в папке"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "к"; +$a->strings["Wall-to-Wall"] = "Стена-на-Стену"; +$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:"; +$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; +$a->strings["Suggest Friends"] = "Предложить друзей"; +$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; +$a->strings["Mood"] = "Настроение"; +$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = "Получатель"; +$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; +$a->strings["Make this post private"] = "Сделать эту запись личной"; +$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась."; +$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."; +$a->strings["Unable to process image"] = "Не удается обработать изображение"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Невозможно обработать фото."; +$a->strings["Upload File:"] = "Загрузить файл:"; +$a->strings["Select a profile:"] = "Выбрать этот профиль:"; +$a->strings["Upload"] = "Загрузить"; +$a->strings["or"] = "или"; +$a->strings["skip this step"] = "пропустить этот шаг"; +$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов"; +$a->strings["Crop Image"] = "Обрезать изображение"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра."; +$a->strings["Done Editing"] = "Редактирование выполнено"; +$a->strings["Image uploaded successfully."] = "Изображение загружено успешно."; +$a->strings["Image upload failed."] = "Загрузка фото неудачная."; +$a->strings["Account approved."] = "Аккаунт утвержден."; +$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s"; +$a->strings["Please login."] = "Пожалуйста, войдите с паролем."; +$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса."; +$a->strings["Discard"] = "Отказаться"; +$a->strings["Ignore"] = "Игнорировать"; +$a->strings["Network Notifications"] = "Уведомления сети"; +$a->strings["Personal Notifications"] = "Личные уведомления"; +$a->strings["Home Notifications"] = "Уведомления"; +$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; +$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; +$a->strings["Notification type: "] = "Тип уведомления: "; +$a->strings["suggested by %s"] = "предложено юзером %s"; +$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других"; +$a->strings["Post a new friend activity"] = "Настроение"; +$a->strings["if applicable"] = "если требуется"; +$a->strings["Approve"] = "Одобрить"; +$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; +$a->strings["yes"] = "да"; +$a->strings["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: "] = ""; +$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"] = "Друг"; +$a->strings["Sharer"] = "Участник"; +$a->strings["Fan/Admirer"] = "Фанат / Поклонник"; +$a->strings["Profile URL"] = "URL профиля"; +$a->strings["No introductions."] = "Запросов нет."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Профиль не найден."; +$a->strings["Profile deleted."] = "Профиль удален."; +$a->strings["Profile-"] = "Профиль-"; +$a->strings["New profile created."] = "Новый профиль создан."; +$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования."; +$a->strings["Profile Name is required."] = "Необходимо имя профиля."; +$a->strings["Marital Status"] = "Семейное положение"; +$a->strings["Romantic Partner"] = "Любимый человек"; +$a->strings["Work/Employment"] = "Работа/Занятость"; +$a->strings["Religion"] = "Религия"; +$a->strings["Political Views"] = "Политические взгляды"; +$a->strings["Gender"] = "Пол"; +$a->strings["Sexual Preference"] = "Сексуальные предпочтения"; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = "Домашняя страница"; +$a->strings["Interests"] = "Хобби / Интересы"; +$a->strings["Address"] = "Адрес"; +$a->strings["Location"] = "Местонахождение"; +$a->strings["Profile updated."] = "Профиль обновлен."; +$a->strings[" and "] = "и"; +$a->strings["public profile"] = "публичный профиль"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменились с %2\$s на “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Посетить профиль %1\$s [%2\$s]"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Редактировать детали профиля"; +$a->strings["Change Profile Photo"] = "Изменить фото профиля"; +$a->strings["View this profile"] = "Просмотреть этот профиль"; +$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки"; +$a->strings["Clone this profile"] = "Клонировать этот профиль"; +$a->strings["Delete this profile"] = "Удалить этот профиль"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Ваш пол:"; +$a->strings[" Marital Status:"] = " Семейное положение:"; +$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение"; +$a->strings["Profile Name:"] = "Имя профиля:"; +$a->strings["Required"] = "Требуется"; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Это ваш публичный профиль.
                                              Он может быть виден каждому через Интернет."; +$a->strings["Your Full Name:"] = "Ваше полное имя:"; +$a->strings["Title/Description:"] = "Заголовок / Описание:"; +$a->strings["Street Address:"] = "Адрес:"; +$a->strings["Locality/City:"] = "Город / Населенный пункт:"; +$a->strings["Region/State:"] = "Район / Область:"; +$a->strings["Postal/Zip Code:"] = "Почтовый индекс:"; +$a->strings["Country:"] = "Страна:"; +$a->strings["Who: (if applicable)"] = "Кто: (если требуется)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com"; +$a->strings["Since [date]:"] = "С какого времени [дата]:"; +$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Адрес домашней странички:"; +$a->strings["Religious Views:"] = "Религиозные взгляды:"; +$a->strings["Public Keywords:"] = "Общественные ключевые слова:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)"; +$a->strings["Private Keywords:"] = "Личные ключевые слова:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)"; +$a->strings["Musical interests"] = "Музыкальные интересы"; +$a->strings["Books, literature"] = "Книги, литература"; +$a->strings["Television"] = "Телевидение"; +$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; +$a->strings["Hobbies/Interests"] = "Хобби / Интересы"; +$a->strings["Love/romance"] = "Любовь / романтика"; +$a->strings["Work/employment"] = "Работа / занятость"; +$a->strings["School/education"] = "Школа / образование"; +$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети"; +$a->strings["Edit/Manage Profiles"] = "Редактировать профиль"; +$a->strings["No friends to display."] = "Нет друзей."; +$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Назад"; +$a->strings["Next"] = "Далее"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Нет общих контактов."; +$a->strings["Common Friends"] = "Общие друзья"; +$a->strings["Not available."] = "Недоступно."; +$a->strings["Global Directory"] = "Глобальный каталог"; +$a->strings["Find on this site"] = "Найти на этом сайте"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Каталог сайта"; +$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; $a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; $a->strings["No matches"] = "Нет соответствий"; -$a->strings["Photos"] = "Фото"; -$a->strings["Contact Photos"] = "Фотографии контакта"; -$a->strings["Files"] = "Файлы"; -$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы"; +$a->strings["Item has been removed."] = "Пункт был удален."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения."; +$a->strings["Create New Event"] = "Создать новое мероприятие"; +$a->strings["Event details"] = "Сведения о мероприятии"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Начало мероприятия:"; +$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны"; +$a->strings["Event Finishes:"] = "Окончание мероприятия:"; +$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса"; +$a->strings["Description:"] = "Описание:"; +$a->strings["Title:"] = "Титул:"; +$a->strings["Share this event"] = "Поделитесь этим мероприятием"; +$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."; +$a->strings["is interested in:"] = "интересуется:"; +$a->strings["Profile Match"] = "Похожие профили"; +$a->strings["Tips for New Members"] = "Советы для новых участников"; +$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; +$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть"; +$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]"; +$a->strings["Recent Photos"] = "Последние фото"; +$a->strings["Upload New Photos"] = "Загрузить новые фото"; +$a->strings["everybody"] = "каждый"; +$a->strings["Contact information unavailable"] = "Информация о контакте недоступна"; +$a->strings["Album not found."] = "Альбом не найден."; +$a->strings["Delete Album"] = "Удалить альбом"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?"; +$a->strings["Delete Photo"] = "Удалить фото"; +$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s"; +$a->strings["a photo"] = "фото"; +$a->strings["Image file is empty."] = "Файл изображения пуст."; +$a->strings["No photos selected"] = "Не выбрано фото."; +$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."; +$a->strings["Upload Photos"] = "Загрузить фото"; +$a->strings["New album name: "] = "Название нового альбома: "; +$a->strings["or existing album name: "] = "или название существующего альбома: "; +$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки"; +$a->strings["Show to Groups"] = "Показать в группах"; +$a->strings["Show to Contacts"] = "Показывать контактам"; +$a->strings["Private Photo"] = "Личное фото"; +$a->strings["Public Photo"] = "Публичное фото"; +$a->strings["Edit Album"] = "Редактировать альбом"; +$a->strings["Show Newest First"] = "Показать новые первыми"; +$a->strings["Show Oldest First"] = "Показать старые первыми"; +$a->strings["View Photo"] = "Просмотр фото"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен."; +$a->strings["Photo not available"] = "Фото недоступно"; +$a->strings["View photo"] = "Просмотр фото"; +$a->strings["Edit photo"] = "Редактировать фото"; +$a->strings["Use as profile photo"] = "Использовать как фото профиля"; +$a->strings["View Full Size"] = "Просмотреть полный размер"; +$a->strings["Tags: "] = "Ключевые слова: "; +$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]"; +$a->strings["New album name"] = "Название нового альбома"; +$a->strings["Caption"] = "Подпись"; +$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)"; +$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)"; +$a->strings["Private photo"] = "Личное фото"; +$a->strings["Public photo"] = "Публичное фото"; +$a->strings["Map"] = "Карта"; +$a->strings["View Album"] = "Просмотреть альбом"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; +$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."; +$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):"; +$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению."; +$a->strings["Your invitation ID: "] = "ID вашего приглашения:"; +$a->strings["Registration"] = "Регистрация"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: "; +$a->strings["New Password:"] = "Новый пароль:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Подтвердите:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае 'nickname@\$sitename'."; +$a->strings["Choose a nickname: "] = "Выберите псевдоним: "; +$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica"; +$a->strings["Account"] = "Аккаунт"; +$a->strings["Additional features"] = "Дополнительные возможности"; +$a->strings["Display"] = "Внешний вид"; +$a->strings["Social Networks"] = "Социальные сети"; +$a->strings["Plugins"] = "Плагины"; +$a->strings["Connected apps"] = "Подключенные приложения"; +$a->strings["Remove account"] = "Удалить аккаунт"; +$a->strings["Missing some important data!"] = "Не хватает важных данных!"; +$a->strings["Update"] = "Обновление"; +$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."; +$a->strings["Email settings updated."] = "Настройки эл. почты обновлены."; +$a->strings["Features updated"] = "Настройки обновлены"; +$a->strings["Relocate message has been send to your contacts"] = "Перемещённое сообщение было отправлено списку контактов"; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен."; +$a->strings["Wrong password."] = "Неверный пароль."; +$a->strings["Password changed."] = "Пароль изменен."; +$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."; +$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя."; +$a->strings[" Name too short."] = " Имя слишком короткое."; +$a->strings["Wrong Password"] = "Неверный пароль."; +$a->strings[" Not valid email."] = " Неверный e-mail."; +$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию."; +$a->strings["Settings updated."] = "Настройки обновлены."; +$a->strings["Add application"] = "Добавить приложения"; +$a->strings["Save Settings"] = "Сохранить настройки"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Перенаправление"; +$a->strings["Icon url"] = "URL символа"; +$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение."; +$a->strings["Connected Apps"] = "Подключенные приложения"; +$a->strings["Client key starts with"] = "Ключ клиента начинается с"; +$a->strings["No name"] = "Нет имени"; +$a->strings["Remove authorization"] = "Удалить авторизацию"; +$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина"; +$a->strings["Plugin Settings"] = "Настройки плагина"; +$a->strings["Off"] = "Выкл."; +$a->strings["On"] = "Вкл."; +$a->strings["Additional Features"] = "Дополнительные возможности"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s"; +$a->strings["enabled"] = "подключено"; +$a->strings["disabled"] = "отключено"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте."; +$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."; +$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:"; +$a->strings["IMAP server name:"] = "Имя IMAP сервера:"; +$a->strings["IMAP port:"] = "Порт IMAP:"; +$a->strings["Security:"] = "Безопасность:"; +$a->strings["None"] = "Ничего"; +$a->strings["Email login name:"] = "Логин эл. почты:"; +$a->strings["Email password:"] = "Пароль эл. почты:"; +$a->strings["Reply-to address:"] = "Адрес для ответа:"; +$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:"; +$a->strings["Action after import:"] = "Действие после импорта:"; +$a->strings["Move to folder"] = "Переместить в папку"; +$a->strings["Move to folder:"] = "Переместить в папку:"; +$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; +$a->strings["Display Settings"] = "Параметры дисплея"; +$a->strings["Display Theme:"] = "Показать тему:"; +$a->strings["Mobile Theme:"] = "Мобильная тема:"; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = "Количество элементов, отображаемых на одной странице:"; +$a->strings["Maximum of 100 items"] = "Максимум 100 элементов"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:"; +$a->strings["Don't show emoticons"] = "не показывать emoticons"; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = "Бесконечная прокрутка"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = "Настройки темы"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = "Стандартная страница аккаунта"; +$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = "\"Автоматический друг\" страница"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"; +$a->strings["Private Forum [Experimental]"] = "Личный форум [экспериментально]"; +$a->strings["Private forum - approved members only"] = "Приватный форум - разрешено только участникам"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"; +$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"; +$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"; +$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?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"; +$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?"; +$a->strings["Permit unknown people to send you private mail?"] = "Разрешить незнакомым людям отправлять вам личные сообщения?"; +$a->strings["Profile is not published."] = "Профиль не публикуется."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"; +$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия"; +$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия"; +$a->strings["Expire posts:"] = "Срок хранения сообщений:"; +$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:"; +$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:"; +$a->strings["Expire photos:"] = "Срок хранения фотографий:"; +$a->strings["Only expire posts by others:"] = "Только устаревшие посты других:"; +$a->strings["Account Settings"] = "Настройки аккаунта"; +$a->strings["Password Settings"] = "Смена пароля"; +$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется"; +$a->strings["Current Password:"] = "Текущий пароль:"; +$a->strings["Your current password to confirm the changes"] = "Ваш текущий пароль, для подтверждения изменений"; +$a->strings["Password:"] = "Пароль:"; +$a->strings["Basic Settings"] = "Основные параметры"; +$a->strings["Email Address:"] = "Адрес электронной почты:"; +$a->strings["Your Timezone:"] = "Ваш часовой пояс:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:"; +$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:"; +$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности"; +$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:"; +$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)"; +$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию"; +$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)"; +$a->strings["Default Private Post"] = "Личное сообщение по умолчанию"; +$a->strings["Default Public Post"] = "Публичное сообщение по умолчанию"; +$a->strings["Default Permissions for New Posts"] = "Права для новых записей по умолчанию"; +$a->strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей в день:"; +$a->strings["Notification Settings"] = "Настройка уведомлений"; +$a->strings["By default post a status message when:"] = "Отправить состояние о статусе по умолчанию, если:"; +$a->strings["accepting a friend request"] = "принятие запроса на добавление в друзья"; +$a->strings["joining a forum/community"] = "вступление в сообщество/форум"; +$a->strings["making an interesting profile change"] = "сделать изменения в настройках интересов профиля"; +$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:"; +$a->strings["You receive an introduction"] = "Вы получили запрос"; +$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены"; +$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля"; +$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий"; +$a->strings["You receive a private message"] = "Вы получаете личное сообщение"; +$a->strings["You receive a friend suggestion"] = "Вы полулили предложение о добавлении в друзья"; +$a->strings["You are tagged in a post"] = "Вы отмечены в посте"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = "Удалить видео"; +$a->strings["No videos selected"] = "Видео не выбрано"; +$a->strings["Recent Videos"] = "Последние видео"; +$a->strings["Upload New Videos"] = "Загрузить новые видео"; +$a->strings["Invalid request."] = "Неверный запрос."; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Загрузка файла не удалась."; $a->strings["Theme settings updated."] = "Настройки темы обновлены."; $a->strings["Site"] = "Сайт"; $a->strings["Users"] = "Пользователи"; -$a->strings["Plugins"] = "Плагины"; $a->strings["Themes"] = "Темы"; -$a->strings["Additional features"] = "Дополнительные возможности"; $a->strings["DB updates"] = "Обновление БД"; $a->strings["Inspect Queue"] = ""; $a->strings["Federation Statistics"] = ""; @@ -428,10 +1487,10 @@ $a->strings["Logs"] = "Журналы"; $a->strings["View Logs"] = "Просмотр логов"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Администратор"; $a->strings["Plugin Features"] = "Возможности плагина"; $a->strings["diagnostics"] = "Диагностика"; $a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения"; +$a->strings["unknown"] = ""; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; $a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; $a->strings["Administration"] = "Администрация"; @@ -442,6 +1501,8 @@ $a->strings["Recipient Profile"] = ""; $a->strings["Created"] = ""; $a->strings["Last Tried"] = ""; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; $a->strings["Normal Account"] = "Обычный аккаунт"; $a->strings["Soapbox Account"] = "Аккаунт Витрина"; $a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость"; @@ -457,15 +1518,12 @@ $a->strings["Active plugins"] = "Активные плагины"; $a->strings["Can not parse base url. Must have at least ://"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - ://"; $a->strings["RINO2 needs mcrypt php extension to work."] = "Для функционирования RINO2 необходим пакет php5-mcrypt"; $a->strings["Site settings updated."] = "Установки сайта обновлены."; -$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; +$a->strings["Never"] = "Никогда"; $a->strings["At post arrival"] = ""; -$a->strings["Frequently"] = "Часто"; -$a->strings["Hourly"] = "Раз в час"; -$a->strings["Twice daily"] = "Два раза в день"; -$a->strings["Daily"] = "Ежедневно"; +$a->strings["Disabled"] = "Отключенный"; $a->strings["Users, Global Contacts"] = ""; $a->strings["Users, Global Contacts/fallback"] = ""; $a->strings["One month"] = "Один месяц"; @@ -479,13 +1537,11 @@ $a->strings["Open"] = "Открыто"; $a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться"; $a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"; -$a->strings["Save Settings"] = "Сохранить настройки"; -$a->strings["Registration"] = "Регистрация"; $a->strings["File upload"] = "Загрузка файлов"; $a->strings["Policies"] = "Политики"; -$a->strings["Advanced"] = "Расширенный"; $a->strings["Auto Discovered Contact Directory"] = ""; $a->strings["Performance"] = "Производительность"; +$a->strings["Worker"] = ""; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."; $a->strings["Site name"] = "Название сайта"; $a->strings["Host name"] = "Имя хоста"; @@ -564,6 +1620,8 @@ $a->strings["Enable OStatus support"] = "Включить поддержку OSt $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; $a->strings["OStatus support can only be enabled if threading is enabled."] = ""; $a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; $a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora"; @@ -630,6 +1688,16 @@ $a->strings["RINO Encryption"] = "RINO шифрование"; $a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами."; $a->strings["Embedly API key"] = ""; $a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; $a->strings["Update has been marked successful"] = "Обновление было успешно отмечено"; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -645,7 +1713,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Отмечено $a->strings["Attempt to execute this update step automatically"] = "Попытаться выполнить этот шаг обновления автоматически"; $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"] = "Подробности регистрации для %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s пользователь заблокирован/разблокирован", 1 => "%s пользователей заблокировано/разблокировано", @@ -661,22 +1728,23 @@ $a->strings["%s user deleted"] = array( $a->strings["User '%s' deleted"] = "Пользователь '%s' удален"; $a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован"; $a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован"; +$a->strings["Register date"] = "Дата регистрации"; +$a->strings["Last login"] = "Последний вход"; +$a->strings["Last item"] = "Последний пункт"; $a->strings["Add User"] = "Добавить пользователя"; $a->strings["select all"] = "выбрать все"; $a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения"; $a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления"; $a->strings["Request date"] = "Запрос даты"; -$a->strings["Email"] = "Эл. почта"; $a->strings["No registrations."] = "Нет регистраций."; +$a->strings["Note from the user"] = ""; $a->strings["Deny"] = "Отклонить"; +$a->strings["Block"] = "Заблокировать"; +$a->strings["Unblock"] = "Разблокировать"; $a->strings["Site admin"] = "Админ сайта"; $a->strings["Account expired"] = "Аккаунт просрочен"; $a->strings["New User"] = "Новый пользователь"; -$a->strings["Register date"] = "Дата регистрации"; -$a->strings["Last login"] = "Последний вход"; -$a->strings["Last item"] = "Последний пункт"; $a->strings["Deleted since"] = "Удалён с"; -$a->strings["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?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; $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?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; $a->strings["Name of the new user."] = "Имя нового пользователя."; @@ -699,6 +1767,8 @@ $a->strings["No themes found on the system. They should be paced in %1\$s"] = "" $a->strings["[Experimental]"] = "[экспериментально]"; $a->strings["[Unsupported]"] = "[Неподдерживаемое]"; $a->strings["Log settings updated."] = "Настройки журнала обновлены."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; $a->strings["Clear"] = "Очистить"; $a->strings["Enable Debugging"] = "Включить отладку"; $a->strings["Log file"] = "Лог-файл"; @@ -706,402 +1776,106 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Уровень лога"; $a->strings["PHP logging"] = "PHP логирование"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = "Выкл."; -$a->strings["On"] = "Вкл."; $a->strings["Lock feature %s"] = ""; $a->strings["Manage Additional Features"] = ""; -$a->strings["Search Results For: %s"] = ""; -$a->strings["Remove term"] = "Удалить элемент"; -$a->strings["Saved Searches"] = "запомненные поиски"; -$a->strings["add"] = "добавить"; -$a->strings["Commented Order"] = "Последние комментарии"; -$a->strings["Sort by Comment Date"] = "Сортировать по дате комментария"; -$a->strings["Posted Order"] = "Лента записей"; -$a->strings["Sort by Post Date"] = "Сортировать по дате отправки"; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = "Новый"; -$a->strings["Activity Stream - by date"] = "Лента активности - по дате"; -$a->strings["Shared Links"] = "Ссылки, которыми поделились"; -$a->strings["Interesting Links"] = "Интересные ссылки"; -$a->strings["Starred"] = "Помеченный"; -$a->strings["Favourite Posts"] = "Избранные посты"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.", - 1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.", - 2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.", - 3 => "Внимание: Эта группа содержит %s участников с незащищенной сети.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования."; -$a->strings["No such group"] = "Нет такой группы"; -$a->strings["Group: %s"] = "Группа: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования."; -$a->strings["Invalid contact."] = "Недопустимый контакт."; -$a->strings["No friends to display."] = "Нет друзей."; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения."; -$a->strings["Sun"] = "Вс"; -$a->strings["Mon"] = "Пн"; -$a->strings["Tue"] = "Вт"; -$a->strings["Wed"] = "Ср"; -$a->strings["Thu"] = "Чт"; -$a->strings["Fri"] = "Пт"; -$a->strings["Sat"] = "Сб"; -$a->strings["Sunday"] = "Воскресенье"; -$a->strings["Monday"] = "Понедельник"; -$a->strings["Tuesday"] = "Вторник"; -$a->strings["Wednesday"] = "Среда"; -$a->strings["Thursday"] = "Четверг"; -$a->strings["Friday"] = "Пятница"; -$a->strings["Saturday"] = "Суббота"; -$a->strings["Jan"] = "Янв"; -$a->strings["Feb"] = "Фев"; -$a->strings["Mar"] = "Мрт"; -$a->strings["Apr"] = "Апр"; -$a->strings["May"] = "Май"; -$a->strings["Jun"] = "Июн"; -$a->strings["Jul"] = "Июл"; -$a->strings["Aug"] = "Авг"; -$a->strings["Sept"] = "Сен"; -$a->strings["Oct"] = "Окт"; -$a->strings["Nov"] = "Нбр"; -$a->strings["Dec"] = "Дек"; -$a->strings["January"] = "Январь"; -$a->strings["February"] = "Февраль"; -$a->strings["March"] = "Март"; -$a->strings["April"] = "Апрель"; -$a->strings["June"] = "Июнь"; -$a->strings["July"] = "Июль"; -$a->strings["August"] = "Август"; -$a->strings["September"] = "Сентябрь"; -$a->strings["October"] = "Октябрь"; -$a->strings["November"] = "Ноябрь"; -$a->strings["December"] = "Декабрь"; -$a->strings["today"] = "сегодня"; -$a->strings["month"] = "мес."; -$a->strings["week"] = "неделя"; -$a->strings["day"] = "день"; -$a->strings["l, F j"] = "l, j F"; -$a->strings["Edit event"] = "Редактировать мероприятие"; -$a->strings["link to source"] = "ссылка на сообщение"; -$a->strings["Events"] = "Мероприятия"; -$a->strings["Create New Event"] = "Создать новое мероприятие"; -$a->strings["Previous"] = "Назад"; -$a->strings["Next"] = "Далее"; -$a->strings["Event details"] = "Сведения о мероприятии"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Начало мероприятия:"; -$a->strings["Required"] = "Требуется"; -$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны"; -$a->strings["Event Finishes:"] = "Окончание мероприятия:"; -$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса"; -$a->strings["Description:"] = "Описание:"; -$a->strings["Title:"] = "Титул:"; -$a->strings["Share this event"] = "Поделитесь этим мероприятием"; -$a->strings["Preview"] = "Предварительный просмотр"; -$a->strings["Credits"] = ""; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; -$a->strings["Select"] = "Выберите"; -$a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]"; -$a->strings["%s from %s"] = "%s с %s"; -$a->strings["View in context"] = "Смотреть в контексте"; -$a->strings["%d comment"] = array( - 0 => "%d комментарий", - 1 => "%d комментариев", - 2 => "%d комментариев", - 3 => "%d комментариев", -); -$a->strings["comment"] = array( +$a->strings["%d contact edited."] = array( 0 => "", 1 => "", - 2 => "комментарий", - 3 => "комментарий", + 2 => "", + 3 => "", ); -$a->strings["show more"] = "показать больше"; -$a->strings["Private Message"] = "Личное сообщение"; -$a->strings["I like this (toggle)"] = "Нравится"; -$a->strings["like"] = "нравится"; -$a->strings["I don't like this (toggle)"] = "Не нравится"; -$a->strings["dislike"] = "не нравитса"; -$a->strings["Share this"] = "Поделитесь этим"; -$a->strings["share"] = "делиться"; -$a->strings["This is you"] = "Это вы"; -$a->strings["Comment"] = "Оставить комментарий"; -$a->strings["Bold"] = "Жирный"; -$a->strings["Italic"] = "Kурсивный"; -$a->strings["Underline"] = "Подчеркнутый"; -$a->strings["Quote"] = "Цитата"; -$a->strings["Code"] = "Код"; -$a->strings["Image"] = "Изображение / Фото"; -$a->strings["Link"] = "Ссылка"; -$a->strings["Video"] = "Видео"; -$a->strings["Edit"] = "Редактировать"; -$a->strings["add star"] = "пометить"; -$a->strings["remove star"] = "убрать метку"; -$a->strings["toggle star status"] = "переключить статус"; -$a->strings["starred"] = "помечено"; -$a->strings["add tag"] = "добавить ключевое слово (таг)"; -$a->strings["save to folder"] = "сохранить в папке"; -$a->strings["to"] = "к"; -$a->strings["Wall-to-Wall"] = "Стена-на-Стену"; -$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:"; -$a->strings["Remove My Account"] = "Удалить мой аккаунт"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."; -$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:"; -$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ"; -$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных."; -$a->strings["Could not create table."] = "Не удалось создать таблицу."; -$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\"."; -$a->strings["Database already in use."] = ""; -$a->strings["System check"] = "Проверить систему"; -$a->strings["Check again"] = "Проверить еще раз"; -$a->strings["Database connection"] = "Подключение к базе данных"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."; -$a->strings["Database Server Name"] = "Имя сервера базы данных"; -$a->strings["Database Login Name"] = "Логин базы данных"; -$a->strings["Database Login Password"] = "Пароль базы данных"; -$a->strings["Database Name"] = "Имя базы данных"; -$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."; -$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; -$a->strings["Site settings"] = "Настройки сайта"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = "Найденная PHP версия: "; -$a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP."; -$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей"; -$a->strings["libCurl PHP module"] = "libCurl PHP модуль"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; -$a->strings["mysqli PHP module"] = "mysqli PHP модуль"; -$a->strings["mb_string PHP module"] = "mb_string PHP модуль"; -$a->strings["mcrypt PHP module"] = ""; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."; -$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен."; -$a->strings["Error: mcrypt PHP module required but not installed."] = ""; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; -$a->strings["mcrypt_create_iv() function"] = ""; -$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."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."; -$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."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."; -$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."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."; -$a->strings["Url rewrite is working"] = "Url rewrite работает"; -$a->strings["ImageMagick PHP extension is installed"] = ""; -$a->strings["ImageMagick supports GIF"] = ""; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."; -$a->strings["

                                              What next

                                              "] = "

                                              Что далее

                                              "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."; -$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение."; -$a->strings["No recipient."] = "Без адресата."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей."; -$a->strings["Help:"] = "Помощь:"; -$a->strings["Help"] = "Помощь"; -$a->strings["Not Found"] = "Не найдено"; -$a->strings["Page not found."] = "Страница не найдена."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s"; -$a->strings["Welcome to %s"] = "Добро пожаловать на %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 %s"] = ""; -$a->strings["File upload failed."] = "Загрузка файла не удалась."; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."; -$a->strings["is interested in:"] = "интересуется:"; -$a->strings["Profile Match"] = "Похожие профили"; -$a->strings["link"] = "ссылка"; -$a->strings["Not available."] = "Недоступно."; -$a->strings["Community"] = "Сообщество"; -$a->strings["No results."] = "Нет результатов."; -$a->strings["everybody"] = "каждый"; -$a->strings["Display"] = "Внешний вид"; -$a->strings["Social Networks"] = "Социальные сети"; -$a->strings["Delegations"] = "Делегирование"; -$a->strings["Connected apps"] = "Подключенные приложения"; -$a->strings["Export personal data"] = "Экспорт личных данных"; -$a->strings["Remove account"] = "Удалить аккаунт"; -$a->strings["Missing some important data!"] = "Не хватает важных данных!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."; -$a->strings["Email settings updated."] = "Настройки эл. почты обновлены."; -$a->strings["Features updated"] = "Настройки обновлены"; -$a->strings["Relocate message has been send to your contacts"] = "Перемещённое сообщение было отправлено списку контактов"; -$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен."; -$a->strings["Wrong password."] = "Неверный пароль."; -$a->strings["Password changed."] = "Пароль изменен."; -$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."; -$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя."; -$a->strings[" Name too short."] = " Имя слишком короткое."; -$a->strings["Wrong Password"] = "Неверный пароль."; -$a->strings[" Not valid email."] = " Неверный e-mail."; -$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию."; -$a->strings["Settings updated."] = "Настройки обновлены."; -$a->strings["Add application"] = "Добавить приложения"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Перенаправление"; -$a->strings["Icon url"] = "URL символа"; -$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение."; -$a->strings["Connected Apps"] = "Подключенные приложения"; -$a->strings["Client key starts with"] = "Ключ клиента начинается с"; -$a->strings["No name"] = "Нет имени"; -$a->strings["Remove authorization"] = "Удалить авторизацию"; -$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина"; -$a->strings["Plugin Settings"] = "Настройки плагина"; -$a->strings["Additional Features"] = "Дополнительные возможности"; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$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."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "подключено"; -$a->strings["disabled"] = "отключено"; -$a->strings["GNU Social (OStatus)"] = ""; -$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте."; -$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."; -$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:"; -$a->strings["IMAP server name:"] = "Имя IMAP сервера:"; -$a->strings["IMAP port:"] = "Порт IMAP:"; -$a->strings["Security:"] = "Безопасность:"; -$a->strings["None"] = "Ничего"; -$a->strings["Email login name:"] = "Логин эл. почты:"; -$a->strings["Email password:"] = "Пароль эл. почты:"; -$a->strings["Reply-to address:"] = "Адрес для ответа:"; -$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:"; -$a->strings["Action after import:"] = "Действие после импорта:"; -$a->strings["Mark as seen"] = "Отметить, как прочитанное"; -$a->strings["Move to folder"] = "Переместить в папку"; -$a->strings["Move to folder:"] = "Переместить в папку:"; -$a->strings["Display Settings"] = "Параметры дисплея"; -$a->strings["Display Theme:"] = "Показать тему:"; -$a->strings["Mobile Theme:"] = "Мобильная тема:"; -$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; -$a->strings["Number of items to display per page:"] = "Количество элементов, отображаемых на одной странице:"; -$a->strings["Maximum of 100 items"] = "Максимум 100 элементов"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:"; -$a->strings["Don't show emoticons"] = "не показывать emoticons"; -$a->strings["Calendar"] = ""; -$a->strings["Beginning of week:"] = ""; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = "Бесконечная прокрутка"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["Theme settings"] = "Настройки темы"; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = "Стандартная страница аккаунта"; -$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"; -$a->strings["Community Forum/Celebrity Account"] = "Аккаунт сообщества Форум/Знаменитость"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников"; -$a->strings["Automatic Friend Page"] = "\"Автоматический друг\" страница"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"; -$a->strings["Private Forum [Experimental]"] = "Личный форум [экспериментально]"; -$a->strings["Private forum - approved members only"] = "Приватный форум - разрешено только участникам"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"; -$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"; -$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?"; -$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?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"; -$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?"; -$a->strings["Permit unknown people to send you private mail?"] = "Разрешить незнакомым людям отправлять вам личные сообщения?"; -$a->strings["Profile is not published."] = "Профиль не публикуется."; -$a->strings["Your Identity Address is '%s' or '%s'."] = ""; -$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"; -$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия"; -$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия"; -$a->strings["Expire posts:"] = "Срок хранения сообщений:"; -$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:"; -$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:"; -$a->strings["Expire photos:"] = "Срок хранения фотографий:"; -$a->strings["Only expire posts by others:"] = "Только устаревшие посты других:"; -$a->strings["Account Settings"] = "Настройки аккаунта"; -$a->strings["Password Settings"] = "Смена пароля"; -$a->strings["New Password:"] = "Новый пароль:"; -$a->strings["Confirm:"] = "Подтвердите:"; -$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется"; -$a->strings["Current Password:"] = "Текущий пароль:"; -$a->strings["Your current password to confirm the changes"] = "Ваш текущий пароль, для подтверждения изменений"; -$a->strings["Password:"] = "Пароль:"; -$a->strings["Basic Settings"] = "Основные параметры"; -$a->strings["Full Name:"] = "Полное имя:"; -$a->strings["Email Address:"] = "Адрес электронной почты:"; -$a->strings["Your Timezone:"] = "Ваш часовой пояс:"; -$a->strings["Your Language:"] = ""; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; -$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:"; -$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:"; -$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности"; -$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:"; -$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)"; -$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию"; -$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)"; -$a->strings["Show to Groups"] = "Показать в группах"; -$a->strings["Show to Contacts"] = "Показывать контактам"; -$a->strings["Default Private Post"] = "Личное сообщение по умолчанию"; -$a->strings["Default Public Post"] = "Публичное сообщение по умолчанию"; -$a->strings["Default Permissions for New Posts"] = "Права для новых записей по умолчанию"; -$a->strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей в день:"; -$a->strings["Notification Settings"] = "Настройка уведомлений"; -$a->strings["By default post a status message when:"] = "Отправить состояние о статусе по умолчанию, если:"; -$a->strings["accepting a friend request"] = "принятие запроса на добавление в друзья"; -$a->strings["joining a forum/community"] = "вступление в сообщество/форум"; -$a->strings["making an interesting profile change"] = "сделать изменения в настройках интересов профиля"; -$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:"; -$a->strings["You receive an introduction"] = "Вы получили запрос"; -$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены"; -$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля"; -$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий"; -$a->strings["You receive a private message"] = "Вы получаете личное сообщение"; -$a->strings["You receive a friend suggestion"] = "Вы полулили предложение о добавлении в друзья"; -$a->strings["You are tagged in a post"] = "Вы отмечены в посте"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$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["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; +$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль."; +$a->strings["Contact updated."] = "Контакт обновлен."; +$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта."; +$a->strings["Contact has been blocked"] = "Контакт заблокирован"; +$a->strings["Contact has been unblocked"] = "Контакт разблокирован"; +$a->strings["Contact has been ignored"] = "Контакт проигнорирован"; +$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование"; +$a->strings["Contact has been archived"] = "Контакт заархивирован"; +$a->strings["Contact has been unarchived"] = "Контакт разархивирован"; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Вы действительно хотите удалить этот контакт?"; +$a->strings["Contact has been removed."] = "Контакт удален."; +$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s"; +$a->strings["You are sharing with %s"] = "Вы делитесь с %s"; +$a->strings["%s is sharing with you"] = "%s делитса с Вами"; +$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта."; +$a->strings["(Update was successful)"] = "(Обновление было успешно)"; +$a->strings["(Update was not successful)"] = "(Обновление не удалось)"; +$a->strings["Suggest friends"] = "Предложить друзей"; +$a->strings["Network type: %s"] = "Сеть: %s"; +$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Видимость профиля"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."; +$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки"; +$a->strings["Edit contact notes"] = "Редактировать заметки контакта"; +$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт"; +$a->strings["Ignore contact"] = "Игнорировать контакт"; +$a->strings["Repair URL settings"] = "Восстановить настройки URL"; +$a->strings["View conversations"] = "Просмотр бесед"; +$a->strings["Last update:"] = "Последнее обновление: "; +$a->strings["Update public posts"] = "Обновить публичные сообщения"; +$a->strings["Update now"] = "Обновить сейчас"; +$a->strings["Unignore"] = "Не игнорировать"; +$a->strings["Currently blocked"] = "В настоящее время заблокирован"; +$a->strings["Currently ignored"] = "В настоящее время игнорируется"; +$a->strings["Currently archived"] = "В данный момент архивирован"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Ответы/лайки ваших публичных сообщений будут видимы."; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Предложения"; +$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого"; +$a->strings["Show all contacts"] = "Показать все контакты"; +$a->strings["Unblocked"] = "Не блокирован"; +$a->strings["Only show unblocked contacts"] = "Показать только не блокированные контакты"; +$a->strings["Blocked"] = "Заблокирован"; +$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты"; +$a->strings["Ignored"] = "Игнорирован"; +$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты"; +$a->strings["Archived"] = "Архивированные"; +$a->strings["Only show archived contacts"] = "Показывать только архивные контакты"; +$a->strings["Hidden"] = "Скрытые"; +$a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты"; +$a->strings["Search your contacts"] = "Поиск ваших контактов"; +$a->strings["Archive"] = "Архивировать"; +$a->strings["Unarchive"] = "Разархивировать"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Показать все контакты"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта"; +$a->strings["Mutual Friendship"] = "Взаимная дружба"; +$a->strings["is a fan of yours"] = "является вашим поклонником"; +$a->strings["you are a fan of"] = "Вы - поклонник"; +$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)"; +$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования"; +$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)"; +$a->strings["Delete contact"] = "Удалить контакт"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."; +$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят."; +$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: "; +$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено."; +$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: "; +$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз."; +$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван."; +$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта."; +$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."; +$a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте."; +$a->strings["Site public key not available in contact record for URL %s."] = "Публичный ключ недоступен в записи о контакте по ссылке %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."; +$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе."; +$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s"; $a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят."; $a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле."; $a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."; @@ -1124,7 +1898,6 @@ $a->strings["This account has not been configured for email. Request failed."] = $a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь."; $a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s."; $a->strings["Invalid profile URL."] = "Неверный URL профиля."; -$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля."; $a->strings["Your introduction has been sent."] = "Ваш запрос отправлен."; $a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; $a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем."; @@ -1137,286 +1910,173 @@ $a->strings["Please enter your 'Identity Address' from one of the following supp $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."] = ""; $a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Friendica"] = "Friendica"; +$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:"; +$a->strings["Does %s know you?"] = "%s знает вас?"; +$a->strings["Add a personal note:"] = "Добавить личную заметку:"; $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."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."; -$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; -$a->strings["Registration successful."] = ""; -$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; -$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."; -$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):"; -$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?"; -$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению."; -$a->strings["Your invitation ID: "] = "ID вашего приглашения:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; -$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: "; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае 'nickname@\$sitename'."; -$a->strings["Choose a nickname: "] = "Выберите псевдоним: "; -$a->strings["Register"] = "Регистрация"; -$a->strings["Import"] = "Импорт"; -$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica"; -$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; -$a->strings["Only logged in users are permitted to perform a search."] = ""; -$a->strings["Too Many Requests"] = ""; -$a->strings["Only one search per minute is permitted for not logged in users."] = ""; -$a->strings["Search"] = "Поиск"; -$a->strings["Items tagged with: %s"] = ""; -$a->strings["Search results for: %s"] = ""; -$a->strings["Status:"] = "Статус:"; -$a->strings["Homepage:"] = "Домашняя страничка:"; -$a->strings["Global Directory"] = "Глобальный каталог"; -$a->strings["Find on this site"] = "Найти на этом сайте"; -$a->strings["Finding:"] = ""; -$a->strings["Site Directory"] = "Каталог сайта"; -$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; -$a->strings["No potential page delegates located."] = ""; -$a->strings["Delegate Page Management"] = "Делегировать управление страницей"; -$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."] = "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."; -$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы"; -$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы"; -$a->strings["Potential Delegates"] = "Возможные доверенные лица"; -$a->strings["Add"] = "Добавить"; -$a->strings["No entries."] = "Нет записей."; -$a->strings["No contacts in common."] = "Нет общих контактов."; -$a->strings["Export 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."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."; -$a->strings["Export all"] = "Экспорт всего"; -$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)"] = "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = "Настроение"; -$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям"; -$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; -$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть"; -$a->strings["Friend Suggestions"] = "Предложения друзей"; -$a->strings["Profile deleted."] = "Профиль удален."; -$a->strings["Profile-"] = "Профиль-"; -$a->strings["New profile created."] = "Новый профиль создан."; -$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования."; -$a->strings["Profile Name is required."] = "Необходимо имя профиля."; -$a->strings["Marital Status"] = "Семейное положение"; -$a->strings["Romantic Partner"] = "Любимый человек"; -$a->strings["Likes"] = "Лайки"; -$a->strings["Dislikes"] = "Дизлайк"; -$a->strings["Work/Employment"] = "Работа/Занятость"; -$a->strings["Religion"] = "Религия"; -$a->strings["Political Views"] = "Политические взгляды"; -$a->strings["Gender"] = "Пол"; -$a->strings["Sexual Preference"] = "Сексуальные предпочтения"; -$a->strings["Homepage"] = "Домашняя страница"; -$a->strings["Interests"] = "Хобби / Интересы"; -$a->strings["Address"] = "Адрес"; -$a->strings["Location"] = "Местонахождение"; -$a->strings["Profile updated."] = "Профиль обновлен."; -$a->strings[" and "] = "и"; -$a->strings["public profile"] = "публичный профиль"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменились с %2\$s на “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Посетить профиль %1\$s [%2\$s]"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?"; -$a->strings["Show more profile fields:"] = ""; -$a->strings["Edit Profile Details"] = "Редактировать детали профиля"; -$a->strings["Change Profile Photo"] = "Изменить фото профиля"; -$a->strings["View this profile"] = "Просмотреть этот профиль"; -$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки"; -$a->strings["Clone this profile"] = "Клонировать этот профиль"; -$a->strings["Delete this profile"] = "Удалить этот профиль"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Имя профиля:"; -$a->strings["Your Full Name:"] = "Ваше полное имя:"; -$a->strings["Title/Description:"] = "Заголовок / Описание:"; -$a->strings["Your Gender:"] = "Ваш пол:"; -$a->strings["Birthday :"] = ""; -$a->strings["Street Address:"] = "Адрес:"; -$a->strings["Locality/City:"] = "Город / Населенный пункт:"; -$a->strings["Postal/Zip Code:"] = "Почтовый индекс:"; -$a->strings["Country:"] = "Страна:"; -$a->strings["Region/State:"] = "Район / Область:"; -$a->strings[" Marital Status:"] = " Семейное положение:"; -$a->strings["Who: (if applicable)"] = "Кто: (если требуется)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com"; -$a->strings["Since [date]:"] = "С какого времени [дата]:"; -$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:"; -$a->strings["Homepage URL:"] = "Адрес домашней странички:"; -$a->strings["Hometown:"] = "Родной город:"; -$a->strings["Political Views:"] = "Политические взгляды:"; -$a->strings["Religious Views:"] = "Религиозные взгляды:"; -$a->strings["Public Keywords:"] = "Общественные ключевые слова:"; -$a->strings["Private Keywords:"] = "Личные ключевые слова:"; -$a->strings["Likes:"] = "Нравится:"; -$a->strings["Dislikes:"] = "Не нравится:"; -$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)"; -$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ..."; -$a->strings["Hobbies/Interests"] = "Хобби / Интересы"; -$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети"; -$a->strings["Musical interests"] = "Музыкальные интересы"; -$a->strings["Books, literature"] = "Книги, литература"; -$a->strings["Television"] = "Телевидение"; -$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; -$a->strings["Love/romance"] = "Любовь / романтика"; -$a->strings["Work/employment"] = "Работа / занятость"; -$a->strings["School/education"] = "Школа / образование"; -$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Это ваш публичный профиль.
                                              Он может быть виден каждому через Интернет."; -$a->strings["Age: "] = "Возраст: "; -$a->strings["Edit/Manage Profiles"] = "Редактировать профиль"; -$a->strings["Change profile photo"] = "Изменить фото профиля"; -$a->strings["Create New Profile"] = "Создать новый профиль"; -$a->strings["Profile Image"] = "Фото профиля"; -$a->strings["visible to everybody"] = "видимый всем"; -$a->strings["Edit visibility"] = "Редактировать видимость"; -$a->strings["Item not found"] = "Элемент не найден"; -$a->strings["Edit post"] = "Редактировать сообщение"; -$a->strings["upload photo"] = "загрузить фото"; -$a->strings["Attach file"] = "Прикрепить файл"; -$a->strings["attach file"] = "приложить файл"; -$a->strings["web link"] = "веб-ссылка"; -$a->strings["Insert video link"] = "Вставить ссылку видео"; -$a->strings["video link"] = "видео-ссылка"; -$a->strings["Insert audio link"] = "Вставить ссылку аудио"; -$a->strings["audio link"] = "аудио-ссылка"; -$a->strings["Set your location"] = "Задать ваше местоположение"; -$a->strings["set location"] = "установить местонахождение"; -$a->strings["Clear browser location"] = "Очистить местонахождение браузера"; -$a->strings["clear location"] = "убрать местонахождение"; -$a->strings["Permission settings"] = "Настройки разрешений"; -$a->strings["CC: email addresses"] = "Копии на email адреса"; -$a->strings["Public post"] = "Публичное сообщение"; -$a->strings["Set title"] = "Установить заголовок"; -$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Это Friendica, версия"; -$a->strings["running at web location"] = "работает на веб-узле"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Пожалуйста, посетите сайт Friendica.com, чтобы узнать больше о проекте Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите"; -$a->strings["the bugtracker at github"] = ""; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"; -$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:"; -$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений"; -$a->strings["Authorize application connection"] = "Разрешить связь с приложением"; -$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:"; -$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"; -$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна."; -$a->strings["Visible to:"] = "Кто может видеть:"; -$a->strings["Personal Notes"] = "Личные заметки"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "История общения"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."; -$a->strings["UTC time: %s"] = "UTC время: %s"; -$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s"; -$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s"; -$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = "Получатель"; -$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; -$a->strings["Make this post private"] = "Сделать эту запись личной"; -$a->strings["Resubscribing to OStatus contacts"] = ""; -$a->strings["Error"] = "Ошибка"; -$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; -$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; -$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."; -$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась."; -$a->strings["%d message sent."] = array( - 0 => "%d сообщение отправлено.", - 1 => "%d сообщений отправлено.", - 2 => "%d сообщений отправлено.", - 3 => "%d сообщений отправлено.", -); -$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; -$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."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"; -$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, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."; -$a->strings["Send invitations"] = "Отправить приглашения"; -$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"; -$a->strings["Photo Albums"] = "Фотоальбомы"; -$a->strings["Recent Photos"] = "Последние фото"; -$a->strings["Upload New Photos"] = "Загрузить новые фото"; -$a->strings["Contact information unavailable"] = "Информация о контакте недоступна"; -$a->strings["Album not found."] = "Альбом не найден."; -$a->strings["Delete Album"] = "Удалить альбом"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?"; -$a->strings["Delete Photo"] = "Удалить фото"; -$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s"; -$a->strings["a photo"] = "фото"; -$a->strings["Image file is empty."] = "Файл изображения пуст."; -$a->strings["No photos selected"] = "Не выбрано фото."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."; -$a->strings["Upload Photos"] = "Загрузить фото"; -$a->strings["New album name: "] = "Название нового альбома: "; -$a->strings["or existing album name: "] = "или название существующего альбома: "; -$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки"; -$a->strings["Permissions"] = "Разрешения"; -$a->strings["Private Photo"] = "Личное фото"; -$a->strings["Public Photo"] = "Публичное фото"; -$a->strings["Edit Album"] = "Редактировать альбом"; -$a->strings["Show Newest First"] = "Показать новые первыми"; -$a->strings["Show Oldest First"] = "Показать старые первыми"; -$a->strings["View Photo"] = "Просмотр фото"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен."; -$a->strings["Photo not available"] = "Фото недоступно"; -$a->strings["View photo"] = "Просмотр фото"; -$a->strings["Edit photo"] = "Редактировать фото"; -$a->strings["Use as profile photo"] = "Использовать как фото профиля"; -$a->strings["View Full Size"] = "Просмотреть полный размер"; -$a->strings["Tags: "] = "Ключевые слова: "; -$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]"; -$a->strings["New album name"] = "Название нового альбома"; -$a->strings["Caption"] = "Подпись"; -$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)"; -$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)"; -$a->strings["Private photo"] = "Личное фото"; -$a->strings["Public photo"] = "Публичное фото"; -$a->strings["Share"] = "Поделиться"; -$a->strings["Attending"] = array( +$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:"; +$a->strings["Submit Request"] = "Отправить запрос"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Контакт добавлен"; +$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ"; +$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных."; +$a->strings["Could not create table."] = "Не удалось создать таблицу."; +$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Проверить систему"; +$a->strings["Check again"] = "Проверить еще раз"; +$a->strings["Database connection"] = "Подключение к базе данных"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."; +$a->strings["Database Server Name"] = "Имя сервера базы данных"; +$a->strings["Database Login Name"] = "Логин базы данных"; +$a->strings["Database Login Password"] = "Пароль базы данных"; +$a->strings["Database Name"] = "Имя базы данных"; +$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."; +$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; +$a->strings["Site settings"] = "Настройки сайта"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = "Найденная PHP версия: "; +$a->strings["PHP cli binary"] = "PHP cli binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP."; +$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей"; +$a->strings["libCurl PHP module"] = "libCurl PHP модуль"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; +$a->strings["mysqli PHP module"] = "mysqli PHP модуль"; +$a->strings["mb_string PHP module"] = "mb_string PHP модуль"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."; +$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."; +$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."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."; +$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."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."; +$a->strings["Url rewrite is working"] = "Url rewrite работает"; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."; +$a->strings["

                                              What next

                                              "] = "

                                              Что далее

                                              "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."; +$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост."; +$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; +$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica."; +$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."; +$a->strings["%s posted an update."] = "%s отправил/а/ обновление."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( 0 => "", 1 => "", 2 => "", 3 => "", ); -$a->strings["Not attending"] = ""; -$a->strings["Might attend"] = ""; -$a->strings["Map"] = "Карта"; -$a->strings["Not Extended"] = ""; -$a->strings["Account approved."] = "Аккаунт утвержден."; -$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s"; -$a->strings["Please login."] = "Пожалуйста, войдите с паролем."; -$a->strings["Move account"] = "Удалить аккаунт"; -$a->strings["You can import an account from another Friendica 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."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; -$a->strings["Account file"] = "Файл аккаунта"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""; -$a->strings["Item not available."] = "Пункт не доступен."; -$a->strings["Item was not found."] = "Пункт не был найден."; +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования."; +$a->strings["Invalid contact."] = "Недопустимый контакт."; +$a->strings["Commented Order"] = "Последние комментарии"; +$a->strings["Sort by Comment Date"] = "Сортировать по дате комментария"; +$a->strings["Posted Order"] = "Лента записей"; +$a->strings["Sort by Post Date"] = "Сортировать по дате отправки"; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = "Новый"; +$a->strings["Activity Stream - by date"] = "Лента активности - по дате"; +$a->strings["Shared Links"] = "Ссылки, которыми поделились"; +$a->strings["Interesting Links"] = "Интересные ссылки"; +$a->strings["Starred"] = "Помеченный"; +$a->strings["Favourite Posts"] = "Избранные посты"; +$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; +$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение"; +$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; +$a->strings["No contacts."] = "Нет контактов."; +$a->strings["via"] = "через"; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; +$a->strings["Alignment"] = "Выравнивание"; +$a->strings["Left"] = ""; +$a->strings["Center"] = "Центр"; +$a->strings["Color scheme"] = "Цветовая схема"; +$a->strings["Posts font size"] = "Размер шрифта постов"; +$a->strings["Textareas font size"] = "Размер шрифта текстовых полей"; +$a->strings["Community Profiles"] = "Профили сообщества"; +$a->strings["Last users"] = "Последние пользователи"; +$a->strings["Find Friends"] = "Найти друзей"; +$a->strings["Local Directory"] = "Локальный каталог"; +$a->strings["Quick Start"] = "Быстрый запуск"; +$a->strings["Connect Services"] = "Подключить службы"; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Community Pages"] = "Страницы сообщества"; +$a->strings["Help or @NewHere ?"] = "Помощь"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; $a->strings["Delete this item?"] = "Удалить этот элемент?"; $a->strings["show fewer"] = "показать меньше"; $a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок."; $a->strings["Create a New Account"] = "Создать новый аккаунт"; -$a->strings["Logout"] = "Выход"; -$a->strings["Nickname or Email address: "] = "Ник или адрес электронной почты: "; $a->strings["Password: "] = "Пароль: "; $a->strings["Remember me"] = "Запомнить"; $a->strings["Or login using OpenID: "] = "Или зайти с OpenID: "; @@ -1425,581 +2085,4 @@ $a->strings["Website Terms of Service"] = "Правила сайта"; $a->strings["terms of service"] = "правила"; $a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера"; $a->strings["privacy policy"] = "политика конфиденциальности"; -$a->strings["This entry was edited"] = "Эта запись была отредактирована"; -$a->strings["I will attend"] = ""; -$a->strings["I will not attend"] = ""; -$a->strings["I might attend"] = ""; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["Categories:"] = "Категории:"; -$a->strings["Filed under:"] = "В рубрике:"; -$a->strings["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."] = "Обнаружены ошибки при создании таблиц базы данных."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Выход из системы."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."; -$a->strings["The error message was:"] = "Сообщение об ошибке было:"; -$a->strings["Add New Contact"] = "Добавить контакт"; -$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d приглашение доступно", - 1 => "%d приглашений доступно", - 2 => "%d приглашений доступно", - 3 => "%d приглашений доступно", -); -$a->strings["Find People"] = "Поиск людей"; -$a->strings["Enter name or interest"] = "Введите имя или интерес"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка"; -$a->strings["Similar Interests"] = "Похожие интересы"; -$a->strings["Random Profile"] = "Случайный профиль"; -$a->strings["Invite Friends"] = "Пригласить друзей"; -$a->strings["Networks"] = "Сети"; -$a->strings["All Networks"] = "Все сети"; -$a->strings["Saved Folders"] = "Сохранённые папки"; -$a->strings["Everything"] = "Всё"; -$a->strings["Categories"] = "Категории"; -$a->strings["%d contact in common"] = array( - 0 => "%d Контакт", - 1 => "%d Контактов", - 2 => "%d Контактов", - 3 => "%d Контактов", -); -$a->strings["General Features"] = "Основные возможности"; -$a->strings["Multiple Profiles"] = "Несколько профилей"; -$a->strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; -$a->strings["Photo Location"] = ""; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$a->strings["Post Composition Features"] = "Составление сообщений"; -$a->strings["Richtext Editor"] = "Редактор RTF"; -$a->strings["Enable richtext editor"] = "Включить редактор RTF"; -$a->strings["Post Preview"] = "Предварительный просмотр"; -$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"] = "Виджет боковой панели \"Сеть\""; -$a->strings["Search by Date"] = "Поиск по датам"; -$a->strings["Ability to select posts by date ranges"] = "Возможность выбора постов по диапазону дат"; -$a->strings["List Forums"] = ""; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$a->strings["Group Filter"] = "Фильтр групп"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Включить виджет для отображения сообщений сети только от выбранной группы"; -$a->strings["Network Filter"] = "Фильтр сети"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Включить виджет для отображения сообщений сети только от выбранной сети"; -$a->strings["Save search terms for re-use"] = "Сохранить условия поиска для повторного использования"; -$a->strings["Network Tabs"] = "Сетевые вкладки"; -$a->strings["Network Personal Tab"] = "Персональные сетевые вкладки"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Включить вкладку для отображения только сообщений сети, с которой вы взаимодействовали"; -$a->strings["Network New Tab"] = "Новая вкладка сеть"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)"; -$a->strings["Network Shared Links Tab"] = "Вкладка shared ссылок сети"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Включить вкладку для отображения только сообщений сети со ссылками на них"; -$a->strings["Post/Comment Tools"] = "Инструменты пост/комментарий"; -$a->strings["Multiple Deletion"] = "Множественное удаление"; -$a->strings["Select and delete multiple posts/comments at once"] = "Выбрать и удалить несколько постов/комментариев одновременно."; -$a->strings["Edit Sent Posts"] = "Редактировать отправленные посты"; -$a->strings["Edit and correct posts and comments after sending"] = "Редактировать и править посты и комментарии после отправления"; -$a->strings["Tagging"] = "Отмеченное"; -$a->strings["Ability to tag existing posts"] = "Возможность отмечать существующие посты"; -$a->strings["Post Categories"] = "Категории постов"; -$a->strings["Add categories to your posts"] = "Добавить категории вашего поста"; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = "Посты дизлайк"; -$a->strings["Ability to dislike posts/comments"] = "Возможность дизлайка постов/комментариев"; -$a->strings["Star Posts"] = "Популярные посты"; -$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["Advanced Profile Settings"] = "Расширенные настройки профиля"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$a->strings["Connect URL missing."] = "Connect-URL отсутствует."; -$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы."; -$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."] = "Нет URL браузера, который соответствует этому адресу."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."; -$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"] = "следует"; -$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."] = "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."; -$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов"; -$a->strings["Everybody"] = "Каждый"; -$a->strings["edit"] = "редактировать"; -$a->strings["Edit groups"] = ""; -$a->strings["Edit group"] = "Редактировать группу"; -$a->strings["Create a new group"] = "Создать новую группу"; -$a->strings["Contacts not in any group"] = "Контакты не состоят в группе"; -$a->strings["Miscellaneous"] = "Разное"; -$a->strings["YYYY-MM-DD or MM-DD"] = ""; -$a->strings["never"] = "никогда"; -$a->strings["less than a second ago"] = "менее сек. назад"; -$a->strings["year"] = "год"; -$a->strings["years"] = "лет"; -$a->strings["months"] = "мес."; -$a->strings["weeks"] = "недель"; -$a->strings["days"] = "дней"; -$a->strings["hour"] = "час"; -$a->strings["hours"] = "час."; -$a->strings["minute"] = "минута"; -$a->strings["minutes"] = "мин."; -$a->strings["second"] = "секунда"; -$a->strings["seconds"] = "сек."; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; -$a->strings["%s's birthday"] = "день рождения %s"; -$a->strings["Happy Birthday %s"] = "С днём рождения %s"; -$a->strings["Requested account is not available."] = "Запрашиваемый профиль недоступен."; -$a->strings["Edit profile"] = "Редактировать профиль"; -$a->strings["Atom feed"] = ""; -$a->strings["Message"] = "Сообщение"; -$a->strings["Profiles"] = "Профили"; -$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[сегодня]"; -$a->strings["Birthday Reminders"] = "Напоминания о днях рождения"; -$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:"; -$a->strings["[No description]"] = "[без описания]"; -$a->strings["Event Reminders"] = "Напоминания о мероприятиях"; -$a->strings["Events this week:"] = "Мероприятия на этой неделе:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "День рождения:"; -$a->strings["Age:"] = "Возраст:"; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Religion:"] = "Религия:"; -$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:"; -$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:"; -$a->strings["Musical interests:"] = "Музыкальные интересы:"; -$a->strings["Books, literature:"] = "Книги, литература:"; -$a->strings["Television:"] = "Телевидение:"; -$a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Культура / Развлечения:"; -$a->strings["Love/Romance:"] = "Любовь / Романтика:"; -$a->strings["Work/employment:"] = "Работа / Занятость:"; -$a->strings["School/education:"] = "Школа / Образование:"; -$a->strings["Forums:"] = ""; -$a->strings["Videos"] = "Видео"; -$a->strings["Events and Calendar"] = "Календарь и события"; -$a->strings["Only You Can See This"] = "Только вы можете это видеть"; -$a->strings["event"] = "мероприятие"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s "; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s "; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; -$a->strings["Post to Email"] = "Отправить на Email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Visible to everybody"] = "Видимо всем"; -$a->strings["show"] = "показывать"; -$a->strings["don't show"] = "не показывать"; -$a->strings["Close"] = "Закрыть"; -$a->strings["[no subject]"] = "[без темы]"; -$a->strings["stopped following"] = "остановлено следование"; -$a->strings["View Status"] = "Просмотреть статус"; -$a->strings["View Photos"] = "Просмотреть фото"; -$a->strings["Network Posts"] = "Посты сети"; -$a->strings["Edit Contact"] = "Редактировать контакт"; -$a->strings["Drop Contact"] = "Удалить контакт"; -$a->strings["Send PM"] = "Отправить ЛС"; -$a->strings["Poke"] = ""; -$a->strings["Welcome "] = "Добро пожаловать, "; -$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля."; -$a->strings["Welcome back "] = "Добро пожаловать обратно, "; -$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."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; -$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["post/item"] = "пост/элемент"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит"; -$a->strings["remove"] = "удалить"; -$a->strings["Delete Selected Items"] = "Удалить выбранные позиции"; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = "%s нравится это."; -$a->strings["%s doesn't like this."] = "%s не нравится это."; -$a->strings["%s attends."] = ""; -$a->strings["%s doesn't attend."] = ""; -$a->strings["%s attends maybe."] = ""; -$a->strings["and"] = "и"; -$a->strings[", and %d other people"] = ", и %d других чел."; -$a->strings["%2\$d people like this"] = "%2\$d людям нравится это"; -$a->strings["%s like this."] = ""; -$a->strings["%2\$d people don't like this"] = "%2\$d людям не нравится это"; -$a->strings["%s don't like this."] = ""; -$a->strings["%2\$d people attend"] = ""; -$a->strings["%s attend."] = ""; -$a->strings["%2\$d people don't attend"] = ""; -$a->strings["%s don't attend."] = ""; -$a->strings["%2\$d people anttend maybe"] = ""; -$a->strings["%s anttend maybe."] = ""; -$a->strings["Visible to everybody"] = "Видимое всем"; -$a->strings["Please enter a video link/URL:"] = "Введите ссылку на видео link/URL:"; -$a->strings["Please enter an audio link/URL:"] = "Введите ссылку на аудио link/URL:"; -$a->strings["Tag term:"] = ""; -$a->strings["Where are you right now?"] = "И где вы сейчас?"; -$a->strings["Delete item(s)?"] = "Удалить елемент(ты)?"; -$a->strings["permissions"] = "разрешения"; -$a->strings["Post to Groups"] = "Пост для групп"; -$a->strings["Post to Contacts"] = "Пост для контактов"; -$a->strings["Private post"] = "Личное сообщение"; -$a->strings["View all"] = ""; -$a->strings["Like"] = array( - 0 => "", - 1 => "", - 2 => "", - 3 => "", -); -$a->strings["Dislike"] = array( - 0 => "", - 1 => "", - 2 => "", - 3 => "", -); -$a->strings["Not Attending"] = array( - 0 => "", - 1 => "", - 2 => "", - 3 => "", -); -$a->strings["Undecided"] = array( - 0 => "", - 1 => "", - 2 => "", - 3 => "", -); -$a->strings["Forums"] = ""; -$a->strings["External link to forum"] = ""; -$a->strings["view full size"] = "посмотреть в полный размер"; -$a->strings["newer"] = "новее"; -$a->strings["older"] = "старее"; -$a->strings["prev"] = "пред."; -$a->strings["first"] = "первый"; -$a->strings["last"] = "последний"; -$a->strings["next"] = "след."; -$a->strings["Loading more entries..."] = ""; -$a->strings["The end"] = ""; -$a->strings["No contacts"] = "Нет контактов"; -$a->strings["%d Contact"] = array( - 0 => "%d контакт", - 1 => "%d контактов", - 2 => "%d контактов", - 3 => "%d контактов", -); -$a->strings["View Contacts"] = "Просмотр контактов"; -$a->strings["Full Text"] = "Контент"; -$a->strings["Tags"] = "Тэги"; -$a->strings["poke"] = "poke"; -$a->strings["poked"] = ""; -$a->strings["ping"] = "пинг"; -$a->strings["pinged"] = "пингуется"; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = ""; -$a->strings["slapped"] = ""; -$a->strings["finger"] = ""; -$a->strings["fingered"] = ""; -$a->strings["rebuff"] = ""; -$a->strings["rebuffed"] = ""; -$a->strings["happy"] = ""; -$a->strings["sad"] = ""; -$a->strings["mellow"] = ""; -$a->strings["tired"] = ""; -$a->strings["perky"] = ""; -$a->strings["angry"] = ""; -$a->strings["stupified"] = ""; -$a->strings["puzzled"] = ""; -$a->strings["interested"] = ""; -$a->strings["bitter"] = ""; -$a->strings["cheerful"] = ""; -$a->strings["alive"] = ""; -$a->strings["annoyed"] = ""; -$a->strings["anxious"] = ""; -$a->strings["cranky"] = ""; -$a->strings["disturbed"] = ""; -$a->strings["frustrated"] = ""; -$a->strings["motivated"] = ""; -$a->strings["relaxed"] = ""; -$a->strings["surprised"] = ""; -$a->strings["bytes"] = "байт"; -$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть"; -$a->strings["View on separate page"] = ""; -$a->strings["view on separate page"] = ""; -$a->strings["activity"] = "активность"; -$a->strings["post"] = "сообщение"; -$a->strings["Item filed"] = ""; -$a->strings["Image/photo"] = "Изображение / Фото"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 написал:"; -$a->strings["Encrypted content"] = "Зашифрованный контент"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'"; -$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено"; -$a->strings["Block immediately"] = "Блокировать немедленно"; -$a->strings["Shady, spammer, self-marketer"] = "Тролль, спаммер, рассылает рекламу"; -$a->strings["Known to me, but no opinion"] = "Известные мне, но нет определенного мнения"; -$a->strings["OK, probably harmless"] = "Хорошо, наверное, безвредные"; -$a->strings["Reputable, has my trust"] = "Уважаемые, есть мое доверие"; -$a->strings["Weekly"] = "Еженедельно"; -$a->strings["Monthly"] = "Ежемесячно"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$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"] = ""; -$a->strings["GNU Social"] = ""; -$a->strings["App.net"] = ""; -$a->strings["Redmatrix"] = ""; -$a->strings[" on Last.fm"] = "на Last.fm"; -$a->strings["Starts:"] = "Начало:"; -$a->strings["Finishes:"] = "Окончание:"; -$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"] = "Завершить эту сессию"; -$a->strings["Your posts and conversations"] = "Данные вашей учётной записи"; -$a->strings["Your profile page"] = "Информация о вас"; -$a->strings["Your photos"] = "Ваши фотографии"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Ваши события"; -$a->strings["Personal notes"] = "Личные заметки"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Вход"; -$a->strings["Home Page"] = "Главная страница"; -$a->strings["Create an account"] = "Создать аккаунт"; -$a->strings["Help and documentation"] = "Помощь и документация"; -$a->strings["Apps"] = "Приложения"; -$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры"; -$a->strings["Search site content"] = "Поиск по сайту"; -$a->strings["Conversations on this site"] = "Беседы на этом сайте"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Каталог"; -$a->strings["People directory"] = "Каталог участников"; -$a->strings["Information"] = "Информация"; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Посты ваших друзей"; -$a->strings["Network Reset"] = "Перезагрузка сети"; -$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров"; -$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; -$a->strings["See all notifications"] = "Посмотреть все уведомления"; -$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные"; -$a->strings["Private mail"] = "Личная почта"; -$a->strings["Inbox"] = "Входящие"; -$a->strings["Outbox"] = "Исходящие"; -$a->strings["Manage"] = "Управлять"; -$a->strings["Manage other pages"] = "Управление другими страницами"; -$a->strings["Account settings"] = "Настройки аккаунта"; -$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей"; -$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; -$a->strings["Site setup and configuration"] = "Конфигурация сайта"; -$a->strings["Navigation"] = "Навигация"; -$a->strings["Site map"] = "Карта сайта"; -$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["An invitation is required."] = "Требуется приглашение."; -$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; -$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; -$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; -$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя."; -$a->strings["Name too short."] = "Имя слишком короткое."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя."; -$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; -$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; -$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; -$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; -$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; -$a->strings["default"] = "значение по умолчанию"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; -$a->strings["Friends"] = "Друзья"; -$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"] = "Делиться уведомлениями из сети Diaspora"; -$a->strings["Attachments:"] = "Вложения:"; -$a->strings["(no subject)"] = "(без темы)"; -$a->strings["noreply"] = "без ответа"; -$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?"; -$a->strings["Archives"] = "Архивы"; -$a->strings["Male"] = "Мужчина"; -$a->strings["Female"] = "Женщина"; -$a->strings["Currently Male"] = "В данный момент мужчина"; -$a->strings["Currently Female"] = "В настоящее время женщина"; -$a->strings["Mostly Male"] = "В основном мужчина"; -$a->strings["Mostly Female"] = "В основном женщина"; -$a->strings["Transgender"] = "Транссексуал"; -$a->strings["Intersex"] = "Интерсексуал"; -$a->strings["Transsexual"] = "Транссексуал"; -$a->strings["Hermaphrodite"] = "Гермафродит"; -$a->strings["Neuter"] = "Средний род"; -$a->strings["Non-specific"] = "Не определен"; -$a->strings["Other"] = "Другой"; -$a->strings["Males"] = "Мужчины"; -$a->strings["Females"] = "Женщины"; -$a->strings["Gay"] = "Гей"; -$a->strings["Lesbian"] = "Лесбиянка"; -$a->strings["No Preference"] = "Без предпочтений"; -$a->strings["Bisexual"] = "Бисексуал"; -$a->strings["Autosexual"] = "Автосексуал"; -$a->strings["Abstinent"] = "Воздержанный"; -$a->strings["Virgin"] = "Девственница"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Фетиш"; -$a->strings["Oodles"] = "Групповой"; -$a->strings["Nonsexual"] = "Нет интереса к сексу"; -$a->strings["Single"] = "Без пары"; -$a->strings["Lonely"] = "Пока никого нет"; -$a->strings["Available"] = "Доступный"; -$a->strings["Unavailable"] = "Не ищу никого"; -$a->strings["Has crush"] = "Имеет ошибку"; -$a->strings["Infatuated"] = "Влюблён"; -$a->strings["Dating"] = "Свидания"; -$a->strings["Unfaithful"] = "Изменяю супругу"; -$a->strings["Sex Addict"] = "Люблю секс"; -$a->strings["Friends/Benefits"] = "Друзья / Предпочтения"; -$a->strings["Casual"] = "Обычный"; -$a->strings["Engaged"] = "Занят"; -$a->strings["Married"] = "Женат / Замужем"; -$a->strings["Imaginarily married"] = ""; -$a->strings["Partners"] = "Партнеры"; -$a->strings["Cohabiting"] = "Партнерство"; -$a->strings["Common law"] = ""; -$a->strings["Happy"] = "Счастлив/а/"; -$a->strings["Not looking"] = "Не в поиске"; -$a->strings["Swinger"] = "Свинг"; -$a->strings["Betrayed"] = "Преданный"; -$a->strings["Separated"] = "Разделенный"; -$a->strings["Unstable"] = "Нестабильный"; -$a->strings["Divorced"] = "Разведен(а)"; -$a->strings["Imaginarily divorced"] = ""; -$a->strings["Widowed"] = "Овдовевший"; -$a->strings["Uncertain"] = "Неопределенный"; -$a->strings["It's complicated"] = "влишком сложно"; -$a->strings["Don't care"] = "Не беспокоить"; -$a->strings["Ask me"] = "Спросите меня"; -$a->strings["Friendica Notification"] = "Friendica уведомления"; -$a->strings["Thank You,"] = "Спасибо,"; -$a->strings["%s Administrator"] = "%s администратор"; -$a->strings["%1\$s, %2\$s Administrator"] = ""; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение на %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; -$a->strings["a private message"] = "личное сообщение"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]your %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."] = ""; -$a->strings["Please visit %s to view and/or reply to the conversation."] = ""; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Оповещение] %s написал на стене вашего профиля"; -$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"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/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"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Сообщение] получен запрос"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Вы можете посмотреть его профиль здесь %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Посетите %s для подтверждения или отказа запроса."; -$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: Оповещение] получено предложение дружбы"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружбы от '%1\$s' на %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Имя:"; -$a->strings["Photo:"] = "Фото:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s для подтверждения, или отказа запроса."; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has accepted 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"] = "Встроенное содержание"; -$a->strings["Embedding disabled"] = "Встраивание отключено"; -$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм"; -$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!"; -$a->strings["User creation error"] = "Ошибка создания пользователя"; -$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя"; -$a->strings["%d contact not imported"] = array( - 0 => "%d контакт не импортирован", - 1 => "%d контакты не импортированы", - 2 => "%d контакты не импортированы", - 3 => "%d контакты не импортированы", -); -$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем"; $a->strings["toggle mobile"] = "мобильная версия"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Установить уровень изменения размера изображений в постах и ​​комментариях (ширина и высота)"; -$a->strings["Set font-size for posts and comments"] = "Установить шрифт-размер для постов и комментариев"; -$a->strings["Set theme width"] = "Установить ширину темы"; -$a->strings["Color scheme"] = "Цветовая схема"; -$a->strings["Set line-height for posts and comments"] = "Установить высоту строки для постов и комментариев"; -$a->strings["Set colour scheme"] = "Установить цветовую схему"; -$a->strings["Alignment"] = "Выравнивание"; -$a->strings["Left"] = ""; -$a->strings["Center"] = "Центр"; -$a->strings["Posts font size"] = "Размер шрифта постов"; -$a->strings["Textareas font size"] = "Размер шрифта текстовых полей"; -$a->strings["Set resolution for middle column"] = "Установить разрешение для средней колонки"; -$a->strings["Set color scheme"] = "Установить цветовую схему"; -$a->strings["Set zoomfactor for Earth Layer"] = "Установить масштаб карты"; -$a->strings["Set longitude (X) for Earth Layers"] = "Установить длину (X) карты"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Установить ширину (Y) карты"; -$a->strings["Community Pages"] = "Страницы сообщества"; -$a->strings["Earth Layers"] = "Карта"; -$a->strings["Community Profiles"] = "Профили сообщества"; -$a->strings["Help or @NewHere ?"] = "Помощь"; -$a->strings["Connect Services"] = "Подключить службы"; -$a->strings["Find Friends"] = "Найти друзей"; -$a->strings["Last users"] = "Последние пользователи"; -$a->strings["Last photos"] = "Последние фото"; -$a->strings["Last likes"] = "Последние likes"; -$a->strings["Your contacts"] = "Ваши контакты"; -$a->strings["Your personal photos"] = "Ваши личные фотографии"; -$a->strings["Local Directory"] = "Локальный каталог"; -$a->strings["Set zoomfactor for Earth Layers"] = "Установить масштаб карты"; -$a->strings["Show/hide boxes at right-hand column:"] = "Показать/скрыть блоки в правой колонке:"; -$a->strings["Comma separated list of helper forums"] = ""; -$a->strings["Set style"] = ""; -$a->strings["Quick Start"] = "Быстрый запуск"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; diff --git a/view/lang/sv/messages.po b/view/lang/sv/messages.po index 9bd0b732f..f3c786844 100644 --- a/view/lang/sv/messages.po +++ b/view/lang/sv/messages.po @@ -2,3987 +2,8899 @@ # Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project # This file is distributed under the same license as the Friendica package. # +# Translators: +# Mike Macgirvin, 2010 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-04 20:30:51+0000\n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" +"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Not Found" -msgstr "Hittar inte" +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "" -msgid "Page not found." -msgstr "Sidan hittades inte." +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "" -msgid "Permission denied" -msgstr "Åtkomst nekad" - -msgid "Permission denied." -msgstr "Åtkomst nekad." - -msgid "Delete this item?" -msgstr "Ta bort?" - -msgid "Comment" -msgstr "Kommentera" - -msgid "Create a New Account" -msgstr "Skapa nytt konto" - -msgid "Register" -msgstr "Registrera" - -msgid "Notifications" -msgstr "Aviseringar" - -msgid "Nickname or Email address: " -msgstr "Användarnamn eller e-postadress: " - -msgid "Password: " -msgstr "Lösenord: " - -msgid "Login" -msgstr "Logga in" - -msgid "Nickname/Email/OpenID: " -msgstr "Användarnamn/e-post/OpenID: " - -msgid "Password (if not OpenID): " -msgstr "Lösenord (om inget OpenID): " - -msgid "Forgot your password?" -msgstr "Har du glömt lösenordet?" - -msgid "Password Reset" -msgstr "Glömt lösenordet?" - -msgid "Logout" -msgstr "Logga ut" - -msgid "prev" -msgstr "föreg" - -msgid "first" -msgstr "första" - -msgid "last" -msgstr "sista" - -msgid "next" -msgstr "nästa" - -msgid "No contacts" -msgstr "Inga kontakter" - -msgid "View Contacts" -msgstr "Visa kontakter" - -msgid "Search" -msgstr "Sök" - -msgid "No profile" -msgstr "Ingen profil" +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exempel: adam@exempel.com, http://exempel.com/bertil" +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 msgid "Connect" msgstr "Skicka kontaktförfrågan" +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "" + +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 +msgid "Connect/Follow" +msgstr "Gör till kontakt/Följ" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Sök" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Bjud in folk du känner" + +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "" + +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "" + +#: include/contact_widgets.php:141 include/features.php:110 +msgid "Saved Folders" +msgstr "" + +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "" + +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "" + +#: include/contact_widgets.php:237 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "" + +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Man" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Kvinna" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "För närvarande man" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "För närvarande kvinna" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mestadels man" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mestadels kvinna" + +#: 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 "Hermafrodit" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Könslös" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Oklart" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Annat" + +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Män" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Kvinnor" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Bög" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbisk" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "No Preference" + +#: 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 "Oskuld" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Avvikande" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetisch" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Massor" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asexuell" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Singel" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Ensam" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Tillgänglig" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Upptagen" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dejtar" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Otrogen" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sexmissbrukare" + +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Vänner" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Friends/Benefits" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Förlovad" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Gift" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "I partnerskap" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Cohabiting" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Nöjd" + +#: 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 "Bedragen" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separerat" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabilt" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Skiljd" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Änka/änkling" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Oklart" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Bryr mig inte" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Fråga mig" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Cannot locate DNS info for database server '%s'" + +#: include/auth.php:45 +msgid "Logged out." +msgstr "Utloggad." + +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Inloggningen misslyckades." + +#: include/auth.php:132 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "" + +#: 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 "" + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Alla" + +#: include/group.php:265 +msgid "edit" +msgstr "" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Grupper" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "" + +#: include/group.php:290 +msgid "Edit group" +msgstr "" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Skapa ny grupp" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Gruppens namn: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Okänd | Inte kategoriserad" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Spärra omedelbart" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Skum, spammare, reklamspridare" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Jag vet vem det är, men har ingen åsikt" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, antagligen harmlös" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Pålitlig, jag litar på personen" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Ofta" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "En gång i timmen" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Två gånger om dagen" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Dagligen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Veckovis" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Månadsvis" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "" + +#: include/acl_selectors.php:332 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Synlig för alla" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "Kopia: e-postadresser" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exempel: adam@exempel.com, bertil@exempel.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Åtkomst" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "bild" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "status" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gillar %2$s's %3$s" + +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s ogillar %2$s's %3$s" + +#: include/like.php:186 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: include/like.php:188 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: include/like.php:190 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[ingen rubrik]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Loggbilder" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Blandat" + +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Födelsedatum:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Ålder: " + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:341 +msgid "never" +msgstr "" + +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "för mindre än en sekund sedan" + +#: include/datetime.php:350 +msgid "year" +msgstr "år" + +#: include/datetime.php:350 +msgid "years" +msgstr "år" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "månad" + +#: include/datetime.php:351 +msgid "months" +msgstr "månader" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "vecka" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "veckor" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "dag" + +#: include/datetime.php:353 +msgid "days" +msgstr "dagar" + +#: include/datetime.php:354 +msgid "hour" +msgstr "timme" + +#: include/datetime.php:354 +msgid "hours" +msgstr "timmar" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minut" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minuter" + +#: include/datetime.php:356 +msgid "second" +msgstr "sekund" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "sekunder" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "" + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "noreply" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "" + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: include/enotify.php:86 +msgid "a private message" +msgstr "" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "" + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "" + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:293 +msgid "Name:" +msgstr "" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 msgid "Location:" msgstr "Plats:" -msgid ", " -msgstr ", " +#: include/event.php:441 +msgid "Sun" +msgstr "" -msgid "Gender:" -msgstr "Kön:" +#: include/event.php:442 +msgid "Mon" +msgstr "" -msgid "Status:" -msgstr "Status:" +#: include/event.php:443 +msgid "Tue" +msgstr "" -msgid "Homepage:" -msgstr "Hemsida:" +#: include/event.php:444 +msgid "Wed" +msgstr "" -msgid "Monday" -msgstr "måndag" +#: include/event.php:445 +msgid "Thu" +msgstr "" -msgid "Tuesday" -msgstr "tisdag" +#: include/event.php:446 +msgid "Fri" +msgstr "" -msgid "Wednesday" -msgstr "onsdag" - -msgid "Thursday" -msgstr "torsdag" - -msgid "Friday" -msgstr "fredag" - -msgid "Saturday" -msgstr "lördag" +#: include/event.php:447 +msgid "Sat" +msgstr "" +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 msgid "Sunday" msgstr "söndag" -msgid "January" -msgstr "januari" +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "måndag" -msgid "February" -msgstr "februari" +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "tisdag" -msgid "March" -msgstr "mars" +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "onsdag" -msgid "April" -msgstr "april" +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "torsdag" +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "fredag" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "lördag" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 msgid "May" msgstr "maj" +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "januari" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "februari" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "mars" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "april" + +#: include/event.php:472 include/text.php:1134 msgid "June" msgstr "juni" +#: include/event.php:473 include/text.php:1134 msgid "July" msgstr "juli" +#: include/event.php:474 include/text.php:1134 msgid "August" msgstr "augusti" +#: include/event.php:475 include/text.php:1134 msgid "September" msgstr "september" +#: include/event.php:476 include/text.php:1134 msgid "October" msgstr "oktober" +#: include/event.php:477 include/text.php:1134 msgid "November" msgstr "november" +#: include/event.php:478 include/text.php:1134 msgid "December" msgstr "december" -msgid "g A l F d" -msgstr "g A l F d" +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" -msgid "Birthday Reminders" -msgstr "Födelsedagspåminnelser" +#: include/event.php:483 +msgid "all-day" +msgstr "" -msgid "Birthdays this week:" -msgstr "Födelsedagar denna vecka:" +#: include/event.php:485 +msgid "No events to display" +msgstr "" -msgid "(Adjusted for local time)" -msgstr "(Justerat till lokal tid)" +#: include/event.php:574 +msgid "l, F j" +msgstr "" -msgid "[today]" -msgstr "[idag]" +#: include/event.php:593 +msgid "Edit event" +msgstr "" +#: include/event.php:615 include/text.php:1532 include/text.php:1539 msgid "link to source" msgstr "länk till källa" +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Logga ut" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Status" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profil" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Bilder" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Logga in" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Hem" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registrera" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Hjälp" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Sök" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Kontakter" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Medlemskatalog" + +#: include/nav.php:152 +msgid "People directory" +msgstr "" + +#: include/nav.php:154 +msgid "Information" +msgstr "" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Nätverk" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Aviseringar" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Meddelanden" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Inkorg" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Utkorg" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nytt meddelande" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Hantera" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Inställningar" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profiler" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "" + +#: include/nav.php:200 +msgid "Site map" +msgstr "" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Dina kontakters bilder" + +#: include/security.php:22 +msgid "Welcome " +msgstr "" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "" + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Välkommen tillbaka " + +#: include/security.php:373 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Vän- eller kontaktförfrågan" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "En som vill följa dig" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Fel vid skapandet av databastabeller." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "" + +#: include/network.php:595 +msgid "view full size" +msgstr "visa fullstor" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Ta bort" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Visa i sitt sammanhang" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Vänta" + +#: include/conversation.php:870 +msgid "remove" +msgstr "" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s gillar det här." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s ogillar det här." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "och" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", och ytterligare %d personer" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "%s gillar det här." + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "%s ogillar det här." + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Ange en länk (URL):" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Var är du just nu?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Publicera" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Ladda upp bild" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Infoga länk" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Ange plats" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Ange rubrik" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Åtkomstinställningar" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Avbryt" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 +msgid "General Features" +msgstr "" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "" + +#: include/features.php:81 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:82 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "" + +#: include/features.php:90 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: include/features.php:91 +msgid "Network Filter" +msgstr "" + +#: include/features.php:91 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "" + +#: include/features.php:98 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: include/features.php:99 +msgid "Network New Tab" +msgstr "" + +#: include/features.php:99 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: include/features.php:100 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:100 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:105 +msgid "Post/Comment Tools" +msgstr "" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: include/features.php:108 +msgid "Tagging" +msgstr "" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Otillåten profil-URL." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "Angiven profiladress ger inte tillräcklig information." + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:141 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig." + +#: include/follow.php:258 +msgid "Unable to retrieve contact information." +msgstr "Det gick inte att komma åt kontaktinformationen." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "" + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Byt profilbild" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Skapa ny profil" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Profilbild" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Ända vilka som ska kunna se" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Kön:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Hemsida:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Om:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[idag]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Födelsedagspåminnelser" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Födelsedagar denna vecka:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Fullständigt namn:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Ålder:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Sexualitet" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Politisk åskådning:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Intressen:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Kontaktuppgifter och sociala nätverk:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Musik:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Böcker/Litteratur:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "TV:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Dans/Kultur/Underhållning:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Kärlek/Romantik:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Arbete:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Skola/Utbildning:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Namnet visas inte]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Hittar inte." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Ja" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Åtkomst nekad." + +#: include/items.php:2239 +msgid "Archives" +msgstr "" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Funktionen bädda in är avstängd" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "följer" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "följer inte längre" + +#: include/text.php:304 +msgid "newer" +msgstr "" + +#: include/text.php:306 +msgid "older" +msgstr "" + +#: include/text.php:311 +msgid "prev" +msgstr "föreg" + +#: include/text.php:313 +msgid "first" +msgstr "första" + +#: include/text.php:345 +msgid "last" +msgstr "sista" + +#: include/text.php:348 +msgid "next" +msgstr "nästa" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Inga kontakter" + +#: include/text.php:912 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d kontakt" msgstr[1] "%d kontakter" -msgid "Normal View" -msgstr "Byt till normalvy" +#: include/text.php:925 +msgid "View Contacts" +msgstr "Visa kontakter" -msgid "New Item View" -msgstr "Visa nya inlägg överst" +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "" +#: include/text.php:1076 +msgid "poke" +msgstr "" + +#: include/text.php:1076 +msgid "poked" +msgstr "" + +#: include/text.php:1077 +msgid "ping" +msgstr "" + +#: include/text.php:1077 +msgid "pinged" +msgstr "" + +#: include/text.php:1078 +msgid "prod" +msgstr "" + +#: include/text.php:1078 +msgid "prodded" +msgstr "" + +#: include/text.php:1079 +msgid "slap" +msgstr "" + +#: include/text.php:1079 +msgid "slapped" +msgstr "" + +#: include/text.php:1080 +msgid "finger" +msgstr "" + +#: include/text.php:1080 +msgid "fingered" +msgstr "" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1095 +msgid "happy" +msgstr "" + +#: include/text.php:1096 +msgid "sad" +msgstr "" + +#: include/text.php:1097 +msgid "mellow" +msgstr "" + +#: include/text.php:1098 +msgid "tired" +msgstr "" + +#: include/text.php:1099 +msgid "perky" +msgstr "" + +#: include/text.php:1100 +msgid "angry" +msgstr "" + +#: include/text.php:1101 +msgid "stupified" +msgstr "" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "" + +#: include/text.php:1103 +msgid "interested" +msgstr "" + +#: include/text.php:1104 +msgid "bitter" +msgstr "" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "" + +#: include/text.php:1106 +msgid "alive" +msgstr "" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "" + +#: include/text.php:1108 +msgid "anxious" +msgstr "" + +#: include/text.php:1109 +msgid "cranky" +msgstr "" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "" + +#: include/text.php:1112 +msgid "motivated" +msgstr "" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "" + +#: include/text.php:1114 +msgid "surprised" +msgstr "" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "" + +#: include/text.php:1356 +msgid "bytes" +msgstr "" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1806 +msgid "activity" +msgstr "" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:1809 +msgid "post" +msgstr "" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Lösenorden skiljer sig åt. Lösenordet ändras inte." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "" + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "" + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ogiltig OpenID-URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Fyll i alla obligatoriska fält." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Välj ett kortare namn." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Namnet är för kort." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Du verkar inte ha angett ditt fullständiga namn." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Din e-postdomän är inte tillåten på den här webbplatsen." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Ogiltig e-postadress." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Otillåten e-postadress." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Användarnamnet är upptaget. Välj ett annat." + +#: include/user.php:157 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: include/user.php:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SERIOUS ERROR: Generation of security keys failed." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "Något gick fel vid registreringen. Försök igen." + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Det blev fel när din standardprofil skulle skapas. Prova igen." + +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: include/user.php:414 #, php-format -msgid "Warning: This group contains %s from an insecure network." -msgstr "Varning! Gruppen innehåller %s på osäkra nätverk." - -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Meddelanden kan komma att bli synliga för vem som helst på internet." - -msgid "Please enter a link URL:" -msgstr "Ange en länk (URL):" - -msgid "Please enter a YouTube link:" -msgstr "Ange en YouTube-länk:" - -msgid "Please enter a video(.ogg) link/URL:" -msgstr "Ange länk/URL till video (.ogg):" - -msgid "Please enter an audio(.ogg) link/URL:" -msgstr "Ange länk/URL till ljud (.ogg):" - -msgid "Where are you right now?" -msgstr "Var är du just nu?" - -msgid "Enter a title for this item" -msgstr "Ange en rubrik på inlägget" - -msgid "Share" -msgstr "Publicera" - -msgid "Upload photo" -msgstr "Ladda upp bild" - -msgid "Insert web link" -msgstr "Infoga länk" - -msgid "Insert YouTube video" -msgstr "Infoga video från YouTube" - -msgid "Insert Vorbis [.ogg] video" -msgstr "Lägg in video i format Vorbis [.ogg]" - -msgid "Insert Vorbis [.ogg] audio" -msgstr "Lägg in ljud i format Vorbis [.ogg]" - -msgid "Set your location" -msgstr "Ange plats" - -msgid "Clear browser location" -msgstr "Clear browser location" - -msgid "Set title" -msgstr "Ange rubrik" - -msgid "Please wait" -msgstr "Vänta" - -msgid "Permission settings" -msgstr "Åtkomstinställningar" - -msgid "CC: email addresses" -msgstr "Kopia: e-postadresser" - -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exempel: adam@exempel.com, bertil@exempel.com" - -msgid "No such group" -msgstr "Gruppen finns inte" - -msgid "Group is empty" -msgstr "Gruppen är tom" - -msgid "Group: " -msgstr "Grupp: " - -msgid "Shared content is covered by the Creative Commons Attribution 3.0 license." -msgstr "Innehållet omfattas av licensen Creative Commons Attribution 3.0." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" +#: include/user.php:424 #, php-format -msgid "%d member" -msgid_plural "%d member" -msgstr[0] "%d medlem" -msgstr[1] "%d medlemmar" - -msgid "Applications" -msgstr "Applikationer" - -msgid "Invite Friends" -msgstr "Bjud in folk du känner" - -msgid "Find People With Shared Interests" -msgstr "Sök personer som har samma intressen som du" - -msgid "Connect/Follow" -msgstr "Gör till kontakt/Följ" - -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exempel: adam@exempel.com, http://exempel.com/bertil" - -msgid "Follow" -msgstr "Följ" - -msgid "Could not access contact record." -msgstr "Hittar inte information om kontakten." - -msgid "Could not locate selected profile." -msgstr "Hittar inte vald profil." - -msgid "Contact updated." -msgstr "Kontakten har uppdaterats." - -msgid "Failed to update contact record." -msgstr "Det blev fel när kontakten skulle uppdateras." - -msgid "Contact has been " -msgstr "Kontakten " - -msgid "blocked" -msgstr "spärrad" - -msgid "unblocked" -msgstr "inte längre spärrad" - -msgid "Contact has been blocked" -msgstr "Kontakten har spärrats" - -msgid "Contact has been unblocked" -msgstr "Kontakten är inte längre spärrad" - -msgid "Contact has been ignored" -msgstr "Kontakten ignoreras" - -msgid "Contact has been unignored" -msgstr "Kontakten ignoreras inte längre" - -msgid "stopped following" -msgstr "följer inte längre" - -msgid "Contact has been removed." -msgstr "Kontakten har tagits bort." - -msgid "Contact not found." -msgstr "Kontakten hittades inte." - -msgid "Mutual Friendship" -msgstr "Ömsesidig vänskap" - -msgid "is a fan of yours" -msgstr "är ett fan till dig" - -msgid "you are a fan of" -msgstr "du är fan till" - -msgid "Privacy Unavailable" -msgstr "Inte tillgängligt" - -msgid "Private communications are not available for this contact." -msgstr "Det går inte att utbyta personliga meddelanden med den här kontakten." - -msgid "Never" -msgstr "Aldrig" - -msgid "(Update was successful)" -msgstr "(Uppdateringen lyckades)" - -msgid "(Update was not successful)" -msgstr "(Uppdateringen lyckades inte)" - -msgid "Contact Editor" -msgstr "Ändra kontakter" - -msgid "Submit" -msgstr "Spara" - -msgid "Profile Visibility" -msgstr "Visning av profil" +msgid "Registration at %s" +msgstr "" +#: include/user.php:434 #, php-format -msgid "Please choose the profile you would like to display to %s when viewing your profile securely." -msgstr "Välj vilken profil som ska visas för %s när han/hon besöker din sida." - -msgid "Contact Information / Notes" -msgstr "Kontaktuppgifter/Anteckningar" - -msgid "Online Reputation" -msgstr "Rykte online" - -msgid "Occasionally your friends may wish to inquire about this person's online legitimacy." -msgstr "Dina kontakter kanske vill veta något om den här personens rykte online innan de tar kontakt." - -msgid "You may help them choose whether or not to interact with this person by providing a reputation to guide them." -msgstr "Du kan vara till hjälp genom att ange personens rykte online." - -msgid "Please take a moment to elaborate on this selection if you feel it could be helpful to others." -msgstr "Ägna gärna en stund åt att ange detta för att hjälpa andra." - -msgid "Visit $name's profile" -msgstr "Besök $name " - -msgid "Block/Unblock contact" -msgstr "Spärra kontakt eller häv spärr" - -msgid "Ignore contact" -msgstr "Ignorera kontakt" - -msgid "Repair contact URL settings" -msgstr "Repair contact URL settings" - -msgid "Repair contact URL settings (WARNING: Advanced)" -msgstr "Repair contact URL settings (WARNING: Advanced)" - -msgid "Delete contact" -msgstr "Ta bort kontakt" - -msgid "Last updated: " -msgstr "Uppdaterad senast: " - -msgid "Update public posts: " -msgstr "Uppdatera offentliga inlägg: " - -msgid "Update now" -msgstr "Updatera nu" - -msgid "Unblock this contact" -msgstr "Häv spärr för kontakt" - -msgid "Block this contact" -msgstr "Spärra kontakt" - -msgid "Unignore this contact" -msgstr "Ignorera inte längre kontakt" - -msgid "Ignore this contact" -msgstr "Ignorera kontakt" - -msgid "Currently blocked" -msgstr "Spärrad" - -msgid "Currently ignored" -msgstr "Ignoreras" - -msgid "Contacts" -msgstr "Kontakter" - -msgid "Show Blocked Connections" -msgstr "Visa spärrade kontakter" - -msgid "Hide Blocked Connections" -msgstr "Dölj spärrade kontakter" - -msgid "Finding: " -msgstr "Hittar: " - -msgid "Find" -msgstr "Sök" - -msgid "Visit $username's profile" -msgstr "Gå till profilen som tillhör $username" - -msgid "Edit contact" -msgstr "Ändra kontakt" - -msgid "Contact settings applied." -msgstr "Inställningar för kontakter har sparats." - -msgid "Contact update failed." -msgstr "Det gick inte att uppdatera kontakt." - -msgid "Repair Contact Settings" -msgstr "Repair Contact Settings" - -msgid "WARNING: This is highly advanced and if you enter incorrect information your communications with this contact will stop working." -msgstr "VARNING! Det här är en avancerad inställning och om du anger felaktig information kommer kommunikationen med den här kontakten att sluta fungera." - -msgid "Please use your browser 'Back' button now if you are uncertain what to do on this page." -msgstr "Använd webbläsarens bakåtknapp nu om du är osäker på vad man gör på den här sidan." - -msgid "Name" -msgstr "Namn" - -msgid "Profile not found." -msgstr "Profilen hittades inte." - -msgid "Response from remote site was not understood." -msgstr "Kunde inte tolka svaret från fjärrsajten." - -msgid "Unexpected response from remote site: " -msgstr "Oväntat svar från fjärrsajten: " - -msgid "Confirmation completed successfully." -msgstr "Bekräftat." - -msgid "Remote site reported: " -msgstr "Meddelande från fjärrsajten: " - -msgid "Temporary failure. Please wait and try again." -msgstr "Tillfälligt fel. Försök igen lite senare." - -msgid "Introduction failed or was revoked." -msgstr "Kontaktförfrågan gick inte fram eller har återkallats." - -msgid "Unable to set contact photo." -msgstr "Det gick inte att byta profilbild." - -msgid "is now friends with" -msgstr "är nu vän med" - -msgid "Our site encryption key is apparently messed up." -msgstr "Det är något fel på webbplatsens krypteringsnyckel." - -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Empty site URL was provided or URL could not be decrypted by us." - -msgid "Contact record was not found for you on our site." -msgstr "Det gick inte att hitta efterfrågad information på vår webbplats." - -msgid "The ID provided by your system is a duplicate on our system. It should work if you try again." -msgstr "Det ID som angavs av ditt system är samma som på vårt system. Det borde fungera om du provar igen." - -msgid "Unable to set your contact credentials on our system." -msgstr "Unable to set your contact credentials on our system." - -msgid "Unable to update your contact profile details on our system" -msgstr "Unable to update your contact profile details on our system" +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:438 #, php-format -msgid "Connection accepted at %s" -msgstr "Kontaktförfrågan beviljad - %s" - -msgid "Administrator" -msgstr "Admin" - -msgid "noreply" -msgstr "noreply" +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:470 mod/admin.php:1213 #, php-format -msgid "%s commented on an item at %s" -msgstr "%s har kommenterat ett inlägg på %s" +msgid "Registration details for %s" +msgstr "" -msgid "This introduction has already been accepted." -msgstr "Den här förfrågan har redan beviljats." +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inlagt." -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladressen är ogiltig eller innehåller ingen profilinformation." - -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varning! Hittar inget namn som identifierar profilen." - -msgid "Warning: profile location has no profile photo." -msgstr "Varning! Profilen innehåller inte någon profilbild." - -msgid "Introduction complete." -msgstr "Kontaktförfrågan/Presentationen är klar." - -msgid "Unrecoverable protocol error." -msgstr "Protokollfel." - -msgid "Profile unavailable." -msgstr "Profilen är inte tillgänglig." - -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s har fått för många kontaktförfrågningar idag." - -msgid "Spam protection measures have been invoked." -msgstr "Åtgärder för spamskydd har vidtagits." - -msgid "Friends are advised to please try again in 24 hours." -msgstr "Dina vänner kan prova igen om ett dygn." - -msgid "Invalid locator" -msgstr "Invalid locator" - -msgid "Unable to resolve your name at the provided location." -msgstr "Unable to resolve your name at the provided location." - -msgid "You have already introduced yourself here." -msgstr "Du har redan presenterat dig här." - -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Du och %s är redan kontakter." - -msgid "Invalid profile URL." -msgstr "Ogiltig profil-URL." - -msgid "Disallowed profile URL." -msgstr "Otillåten profil-URL." - -msgid "Your introduction has been sent." -msgstr "Kontaktförfrågan/Presentationen har skickats." - -msgid "Please login to confirm introduction." -msgstr "Logga in för att acceptera förfrågan." - -msgid "Incorrect identity currently logged in. Please login to this profile." -msgstr "Inloggad med fel identitet. Logga in med den här profilen." - -#, php-format -msgid "Welcome home %s." -msgstr "Välkommen hem %s." - -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bekräfta att du vill skicka kontaktförfrågan till %s." - -msgid "Confirm" -msgstr "Bekräfta" - -msgid "[Name Withheld]" -msgstr "[Namnet visas inte]" - -msgid "Introduction received at " -msgstr "Inkommen kontaktförfrågan/presentation - " - -msgid "Friend/Connection Request" -msgstr "Vän- eller kontaktförfrågan" - -msgid "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -msgstr "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -msgid "Please answer the following:" -msgstr "Var vänlig besvara följande:" - -msgid "Does $name know you?" -msgstr "Känner $name dig?" - -msgid "Yes" -msgstr "Ja" - -msgid "No" -msgstr "Nej" - -msgid "Add a personal note:" -msgstr "Lägg till ett personligt meddelande:" - -msgid "Please enter your 'Identity Address' from one of the following supported social networks:" -msgstr "Ange din adress, ditt ID, på ett av följande sociala nätverk:" - -msgid "Friendica" -msgstr "Friendica" - -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -msgid "Private (secure) network" -msgstr "Privat (säkert) nätverk" - -msgid "Public (insecure) network" -msgstr "Offentligt (osäkert) nätverk" - -msgid "Your Identity Address:" -msgstr "Din adress (ditt ID):" - -msgid "Submit Request" -msgstr "Skicka förfrågan" - -msgid "Cancel" -msgstr "Avbryt" - -#, 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 required parameter was not found at the given location" -msgstr[1] "%d required parameters were not found at the given location" - -msgid "Global Directory" -msgstr "Medlemskatalog för flera sajter (global)" - -msgid "Site Directory" -msgstr "Medlemskatalog" - -msgid "Age: " -msgstr "Ålder: " - -msgid "Gender: " -msgstr "Kön: " - -msgid "No entries (some entries may be hidden)." -msgstr "Inget att visa. (Man kan välja att inte synas här)" - -msgid "Item not found." -msgstr "Hittar inte." - -msgid "Item has been removed." -msgstr "Har tagits bort." - -msgid "Item not found" -msgstr "Hittades inte" - -msgid "Edit post" -msgstr "Ändra inlägg" - -msgid "Edit" -msgstr "Ändra" - -msgid "The profile address specified does not provide adequate information." -msgstr "Angiven profiladress ger inte tillräcklig information." - -msgid "Limited profile. This person will be unable to receive direct/personal notifications from you." -msgstr "Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig." - -msgid "Unable to retrieve contact information." -msgstr "Det gick inte att komma åt kontaktinformationen." - -msgid "following" -msgstr "följer" - -msgid "This is Friendica version" -msgstr "Det här är Friendica version" - -msgid "running at web location" -msgstr "som körs på" - -msgid "Shared content within the Friendica network is provided under the Creative Commons Attribution 3.0 license" -msgstr "Innehåll som publiceras inom Friendicanätverket omfattas av licensen Creative Commons Attribution 3.0 license" - -msgid "Please visit Project.Friendica.com to learn more about the Friendica project." -msgstr "Gå till Project.Friendica.com om du vill läsa mer om friendicaprojektet." - -msgid "Bug reports and issues: please visit" -msgstr "Anmäl buggar eller andra problem, gå till" - -msgid "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com" -msgstr "Förslag, beröm, donationer, etc. - skicka e-post till \"info at friendica punkt com\" " - -msgid "Installed plugins/addons/apps" -msgstr "Installerade insticksprogram/applikationer" - -msgid "No installed plugins/addons/apps" -msgstr "Inga installerade insticksprogram/applikationer" - -msgid "Group created." -msgstr "Gruppen har skapats." - -msgid "Could not create group." -msgstr "Det gick inte att skapa gruppen." - -msgid "Group not found." -msgstr "Gruppen hittades inte." - -msgid "Group name changed." -msgstr "Gruppens namn har ändrats." - -msgid "Create a group of contacts/friends." -msgstr "Skapa en grupp med kontakter/vänner." - -msgid "Group Name: " -msgstr "Gruppens namn: " - -msgid "Group removed." -msgstr "Gruppen har tagits bort." - -msgid "Unable to remove group." -msgstr "Det gick inte att ta bort gruppen." - -msgid "Delete" -msgstr "Ta bort" - -msgid "Click on a contact to add or remove." -msgstr "Klicka på en kontakt för att lägga till eller ta bort." - -msgid "Group Editor" -msgstr "Ändra i grupper" - -msgid "Members" -msgstr "Medlemmar" - -msgid "All Contacts" -msgstr "Alla kontakter" - -msgid "Help:" -msgstr "Hjälp:" - -msgid "Help" -msgstr "Hjälp" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" +#: mod/home.php:35 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" -msgid "Could not create/connect to database." -msgstr "Det gick inte att skapa eller ansluta till databasen." +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "" -msgid "Connected to database." -msgstr "Ansluten till databasen." +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "" -msgid "Proceed with Installation" -msgstr "Fortsätt med installationen" +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "" -msgid "Your Friendica site database has been installed." -msgstr "Databasen för din friendicasajt har installerats." +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "" -msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Se filen \"INSTALL.txt\"." +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" -msgid "Proceed to registration" -msgstr "Gå vidare till registreringen" +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" -msgid "Database import failed." -msgstr "Det gick inte att importera databasen." +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Inga resultat." -msgid "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." -msgstr "Du kanske måste importera filen \"database.sql\" manuellt med phpmyadmin eller mysql." +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" -msgid "Welcome to Friendica." -msgstr "Välkommen till Friendica." +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "" -msgid "Friendica Social Network" -msgstr "Det sociala nätverket Friendica" +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "" -msgid "Installation" -msgstr "Installation" +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "som körs på" -msgid "In order to install Friendica we need to know how to contact your database." -msgstr "In order to install Friendica we need to know how to contact your database." +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" -msgid "Please contact your hosting provider or site administrator if you have questions about these settings." -msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Anmäl buggar eller andra problem, gå till" -msgid "The database you specify below must already exist. If it does not, please create it before continuing." -msgstr "The database you specify below must already exist. If it does not, please create it before continuing." +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "" -msgid "Database Server Name" -msgstr "Database Server Name" +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Förslag, beröm, donationer, etc. - skicka e-post till \"info at friendica punkt com\" " -msgid "Database Login Name" -msgstr "Database Login Name" +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "" -msgid "Database Login Password" -msgstr "Database Login Password" +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Inga installerade insticksprogram/applikationer" -msgid "Database Name" -msgstr "Database Name" +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "" -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your website" +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Nytt lösenord har begärts. Kolla din mail." -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: 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 "" -msgid "This is required. Please adjust the configuration file .htconfig.php accordingly." -msgstr "This is required. Please adjust the configuration file .htconfig.php accordingly." +#: 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 "" -msgid "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Nytt lösenord på %s har begärts" -msgid "This is required for message delivery to work." -msgstr "Det krävs för att meddelanden ska kunna levereras." +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord." -msgid "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -msgstr "Fel: funktionen \"openssl_pkey_new\" kan inte skapa krypteringsnycklar" +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Glömt lösenordet?" -msgid "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Läs mer på \"http://www.php.net/manual/en/openssl.installation.php\" om du kör Windows." +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Nu har du fått ett nytt lösenord." -msgid "Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Det nya lösenordet är" -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Spara eller kopiera lösenordet och" -msgid "Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "klicka här för att logga in" -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "När du loggat in kan du byta lösenord på sidan Inställningar." -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: mysqli PHP module required but not installed." +#: 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 "" -msgid "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." -msgstr "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." +#: 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 "" -msgid "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." -msgstr "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." +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" -msgid "Please check with your site documentation or support people to see if this situation can be corrected." -msgstr "Please check with your site documentation or support people to see if this situation can be corrected." +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Glömt lösenordet?" -msgid "If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions." -msgstr "If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions." +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post." -msgid "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -msgstr "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." +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Användarnamn eller e-post:" -msgid "Errors encountered creating database tables." -msgstr "Fel vid skapandet av databastabeller." +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Skicka" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Ingen profil" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Hjälp:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Hittar inte" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Sidan hittades inte." + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Remote privacy information not available." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Synlig för:" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Ändra kontakt" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Ogiltig e-postadress." +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Meddelandet kom inte fram." -msgid "Send invitations" -msgstr "Skicka inbjudningar" - -msgid "Enter email addresses, one per line:" -msgstr "Ange e-postadresser, en per rad:" - -msgid "Your message:" -msgstr "Meddelande:" - -msgid "To accept this invitation, please visit:" -msgstr "Gå hit för att tacka ja till inbjudan:" - -msgid "Once you have registered, please connect with me via my profile page at:" -msgstr "Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:" - +#: mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d meddelande har skickats." msgstr[1] "%d meddelanden har skickats." +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Skicka inbjudningar" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Ange e-postadresser, en per rad:" + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Meddelande:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Spara" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Åtkomst nekad" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ogiltigt profil-ID." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Ända vilka som ska kunna se profil" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Klicka på en kontakt för att lägga till eller ta bort." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Synlig för" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alla kontakter (med säker tillgång till din profil)" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Taggen har tagits bort" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Ta bort tagg" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Välj vilken tagg som ska tas bort: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Ta bort" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "" + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applikationer" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Ladda upp profilbild" + +#: 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 "" + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "" + +#: mod/newmember.php:51 +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 "" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:53 +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 "" + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:55 +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 "" + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "" + +#: mod/newmember.php:57 +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 "" + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:65 +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 "" + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: mod/newmember.php:68 +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 "" + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Ta bort mitt konto" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Ange lösenordet igen för säkerhets skull:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Hittades inte" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Ändra inlägg" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppen har skapats." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Det gick inte att skapa gruppen." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppen hittades inte." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppens namn har ändrats." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Skapa en grupp med kontakter/vänner." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppen har tagits bort." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Det gick inte att ta bort gruppen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Ändra i grupper" + +#: mod/group.php:190 +msgid "Members" +msgstr "Medlemmar" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Alla kontakter" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Gruppen är tom" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Ingen mottagare har valts." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Det gick inte att skicka meddelandet." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "" + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Meddelandet har skickats." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Skicka personligt meddelande" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Till:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Rubrik:" + +#: mod/share.php:38 +msgid "link" +msgstr "" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Nej" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "" + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "" + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "" + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "" + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "" + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "" + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Det gick inte att hitta kontaktuppgifterna." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Meddelandet togs bort." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Konversationen togs bort." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Inga meddelanden." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Meddelandet är inte tillgängligt." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Ta bort meddelande" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Ta bort konversation" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Skicka svar" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Hantera identiteter eller sidor" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Välj vilken identitet du vill hantera: " + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Inställningar för kontakter har sparats." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Det gick inte att uppdatera kontakt." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Kontakten hittades inte." + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Använd webbläsarens bakåtknapp nu om du är osäker på vad man gör på den här sidan." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Namn" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Gruppen finns inte" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Personligt meddelande" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Jag gillar det här (växla)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Jag ogillar det här (växla)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Det här är du" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Kommentera" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Ändra" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "till" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Profil-till-profil" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "via profil-till-profil:" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "" + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bilden laddades upp men det blev fel när den skulle beskäras." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Det gick inte att behandla bilden" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Det gick inte att behandla bilden." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Ladda upp fil:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Ladda upp" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "eller" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "välj en bild från ett album" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Beskär bild" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Välj hur bilden ska beskäras för att bli så bra som möjligt." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Spara" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Bilden har laddats upp." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Fel vid bilduppladdning." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Kontot har godkänts." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Logga in." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Ta bort" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignorera" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Visa förfrågningar du ignorerat" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Dölj förfrågningar du ignorerat" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Typ av avisering: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Godkänn" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Hävdar att du vet vem han/hon är: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:196 +msgid "no" +msgstr "nej" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Vän" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Beundrare" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Profilen hittades inte." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilen har tagits bort." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "En ny profil har skapats." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Det gick inte att klona profilen." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Profilen måste ha ett namn." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Profilen har uppdaterats." + +#: mod/profiles.php:564 +msgid " and " +msgstr "" + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Ändra profilen" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Titta på profilen" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Skapa en ny profil med dessa inställningar" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Kopiera profil" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Ta bort profil" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Kön:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Civilstånd:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Exempel: fiske fotografering programmering" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Profilens namn:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "Det här är din offentliga profil.
                                              Den kan vara synlig för vem som helst på internet." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Fullständigt namn:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Titel/Beskrivning:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Gatuadress:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Plats/Stad:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Region:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Postnummer:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Vem: (om tillämpligt)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exempel: kalle123, Johanna Johansson, pelle@exempel.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Beskriv dig själv..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Hemsida: (URL)" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Religion:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Offentliga nyckelord:" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Privata nyckelord:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Musik" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Böcker, litteratur" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "TV" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Film/Dans/Kultur/Nöje" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Hobbys/Intressen" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Kärlek/Romantik" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Arbete" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Skola/Utbildning" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Kontaktuppgifter och sociala nätverk" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "" + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "" + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "" + +#: mod/community.php:27 +msgid "Not available." +msgstr "" + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Medlemskatalog för flera sajter (global)" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Medlemskatalog" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Inget att visa. (Man kan välja att inte synas här)" + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Ingen träff" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Har tagits bort." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "" + +#: mod/events.php:482 +msgid "Event details" +msgstr "" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "" + +#: mod/events.php:492 +msgid "Description:" +msgstr "" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Matcha profiler" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Nyligen tillagda bilder" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Ladda upp bilder" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Kommer inte åt kontaktuppgifter." + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Albumet finns inte." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Ta bort album" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Ta bort bild" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "" + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Inga bilder har valts" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "" + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Ladda upp bilder" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nytt album med namn: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "eller befintligt album med namn: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Redigera album" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Visa bild" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Bilden är inte tillgänglig" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Hantera bild" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Visa fullstor" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Taggar: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Remove any tag]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nytt album med namn" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Caption" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Lägg till tagg" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Titta i album" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrering klar. Kolla din e-post för vidare information." + +#: mod/register.php:98 +#, 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 "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Det går inte att behandla registreringen." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering inväntar godkännande av webbplatsens ägare." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Om du vill kan du fylla i detta formulär via OpenID genom att ange ditt OpenID och klicka på Registrera." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "OpenID (om du vill): " + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Ta med profilen i medlemskatalogen?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Registrering" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "E-postadress: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nytt lösenord" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Bekräfta (repetera):" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Välj ett användarnamn. Det måste inledas med en bokstav. Din profiladress på den här webbplatsen blir 'användarnamn@$sitename'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Välj ett användarnamn: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lösenordet får inte vara blankt. Lösenordet ändras inte." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Lösenordet har ändrats." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Det blev fel när lösenordet skulle ändras. Försök igen." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Använd ett kortare namn." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Namnet är för kort." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Ogiltig e-postadress." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr " Ändring till den e-postadressen görs inte." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Inställningarna har uppdaterats." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:743 +msgid "No name" +msgstr "" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Det finns inga inställningar för insticksprogram" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Inställningar för insticksprogram" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Tema/utseende:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Kontot är ett vanligt personligt konto" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Kontaktförfrågningar godkänns automatiskt som fans. De kan se vad du skriver men har inte samma rättigheter som vänner." + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Kontaktförfrågningar godkänns automatiskt som vänner." + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Profilen är inte publicerad." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Kontoinställningar" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Lösenordsinställningar" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Lämna fältet tomt om du inte vill byta lösenord" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Grundläggande inställningar" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "E-postadress:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Tidszon:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Default Post Location:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Använd webbläsarens positionering:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Inställningar för säkerhet och sekretess" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximalt antal kontaktförfrågningar per dygn:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(för att motverka spam)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Standardåtkomst för inlägg" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(klicka för att öppna/stänga)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Aviseringsinställningar" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Skicka ett aviseringsmail när:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "En kontaktförfrågan anländer" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Dina förfrågningar godkänns" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Någon gör inlägg på din profilsida" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Någon gör ett inlägg i samma tråd som du" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Du får personliga meddelanden" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "" + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "" + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Vanligt konto" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Konto med envägskommunikation" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Gemenskap eller kändiskonto." + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Konto med automatiskt godkännande av vänner." + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "" + +#: mod/admin.php:491 +msgid "Version" +msgstr "" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "" + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Aldrig" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:907 +msgid "One year" +msgstr "" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "" + +#: mod/admin.php:937 +msgid "Open" +msgstr "" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:957 +msgid "File upload" +msgstr "" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:986 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: mod/admin.php:987 +msgid "Register text" +msgstr "" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "" + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "" + +#: mod/admin.php:990 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:991 +msgid "Block public" +msgstr "" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:996 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "" + +#: mod/admin.php:1014 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:1018 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "" + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "Användare som registrerat sig och inväntar godkännande" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "Inga registreringar." + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Avslå" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1428 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "" + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "" + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "" + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Hittar inte information om kontakten." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Hittar inte vald profil." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Kontakten har uppdaterats." + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Det blev fel när kontakten skulle uppdateras." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Kontakten har spärrats" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Kontakten är inte längre spärrad" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Kontakten ignoreras" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Kontakten ignoreras inte längre" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Kontakten har tagits bort." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Det går inte att utbyta personliga meddelanden med den här kontakten." + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Uppdateringen lyckades)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Uppdateringen lyckades inte)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Visning av profil" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Välj vilken profil som ska visas för %s när han/hon besöker din sida." + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Kontaktuppgifter/Anteckningar" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Spärra kontakt eller häv spärr" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignorera kontakt" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Updatera nu" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Spärrad" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Ignoreras" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Ömsesidig vänskap" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "är ett fan till dig" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "du är fan till" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Ta bort kontakt" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Kunde inte tolka svaret från fjärrsajten." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Oväntat svar från fjärrsajten: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Bekräftat." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Meddelande från fjärrsajten: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Tillfälligt fel. Försök igen lite senare." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Kontaktförfrågan gick inte fram eller har återkallats." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Det gick inte att byta profilbild." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Det är något fel på webbplatsens krypteringsnyckel." + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Empty site URL was provided or URL could not be decrypted by us." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "Det gick inte att hitta efterfrågad information på vår webbplats." + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Det ID som angavs av ditt system är samma som på vårt system. Det borde fungera om du provar igen." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "Unable to set your contact credentials on our system." + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "Unable to update your contact profile details on our system" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Den här förfrågan har redan beviljats." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladressen är ogiltig eller innehåller ingen profilinformation." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Varning! Hittar inget namn som identifierar profilen." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Varning! Profilen innehåller inte någon profilbild." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d required parameter was not found at the given location" +msgstr[1] "%d required parameters were not found at the given location" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Kontaktförfrågan/Presentationen är klar." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Protokollfel." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profilen är inte tillgänglig." + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s har fått för många kontaktförfrågningar idag." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Åtgärder för spamskydd har vidtagits." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Dina vänner kan prova igen om ett dygn." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "" + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Du har redan presenterat dig här." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Du och %s är redan kontakter." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Ogiltig profil-URL." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Kontaktförfrågan/Presentationen har skickats." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Logga in för att acceptera förfrågan." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Inloggad med fel identitet. Logga in med den här profilen." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Bekräfta" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Välkommen hem %s." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bekräfta att du vill skicka kontaktförfrågan till %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:859 +msgid "Friend/Connection Request" +msgstr "Vän- eller kontaktförfrågan" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Var vänlig besvara följande:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Lägg till ett personligt meddelande:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Din adress (ditt ID):" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Skicka förfrågan" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "" + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "" + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "Databasen för din friendicasajt har installerats." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Du kanske måste importera filen \"database.sql\" manuellt med phpmyadmin eller mysql." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Se filen \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "" + +#: mod/install.php:232 +msgid "Check again" +msgstr "" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Database Server Name" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Database Login Name" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Database Login Password" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Database Name" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your website" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Det krävs för att meddelanden ska kunna levereras." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fel: funktionen \"openssl_pkey_new\" kan inte skapa krypteringsnycklar" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Läs mer på \"http://www.php.net/manual/en/openssl.installation.php\" om du kör Windows." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Error: mysqli PHP module required but not installed." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "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." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "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." + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr "" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "" + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." + +#: mod/item.php:116 msgid "Unable to locate original post." msgstr "Hittar inte det ursprungliga inlägget." +#: mod/item.php:341 msgid "Empty post discarded." msgstr "Tomt inlägg. Inte sparat." -msgid "Wall Photos" -msgstr "Loggbilder" - -#, php-format -msgid "%s commented on your item at %s" -msgstr "%s har kommenterat ditt inlägg på %s" - -#, php-format -msgid "%s posted on your profile wall at %s" -msgstr "%s har gjort ett inlägg på din logg på %s" - +#: mod/item.php:902 msgid "System error. Post not saved." msgstr "Något gick fel. Inlägget sparades inte." -msgid "You may visit them online at" -msgstr "Besök online på" +#: mod/item.php:992 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "" -msgid "Please contact the sender by replying to this post if you do not wish to receive these messages." +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: mod/item.php:995 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." msgstr "Kontakta avsändaren genom att svara på det här meddelandet om du inte vill ha sådana här meddelanden." +#: mod/item.php:999 #, php-format msgid "%s posted an update." msgstr "%s har gjort ett inlägg." -msgid "photo" -msgstr "bild" - -msgid "status" -msgstr "status" - +#: mod/network.php:398 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gillar %2$s's %3$s" - -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s ogillar %2$s's %3$s" - -msgid "Remote privacy information not available." -msgstr "Remote privacy information not available." - -msgid "Visible to:" -msgstr "Synlig för:" - -msgid "Password reset request issued. Check your email." -msgstr "Nytt lösenord har begärts. Kolla din mail." - -#, php-format -msgid "Password reset requested at %s" -msgstr "Nytt lösenord på %s har begärts" - -msgid "Request could not be verified. (You may have previously submitted it.) Password reset failed." -msgstr "Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord." - -msgid "Your password has been reset as requested." -msgstr "Nu har du fått ett nytt lösenord." - -msgid "Your new password is" -msgstr "Det nya lösenordet är" - -msgid "Save or copy your new password - and then" -msgstr "Spara eller kopiera lösenordet och" - -msgid "click here to login" -msgstr "klicka här för att logga in" - -msgid "Your password may be changed from the Settings page after successful login." -msgstr "När du loggat in kan du byta lösenord på sidan Inställningar." - -msgid "Forgot your Password?" -msgstr "Glömt lösenordet?" - -msgid "Enter your email address and submit to have your password reset. Then check your email for further instructions." -msgstr "Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post." - -msgid "Nickname or Email: " -msgstr "Användarnamn eller e-post:" - -msgid "Reset" -msgstr "Skicka" - -#, php-format -msgid "Welcome back %s" -msgstr "Välkommen tillbaka %s" - -msgid "Manage Identities and/or Pages" -msgstr "Hantera identiteter eller sidor" - -msgid "(Toggle between different identities or community/group pages which share your account details.)" -msgstr "(Växla mellan olika identiteter eller gemenskaper/gruppsidor som är kopplade till ditt konto.)" - -msgid "Select an identity to manage: " -msgstr "Välj vilken identitet du vill hantera: " - -msgid "Profile Match" -msgstr "Matcha profiler" - -msgid "No matches" -msgstr "Ingen träff" - -msgid "No recipient selected." -msgstr "Ingen mottagare har valts." - -msgid "[no subject]" -msgstr "[ingen rubrik]" - -msgid "Unable to locate contact information." -msgstr "Det gick inte att hitta kontaktuppgifterna." - -msgid "Message sent." -msgstr "Meddelandet har skickats." - -msgid "Message could not be sent." -msgstr "Det gick inte att skicka meddelandet." - -msgid "Messages" -msgstr "Meddelanden" - -msgid "Inbox" -msgstr "Inkorg" - -msgid "Outbox" -msgstr "Utkorg" - -msgid "New Message" -msgstr "Nytt meddelande" - -msgid "Message deleted." -msgstr "Meddelandet togs bort." - -msgid "Conversation removed." -msgstr "Konversationen togs bort." - -msgid "Send Private Message" -msgstr "Skicka personligt meddelande" - -msgid "To:" -msgstr "Till:" - -msgid "Subject:" -msgstr "Rubrik:" - -msgid "No messages." -msgstr "Inga meddelanden." - -msgid "Delete conversation" -msgstr "Ta bort konversation" - -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -msgid "Message not available." -msgstr "Meddelandet är inte tillgängligt." - -msgid "Delete message" -msgstr "Ta bort meddelande" - -msgid "Send Reply" -msgstr "Skicka svar" - -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -msgid "Discard" -msgstr "Ta bort" - -msgid "Ignore" -msgstr "Ignorera" - -msgid "Pending Friend/Connect Notifications" -msgstr "Väntande kontaktförfrågningar" - -msgid "Show Ignored Requests" -msgstr "Visa förfrågningar du ignorerat" - -msgid "Hide Ignored Requests" -msgstr "Dölj förfrågningar du ignorerat" - -msgid "Claims to be known to you: " -msgstr "Hävdar att du vet vem han/hon är: " - -msgid "yes" -msgstr "ja" - -msgid "no" -msgstr "nej" - -msgid "Approve as: " -msgstr "Godkänn och lägg till som: " - -msgid "Friend" -msgstr "Vän" - -msgid "Fan/Admirer" -msgstr "Fan/Beundrare" - -msgid "Notification type: " -msgstr "Typ av avisering: " - -msgid "Friend/Connect Request" -msgstr "Vän- eller kontaktförfrågan" - -msgid "New Follower" -msgstr "En som vill följa dig" - -msgid "Approve" -msgstr "Godkänn" - -msgid "No notifications." -msgstr "Inga aviseringar." - -msgid "User registrations waiting for confirm" -msgstr "Användare som registrerat sig och inväntar godkännande" - -msgid "Deny" -msgstr "Avslå" - -msgid "No registrations." -msgstr "Inga registreringar." - -msgid "Post successful." -msgstr "Inlagt." - -msgid "Login failed." -msgstr "Inloggningen misslyckades." - -msgid "Welcome back " -msgstr "Välkommen tillbaka " - -msgid "Photo Albums" -msgstr "Fotoalbum" - -msgid "Contact Photos" -msgstr "Dina kontakters bilder" - -msgid "Contact information unavailable" -msgstr "Kommer inte åt kontaktuppgifter." - -msgid "Profile Photos" -msgstr "Profilbilder" - -msgid "Album not found." -msgstr "Albumet finns inte." - -msgid "Delete Album" -msgstr "Ta bort album" - -msgid "Delete Photo" -msgstr "Ta bort bild" - -msgid "was tagged in a" -msgstr "har taggats i" - -msgid "by" -msgstr "av" - -msgid "Image exceeds size limit of " -msgstr "Bilden överskrider den tillåtna storleken " - -msgid "Unable to process image." -msgstr "Det gick inte att behandla bilden." - -msgid "Image upload failed." -msgstr "Fel vid bilduppladdning." - -msgid "No photos selected" -msgstr "Inga bilder har valts" - -msgid "Upload Photos" -msgstr "Ladda upp bilder" - -msgid "New album name: " -msgstr "Nytt album med namn: " - -msgid "or existing album name: " -msgstr "eller befintligt album med namn: " - -msgid "Permissions" -msgstr "Åtkomst" - -msgid "Edit Album" -msgstr "Redigera album" - -msgid "View Photo" -msgstr "Visa bild" - -msgid "Photo not available" -msgstr "Bilden är inte tillgänglig" - -msgid "Edit photo" -msgstr "Hantera bild" - -msgid "Private Message" -msgstr "Personligt meddelande" - -msgid "<< Prev" -msgstr "<< Föreg" - -msgid "View Full Size" -msgstr "Visa fullstor" - -msgid "Next >>" -msgstr "Nästa >>" - -msgid "Tags: " -msgstr "Taggar: " - -msgid "[Remove any tag]" -msgstr "[Remove any tag]" - -msgid "New album name" -msgstr "Nytt album med namn" - -msgid "Caption" -msgstr "Caption" - -msgid "Add a Tag" -msgstr "Lägg till tagg" - -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping" - -msgid "I like this (toggle)" -msgstr "Jag gillar det här (växla)" - -msgid "I don't like this (toggle)" -msgstr "Jag ogillar det här (växla)" - -msgid "This is you" -msgstr "Det här är du" - -msgid "Recent Photos" -msgstr "Nyligen tillagda bilder" - -msgid "Upload New Photos" -msgstr "Ladda upp bilder" - -msgid "View Album" -msgstr "Titta i album" - -msgid "Status" -msgstr "Status" - -msgid "Profile" -msgstr "Profil" - -msgid "Photos" -msgstr "Bilder" - -msgid "Image uploaded but image cropping failed." -msgstr "Bilden laddades upp men det blev fel när den skulle beskäras." - -msgid "Unable to process image" -msgstr "Det gick inte att behandla bilden" - -msgid "Upload File:" -msgstr "Ladda upp fil:" - -msgid "Upload Profile Photo" -msgstr "Ladda upp profilbild" - -msgid "Upload" -msgstr "Ladda upp" - -msgid "or" -msgstr "eller" - -msgid "select a photo from your photo albums" -msgstr "välj en bild från ett album" - -msgid "Crop Image" -msgstr "Beskär bild" - -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Välj hur bilden ska beskäras för att bli så bra som möjligt." - -msgid "Done Editing" -msgstr "Spara" - -msgid "Image uploaded successfully." -msgstr "Bilden har laddats upp." - -msgid "Profile Name is required." -msgstr "Profilen måste ha ett namn." - -msgid "Profile updated." -msgstr "Profilen har uppdaterats." - -msgid "Profile deleted." -msgstr "Profilen har tagits bort." - -msgid "Profile-" -msgstr "Profil-" - -msgid "New profile created." -msgstr "En ny profil har skapats." - -msgid "Profile unavailable to clone." -msgstr "Det gick inte att klona profilen." - -msgid "Hide my contact/friend list from viewers of this profile?" -msgstr "Dölj min kontaktlista för personer som ser den här profilen?" - -msgid "Edit Profile Details" -msgstr "Ändra profilen" - -msgid "View this profile" -msgstr "Titta på profilen" - -msgid "Create a new profile using these settings" -msgstr "Skapa en ny profil med dessa inställningar" - -msgid "Clone this profile" -msgstr "Kopiera profil" - -msgid "Delete this profile" -msgstr "Ta bort profil" - -msgid "Profile Name:" -msgstr "Profilens namn:" - -msgid "Your Full Name:" -msgstr "Fullständigt namn:" - -msgid "Title/Description:" -msgstr "Titel/Beskrivning:" - -msgid "Your Gender:" -msgstr "Kön:" - -msgid "Birthday (y/m/d):" -msgstr "Födelsedag (y/m/d):" - -msgid "Street Address:" -msgstr "Gatuadress:" - -msgid "Locality/City:" -msgstr "Plats/Stad:" - -msgid "Postal/Zip Code:" -msgstr "Postnummer:" - -msgid "Country:" -msgstr "Land:" - -msgid "Region/State:" -msgstr "Region:" - -msgid " Marital Status:" -msgstr " Civilstånd:" - -msgid "Who: (if applicable)" -msgstr "Vem: (om tillämpligt)" - -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exempel: kalle123, Johanna Johansson, pelle@exempel.com" - -msgid "Sexual Preference:" -msgstr "Sexualitet" - -msgid "Homepage URL:" -msgstr "Hemsida: (URL)" - -msgid "Political Views:" -msgstr "Politisk åskådning:" - -msgid "Religious Views:" -msgstr "Religion:" - -msgid "Public Keywords:" -msgstr "Offentliga nyckelord:" - -msgid "Private Keywords:" -msgstr "Privata nyckelord:" - -msgid "Example: fishing photography software" -msgstr "Exempel: fiske fotografering programmering" - -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)" - -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" - -msgid "Tell us about yourself..." -msgstr "Beskriv dig själv..." - -msgid "Hobbies/Interests" -msgstr "Hobbys/Intressen" - -msgid "Contact information and Social Networks" -msgstr "Kontaktuppgifter och sociala nätverk" - -msgid "Musical interests" -msgstr "Musik" - -msgid "Books, literature" -msgstr "Böcker, litteratur" - -msgid "Television" -msgstr "TV" - -msgid "Film/dance/culture/entertainment" -msgstr "Film/Dans/Kultur/Nöje" - -msgid "Love/romance" -msgstr "Kärlek/Romantik" - -msgid "Work/employment" -msgstr "Arbete" - -msgid "School/education" -msgstr "Skola/Utbildning" - -msgid "This is your public profile.
                                              It may be visible to anybody using the internet." -msgstr "Det här är din offentliga profil.
                                              Den kan vara synlig för vem som helst på internet." - -msgid "Profiles" -msgstr "Profiler" - -msgid "Change profile photo" -msgstr "Byt profilbild" - -msgid "Create New Profile" -msgstr "Skapa ny profil" - -msgid "Profile Image" -msgstr "Profilbild" - -msgid "Visible to everybody" -msgstr "Synlig för alla" - -msgid "Edit visibility" -msgstr "Ända vilka som ska kunna se" - -msgid "Invalid profile identifier." -msgstr "Ogiltigt profil-ID." - -msgid "Profile Visibility Editor" -msgstr "Ända vilka som ska kunna se profil" - -msgid "Visible To" -msgstr "Synlig för" - -msgid "All Contacts (with secure profile access)" -msgstr "Alla kontakter (med säker tillgång till din profil)" - -msgid "Invalid OpenID url" -msgstr "Ogiltig OpenID-URL" - -msgid "Please enter the required information." -msgstr "Fyll i alla obligatoriska fält." - -msgid "Please use a shorter name." -msgstr "Välj ett kortare namn." - -msgid "Name too short." -msgstr "Namnet är för kort." - -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Du verkar inte ha angett ditt fullständiga namn." - -msgid "Your email domain is not among those allowed on this site." -msgstr "Din e-postdomän är inte tillåten på den här webbplatsen." - -msgid "Not a valid email address." -msgstr "Ogiltig e-postadress." - -msgid "Cannot use that email." -msgstr "Otillåten e-postadress." - -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter." -msgstr "Ditt användarnamn får bara innehålla a-z, 0-9, - och _, och måste dessutom börja med en bokstav." - -msgid "Nickname is already registered. Please choose another." -msgstr "Användarnamnet är upptaget. Välj ett annat." - -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "SERIOUS ERROR: Generation of security keys failed." - -msgid "An error occurred during registration. Please try again." -msgstr "Något gick fel vid registreringen. Försök igen." - -msgid "An error occurred creating your default profile. Please try again." -msgstr "Det blev fel när din standardprofil skulle skapas. Prova igen." - -msgid "Registration successful. Please check your email for further instructions." -msgstr "Registrering klar. Kolla din e-post för vidare information." - -msgid "Failed to send email message. Here is the message that failed." -msgstr "Det gick inte att skicka e-brevet. Här är meddelandet som inte kunde skickas." - -msgid "Your registration can not be processed." -msgstr "Det går inte att behandla registreringen." - -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering inväntar godkännande av webbplatsens ägare." - -msgid "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'." -msgstr "Om du vill kan du fylla i detta formulär via OpenID genom att ange ditt OpenID och klicka på Registrera." - -msgid "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." -msgstr "Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten." - -msgid "Your OpenID (optional): " -msgstr "OpenID (om du vill): " - -msgid "Members of this network prefer to communicate with real people who use their real names." -msgstr "Medlemmarna i det här nätverket föredrar att kommunicera med riktiga människor som använder sina riktiga namn." - -msgid "Include your profile in member directory?" -msgstr "Ta med profilen i medlemskatalogen?" - -msgid "Registration" -msgstr "Registrering" - -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Fullständigt namn (t. ex. Karl Karlsson): " - -msgid "Your Email Address: " -msgstr "E-postadress: " - -msgid "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@$sitename'." -msgstr "Välj ett användarnamn. Det måste inledas med en bokstav. Din profiladress på den här webbplatsen blir 'användarnamn@$sitename'." - -msgid "Choose a nickname: " -msgstr "Välj ett användarnamn: " - -msgid "Please login." -msgstr "Logga in." - -msgid "Account approved." -msgstr "Kontot har godkänts." - -msgid "Remove My Account" -msgstr "Ta bort mitt konto" - -msgid "This will completely remove your account. Once this has been done it is not recoverable." -msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." - -msgid "Please enter your password for verification:" -msgstr "Ange lösenordet igen för säkerhets skull:" - -msgid "No results." -msgstr "Inga resultat." - -msgid "Passwords do not match. Password unchanged." -msgstr "Lösenorden skiljer sig åt. Lösenordet ändras inte." - -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lösenordet får inte vara blankt. Lösenordet ändras inte." - -msgid "Password changed." -msgstr "Lösenordet har ändrats." - -msgid "Password update failed. Please try again." -msgstr "Det blev fel när lösenordet skulle ändras. Försök igen." - -msgid " Please use a shorter name." -msgstr " Använd ett kortare namn." - -msgid " Name too short." -msgstr " Namnet är för kort." - -msgid " Not valid email." -msgstr " Ogiltig e-postadress." - -msgid " Cannot change to that email." -msgstr " Ändring till den e-postadressen görs inte." - -msgid "Settings updated." -msgstr "Inställningarna har uppdaterats." - -msgid "Plugin Settings" -msgstr "Inställningar för insticksprogram" - -msgid "Account Settings" -msgstr "Kontoinställningar" - -msgid "No Plugin settings configured" -msgstr "Det finns inga inställningar för insticksprogram" - -msgid "Normal Account" -msgstr "Vanligt konto" - -msgid "This account is a normal personal profile" -msgstr "Kontot är ett vanligt personligt konto" - -msgid "Soapbox Account" -msgstr "Konto med envägskommunikation" - -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Kontaktförfrågningar godkänns automatiskt som fans. De kan se vad du skriver men har inte samma rättigheter som vänner." - -msgid "Community/Celebrity Account" -msgstr "Gemenskap eller kändiskonto." - -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "Kontaktförfrågningar godkänns automatiskt som fans med fullständig tvåvägskommunikation." - -msgid "Automatic Friend Account" -msgstr "Konto med automatiskt godkännande av vänner." - -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Kontaktförfrågningar godkänns automatiskt som vänner." - -msgid "OpenID: " -msgstr "OpenID: " - -msgid " (Optional) Allow this OpenID to login to this account." -msgstr " (Valfritt) Tillåt inloggning med detta OpenID på det här kontot." - -msgid "Publish your default profile in site directory?" -msgstr "Vill du att din standardprofil ska synas i den här sajtens medlemskatalog?" - -msgid "Publish your default profile in global social directory?" -msgstr "Vill du att din standardprofil ska synas i den globala medlemskatalogen?" - -msgid "Profile is not published." -msgstr "Profilen är inte publicerad." - -msgid "Your Identity Address is" -msgstr "Din adress, ditt ID, är" - -msgid "Export Personal Data" -msgstr "Exportera personlig information" - -msgid "Basic Settings" -msgstr "Grundläggande inställningar" - -msgid "Full Name:" -msgstr "Fullständigt namn:" - -msgid "Email Address:" -msgstr "E-postadress:" - -msgid "Your Timezone:" -msgstr "Tidszon:" - -msgid "Default Post Location:" -msgstr "Default Post Location:" - -msgid "Use Browser Location:" -msgstr "Använd webbläsarens positionering:" - -msgid "Display Theme:" -msgstr "Tema/utseende:" - -msgid "Security and Privacy Settings" -msgstr "Inställningar för säkerhet och sekretess" - -msgid "Maximum Friend Requests/Day:" -msgstr "Maximalt antal kontaktförfrågningar per dygn:" - -msgid "(to prevent spam abuse)" -msgstr "(för att motverka spam)" - -msgid "Allow friends to post to your profile page:" -msgstr "Låt kontakter göra inlägg på din profilsida:" - -msgid "Automatically expire (delete) posts older than" -msgstr "Ta automatiskt bort inlägg som är äldre än" - -msgid "days" -msgstr "dagar" - -msgid "Notification Settings" -msgstr "Aviseringsinställningar" - -msgid "Send a notification email when:" -msgstr "Skicka ett aviseringsmail när:" - -msgid "You receive an introduction" -msgstr "En kontaktförfrågan anländer" - -msgid "Your introductions are confirmed" -msgstr "Dina förfrågningar godkänns" - -msgid "Someone writes on your profile wall" -msgstr "Någon gör inlägg på din profilsida" - -msgid "Someone writes a followup comment" -msgstr "Någon gör ett inlägg i samma tråd som du" - -msgid "You receive a private message" -msgstr "Du får personliga meddelanden" - -msgid "Password Settings" -msgstr "Lösenordsinställningar" - -msgid "Leave password fields blank unless changing" -msgstr "Lämna fältet tomt om du inte vill byta lösenord" - -msgid "New Password:" -msgstr "Nytt lösenord" - -msgid "Confirm:" -msgstr "Bekräfta (repetera):" - -msgid "Advanced Page Settings" -msgstr "Avancerat" - -msgid "Default Post Permissions" -msgstr "Standardåtkomst för inlägg" - -msgid "(click to open/close)" -msgstr "(klicka för att öppna/stänga)" - -msgid "Tag removed" -msgstr "Taggen har tagits bort" - -msgid "Remove Item Tag" -msgstr "Ta bort tagg" - -msgid "Select a tag to remove: " -msgstr "Välj vilken tagg som ska tas bort: " - -msgid "Remove" -msgstr "Ta bort" - +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "" + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:856 +msgid "New" +msgstr "" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:878 +msgid "Starred" +msgstr "" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "" + +#: mod/viewcontacts.php:72 msgid "No contacts." msgstr "Inga kontakter." -msgid "Visible To:" -msgstr "Synlig för:" +#: object/Item.php:370 +msgid "via" +msgstr "" -msgid "Groups" -msgstr "Grupper" +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" -msgid "Except For:" -msgstr "Utom för:" +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" -msgid "Logged out." -msgstr "Utloggad." +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" -msgid "Unknown | Not categorised" -msgstr "Okänd | Inte kategoriserad" +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" -msgid "Block immediately" -msgstr "Spärra omedelbart" +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" -msgid "Shady, spammer, self-marketer" -msgstr "Skum, spammare, reklamspridare" +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" -msgid "Known to me, but no opinion" -msgstr "Jag vet vem det är, men har ingen åsikt" +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" -msgid "OK, probably harmless" -msgstr "OK, antagligen harmlös" +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" -msgid "Reputable, has my trust" -msgstr "Pålitlig, jag litar på personen" +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" -msgid "Frequently" -msgstr "Ofta" +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" -msgid "Hourly" -msgstr "En gång i timmen" +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" -msgid "Twice daily" -msgstr "Två gånger om dagen" +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" -msgid "Daily" -msgstr "Dagligen" +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" -msgid "Weekly" -msgstr "Veckovis" +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" -msgid "Monthly" -msgstr "Månadsvis" +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/theme.php:200 +msgid "Local Directory" +msgstr "" + +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "" + +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Ta bort?" + +#: boot.php:973 +msgid "show fewer" +msgstr "" + +#: boot.php:1655 #, php-format -msgid "View %s's profile" -msgstr "Gå till profilen som tillhör %s " +msgid "Update %s failed. See error logs." +msgstr "" -msgid "View in context" -msgstr "Visa i sitt sammanhang" +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Skapa nytt konto" -msgid "See more posts like this" -msgstr "Leta inlägg som liknar det här" +#: boot.php:1796 +msgid "Password: " +msgstr "Lösenord: " -#, php-format -msgid "See all %d comments" -msgstr "Visa alla %d kommentarer" +#: boot.php:1797 +msgid "Remember me" +msgstr "" -msgid "to" -msgstr "till" +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "" -msgid "Wall-to-Wall" -msgstr "Profil-till-profil" +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Har du glömt lösenordet?" -msgid "via Wall-To-Wall:" -msgstr "via profil-till-profil:" +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "" -#, php-format -msgid "%s likes this." -msgstr "%s gillar det här." +#: boot.php:1810 +msgid "terms of service" +msgstr "" -#, php-format -msgid "%s doesn't like this." -msgstr "%s ogillar det här." +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "" -#, php-format -msgid "%2$d people like this." -msgstr "%2$d personer gillar det här." - -#, php-format -msgid "%2$d people don't like this." -msgstr "%2$d personer ogillar det här." - -msgid "and" -msgstr "och" - -#, php-format -msgid ", and %d other people" -msgstr ", och ytterligare %d personer" - -#, php-format -msgid "%s like this." -msgstr "%s gillar det här." - -#, php-format -msgid "%s don't like this." -msgstr "%s ogillar det här." - -msgid "Miscellaneous" -msgstr "Blandat" - -msgid "less than a second ago" -msgstr "för mindre än en sekund sedan" - -msgid "year" -msgstr "år" - -msgid "years" -msgstr "år" - -msgid "month" -msgstr "månad" - -msgid "months" -msgstr "månader" - -msgid "week" -msgstr "vecka" - -msgid "weeks" -msgstr "veckor" - -msgid "day" -msgstr "dag" - -msgid "hour" -msgstr "timme" - -msgid "hours" -msgstr "timmar" - -msgid "minute" -msgstr "minut" - -msgid "minutes" -msgstr "minuter" - -msgid "second" -msgstr "sekund" - -msgid "seconds" -msgstr "sekunder" - -msgid " ago" -msgstr " sedan" - -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Cannot locate DNS info for database server '%s'" - -msgid "Create a new group" -msgstr "Skapa ny grupp" - -msgid "Everybody" -msgstr "Alla" - -msgid "Birthday:" -msgstr "Födelsedatum:" - -msgid "Home" -msgstr "Hem" - -msgid "Apps" -msgstr "Apps" - -msgid "Directory" -msgstr "Medlemskatalog" - -msgid "Network" -msgstr "Nätverk" - -msgid "Manage" -msgstr "Hantera" - -msgid "Settings" -msgstr "Inställningar" - -msgid "Embedding disabled" -msgstr "Funktionen bädda in är avstängd" - -msgid "j F, Y" -msgstr "j F, Y" - -msgid "j F" -msgstr "j F" - -msgid "Age:" -msgstr "Ålder:" - -msgid " Status:" -msgstr " Civilstånd:" - -msgid "Religion:" -msgstr "Religion:" - -msgid "About:" -msgstr "Om:" - -msgid "Hobbies/Interests:" -msgstr "Hobbys/Intressen:" - -msgid "Contact information and Social Networks:" -msgstr "Kontaktuppgifter och sociala nätverk:" - -msgid "Musical interests:" -msgstr "Musik:" - -msgid "Books, literature:" -msgstr "Böcker/Litteratur:" - -msgid "Television:" -msgstr "TV:" - -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Dans/Kultur/Underhållning:" - -msgid "Love/Romance:" -msgstr "Kärlek/Romantik:" - -msgid "Work/employment:" -msgstr "Arbete:" - -msgid "School/education:" -msgstr "Skola/Utbildning:" - -msgid "Male" -msgstr "Man" - -msgid "Female" -msgstr "Kvinna" - -msgid "Currently Male" -msgstr "För närvarande man" - -msgid "Currently Female" -msgstr "För närvarande kvinna" - -msgid "Mostly Male" -msgstr "Mestadels man" - -msgid "Mostly Female" -msgstr "Mestadels kvinna" - -msgid "Transgender" -msgstr "Transgender" - -msgid "Intersex" -msgstr "Intersex" - -msgid "Transsexual" -msgstr "Transsexuell" - -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -msgid "Neuter" -msgstr "Könslös" - -msgid "Non-specific" -msgstr "Oklart" - -msgid "Other" -msgstr "Annat" - -msgid "Undecided" -msgstr "Obestämt" - -msgid "Males" -msgstr "Män" - -msgid "Females" -msgstr "Kvinnor" - -msgid "Gay" -msgstr "Bög" - -msgid "Lesbian" -msgstr "Lesbisk" - -msgid "No Preference" -msgstr "No Preference" - -msgid "Bisexual" -msgstr "Bisexuell" - -msgid "Autosexual" -msgstr "Autosexual" - -msgid "Abstinent" -msgstr "Abstinent" - -msgid "Virgin" -msgstr "Oskuld" - -msgid "Deviant" -msgstr "Avvikande" - -msgid "Fetish" -msgstr "Fetisch" - -msgid "Oodles" -msgstr "Massor" - -msgid "Nonsexual" -msgstr "Asexuell" - -msgid "Single" -msgstr "Singel" - -msgid "Lonely" -msgstr "Ensam" - -msgid "Available" -msgstr "Tillgänglig" - -msgid "Unavailable" -msgstr "Upptagen" - -msgid "Dating" -msgstr "Dejtar" - -msgid "Unfaithful" -msgstr "Otrogen" - -msgid "Sex Addict" -msgstr "Sexmissbrukare" - -msgid "Friends" -msgstr "Vänner" - -msgid "Friends/Benefits" -msgstr "Friends/Benefits" - -msgid "Casual" -msgstr "Casual" - -msgid "Engaged" -msgstr "Förlovad" - -msgid "Married" -msgstr "Gift" - -msgid "Partners" -msgstr "I partnerskap" - -msgid "Cohabiting" -msgstr "Cohabiting" - -msgid "Happy" -msgstr "Nöjd" - -msgid "Not Looking" -msgstr "Letar inte" - -msgid "Swinger" -msgstr "Swinger" - -msgid "Betrayed" -msgstr "Bedragen" - -msgid "Separated" -msgstr "Separerat" - -msgid "Unstable" -msgstr "Instabilt" - -msgid "Divorced" -msgstr "Skiljd" - -msgid "Widowed" -msgstr "Änka/änkling" - -msgid "Uncertain" -msgstr "Oklart" - -msgid "Complicated" -msgstr "Komplicerat" - -msgid "Don't care" -msgstr "Bryr mig inte" - -msgid "Ask me" -msgstr "Fråga mig" - -msgid "Facebook disabled" -msgstr "Facebook inaktiverat" - -msgid "Facebook API key is missing." -msgstr "Facebook API key is missing." - -msgid "Facebook Connect" -msgstr "Facebook Connect" - -msgid "Install Facebook post connector" -msgstr "Install Facebook post connector" - -msgid "Remove Facebook post connector" -msgstr "Remove Facebook post connector" - -msgid "Post to Facebook by default" -msgstr "Lägg alltid in inläggen på Facebook" - -msgid "Facebook" -msgstr "Facebook" - -msgid "Facebook Connector Settings" -msgstr "Facebook Connector Settings" - -msgid "Post to Facebook" -msgstr "Lägg in på Facebook" - -msgid "Image: " -msgstr "Bild: " - -msgid "Select files to upload: " -msgstr "Välj filer att ladda upp: " - -msgid "Use the following controls only if the Java uploader [above] fails to launch." -msgstr "Använd följande bara om javauppladdaren ovanför inte startar." - -msgid "Upload a file" -msgstr "Ladda upp en fil" - -msgid "Drop files here to upload" -msgstr "Dra filer som ska laddas upp hit" - -msgid "Failed" -msgstr "Misslyckades" - -msgid "No files were uploaded." -msgstr "Inga filer laddades upp." - -msgid "Uploaded file is empty" -msgstr "Den uppladdade filen är tom" - -msgid "Uploaded file is too large" -msgstr "Den uppladdade filen är för stor" - -msgid "File has an invalid extension, it should be one of " -msgstr "Otillåten filnamnsändelse, det ska vara " - -msgid "Upload was cancelled, or server error encountered" -msgstr "Serverfel eller avbruten uppladdning" - -msgid "Randplace Settings" -msgstr "Randplace Settings" - -msgid "Enable Randplace Plugin" -msgstr "Enable Randplace Plugin" - -msgid "Post to StatusNet" -msgstr "Lägg in på StatusNet" - -msgid "StatusNet Posting Settings" -msgstr "Inställningar för inlägg på StatusNet" - -msgid "No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
                                              Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation." -msgstr "No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
                                              Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation." - -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" - -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" - -msgid "Base API Path (remember the trailing /)" -msgstr "Base API Path (remember the trailing /)" - -msgid "To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet." -msgstr "To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet." - -msgid "Log in with StatusNet" -msgstr "Logga in med StatusNet" - -msgid "Copy the security code from StatusNet here" -msgstr "Ange säkerhetskoden från StatusNet här" - -msgid "Currently connected to: " -msgstr "Ansluten till: " - -msgid "If enabled all your public postings will be posted to the associated StatusNet account as well." -msgstr "If enabled all your public postings will be posted to the associated StatusNet account as well." - -msgid "Send public postings to StatusNet" -msgstr "Send public postings to StatusNet" - -msgid "Clear OAuth configuration" -msgstr "Clear OAuth configuration" - -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tredimensionellt luffarschack" - -msgid "3D Tic-Tac-Toe" -msgstr "3D-luffarschack" - -msgid "New game" -msgstr "Ny spelomgång" - -msgid "New game with handicap" -msgstr "Ny spelomgång med handikapp" - -msgid "Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. " -msgstr "Det tredimensionella luffarschacket är precis som vanligt luffarschack förutom att det spelas i flera nivåer samtidigt. " - -msgid "In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels." -msgstr "Här är det tre nivåer. Man vinner om man får tre i rad på vilken nivå som helst, eller uppåt, nedåt eller diagonalt på flera nivåer." - -msgid "The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage." -msgstr "Om man spelar med handikapp så stängs mittenpositionen på mittennivån av eftersom spelare som väljer den positionen ofta får övertaget." - -msgid "You go first..." -msgstr "Du börjar..." - -msgid "I'm going first this time..." -msgstr "Jag börjar den här gången..." - -msgid "You won!" -msgstr "Du vann!" - -msgid "\"Cat\" game!" -msgstr "\"Cat\" game!" - -msgid "I won!" -msgstr "Jag vann!" - -msgid "Post to Twitter" -msgstr "Lägg in på Twitter" - -msgid "Twitter Posting Settings" -msgstr "Inställningar för inlägg på Twitter" - -msgid "No consumer key pair for Twitter found. Please contact your site administrator." -msgstr "No consumer key pair for Twitter found. Please contact your site administrator." - -msgid "At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter." -msgstr "At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter." - -msgid "Copy the PIN from Twitter here" -msgstr "Ange PIN-koden från Twitter här" - -msgid "If enabled all your public postings will be posted to the associated Twitter account as well." -msgstr "If enabled all your public postings will be posted to the associated Twitter account as well." - -msgid "Send public postings to Twitter" -msgstr "Send public postings to Twitter" - -msgid "Africa/Abidjan" -msgstr "Afrika/Abidjan" - -msgid "Africa/Accra" -msgstr "Afrika/Accra" - -msgid "Africa/Addis_Ababa" -msgstr "Afrika/Addis_Ababa" - -msgid "Africa/Algiers" -msgstr "Afrika/Algiers" - -msgid "Africa/Asmara" -msgstr "Afrika/Asmara" - -msgid "Africa/Asmera" -msgstr "Afrika/Asmera" - -msgid "Africa/Bamako" -msgstr "Afrika/Bamako" - -msgid "Africa/Bangui" -msgstr "Afrika/Bangui" - -msgid "Africa/Banjul" -msgstr "Afrika/Banjul" - -msgid "Africa/Bissau" -msgstr "Afrika/Bissau" - -msgid "Africa/Blantyre" -msgstr "Afrika/Blantyre" - -msgid "Africa/Brazzaville" -msgstr "Afrika/Brazzaville" - -msgid "Africa/Bujumbura" -msgstr "Afrika/Bujumbura" - -msgid "Africa/Cairo" -msgstr "Afrika/Cairo" - -msgid "Africa/Casablanca" -msgstr "Afrika/Casablanca" - -msgid "Africa/Ceuta" -msgstr "Afrika/Ceuta" - -msgid "Africa/Conakry" -msgstr "Afrika/Conakry" - -msgid "Africa/Dakar" -msgstr "Afrika/Dakar" - -msgid "Africa/Dar_es_Salaam" -msgstr "Afrika/Dar_es_Salaam" - -msgid "Africa/Djibouti" -msgstr "Afrika/Djibouti" - -msgid "Africa/Douala" -msgstr "Afrika/Douala" - -msgid "Africa/El_Aaiun" -msgstr "Afrika/El_Aaiun" - -msgid "Africa/Freetown" -msgstr "Afrika/Freetown" - -msgid "Africa/Gaborone" -msgstr "Afrika/Gaborone" - -msgid "Africa/Harare" -msgstr "Afrika/Harare" - -msgid "Africa/Johannesburg" -msgstr "Afrika/Johannesburg" - -msgid "Africa/Kampala" -msgstr "Afrika/Kampala" - -msgid "Africa/Khartoum" -msgstr "Afrika/Khartoum" - -msgid "Africa/Kigali" -msgstr "Afrika/Kigali" - -msgid "Africa/Kinshasa" -msgstr "Afrika/Kinshasa" - -msgid "Africa/Lagos" -msgstr "Afrika/Lagos" - -msgid "Africa/Libreville" -msgstr "Afrika/Libreville" - -msgid "Africa/Lome" -msgstr "Afrika/Lome" - -msgid "Africa/Luanda" -msgstr "Afrika/Luanda" - -msgid "Africa/Lubumbashi" -msgstr "Afrika/Lubumbashi" - -msgid "Africa/Lusaka" -msgstr "Afrika/Lusaka" - -msgid "Africa/Malabo" -msgstr "Afrika/Malabo" - -msgid "Africa/Maputo" -msgstr "Afrika/Maputo" - -msgid "Africa/Maseru" -msgstr "Afrika/Maseru" - -msgid "Africa/Mbabane" -msgstr "Afrika/Mbabane" - -msgid "Africa/Mogadishu" -msgstr "Afrika/Mogadishu" - -msgid "Africa/Monrovia" -msgstr "Afrika/Monrovia" - -msgid "Africa/Nairobi" -msgstr "Afrika/Nairobi" - -msgid "Africa/Ndjamena" -msgstr "Afrika/Ndjamena" - -msgid "Africa/Niamey" -msgstr "Afrika/Niamey" - -msgid "Africa/Nouakchott" -msgstr "Afrika/Nouakchott" - -msgid "Africa/Ouagadougou" -msgstr "Afrika/Ouagadougou" - -msgid "Africa/Porto-Novo" -msgstr "Afrika/Porto-Novo" - -msgid "Africa/Sao_Tome" -msgstr "Afrika/Sao_Tome" - -msgid "Africa/Timbuktu" -msgstr "Afrika/Timbuktu" - -msgid "Africa/Tripoli" -msgstr "Afrika/Tripoli" - -msgid "Africa/Tunis" -msgstr "Afrika/Tunis" - -msgid "Africa/Windhoek" -msgstr "Afrika/Windhoek" - -msgid "America/Adak" -msgstr "Amerika/Adak" - -msgid "America/Anchorage" -msgstr "Amerika/Anchorage" - -msgid "America/Anguilla" -msgstr "Amerika/Anguilla" - -msgid "America/Antigua" -msgstr "Amerika/Antigua" - -msgid "America/Araguaina" -msgstr "Amerika/Araguaina" - -msgid "America/Argentina/Buenos_Aires" -msgstr "Amerika/Argentina/Buenos_Aires" - -msgid "America/Argentina/Catamarca" -msgstr "Amerika/Argentina/Catamarca" - -msgid "America/Argentina/ComodRivadavia" -msgstr "Amerika/Argentina/ComodRivadavia" - -msgid "America/Argentina/Cordoba" -msgstr "Amerika/Argentina/Cordoba" - -msgid "America/Argentina/Jujuy" -msgstr "Amerika/Argentina/Jujuy" - -msgid "America/Argentina/La_Rioja" -msgstr "Amerika/Argentina/La_Rioja" - -msgid "America/Argentina/Mendoza" -msgstr "Amerika/Argentina/Mendoza" - -msgid "America/Argentina/Rio_Gallegos" -msgstr "Amerika/Argentina/Rio_Gallegos" - -msgid "America/Argentina/Salta" -msgstr "Amerika/Argentina/Salta" - -msgid "America/Argentina/San_Juan" -msgstr "Amerika/Argentina/San_Juan" - -msgid "America/Argentina/San_Luis" -msgstr "Amerika/Argentina/San_Luis" - -msgid "America/Argentina/Tucuman" -msgstr "Amerika/Argentina/Tucuman" - -msgid "America/Argentina/Ushuaia" -msgstr "Amerika/Argentina/Ushuaia" - -msgid "America/Aruba" -msgstr "Amerika/Aruba" - -msgid "America/Asuncion" -msgstr "Amerika/Asuncion" - -msgid "America/Atikokan" -msgstr "Amerika/Atikokan" - -msgid "America/Atka" -msgstr "Amerika/Atka" - -msgid "America/Bahia" -msgstr "Amerika/Bahia" - -msgid "America/Barbados" -msgstr "Amerika/Barbados" - -msgid "America/Belem" -msgstr "Amerika/Belem" - -msgid "America/Belize" -msgstr "Amerika/Belize" - -msgid "America/Blanc-Sablon" -msgstr "Amerika/Blanc-Sablon" - -msgid "America/Boa_Vista" -msgstr "Amerika/Boa_Vista" - -msgid "America/Bogota" -msgstr "Amerika/Bogota" - -msgid "America/Boise" -msgstr "Amerika/Boise" - -msgid "America/Buenos_Aires" -msgstr "Amerika/Buenos_Aires" - -msgid "America/Cambridge_Bay" -msgstr "Amerika/Cambridge_Bay" - -msgid "America/Campo_Grande" -msgstr "Amerika/Campo_Grande" - -msgid "America/Cancun" -msgstr "Amerika/Cancun" - -msgid "America/Caracas" -msgstr "Amerika/Caracas" - -msgid "America/Catamarca" -msgstr "Amerika/Catamarca" - -msgid "America/Cayenne" -msgstr "Amerika/Cayenne" - -msgid "America/Cayman" -msgstr "Amerika/Cayman" - -msgid "America/Chicago" -msgstr "Amerika/Chicago" - -msgid "America/Chihuahua" -msgstr "Amerika/Chihuahua" - -msgid "America/Coral_Harbour" -msgstr "Amerika/Coral_Harbour" - -msgid "America/Cordoba" -msgstr "Amerika/Cordoba" - -msgid "America/Costa_Rica" -msgstr "Amerika/Costa_Rica" - -msgid "America/Cuiaba" -msgstr "Amerika/Cuiaba" - -msgid "America/Curacao" -msgstr "Amerika/Curacao" - -msgid "America/Danmarkshavn" -msgstr "Amerika/Danmarkshavn" - -msgid "America/Dawson" -msgstr "Amerika/Dawson" - -msgid "America/Dawson_Creek" -msgstr "Amerika/Dawson_Creek" - -msgid "America/Denver" -msgstr "Amerika/Denver" - -msgid "America/Detroit" -msgstr "Amerika/Detroit" - -msgid "America/Dominica" -msgstr "Amerika/Dominica" - -msgid "America/Edmonton" -msgstr "Amerika/Edmonton" - -msgid "America/Eirunepe" -msgstr "Amerika/Eirunepe" - -msgid "America/El_Salvador" -msgstr "Amerika/El_Salvador" - -msgid "America/Ensenada" -msgstr "Amerika/Ensenada" - -msgid "America/Fort_Wayne" -msgstr "Amerika/Fort_Wayne" - -msgid "America/Fortaleza" -msgstr "Amerika/Fortaleza" - -msgid "America/Glace_Bay" -msgstr "Amerika/Glace_Bay" - -msgid "America/Godthab" -msgstr "Amerika/Godthab" - -msgid "America/Goose_Bay" -msgstr "Amerika/Goose_Bay" - -msgid "America/Grand_Turk" -msgstr "Amerika/Grand_Turk" - -msgid "America/Grenada" -msgstr "Amerika/Grenada" - -msgid "America/Guadeloupe" -msgstr "Amerika/Guadeloupe" - -msgid "America/Guatemala" -msgstr "Amerika/Guatemala" - -msgid "America/Guayaquil" -msgstr "Amerika/Guayaquil" - -msgid "America/Guyana" -msgstr "Amerika/Guyana" - -msgid "America/Halifax" -msgstr "Amerika/Halifax" - -msgid "America/Havana" -msgstr "Amerika/Havana" - -msgid "America/Hermosillo" -msgstr "Amerika/Hermosillo" - -msgid "America/Indiana/Indianapolis" -msgstr "Amerika/Indiana/Indianapolis" - -msgid "America/Indiana/Knox" -msgstr "Amerika/Indiana/Knox" - -msgid "America/Indiana/Marengo" -msgstr "Amerika/Indiana/Marengo" - -msgid "America/Indiana/Petersburg" -msgstr "Amerika/Indiana/Petersburg" - -msgid "America/Indiana/Tell_City" -msgstr "Amerika/Indiana/Tell_City" - -msgid "America/Indiana/Vevay" -msgstr "Amerika/Indiana/Vevay" - -msgid "America/Indiana/Vincennes" -msgstr "Amerika/Indiana/Vincennes" - -msgid "America/Indiana/Winamac" -msgstr "Amerika/Indiana/Winamac" - -msgid "America/Indianapolis" -msgstr "Amerika/Indianapolis" - -msgid "America/Inuvik" -msgstr "Amerika/Inuvik" - -msgid "America/Iqaluit" -msgstr "Amerika/Iqaluit" - -msgid "America/Jamaica" -msgstr "Amerika/Jamaica" - -msgid "America/Jujuy" -msgstr "Amerika/Jujuy" - -msgid "America/Juneau" -msgstr "Amerika/Juneau" - -msgid "America/Kentucky/Louisville" -msgstr "Amerika/Kentucky/Louisville" - -msgid "America/Kentucky/Monticello" -msgstr "Amerika/Kentucky/Monticello" - -msgid "America/Knox_IN" -msgstr "Amerika/Knox_IN" - -msgid "America/La_Paz" -msgstr "Amerika/La_Paz" - -msgid "America/Lima" -msgstr "Amerika/Lima" - -msgid "America/Los_Angeles" -msgstr "Amerika/Los_Angeles" - -msgid "America/Louisville" -msgstr "Amerika/Louisville" - -msgid "America/Maceio" -msgstr "Amerika/Maceio" - -msgid "America/Managua" -msgstr "Amerika/Managua" - -msgid "America/Manaus" -msgstr "Amerika/Manaus" - -msgid "America/Marigot" -msgstr "Amerika/Marigot" - -msgid "America/Martinique" -msgstr "Amerika/Martinique" - -msgid "America/Matamoros" -msgstr "Amerika/Matamoros" - -msgid "America/Mazatlan" -msgstr "Amerika/Mazatlan" - -msgid "America/Mendoza" -msgstr "Amerika/Mendoza" - -msgid "America/Menominee" -msgstr "Amerika/Menominee" - -msgid "America/Merida" -msgstr "Amerika/Merida" - -msgid "America/Mexico_City" -msgstr "Amerika/Mexico_City" - -msgid "America/Miquelon" -msgstr "Amerika/Miquelon" - -msgid "America/Moncton" -msgstr "Amerika/Moncton" - -msgid "America/Monterrey" -msgstr "Amerika/Monterrey" - -msgid "America/Montevideo" -msgstr "Amerika/Montevideo" - -msgid "America/Montreal" -msgstr "Amerika/Montreal" - -msgid "America/Montserrat" -msgstr "Amerika/Montserrat" - -msgid "America/Nassau" -msgstr "Amerika/Nassau" - -msgid "America/New_York" -msgstr "Amerika/New_York" - -msgid "America/Nipigon" -msgstr "Amerika/Nipigon" - -msgid "America/Nome" -msgstr "Amerika/Nome" - -msgid "America/Noronha" -msgstr "Amerika/Noronha" - -msgid "America/North_Dakota/Center" -msgstr "Amerika/North_Dakota/Center" - -msgid "America/North_Dakota/New_Salem" -msgstr "Amerika/North_Dakota/New_Salem" - -msgid "America/Ojinaga" -msgstr "Amerika/Ojinaga" - -msgid "America/Panama" -msgstr "Amerika/Panama" - -msgid "America/Pangnirtung" -msgstr "Amerika/Pangnirtung" - -msgid "America/Paramaribo" -msgstr "Amerika/Paramaribo" - -msgid "America/Phoenix" -msgstr "Amerika/Phoenix" - -msgid "America/Port-au-Prince" -msgstr "Amerika/Port-au-Prince" - -msgid "America/Port_of_Spain" -msgstr "Amerika/Port_of_Spain" - -msgid "America/Porto_Acre" -msgstr "Amerika/Porto_Acre" - -msgid "America/Porto_Velho" -msgstr "Amerika/Porto_Velho" - -msgid "America/Puerto_Rico" -msgstr "Amerika/Puerto_Rico" - -msgid "America/Rainy_River" -msgstr "Amerika/Rainy_River" - -msgid "America/Rankin_Inlet" -msgstr "Amerika/Rankin_Inlet" - -msgid "America/Recife" -msgstr "Amerika/Recife" - -msgid "America/Regina" -msgstr "Amerika/Regina" - -msgid "America/Resolute" -msgstr "Amerika/Resolute" - -msgid "America/Rio_Branco" -msgstr "Amerika/Rio_Branco" - -msgid "America/Rosario" -msgstr "Amerika/Rosario" - -msgid "America/Santa_Isabel" -msgstr "Amerika/Santa_Isabel" - -msgid "America/Santarem" -msgstr "Amerika/Santarem" - -msgid "America/Santiago" -msgstr "Amerika/Santiago" - -msgid "America/Santo_Domingo" -msgstr "Amerika/Santo_Domingo" - -msgid "America/Sao_Paulo" -msgstr "Amerika/Sao_Paulo" - -msgid "America/Scoresbysund" -msgstr "Amerika/Scoresbysund" - -msgid "America/Shiprock" -msgstr "Amerika/Shiprock" - -msgid "America/St_Barthelemy" -msgstr "Amerika/St_Barthelemy" - -msgid "America/St_Johns" -msgstr "Amerika/St_Johns" - -msgid "America/St_Kitts" -msgstr "Amerika/St_Kitts" - -msgid "America/St_Lucia" -msgstr "Amerika/St_Lucia" - -msgid "America/St_Thomas" -msgstr "Amerika/St_Thomas" - -msgid "America/St_Vincent" -msgstr "Amerika/St_Vincent" - -msgid "America/Swift_Current" -msgstr "Amerika/Swift_Current" - -msgid "America/Tegucigalpa" -msgstr "Amerika/Tegucigalpa" - -msgid "America/Thule" -msgstr "Amerika/Thule" - -msgid "America/Thunder_Bay" -msgstr "Amerika/Thunder_Bay" - -msgid "America/Tijuana" -msgstr "Amerika/Tijuana" - -msgid "America/Toronto" -msgstr "Amerika/Toronto" - -msgid "America/Tortola" -msgstr "Amerika/Tortola" - -msgid "America/Vancouver" -msgstr "Amerika/Vancouver" - -msgid "America/Virgin" -msgstr "Amerika/Virgin" - -msgid "America/Whitehorse" -msgstr "Amerika/Whitehorse" - -msgid "America/Winnipeg" -msgstr "Amerika/Winnipeg" - -msgid "America/Yakutat" -msgstr "Amerika/Yakutat" - -msgid "America/Yellowknife" -msgstr "Amerika/Yellowknife" - -msgid "Antarctica/Casey" -msgstr "Antarctica/Casey" - -msgid "Antarctica/Davis" -msgstr "Antarctica/Davis" - -msgid "Antarctica/DumontDUrville" -msgstr "Antarctica/DumontDUrville" - -msgid "Antarctica/Macquarie" -msgstr "Antarctica/Macquarie" - -msgid "Antarctica/Mawson" -msgstr "Antarctica/Mawson" - -msgid "Antarctica/McMurdo" -msgstr "Antarctica/McMurdo" - -msgid "Antarctica/Palmer" -msgstr "Antarctica/Palmer" - -msgid "Antarctica/Rothera" -msgstr "Antarctica/Rothera" - -msgid "Antarctica/South_Pole" -msgstr "Antarctica/South_Pole" - -msgid "Antarctica/Syowa" -msgstr "Antarctica/Syowa" - -msgid "Antarctica/Vostok" -msgstr "Antarctica/Vostok" - -msgid "Arctic/Longyearbyen" -msgstr "Arctic/Longyearbyen" - -msgid "Asia/Aden" -msgstr "Asien/Aden" - -msgid "Asia/Almaty" -msgstr "Asien/Almaty" - -msgid "Asia/Amman" -msgstr "Asien/Amman" - -msgid "Asia/Anadyr" -msgstr "Asien/Anadyr" - -msgid "Asia/Aqtau" -msgstr "Asien/Aqtau" - -msgid "Asia/Aqtobe" -msgstr "Asien/Aqtobe" - -msgid "Asia/Ashgabat" -msgstr "Asien/Ashgabat" - -msgid "Asia/Ashkhabad" -msgstr "Asien/Ashkhabad" - -msgid "Asia/Baghdad" -msgstr "Asien/Baghdad" - -msgid "Asia/Bahrain" -msgstr "Asien/Bahrain" - -msgid "Asia/Baku" -msgstr "Asien/Baku" - -msgid "Asia/Bangkok" -msgstr "Asien/Bangkok" - -msgid "Asia/Beirut" -msgstr "Asien/Beirut" - -msgid "Asia/Bishkek" -msgstr "Asien/Bishkek" - -msgid "Asia/Brunei" -msgstr "Asien/Brunei" - -msgid "Asia/Calcutta" -msgstr "Asien/Calcutta" - -msgid "Asia/Choibalsan" -msgstr "Asien/Choibalsan" - -msgid "Asia/Chongqing" -msgstr "Asien/Chongqing" - -msgid "Asia/Chungking" -msgstr "Asien/Chungking" - -msgid "Asia/Colombo" -msgstr "Asien/Colombo" - -msgid "Asia/Dacca" -msgstr "Asien/Dacca" - -msgid "Asia/Damascus" -msgstr "Asien/Damascus" - -msgid "Asia/Dhaka" -msgstr "Asien/Dhaka" - -msgid "Asia/Dili" -msgstr "Asien/Dili" - -msgid "Asia/Dubai" -msgstr "Asien/Dubai" - -msgid "Asia/Dushanbe" -msgstr "Asien/Dushanbe" - -msgid "Asia/Gaza" -msgstr "Asien/Gaza" - -msgid "Asia/Harbin" -msgstr "Asien/Harbin" - -msgid "Asia/Ho_Chi_Minh" -msgstr "Asien/Ho_Chi_Minh" - -msgid "Asia/Hong_Kong" -msgstr "Asien/Hong_Kong" - -msgid "Asia/Hovd" -msgstr "Asien/Hovd" - -msgid "Asia/Irkutsk" -msgstr "Asien/Irkutsk" - -msgid "Asia/Istanbul" -msgstr "Asien/Istanbul" - -msgid "Asia/Jakarta" -msgstr "Asien/Jakarta" - -msgid "Asia/Jayapura" -msgstr "Asien/Jayapura" - -msgid "Asia/Jerusalem" -msgstr "Asien/Jerusalem" - -msgid "Asia/Kabul" -msgstr "Asien/Kabul" - -msgid "Asia/Kamchatka" -msgstr "Asien/Kamchatka" - -msgid "Asia/Karachi" -msgstr "Asien/Karachi" - -msgid "Asia/Kashgar" -msgstr "Asien/Kashgar" - -msgid "Asia/Kathmandu" -msgstr "Asien/Kathmandu" - -msgid "Asia/Katmandu" -msgstr "Asien/Katmandu" - -msgid "Asia/Kolkata" -msgstr "Asien/Kolkata" - -msgid "Asia/Krasnoyarsk" -msgstr "Asien/Krasnoyarsk" - -msgid "Asia/Kuala_Lumpur" -msgstr "Asien/Kuala_Lumpur" - -msgid "Asia/Kuching" -msgstr "Asien/Kuching" - -msgid "Asia/Kuwait" -msgstr "Asien/Kuwait" - -msgid "Asia/Macao" -msgstr "Asien/Macao" - -msgid "Asia/Macau" -msgstr "Asien/Macau" - -msgid "Asia/Magadan" -msgstr "Asien/Magadan" - -msgid "Asia/Makassar" -msgstr "Asien/Makassar" - -msgid "Asia/Manila" -msgstr "Asien/Manila" - -msgid "Asia/Muscat" -msgstr "Asien/Muscat" - -msgid "Asia/Nicosia" -msgstr "Asien/Nicosia" - -msgid "Asia/Novokuznetsk" -msgstr "Asien/Novokuznetsk" - -msgid "Asia/Novosibirsk" -msgstr "Asien/Novosibirsk" - -msgid "Asia/Omsk" -msgstr "Asien/Omsk" - -msgid "Asia/Oral" -msgstr "Asien/Oral" - -msgid "Asia/Phnom_Penh" -msgstr "Asien/Phnom_Penh" - -msgid "Asia/Pontianak" -msgstr "Asien/Pontianak" - -msgid "Asia/Pyongyang" -msgstr "Asien/Pyongyang" - -msgid "Asia/Qatar" -msgstr "Asien/Qatar" - -msgid "Asia/Qyzylorda" -msgstr "Asien/Qyzylorda" - -msgid "Asia/Rangoon" -msgstr "Asien/Rangoon" - -msgid "Asia/Riyadh" -msgstr "Asien/Riyadh" - -msgid "Asia/Saigon" -msgstr "Asien/Saigon" - -msgid "Asia/Sakhalin" -msgstr "Asien/Sakhalin" - -msgid "Asia/Samarkand" -msgstr "Asien/Samarkand" - -msgid "Asia/Seoul" -msgstr "Asien/Seoul" - -msgid "Asia/Shanghai" -msgstr "Asien/Shanghai" - -msgid "Asia/Singapore" -msgstr "Asien/Singapore" - -msgid "Asia/Taipei" -msgstr "Asien/Taipei" - -msgid "Asia/Tashkent" -msgstr "Asien/Tashkent" - -msgid "Asia/Tbilisi" -msgstr "Asien/Tbilisi" - -msgid "Asia/Tehran" -msgstr "Asien/Tehran" - -msgid "Asia/Tel_Aviv" -msgstr "Asien/Tel_Aviv" - -msgid "Asia/Thimbu" -msgstr "Asien/Thimbu" - -msgid "Asia/Thimphu" -msgstr "Asien/Thimphu" - -msgid "Asia/Tokyo" -msgstr "Asien/Tokyo" - -msgid "Asia/Ujung_Pandang" -msgstr "Asien/Ujung_Pandang" - -msgid "Asia/Ulaanbaatar" -msgstr "Asien/Ulaanbaatar" - -msgid "Asia/Ulan_Bator" -msgstr "Asien/Ulan_Bator" - -msgid "Asia/Urumqi" -msgstr "Asien/Urumqi" - -msgid "Asia/Vientiane" -msgstr "Asien/Vientiane" - -msgid "Asia/Vladivostok" -msgstr "Asien/Vladivostok" - -msgid "Asia/Yakutsk" -msgstr "Asien/Yakutsk" - -msgid "Asia/Yekaterinburg" -msgstr "Asien/Yekaterinburg" - -msgid "Asia/Yerevan" -msgstr "Asien/Yerevan" - -msgid "Atlantic/Azores" -msgstr "Atlantic/Azores" - -msgid "Atlantic/Bermuda" -msgstr "Atlantic/Bermuda" - -msgid "Atlantic/Canary" -msgstr "Atlantic/Canary" - -msgid "Atlantic/Cape_Verde" -msgstr "Atlantic/Cape_Verde" - -msgid "Atlantic/Faeroe" -msgstr "Atlantic/Faeroe" - -msgid "Atlantic/Faroe" -msgstr "Atlantic/Faroe" - -msgid "Atlantic/Jan_Mayen" -msgstr "Atlantic/Jan_Mayen" - -msgid "Atlantic/Madeira" -msgstr "Atlantic/Madeira" - -msgid "Atlantic/Reykjavik" -msgstr "Atlantic/Reykjavik" - -msgid "Atlantic/South_Georgia" -msgstr "Atlantic/South_Georgia" - -msgid "Atlantic/St_Helena" -msgstr "Atlantic/St_Helena" - -msgid "Atlantic/Stanley" -msgstr "Atlantic/Stanley" - -msgid "Australia/ACT" -msgstr "Australien/ACT" - -msgid "Australia/Adelaide" -msgstr "Australien/Adelaide" - -msgid "Australia/Brisbane" -msgstr "Australien/Brisbane" - -msgid "Australia/Broken_Hill" -msgstr "Australien/Broken_Hill" - -msgid "Australia/Canberra" -msgstr "Australien/Canberra" - -msgid "Australia/Currie" -msgstr "Australien/Currie" - -msgid "Australia/Darwin" -msgstr "Australien/Darwin" - -msgid "Australia/Eucla" -msgstr "Australien/Eucla" - -msgid "Australia/Hobart" -msgstr "Australien/Hobart" - -msgid "Australia/LHI" -msgstr "Australien/LHI" - -msgid "Australia/Lindeman" -msgstr "Australien/Lindeman" - -msgid "Australia/Lord_Howe" -msgstr "Australien/Lord_Howe" - -msgid "Australia/Melbourne" -msgstr "Australien/Melbourne" - -msgid "Australia/North" -msgstr "Australien/North" - -msgid "Australia/NSW" -msgstr "Australien/NSW" - -msgid "Australia/Perth" -msgstr "Australien/Perth" - -msgid "Australia/Queensland" -msgstr "Australien/Queensland" - -msgid "Australia/South" -msgstr "Australien/South" - -msgid "Australia/Sydney" -msgstr "Australien/Sydney" - -msgid "Australia/Tasmania" -msgstr "Australien/Tasmania" - -msgid "Australia/Victoria" -msgstr "Australien/Victoria" - -msgid "Australia/West" -msgstr "Australien/West" - -msgid "Australia/Yancowinna" -msgstr "Australien/Yancowinna" - -msgid "Brazil/Acre" -msgstr "Brasilien/Acre" - -msgid "Brazil/DeNoronha" -msgstr "Brasilien/DeNoronha" - -msgid "Brazil/East" -msgstr "Brasilien/East" - -msgid "Brazil/West" -msgstr "Brasilien/West" - -msgid "Canada/Atlantic" -msgstr "Kanada/Atlantic" - -msgid "Canada/Central" -msgstr "Kanada/Central" - -msgid "Canada/East-Saskatchewan" -msgstr "Kanada/East-Saskatchewan" - -msgid "Canada/Eastern" -msgstr "Kanada/Eastern" - -msgid "Canada/Mountain" -msgstr "Kanada/Mountain" - -msgid "Canada/Newfoundland" -msgstr "Kanada/Newfoundland" - -msgid "Canada/Pacific" -msgstr "Kanada/Pacific" - -msgid "Canada/Saskatchewan" -msgstr "Kanada/Saskatchewan" - -msgid "Canada/Yukon" -msgstr "Kanada/Yukon" - -msgid "CET" -msgstr "CET" - -msgid "Chile/Continental" -msgstr "Chile/Continental" - -msgid "Chile/EasterIsland" -msgstr "Chile/EasterIsland" - -msgid "CST6CDT" -msgstr "CST6CDT" - -msgid "Cuba" -msgstr "Cuba" - -msgid "EET" -msgstr "EET" - -msgid "Egypt" -msgstr "Egypten" - -msgid "Eire" -msgstr "Eire" - -msgid "EST" -msgstr "EST" - -msgid "EST5EDT" -msgstr "EST5EDT" - -msgid "Etc/GMT" -msgstr "Etc/GMT" - -msgid "Etc/GMT+0" -msgstr "Etc/GMT+0" - -msgid "Etc/GMT+1" -msgstr "Etc/GMT+1" - -msgid "Etc/GMT+10" -msgstr "Etc/GMT+10" - -msgid "Etc/GMT+11" -msgstr "Etc/GMT+11" - -msgid "Etc/GMT+12" -msgstr "Etc/GMT+12" - -msgid "Etc/GMT+2" -msgstr "Etc/GMT+2" - -msgid "Etc/GMT+3" -msgstr "Etc/GMT+3" - -msgid "Etc/GMT+4" -msgstr "Etc/GMT+4" - -msgid "Etc/GMT+5" -msgstr "Etc/GMT+5" - -msgid "Etc/GMT+6" -msgstr "Etc/GMT+6" - -msgid "Etc/GMT+7" -msgstr "Etc/GMT+7" - -msgid "Etc/GMT+8" -msgstr "Etc/GMT+8" - -msgid "Etc/GMT+9" -msgstr "Etc/GMT+9" - -msgid "Etc/GMT-0" -msgstr "Etc/GMT-0" - -msgid "Etc/GMT-1" -msgstr "Etc/GMT-1" - -msgid "Etc/GMT-10" -msgstr "Etc/GMT-10" - -msgid "Etc/GMT-11" -msgstr "Etc/GMT-11" - -msgid "Etc/GMT-12" -msgstr "Etc/GMT-12" - -msgid "Etc/GMT-13" -msgstr "Etc/GMT-13" - -msgid "Etc/GMT-14" -msgstr "Etc/GMT-14" - -msgid "Etc/GMT-2" -msgstr "Etc/GMT-2" - -msgid "Etc/GMT-3" -msgstr "Etc/GMT-3" - -msgid "Etc/GMT-4" -msgstr "Etc/GMT-4" - -msgid "Etc/GMT-5" -msgstr "Etc/GMT-5" - -msgid "Etc/GMT-6" -msgstr "Etc/GMT-6" - -msgid "Etc/GMT-7" -msgstr "Etc/GMT-7" - -msgid "Etc/GMT-8" -msgstr "Etc/GMT-8" - -msgid "Etc/GMT-9" -msgstr "Etc/GMT-9" - -msgid "Etc/GMT0" -msgstr "Etc/GMT0" - -msgid "Etc/Greenwich" -msgstr "Etc/Greenwich" - -msgid "Etc/UCT" -msgstr "Etc/UCT" - -msgid "Etc/Universal" -msgstr "Etc/Universal" - -msgid "Etc/UTC" -msgstr "Etc/UTC" - -msgid "Etc/Zulu" -msgstr "Etc/Zulu" - -msgid "Europe/Amsterdam" -msgstr "Europa/Amsterdam" - -msgid "Europe/Andorra" -msgstr "Europa/Andorra" - -msgid "Europe/Athens" -msgstr "Europa/Aten" - -msgid "Europe/Belfast" -msgstr "Europa/Belfast" - -msgid "Europe/Belgrade" -msgstr "Europa/Belgrad" - -msgid "Europe/Berlin" -msgstr "Europa/Berlin" - -msgid "Europe/Bratislava" -msgstr "Europa/Bratislava" - -msgid "Europe/Brussels" -msgstr "Europa/Bryssel" - -msgid "Europe/Bucharest" -msgstr "Europa/Bucharest" - -msgid "Europe/Budapest" -msgstr "Europa/Budapest" - -msgid "Europe/Chisinau" -msgstr "Europa/Chisinau" - -msgid "Europe/Copenhagen" -msgstr "Europa/Köpenhamn" - -msgid "Europe/Dublin" -msgstr "Europa/Dublin" - -msgid "Europe/Gibraltar" -msgstr "Europa/Gibraltar" - -msgid "Europe/Guernsey" -msgstr "Europa/Guernsey" - -msgid "Europe/Helsinki" -msgstr "Europa/Helsingfors" - -msgid "Europe/Isle_of_Man" -msgstr "Europa/Isle_of_Man" - -msgid "Europe/Istanbul" -msgstr "Europa/Istanbul" - -msgid "Europe/Jersey" -msgstr "Europa/Jersey" - -msgid "Europe/Kaliningrad" -msgstr "Europa/Kaliningrad" - -msgid "Europe/Kiev" -msgstr "Europa/Kiev" - -msgid "Europe/Lisbon" -msgstr "Europa/Lisabon" - -msgid "Europe/Ljubljana" -msgstr "Europa/Ljubljana" - -msgid "Europe/London" -msgstr "Europa/London" - -msgid "Europe/Luxembourg" -msgstr "Europa/Luxemburg" - -msgid "Europe/Madrid" -msgstr "Europa/Madrid" - -msgid "Europe/Malta" -msgstr "Europa/Malta" - -msgid "Europe/Mariehamn" -msgstr "Europa/Mariehamn" - -msgid "Europe/Minsk" -msgstr "Europa/Minsk" - -msgid "Europe/Monaco" -msgstr "Europa/Monaco" - -msgid "Europe/Moscow" -msgstr "Europa/Moskva" - -msgid "Europe/Nicosia" -msgstr "Europa/Nicosia" - -msgid "Europe/Oslo" -msgstr "Europa/Oslo" - -msgid "Europe/Paris" -msgstr "Europa/Paris" - -msgid "Europe/Podgorica" -msgstr "Europa/Podgorica" - -msgid "Europe/Prague" -msgstr "Europa/Prag" - -msgid "Europe/Riga" -msgstr "Europa/Riga" - -msgid "Europe/Rome" -msgstr "Europa/Rom" - -msgid "Europe/Samara" -msgstr "Europa/Samara" - -msgid "Europe/San_Marino" -msgstr "Europa/San_Marino" - -msgid "Europe/Sarajevo" -msgstr "Europa/Sarajevo" - -msgid "Europe/Simferopol" -msgstr "Europa/Simferopol" - -msgid "Europe/Skopje" -msgstr "Europa/Skopje" - -msgid "Europe/Sofia" -msgstr "Europa/Sofia" - -msgid "Europe/Stockholm" -msgstr "Europa/Stockholm" - -msgid "Europe/Tallinn" -msgstr "Europa/Tallinn" - -msgid "Europe/Tirane" -msgstr "Europa/Tirane" - -msgid "Europe/Tiraspol" -msgstr "Europa/Tiraspol" - -msgid "Europe/Uzhgorod" -msgstr "Europa/Uzhgorod" - -msgid "Europe/Vaduz" -msgstr "Europa/Vaduz" - -msgid "Europe/Vatican" -msgstr "Europa/Vatikanen" - -msgid "Europe/Vienna" -msgstr "Europa/Wien" - -msgid "Europe/Vilnius" -msgstr "Europa/Vilnius" - -msgid "Europe/Volgograd" -msgstr "Europa/Volgograd" - -msgid "Europe/Warsaw" -msgstr "Europa/Warsawa" - -msgid "Europe/Zagreb" -msgstr "Europa/Zagreb" - -msgid "Europe/Zaporozhye" -msgstr "Europa/Zaporozhye" - -msgid "Europe/Zurich" -msgstr "Europa/Zürich" - -msgid "Factory" -msgstr "Factory" - -msgid "GB" -msgstr "GB" - -msgid "GB-Eire" -msgstr "GB-Eire" - -msgid "GMT" -msgstr "GMT" - -msgid "GMT+0" -msgstr "GMT+0" - -msgid "GMT-0" -msgstr "GMT-0" - -msgid "GMT0" -msgstr "GMT0" - -msgid "Greenwich" -msgstr "Greenwich" - -msgid "Hongkong" -msgstr "Hongkong" - -msgid "HST" -msgstr "HST" - -msgid "Iceland" -msgstr "Iceland" - -msgid "Indian/Antananarivo" -msgstr "Indian/Antananarivo" - -msgid "Indian/Chagos" -msgstr "Indian/Chagos" - -msgid "Indian/Christmas" -msgstr "Indian/Christmas" - -msgid "Indian/Cocos" -msgstr "Indian/Cocos" - -msgid "Indian/Comoro" -msgstr "Indian/Comoro" - -msgid "Indian/Kerguelen" -msgstr "Indian/Kerguelen" - -msgid "Indian/Mahe" -msgstr "Indian/Mahe" - -msgid "Indian/Maldives" -msgstr "Indian/Maldives" - -msgid "Indian/Mauritius" -msgstr "Indian/Mauritius" - -msgid "Indian/Mayotte" -msgstr "Indian/Mayotte" - -msgid "Indian/Reunion" -msgstr "Indian/Reunion" - -msgid "Iran" -msgstr "Iran" - -msgid "Israel" -msgstr "Israel" - -msgid "Jamaica" -msgstr "Jamaica" - -msgid "Japan" -msgstr "Japan" - -msgid "Kwajalein" -msgstr "Kwajalein" - -msgid "Libya" -msgstr "Libyen" - -msgid "MET" -msgstr "MET" - -msgid "Mexico/BajaNorte" -msgstr "Mexico/BajaNorte" - -msgid "Mexico/BajaSur" -msgstr "Mexico/BajaSur" - -msgid "Mexico/General" -msgstr "Mexico/General" - -msgid "MST" -msgstr "MST" - -msgid "MST7MDT" -msgstr "MST7MDT" - -msgid "Navajo" -msgstr "Navajo" - -msgid "NZ" -msgstr "NZ" - -msgid "NZ-CHAT" -msgstr "NZ-CHAT" - -msgid "Pacific/Apia" -msgstr "Pacific/Apia" - -msgid "Pacific/Auckland" -msgstr "Pacific/Auckland" - -msgid "Pacific/Chatham" -msgstr "Pacific/Chatham" - -msgid "Pacific/Easter" -msgstr "Pacific/Easter" - -msgid "Pacific/Efate" -msgstr "Pacific/Efate" - -msgid "Pacific/Enderbury" -msgstr "Pacific/Enderbury" - -msgid "Pacific/Fakaofo" -msgstr "Pacific/Fakaofo" - -msgid "Pacific/Fiji" -msgstr "Pacific/Fiji" - -msgid "Pacific/Funafuti" -msgstr "Pacific/Funafuti" - -msgid "Pacific/Galapagos" -msgstr "Pacific/Galapagos" - -msgid "Pacific/Gambier" -msgstr "Pacific/Gambier" - -msgid "Pacific/Guadalcanal" -msgstr "Pacific/Guadalcanal" - -msgid "Pacific/Guam" -msgstr "Pacific/Guam" - -msgid "Pacific/Honolulu" -msgstr "Pacific/Honolulu" - -msgid "Pacific/Johnston" -msgstr "Pacific/Johnston" - -msgid "Pacific/Kiritimati" -msgstr "Pacific/Kiritimati" - -msgid "Pacific/Kosrae" -msgstr "Pacific/Kosrae" - -msgid "Pacific/Kwajalein" -msgstr "Pacific/Kwajalein" - -msgid "Pacific/Majuro" -msgstr "Pacific/Majuro" - -msgid "Pacific/Marquesas" -msgstr "Pacific/Marquesas" - -msgid "Pacific/Midway" -msgstr "Pacific/Midway" - -msgid "Pacific/Nauru" -msgstr "Pacific/Nauru" - -msgid "Pacific/Niue" -msgstr "Pacific/Niue" - -msgid "Pacific/Norfolk" -msgstr "Pacific/Norfolk" - -msgid "Pacific/Noumea" -msgstr "Pacific/Noumea" - -msgid "Pacific/Pago_Pago" -msgstr "Pacific/Pago_Pago" - -msgid "Pacific/Palau" -msgstr "Pacific/Palau" - -msgid "Pacific/Pitcairn" -msgstr "Pacific/Pitcairn" - -msgid "Pacific/Ponape" -msgstr "Pacific/Ponape" - -msgid "Pacific/Port_Moresby" -msgstr "Pacific/Port_Moresby" - -msgid "Pacific/Rarotonga" -msgstr "Pacific/Rarotonga" - -msgid "Pacific/Saipan" -msgstr "Pacific/Saipan" - -msgid "Pacific/Samoa" -msgstr "Pacific/Samoa" - -msgid "Pacific/Tahiti" -msgstr "Pacific/Tahiti" - -msgid "Pacific/Tarawa" -msgstr "Pacific/Tarawa" - -msgid "Pacific/Tongatapu" -msgstr "Pacific/Tongatapu" - -msgid "Pacific/Truk" -msgstr "Pacific/Truk" - -msgid "Pacific/Wake" -msgstr "Pacific/Wake" - -msgid "Pacific/Wallis" -msgstr "Pacific/Wallis" - -msgid "Pacific/Yap" -msgstr "Pacific/Yap" - -msgid "Poland" -msgstr "Polen" - -msgid "Portugal" -msgstr "Portugal" - -msgid "PRC" -msgstr "PRC" - -msgid "PST8PDT" -msgstr "PST8PDT" - -msgid "ROC" -msgstr "ROC" - -msgid "ROK" -msgstr "ROK" - -msgid "Singapore" -msgstr "Singapore" - -msgid "Turkey" -msgstr "Turkiet" - -msgid "UCT" -msgstr "UCT" - -msgid "Universal" -msgstr "Universal" - -msgid "US/Alaska" -msgstr "USA/Alaska" - -msgid "US/Aleutian" -msgstr "USA/Aleutian" - -msgid "US/Arizona" -msgstr "USA/Arizona" - -msgid "US/Central" -msgstr "USA/Central" - -msgid "US/East-Indiana" -msgstr "USA/East-Indiana" - -msgid "US/Eastern" -msgstr "USA/Eastern" - -msgid "US/Hawaii" -msgstr "USA/Hawaii" - -msgid "US/Indiana-Starke" -msgstr "USA/Indiana-Starke" - -msgid "US/Michigan" -msgstr "USA/Michigan" - -msgid "US/Mountain" -msgstr "USA/Mountain" - -msgid "US/Pacific" -msgstr "USA/Pacific" - -msgid "US/Pacific-New" -msgstr "USA/Pacific-New" - -msgid "US/Samoa" -msgstr "USA/Samoa" - -msgid "UTC" -msgstr "UTC" - -msgid "W-SU" -msgstr "W-SU" - -msgid "WET" -msgstr "WET" - -msgid "Zulu" -msgstr "Zulu" +#: boot.php:1813 +msgid "privacy policy" +msgstr "" +#: index.php:451 +msgid "toggle mobile" +msgstr "" diff --git a/view/lang/sv/strings.php b/view/lang/sv/strings.php index 55df46281..6a789c061 100644 --- a/view/lang/sv/strings.php +++ b/view/lang/sv/strings.php @@ -1,1329 +1,2052 @@ strings['Not Found'] = 'Hittar inte'; -$a->strings['Page not found.' ] = 'Sidan hittades inte.' ; -$a->strings['Permission denied'] = 'Åtkomst nekad'; -$a->strings['Permission denied.'] = 'Åtkomst nekad.'; -$a->strings['Delete this item?'] = 'Ta bort?'; -$a->strings['Comment'] = 'Kommentera'; -$a->strings['Create a New Account'] = 'Skapa nytt konto'; -$a->strings['Register'] = 'Registrera'; -$a->strings['Notifications'] = 'Aviseringar'; -$a->strings['Nickname or Email address: '] = 'Användarnamn eller e-postadress: '; -$a->strings['Password: '] = 'Lösenord: '; -$a->strings['Login'] = 'Logga in'; -$a->strings['Nickname/Email/OpenID: '] = 'Användarnamn/e-post/OpenID: '; -$a->strings["Password \x28if not OpenID\x29: "] = "Lösenord (om inget OpenID): "; -$a->strings['Forgot your password?'] = 'Har du glömt lösenordet?'; -$a->strings['Password Reset'] = 'Glömt lösenordet?'; -$a->strings['Logout'] = 'Logga ut'; -$a->strings['prev'] = 'föreg'; -$a->strings['first'] = 'första'; -$a->strings['last'] = 'sista'; -$a->strings['next'] = 'nästa'; -$a->strings['No contacts'] = 'Inga kontakter'; -$a->strings['View Contacts'] = 'Visa kontakter'; -$a->strings['Search'] = 'Sök'; -$a->strings['No profile'] = 'Ingen profil'; -$a->strings['Connect'] = 'Skicka kontaktförfrågan'; -$a->strings['Location:'] = 'Plats:'; -$a->strings[', '] = ', '; -$a->strings['Gender:'] = 'Kön:'; -$a->strings['Status:'] = 'Status:'; -$a->strings['Homepage:'] = 'Hemsida:'; -$a->strings['Monday'] = 'måndag'; -$a->strings['Tuesday'] = 'tisdag'; -$a->strings['Wednesday'] = 'onsdag'; -$a->strings['Thursday'] = 'torsdag'; -$a->strings['Friday'] = 'fredag'; -$a->strings['Saturday'] = 'lördag'; -$a->strings['Sunday'] = 'söndag'; -$a->strings['January'] = 'januari'; -$a->strings['February'] = 'februari'; -$a->strings['March'] = 'mars'; -$a->strings['April'] = 'april'; -$a->strings['May'] = 'maj'; -$a->strings['June'] = 'juni'; -$a->strings['July'] = 'juli'; -$a->strings['August'] = 'augusti'; -$a->strings['September'] = 'september'; -$a->strings['October'] = 'oktober'; -$a->strings['November'] = 'november'; -$a->strings['December'] = 'december'; -$a->strings['g A l F d'] = 'g A l F d'; -$a->strings['Birthday Reminders'] = 'Födelsedagspåminnelser'; -$a->strings['Birthdays this week:'] = 'Födelsedagar denna vecka:'; -$a->strings["\x28Adjusted for local time\x29"] = "(Justerat till lokal tid)"; -$a->strings['[today]'] = '[idag]'; -$a->strings['link to source'] = 'länk till källa'; -$a->strings['%d Contact'] = array( - 0 => '%d kontakt', - 1 => '%d kontakter', +if(! function_exists("string_plural_select_sv")) { +function string_plural_select_sv($n){ + return ($n != 1);; +}} +; +$a->strings["Add New Contact"] = ""; +$a->strings["Enter address or web location"] = ""; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exempel: adam@exempel.com, http://exempel.com/bertil"; +$a->strings["Connect"] = "Skicka kontaktförfrågan"; +$a->strings["%d invitation available"] = array( + 0 => "", + 1 => "", ); -$a->strings['Normal View'] = 'Byt till normalvy'; -$a->strings['New Item View'] = 'Visa nya inlägg överst'; -$a->strings['Warning: This group contains %s from an insecure network.'] = 'Varning! Gruppen innehåller %s på osäkra nätverk.'; -$a->strings['Private messages to this group are at risk of public disclosure.'] = 'Meddelanden kan komma att bli synliga för vem som helst på internet.'; -$a->strings['Please enter a link URL:'] = 'Ange en länk (URL):'; -$a->strings['Please enter a YouTube link:'] = 'Ange en YouTube-länk:'; -$a->strings["Please enter a video\x28.ogg\x29 link/URL:"] = "Ange länk/URL till video (.ogg):"; -$a->strings["Please enter an audio\x28.ogg\x29 link/URL:"] = "Ange länk/URL till ljud (.ogg):"; -$a->strings['Where are you right now?'] = 'Var är du just nu?'; -$a->strings['Enter a title for this item'] = 'Ange en rubrik på inlägget'; -$a->strings['Share'] = 'Publicera'; -$a->strings['Upload photo'] = 'Ladda upp bild'; -$a->strings['Insert web link'] = 'Infoga länk'; -$a->strings['Insert YouTube video'] = 'Infoga video från YouTube'; -$a->strings['Insert Vorbis [.ogg] video'] = 'Lägg in video i format Vorbis [.ogg]'; -$a->strings['Insert Vorbis [.ogg] audio'] = 'Lägg in ljud i format Vorbis [.ogg]'; -$a->strings['Set your location'] = 'Ange plats'; -$a->strings['Clear browser location'] = 'Clear browser location'; -$a->strings['Set title'] = 'Ange rubrik'; -$a->strings['Please wait'] = 'Vänta'; -$a->strings['Permission settings'] = 'Åtkomstinställningar'; -$a->strings['CC: email addresses'] = 'Kopia: e-postadresser'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Exempel: adam@exempel.com, bertil@exempel.com'; -$a->strings['No such group'] = 'Gruppen finns inte'; -$a->strings['Group is empty'] = 'Gruppen är tom'; -$a->strings['Group: '] = 'Grupp: '; -$a->strings['Shared content is covered by the Creative Commons Attribution 3.0 license.'] = 'Innehållet omfattas av licensen Creative Commons Attribution 3.0.'; -$a->strings['%d member'] = array( - 0 => '%d medlem', - 1 => '%d medlemmar', -); -$a->strings['Applications'] = 'Applikationer'; +$a->strings["Find People"] = ""; +$a->strings["Enter name or interest"] = ""; +$a->strings["Connect/Follow"] = "Gör till kontakt/Följ"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; +$a->strings["Find"] = "Sök"; +$a->strings["Friend Suggestions"] = ""; +$a->strings["Similar Interests"] = ""; +$a->strings["Random Profile"] = ""; $a->strings["Invite Friends"] = "Bjud in folk du känner"; -$a->strings['Find People With Shared Interests'] = 'Sök personer som har samma intressen som du'; -$a->strings['Connect/Follow'] = 'Gör till kontakt/Följ'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exempel: adam@exempel.com, http://exempel.com/bertil'; -$a->strings['Follow'] = 'Följ'; -$a->strings['Could not access contact record.'] = 'Hittar inte information om kontakten.'; -$a->strings['Could not locate selected profile.'] = 'Hittar inte vald profil.'; -$a->strings['Contact updated.'] = 'Kontakten har uppdaterats.'; -$a->strings['Failed to update contact record.'] = 'Det blev fel när kontakten skulle uppdateras.'; -$a->strings['Contact has been '] = 'Kontakten '; -$a->strings['blocked'] = 'spärrad'; -$a->strings['unblocked'] = 'inte längre spärrad'; -$a->strings['Contact has been blocked'] = 'Kontakten har spärrats'; -$a->strings['Contact has been unblocked'] = 'Kontakten är inte längre spärrad'; -$a->strings['Contact has been ignored'] = 'Kontakten ignoreras'; -$a->strings['Contact has been unignored'] = 'Kontakten ignoreras inte längre'; -$a->strings['stopped following'] = 'följer inte längre'; -$a->strings['Contact has been removed.'] = 'Kontakten har tagits bort.'; -$a->strings['Contact not found.'] = 'Kontakten hittades inte.'; -$a->strings['Mutual Friendship'] = 'Ömsesidig vänskap'; -$a->strings['is a fan of yours'] = 'är ett fan till dig'; -$a->strings['you are a fan of'] = 'du är fan till'; -$a->strings['Privacy Unavailable'] = 'Inte tillgängligt'; -$a->strings['Private communications are not available for this contact.'] = 'Det går inte att utbyta personliga meddelanden med den här kontakten.'; -$a->strings['Never'] = 'Aldrig'; -$a->strings["\x28Update was successful\x29"] = "(Uppdateringen lyckades)"; -$a->strings["\x28Update was not successful\x29"] = "(Uppdateringen lyckades inte)"; -$a->strings['Contact Editor'] = 'Ändra kontakter'; -$a->strings['Submit'] = 'Spara'; -$a->strings['Profile Visibility'] = 'Visning av profil'; -$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Välj vilken profil som ska visas för %s när han/hon besöker din sida.'; -$a->strings['Contact Information / Notes'] = 'Kontaktuppgifter/Anteckningar'; -$a->strings['Online Reputation'] = 'Rykte online'; -$a->strings['Occasionally your friends may wish to inquire about this person\'s online legitimacy.'] = 'Dina kontakter kanske vill veta något om den här personens rykte online innan de tar kontakt.'; -$a->strings['You may help them choose whether or not to interact with this person by providing a reputation to guide them.'] = 'Du kan vara till hjälp genom att ange personens rykte online.'; -$a->strings['Please take a moment to elaborate on this selection if you feel it could be helpful to others.'] = 'Ägna gärna en stund åt att ange detta för att hjälpa andra.'; -$a->strings['Visit $name\'s profile'] = 'Besök $name '; -$a->strings['Block/Unblock contact'] = 'Spärra kontakt eller häv spärr'; -$a->strings['Ignore contact'] = 'Ignorera kontakt'; -$a->strings['Repair contact URL settings'] = 'Repair contact URL settings'; -$a->strings["Repair contact URL settings \x28WARNING: Advanced\x29"] = "Repair contact URL settings (WARNING: Advanced)"; -$a->strings['Delete contact'] = 'Ta bort kontakt'; -$a->strings['Last updated: '] = 'Uppdaterad senast: '; -$a->strings['Update public posts: '] = 'Uppdatera offentliga inlägg: '; -$a->strings['Update now'] = 'Updatera nu'; -$a->strings['Unblock this contact'] = 'Häv spärr för kontakt'; -$a->strings['Block this contact'] = 'Spärra kontakt'; -$a->strings['Unignore this contact'] = 'Ignorera inte längre kontakt'; -$a->strings['Ignore this contact'] = 'Ignorera kontakt'; -$a->strings['Currently blocked'] = 'Spärrad'; -$a->strings['Currently ignored'] = 'Ignoreras'; -$a->strings['Contacts'] = 'Kontakter'; -$a->strings['Show Blocked Connections'] = 'Visa spärrade kontakter'; -$a->strings['Hide Blocked Connections'] = 'Dölj spärrade kontakter'; -$a->strings['Finding: '] = 'Hittar: '; -$a->strings['Find'] = 'Sök'; -$a->strings['Visit $username\'s profile'] = 'Gå till profilen som tillhör $username'; -$a->strings['Edit contact'] = 'Ändra kontakt'; -$a->strings['Contact settings applied.'] = 'Inställningar för kontakter har sparats.'; -$a->strings['Contact update failed.'] = 'Det gick inte att uppdatera kontakt.'; -$a->strings['Repair Contact Settings'] = 'Repair Contact Settings'; -$a->strings['WARNING: This is highly advanced and if you enter incorrect information your communications with this contact will stop working.'] = 'VARNING! Det här är en avancerad inställning och om du anger felaktig information kommer kommunikationen med den här kontakten att sluta fungera.'; -$a->strings['Please use your browser \'Back\' button now if you are uncertain what to do on this page.'] = 'Använd webbläsarens bakåtknapp nu om du är osäker på vad man gör på den här sidan.'; -$a->strings['Name'] = 'Namn'; -$a->strings['Profile not found.'] = 'Profilen hittades inte.'; -$a->strings['Response from remote site was not understood.'] = 'Kunde inte tolka svaret från fjärrsajten.'; -$a->strings['Unexpected response from remote site: '] = 'Oväntat svar från fjärrsajten: '; +$a->strings["Networks"] = ""; +$a->strings["All Networks"] = ""; +$a->strings["Saved Folders"] = ""; +$a->strings["Everything"] = ""; +$a->strings["Categories"] = ""; +$a->strings["%d contact in common"] = array( + 0 => "", + 1 => "", +); +$a->strings["show more"] = ""; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; +$a->strings["Male"] = "Man"; +$a->strings["Female"] = "Kvinna"; +$a->strings["Currently Male"] = "För närvarande man"; +$a->strings["Currently Female"] = "För närvarande kvinna"; +$a->strings["Mostly Male"] = "Mestadels man"; +$a->strings["Mostly Female"] = "Mestadels kvinna"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Könslös"; +$a->strings["Non-specific"] = "Oklart"; +$a->strings["Other"] = "Annat"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); +$a->strings["Males"] = "Män"; +$a->strings["Females"] = "Kvinnor"; +$a->strings["Gay"] = "Bög"; +$a->strings["Lesbian"] = "Lesbisk"; +$a->strings["No Preference"] = "No Preference"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Oskuld"; +$a->strings["Deviant"] = "Avvikande"; +$a->strings["Fetish"] = "Fetisch"; +$a->strings["Oodles"] = "Massor"; +$a->strings["Nonsexual"] = "Asexuell"; +$a->strings["Single"] = "Singel"; +$a->strings["Lonely"] = "Ensam"; +$a->strings["Available"] = "Tillgänglig"; +$a->strings["Unavailable"] = "Upptagen"; +$a->strings["Has crush"] = ""; +$a->strings["Infatuated"] = ""; +$a->strings["Dating"] = "Dejtar"; +$a->strings["Unfaithful"] = "Otrogen"; +$a->strings["Sex Addict"] = "Sexmissbrukare"; +$a->strings["Friends"] = "Vänner"; +$a->strings["Friends/Benefits"] = "Friends/Benefits"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Förlovad"; +$a->strings["Married"] = "Gift"; +$a->strings["Imaginarily married"] = ""; +$a->strings["Partners"] = "I partnerskap"; +$a->strings["Cohabiting"] = "Cohabiting"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "Nöjd"; +$a->strings["Not looking"] = ""; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Bedragen"; +$a->strings["Separated"] = "Separerat"; +$a->strings["Unstable"] = "Instabilt"; +$a->strings["Divorced"] = "Skiljd"; +$a->strings["Imaginarily divorced"] = ""; +$a->strings["Widowed"] = "Änka/änkling"; +$a->strings["Uncertain"] = "Oklart"; +$a->strings["It's complicated"] = ""; +$a->strings["Don't care"] = "Bryr mig inte"; +$a->strings["Ask me"] = "Fråga mig"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'"; +$a->strings["Logged out."] = "Utloggad."; +$a->strings["Login failed."] = "Inloggningen misslyckades."; +$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:"] = ""; +$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."] = ""; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Alla"; +$a->strings["edit"] = ""; +$a->strings["Groups"] = "Grupper"; +$a->strings["Edit groups"] = ""; +$a->strings["Edit group"] = ""; +$a->strings["Create a new group"] = "Skapa ny grupp"; +$a->strings["Group Name: "] = "Gruppens namn: "; +$a->strings["Contacts not in any group"] = ""; +$a->strings["add"] = ""; +$a->strings["Unknown | Not categorised"] = "Okänd | Inte kategoriserad"; +$a->strings["Block immediately"] = "Spärra omedelbart"; +$a->strings["Shady, spammer, self-marketer"] = "Skum, spammare, reklamspridare"; +$a->strings["Known to me, but no opinion"] = "Jag vet vem det är, men har ingen åsikt"; +$a->strings["OK, probably harmless"] = "OK, antagligen harmlös"; +$a->strings["Reputable, has my trust"] = "Pålitlig, jag litar på personen"; +$a->strings["Frequently"] = "Ofta"; +$a->strings["Hourly"] = "En gång i timmen"; +$a->strings["Twice daily"] = "Två gånger om dagen"; +$a->strings["Daily"] = "Dagligen"; +$a->strings["Weekly"] = "Veckovis"; +$a->strings["Monthly"] = "Månadsvis"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = ""; +$a->strings["RSS/Atom"] = ""; +$a->strings["Email"] = ""; +$a->strings["Diaspora"] = ""; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = ""; +$a->strings["LinkedIn"] = ""; +$a->strings["XMPP/IM"] = ""; +$a->strings["MySpace"] = ""; +$a->strings["Google+"] = ""; +$a->strings["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$a->strings["Post to Email"] = ""; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = ""; +$a->strings["Visible to everybody"] = "Synlig för alla"; +$a->strings["show"] = ""; +$a->strings["don't show"] = ""; +$a->strings["CC: email addresses"] = "Kopia: e-postadresser"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exempel: adam@exempel.com, bertil@exempel.com"; +$a->strings["Permissions"] = "Åtkomst"; +$a->strings["Close"] = ""; +$a->strings["photo"] = "bild"; +$a->strings["status"] = "status"; +$a->strings["event"] = ""; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gillar %2\$s's %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s ogillar %2\$s's %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[ingen rubrik]"; +$a->strings["Wall Photos"] = "Loggbilder"; +$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["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!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Miscellaneous"] = "Blandat"; +$a->strings["Birthday:"] = "Födelsedatum:"; +$a->strings["Age: "] = "Ålder: "; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = ""; +$a->strings["less than a second ago"] = "för mindre än en sekund sedan"; +$a->strings["year"] = "år"; +$a->strings["years"] = "år"; +$a->strings["month"] = "månad"; +$a->strings["months"] = "månader"; +$a->strings["week"] = "vecka"; +$a->strings["weeks"] = "veckor"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagar"; +$a->strings["hour"] = "timme"; +$a->strings["hours"] = "timmar"; +$a->strings["minute"] = "minut"; +$a->strings["minutes"] = "minuter"; +$a->strings["second"] = "sekund"; +$a->strings["seconds"] = "sekunder"; +$a->strings["%1\$d %2\$s ago"] = ""; +$a->strings["%s's birthday"] = ""; +$a->strings["Happy Birthday %s"] = ""; +$a->strings["Friendica Notification"] = ""; +$a->strings["Thank You,"] = ""; +$a->strings["%s Administrator"] = ""; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$a->strings["noreply"] = "noreply"; +$a->strings["%s "] = ""; +$a->strings["[Friendica:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = ""; +$a->strings["a private message"] = ""; +$a->strings["Please visit %s to view and/or reply to your private messages."] = ""; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %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."] = ""; +$a->strings["Please visit %s to view and/or reply to the conversation."] = ""; +$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"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]tagged you[/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"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = ""; +$a->strings["Please visit %s to approve or reject the 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"] = ""; +$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:"] = ""; +$a->strings["Photo:"] = ""; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has accepted 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 without 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["Please visit %s if you wish to make any changes to this relationship."] = ""; +$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["l F d, Y \\@ g:i A"] = ""; +$a->strings["Starts:"] = ""; +$a->strings["Finishes:"] = ""; +$a->strings["Location:"] = "Plats:"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "söndag"; +$a->strings["Monday"] = "måndag"; +$a->strings["Tuesday"] = "tisdag"; +$a->strings["Wednesday"] = "onsdag"; +$a->strings["Thursday"] = "torsdag"; +$a->strings["Friday"] = "fredag"; +$a->strings["Saturday"] = "lördag"; +$a->strings["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "maj"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "januari"; +$a->strings["February"] = "februari"; +$a->strings["March"] = "mars"; +$a->strings["April"] = "april"; +$a->strings["June"] = "juni"; +$a->strings["July"] = "juli"; +$a->strings["August"] = "augusti"; +$a->strings["September"] = "september"; +$a->strings["October"] = "oktober"; +$a->strings["November"] = "november"; +$a->strings["December"] = "december"; +$a->strings["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = ""; +$a->strings["link to source"] = "länk till källa"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = ""; +$a->strings["Clear notifications"] = ""; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Logga ut"; +$a->strings["End this session"] = ""; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = ""; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = ""; +$a->strings["Photos"] = "Bilder"; +$a->strings["Your photos"] = ""; +$a->strings["Videos"] = ""; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = ""; +$a->strings["Your events"] = ""; +$a->strings["Personal notes"] = ""; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Logga in"; +$a->strings["Sign in"] = ""; +$a->strings["Home"] = "Hem"; +$a->strings["Home Page"] = ""; +$a->strings["Register"] = "Registrera"; +$a->strings["Create an account"] = ""; +$a->strings["Help"] = "Hjälp"; +$a->strings["Help and documentation"] = ""; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = ""; +$a->strings["Search"] = "Sök"; +$a->strings["Search site content"] = ""; +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Kontakter"; +$a->strings["Community"] = ""; +$a->strings["Conversations on this site"] = ""; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = ""; +$a->strings["Directory"] = "Medlemskatalog"; +$a->strings["People directory"] = ""; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Nätverk"; +$a->strings["Conversations from your friends"] = ""; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = ""; +$a->strings["Friend Requests"] = ""; +$a->strings["Notifications"] = "Aviseringar"; +$a->strings["See all notifications"] = ""; +$a->strings["Mark as seen"] = ""; +$a->strings["Mark all system notifications seen"] = ""; +$a->strings["Messages"] = "Meddelanden"; +$a->strings["Private mail"] = ""; +$a->strings["Inbox"] = "Inkorg"; +$a->strings["Outbox"] = "Utkorg"; +$a->strings["New Message"] = "Nytt meddelande"; +$a->strings["Manage"] = "Hantera"; +$a->strings["Manage other pages"] = ""; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Settings"] = "Inställningar"; +$a->strings["Account settings"] = ""; +$a->strings["Profiles"] = "Profiler"; +$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/edit friends and contacts"] = ""; +$a->strings["Admin"] = ""; +$a->strings["Site setup and configuration"] = ""; +$a->strings["Navigation"] = ""; +$a->strings["Site map"] = ""; +$a->strings["Contact Photos"] = "Dina kontakters bilder"; +$a->strings["Welcome "] = ""; +$a->strings["Please upload a profile photo."] = ""; +$a->strings["Welcome back "] = "Välkommen tillbaka "; +$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["System"] = ""; +$a->strings["Personal"] = ""; +$a->strings["%s commented on %s's post"] = ""; +$a->strings["%s created a new post"] = ""; +$a->strings["%s liked %s's post"] = ""; +$a->strings["%s disliked %s's post"] = ""; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = ""; +$a->strings["Friend Suggestion"] = ""; +$a->strings["Friend/Connect Request"] = "Vän- eller kontaktförfrågan"; +$a->strings["New Follower"] = "En som vill följa dig"; +$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."] = "Fel vid skapandet av databastabeller."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = ""; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = ""; +$a->strings["view full size"] = "visa fullstor"; +$a->strings["View Profile"] = ""; +$a->strings["View Status"] = ""; +$a->strings["View Photos"] = ""; +$a->strings["Network Posts"] = ""; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = ""; +$a->strings["Send PM"] = ""; +$a->strings["Poke"] = ""; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = ""; +$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["Image/photo"] = ""; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = ""; +$a->strings["Encrypted content"] = ""; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = ""; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Likes"] = ""; +$a->strings["Dislikes"] = ""; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Select"] = ""; +$a->strings["Delete"] = "Ta bort"; +$a->strings["View %s's profile @ %s"] = ""; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["%s from %s"] = ""; +$a->strings["View in context"] = "Visa i sitt sammanhang"; +$a->strings["Please wait"] = "Vänta"; +$a->strings["remove"] = ""; +$a->strings["Delete Selected Items"] = ""; +$a->strings["Follow Thread"] = ""; +$a->strings["%s likes this."] = "%s gillar det här."; +$a->strings["%s doesn't like this."] = "%s ogillar det här."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "och"; +$a->strings[", and %d other people"] = ", och ytterligare %d personer"; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%s like this."] = "%s gillar det här."; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%s don't like this."] = "%s ogillar det här."; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = ""; +$a->strings["Please enter a link URL:"] = "Ange en länk (URL):"; +$a->strings["Please enter a video link/URL:"] = ""; +$a->strings["Please enter an audio link/URL:"] = ""; +$a->strings["Tag term:"] = ""; +$a->strings["Save to Folder:"] = ""; +$a->strings["Where are you right now?"] = "Var är du just nu?"; +$a->strings["Delete item(s)?"] = ""; +$a->strings["Share"] = "Publicera"; +$a->strings["Upload photo"] = "Ladda upp bild"; +$a->strings["upload photo"] = ""; +$a->strings["Attach file"] = ""; +$a->strings["attach file"] = ""; +$a->strings["Insert web link"] = "Infoga länk"; +$a->strings["web link"] = ""; +$a->strings["Insert video link"] = ""; +$a->strings["video link"] = ""; +$a->strings["Insert audio link"] = ""; +$a->strings["audio link"] = ""; +$a->strings["Set your location"] = "Ange plats"; +$a->strings["set location"] = ""; +$a->strings["Clear browser location"] = "Clear browser location"; +$a->strings["clear location"] = ""; +$a->strings["Set title"] = "Ange rubrik"; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Permission settings"] = "Åtkomstinställningar"; +$a->strings["permissions"] = ""; +$a->strings["Public post"] = ""; +$a->strings["Preview"] = ""; +$a->strings["Cancel"] = "Avbryt"; +$a->strings["Post to Groups"] = ""; +$a->strings["Post to Contacts"] = ""; +$a->strings["Private post"] = ""; +$a->strings["Message"] = ""; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = ""; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Otillåten profil-URL."; +$a->strings["Connect URL missing."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = ""; +$a->strings["No compatible communication protocols or feeds were discovered."] = ""; +$a->strings["The profile address specified does not provide adequate information."] = "Angiven profiladress ger inte tillräcklig 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."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$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."] = "Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig."; +$a->strings["Unable to retrieve contact information."] = "Det gick inte att komma åt kontaktinformationen."; +$a->strings["Requested account is not available."] = ""; +$a->strings["Requested profile is not available."] = ""; +$a->strings["Edit profile"] = ""; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = ""; +$a->strings["Change profile photo"] = "Byt profilbild"; +$a->strings["Create New Profile"] = "Skapa ny profil"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = ""; +$a->strings["Edit visibility"] = "Ända vilka som ska kunna se"; +$a->strings["Gender:"] = "Kön:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Hemsida:"; +$a->strings["About:"] = "Om:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[idag]"; +$a->strings["Birthday Reminders"] = "Födelsedagspåminnelser"; +$a->strings["Birthdays this week:"] = "Födelsedagar denna vecka:"; +$a->strings["[No description]"] = ""; +$a->strings["Event Reminders"] = ""; +$a->strings["Events this week:"] = ""; +$a->strings["Full Name:"] = "Fullständigt namn:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Ålder:"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = "Sexualitet"; +$a->strings["Hometown:"] = ""; +$a->strings["Tags:"] = ""; +$a->strings["Political Views:"] = "Politisk åskådning:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbys/Intressen:"; +$a->strings["Likes:"] = ""; +$a->strings["Dislikes:"] = ""; +$a->strings["Contact information and Social Networks:"] = "Kontaktuppgifter och sociala nätverk:"; +$a->strings["Musical interests:"] = "Musik:"; +$a->strings["Books, literature:"] = "Böcker/Litteratur:"; +$a->strings["Television:"] = "TV:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/Dans/Kultur/Underhållning:"; +$a->strings["Love/Romance:"] = "Kärlek/Romantik:"; +$a->strings["Work/employment:"] = "Arbete:"; +$a->strings["School/education:"] = "Skola/Utbildning:"; +$a->strings["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = ""; +$a->strings["Status Messages and Posts"] = ""; +$a->strings["Profile Details"] = ""; +$a->strings["Photo Albums"] = "Fotoalbum"; +$a->strings["Personal Notes"] = ""; +$a->strings["Only You Can See This"] = ""; +$a->strings["[Name Withheld]"] = "[Namnet visas inte]"; +$a->strings["Item not found."] = "Hittar inte."; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Yes"] = "Ja"; +$a->strings["Permission denied."] = "Åtkomst nekad."; +$a->strings["Archives"] = ""; +$a->strings["Embedded content"] = ""; +$a->strings["Embedding disabled"] = "Funktionen bädda in är avstängd"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "följer"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "följer inte längre"; +$a->strings["newer"] = ""; +$a->strings["older"] = ""; +$a->strings["prev"] = "föreg"; +$a->strings["first"] = "första"; +$a->strings["last"] = "sista"; +$a->strings["next"] = "nästa"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Inga kontakter"; +$a->strings["%d Contact"] = array( + 0 => "%d kontakt", + 1 => "%d kontakter", +); +$a->strings["View Contacts"] = "Visa kontakter"; +$a->strings["Save"] = ""; +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; +$a->strings["View Video"] = ""; +$a->strings["bytes"] = ""; +$a->strings["Click to open/close"] = ""; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = ""; +$a->strings["comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["post"] = ""; +$a->strings["Item filed"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Lösenorden skiljer sig åt. Lösenordet ändras inte."; +$a->strings["An invitation is required."] = ""; +$a->strings["Invitation could not be verified."] = ""; +$a->strings["Invalid OpenID url"] = "Ogiltig OpenID-URL"; +$a->strings["Please enter the required information."] = "Fyll i alla obligatoriska fält."; +$a->strings["Please use a shorter name."] = "Välj ett kortare namn."; +$a->strings["Name too short."] = "Namnet är för kort."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Du verkar inte ha angett ditt fullständiga namn."; +$a->strings["Your email domain is not among those allowed on this site."] = "Din e-postdomän är inte tillåten på den här webbplatsen."; +$a->strings["Not a valid email address."] = "Ogiltig e-postadress."; +$a->strings["Cannot use that email."] = "Otillåten e-postadress."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Användarnamnet är upptaget. Välj ett annat."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; +$a->strings["An error occurred during registration. Please try again."] = "Något gick fel vid registreringen. Försök igen."; +$a->strings["default"] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = "Det blev fel när din standardprofil skulle skapas. Prova igen."; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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"] = ""; +$a->strings["Post successful."] = "Inlagt."; +$a->strings["Access denied."] = ""; +$a->strings["Welcome to %s"] = "Välkommen till %s"; +$a->strings["No more system notifications."] = ""; +$a->strings["System Notifications"] = ""; +$a->strings["Remove term"] = ""; +$a->strings["Public access denied."] = ""; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Inga resultat."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$a->strings["This is Friendica, version"] = ""; +$a->strings["running at web location"] = "som körs på"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = ""; +$a->strings["Bug reports and issues: please visit"] = "Anmäl buggar eller andra problem, gå till"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Förslag, beröm, donationer, etc. - skicka e-post till \"info at friendica punkt com\" "; +$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["No installed plugins/addons/apps"] = "Inga installerade insticksprogram/applikationer"; +$a->strings["No valid account found."] = ""; +$a->strings["Password reset request issued. Check your email."] = "Nytt lösenord har begärts. Kolla din 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."] = ""; +$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"] = "Nytt lösenord på %s har begärts"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord."; +$a->strings["Password Reset"] = "Glömt lösenordet?"; +$a->strings["Your password has been reset as requested."] = "Nu har du fått ett nytt lösenord."; +$a->strings["Your new password is"] = "Det nya lösenordet är"; +$a->strings["Save or copy your new password - and then"] = "Spara eller kopiera lösenordet och"; +$a->strings["click here to login"] = "klicka här för att logga in"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "När du loggat in kan du byta lösenord på sidan Inställningar."; +$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"] = ""; +$a->strings["Forgot your Password?"] = "Glömt lösenordet?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post."; +$a->strings["Nickname or Email: "] = "Användarnamn eller e-post:"; +$a->strings["Reset"] = "Skicka"; +$a->strings["No profile"] = "Ingen profil"; +$a->strings["Help:"] = "Hjälp:"; +$a->strings["Not Found"] = "Hittar inte"; +$a->strings["Page not found."] = "Sidan hittades inte."; +$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; +$a->strings["Visible to:"] = "Synlig för:"; +$a->strings["OpenID protocol error. No ID returned."] = ""; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +$a->strings["Import"] = ""; +$a->strings["Move account"] = ""; +$a->strings["You can import an account from another Friendica server."] = ""; +$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."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Visit %s's profile [%s]"] = ""; +$a->strings["Edit contact"] = "Ändra kontakt"; +$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["Export 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."] = ""; +$a->strings["Export all"] = ""; +$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)"] = ""; +$a->strings["Export personal data"] = ""; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Ogiltig e-postadress."; +$a->strings["Please join us on Friendica"] = ""; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Meddelandet kom inte fram."; +$a->strings["%d message sent."] = array( + 0 => "%d meddelande har skickats.", + 1 => "%d meddelanden har skickats.", +); +$a->strings["You have no more invitations available"] = ""; +$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."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public 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."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Send invitations"] = "Skicka inbjudningar"; +$a->strings["Enter email addresses, one per line:"] = "Ange e-postadresser, en per rad:"; +$a->strings["Your message:"] = "Meddelande:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["Submit"] = "Spara"; +$a->strings["Files"] = ""; +$a->strings["Permission denied"] = "Åtkomst nekad"; +$a->strings["Invalid profile identifier."] = "Ogiltigt profil-ID."; +$a->strings["Profile Visibility Editor"] = "Ända vilka som ska kunna se profil"; +$a->strings["Click on a contact to add or remove."] = "Klicka på en kontakt för att lägga till eller ta bort."; +$a->strings["Visible To"] = "Synlig för"; +$a->strings["All Contacts (with secure profile access)"] = "Alla kontakter (med säker tillgång till din profil)"; +$a->strings["Tag removed"] = "Taggen har tagits bort"; +$a->strings["Remove Item Tag"] = "Ta bort tagg"; +$a->strings["Select a tag to remove: "] = "Välj vilken tagg som ska tas bort: "; +$a->strings["Remove"] = "Ta bort"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = ""; +$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."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = ""; +$a->strings["No entries."] = ""; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = ""; +$a->strings["Item was not found."] = ""; +$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["Applications"] = "Applikationer"; +$a->strings["No installed applications."] = ""; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = ""; +$a->strings["New Member Checklist"] = ""; +$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."] = ""; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$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."] = ""; +$a->strings["Go to Your Settings"] = ""; +$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."] = ""; +$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."] = ""; +$a->strings["Upload Profile Photo"] = "Ladda upp profilbild"; +$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."] = ""; +$a->strings["Edit Your Profile"] = ""; +$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."] = ""; +$a->strings["Profile Keywords"] = ""; +$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."] = ""; +$a->strings["Connecting"] = ""; +$a->strings["Importing Emails"] = ""; +$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"] = ""; +$a->strings["Go to Your Contacts Page"] = ""; +$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."] = ""; +$a->strings["Go to Your Site's Directory"] = ""; +$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."] = ""; +$a->strings["Finding New People"] = ""; +$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."] = ""; +$a->strings["Group Your 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."] = ""; +$a->strings["Why Aren't My Posts Public?"] = ""; +$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."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; +$a->strings["Remove My Account"] = "Ta bort mitt konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa."; +$a->strings["Please enter your password for verification:"] = "Ange lösenordet igen för säkerhets skull:"; +$a->strings["Item not found"] = "Hittades inte"; +$a->strings["Edit post"] = "Ändra inlägg"; +$a->strings["Time Conversion"] = ""; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = ""; +$a->strings["Current timezone: %s"] = ""; +$a->strings["Converted localtime: %s"] = ""; +$a->strings["Please select your timezone:"] = ""; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Gruppen har skapats."; +$a->strings["Could not create group."] = "Det gick inte att skapa gruppen."; +$a->strings["Group not found."] = "Gruppen hittades inte."; +$a->strings["Group name changed."] = "Gruppens namn har ändrats."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Skapa en grupp med kontakter/vänner."; +$a->strings["Group removed."] = "Gruppen har tagits bort."; +$a->strings["Unable to remove group."] = "Det gick inte att ta bort gruppen."; +$a->strings["Group Editor"] = "Ändra i grupper"; +$a->strings["Members"] = "Medlemmar"; +$a->strings["All Contacts"] = "Alla kontakter"; +$a->strings["Group is empty"] = "Gruppen är tom"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["No recipient selected."] = "Ingen mottagare har valts."; +$a->strings["Unable to check your home location."] = ""; +$a->strings["Message could not be sent."] = "Det gick inte att skicka meddelandet."; +$a->strings["Message collection failure."] = ""; +$a->strings["Message sent."] = "Meddelandet har skickats."; +$a->strings["No recipient."] = ""; +$a->strings["Send Private Message"] = "Skicka personligt meddelande"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Till:"; +$a->strings["Subject:"] = "Rubrik:"; +$a->strings["link"] = ""; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = ""; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +$a->strings["No"] = "Nej"; +$a->strings["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html (raw HTML): "] = ""; +$a->strings["bb2html: "] = ""; +$a->strings["bb2html2bb: "] = ""; +$a->strings["bb2md: "] = ""; +$a->strings["bb2md2html: "] = ""; +$a->strings["bb2dia2bb: "] = ""; +$a->strings["bb2md2html2bb: "] = ""; +$a->strings["Source input (Diaspora format): "] = ""; +$a->strings["diaspora2bb: "] = ""; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Unable to locate contact information."] = "Det gick inte att hitta kontaktuppgifterna."; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = "Meddelandet togs bort."; +$a->strings["Conversation removed."] = "Konversationen togs bort."; +$a->strings["No messages."] = "Inga meddelanden."; +$a->strings["Message not available."] = "Meddelandet är inte tillgängligt."; +$a->strings["Delete message"] = "Ta bort meddelande"; +$a->strings["Delete conversation"] = "Ta bort konversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Skicka svar"; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "", + 1 => "", +); +$a->strings["Manage Identities and/or Pages"] = "Hantera identiteter eller sidor"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "Välj vilken identitet du vill hantera: "; +$a->strings["Contact settings applied."] = "Inställningar för kontakter har sparats."; +$a->strings["Contact update failed."] = "Det gick inte att uppdatera kontakt."; +$a->strings["Contact not found."] = "Kontakten hittades inte."; +$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."] = "Använd webbläsarens bakåtknapp nu om du är osäker på vad man gör på den här sidan."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = ""; +$a->strings["Refetch contact data"] = ""; +$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["Name"] = "Namn"; +$a->strings["Account Nickname"] = ""; +$a->strings["@Tagname - overrides Name/Nickname"] = ""; +$a->strings["Account URL"] = ""; +$a->strings["Friend Request URL"] = ""; +$a->strings["Friend Confirm URL"] = ""; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = ""; +$a->strings["New photo from this URL"] = ""; +$a->strings["No such group"] = "Gruppen finns inte"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = ""; +$a->strings["%d comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["Private Message"] = "Personligt meddelande"; +$a->strings["I like this (toggle)"] = "Jag gillar det här (växla)"; +$a->strings["like"] = ""; +$a->strings["I don't like this (toggle)"] = "Jag ogillar det här (växla)"; +$a->strings["dislike"] = ""; +$a->strings["Share this"] = ""; +$a->strings["share"] = ""; +$a->strings["This is you"] = "Det här är du"; +$a->strings["Comment"] = "Kommentera"; +$a->strings["Bold"] = ""; +$a->strings["Italic"] = ""; +$a->strings["Underline"] = ""; +$a->strings["Quote"] = ""; +$a->strings["Code"] = ""; +$a->strings["Image"] = ""; +$a->strings["Link"] = ""; +$a->strings["Video"] = ""; +$a->strings["Edit"] = "Ändra"; +$a->strings["add star"] = ""; +$a->strings["remove star"] = ""; +$a->strings["toggle star status"] = ""; +$a->strings["starred"] = ""; +$a->strings["add tag"] = ""; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = ""; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "till"; +$a->strings["Wall-to-Wall"] = "Profil-till-profil"; +$a->strings["via Wall-To-Wall:"] = "via profil-till-profil:"; +$a->strings["Friend suggestion sent."] = ""; +$a->strings["Suggest Friends"] = ""; +$a->strings["Suggest a friend for %s"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Image uploaded but image cropping failed."] = "Bilden laddades upp men det blev fel när den skulle beskäras."; +$a->strings["Image size reduction [%s] failed."] = ""; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +$a->strings["Unable to process image"] = "Det gick inte att behandla bilden"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Det gick inte att behandla bilden."; +$a->strings["Upload File:"] = "Ladda upp fil:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "Ladda upp"; +$a->strings["or"] = "eller"; +$a->strings["skip this step"] = ""; +$a->strings["select a photo from your photo albums"] = "välj en bild från ett album"; +$a->strings["Crop Image"] = "Beskär bild"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Välj hur bilden ska beskäras för att bli så bra som möjligt."; +$a->strings["Done Editing"] = "Spara"; +$a->strings["Image uploaded successfully."] = "Bilden har laddats upp."; +$a->strings["Image upload failed."] = "Fel vid bilduppladdning."; +$a->strings["Account approved."] = "Kontot har godkänts."; +$a->strings["Registration revoked for %s"] = ""; +$a->strings["Please login."] = "Logga in."; +$a->strings["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Ta bort"; +$a->strings["Ignore"] = "Ignorera"; +$a->strings["Network Notifications"] = ""; +$a->strings["Personal Notifications"] = ""; +$a->strings["Home Notifications"] = ""; +$a->strings["Show Ignored Requests"] = "Visa förfrågningar du ignorerat"; +$a->strings["Hide Ignored Requests"] = "Dölj förfrågningar du ignorerat"; +$a->strings["Notification type: "] = "Typ av avisering: "; +$a->strings["suggested by %s"] = ""; +$a->strings["Hide this contact from others"] = ""; +$a->strings["Post a new friend activity"] = ""; +$a->strings["if applicable"] = ""; +$a->strings["Approve"] = "Godkänn"; +$a->strings["Claims to be known to you: "] = "Hävdar att du vet vem han/hon är: "; +$a->strings["yes"] = "ja"; +$a->strings["no"] = "nej"; +$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"] = "Vän"; +$a->strings["Sharer"] = ""; +$a->strings["Fan/Admirer"] = "Fan/Beundrare"; +$a->strings["Profile URL"] = ""; +$a->strings["No introductions."] = ""; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Profilen hittades inte."; +$a->strings["Profile deleted."] = "Profilen har tagits bort."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "En ny profil har skapats."; +$a->strings["Profile unavailable to clone."] = "Det gick inte att klona profilen."; +$a->strings["Profile Name is required."] = "Profilen måste ha ett namn."; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = "Profilen har uppdaterats."; +$a->strings[" and "] = ""; +$a->strings["public profile"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Ändra profilen"; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = "Titta på profilen"; +$a->strings["Create a new profile using these settings"] = "Skapa en ny profil med dessa inställningar"; +$a->strings["Clone this profile"] = "Kopiera profil"; +$a->strings["Delete this profile"] = "Ta bort profil"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Kön:"; +$a->strings[" Marital Status:"] = " Civilstånd:"; +$a->strings["Example: fishing photography software"] = "Exempel: fiske fotografering programmering"; +$a->strings["Profile Name:"] = "Profilens namn:"; +$a->strings["Required"] = ""; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "Det här är din offentliga profil.
                                              Den kan vara synlig för vem som helst på internet."; +$a->strings["Your Full Name:"] = "Fullständigt namn:"; +$a->strings["Title/Description:"] = "Titel/Beskrivning:"; +$a->strings["Street Address:"] = "Gatuadress:"; +$a->strings["Locality/City:"] = "Plats/Stad:"; +$a->strings["Region/State:"] = "Region:"; +$a->strings["Postal/Zip Code:"] = "Postnummer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Who: (if applicable)"] = "Vem: (om tillämpligt)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exempel: kalle123, Johanna Johansson, pelle@exempel.com"; +$a->strings["Since [date]:"] = ""; +$a->strings["Tell us about yourself..."] = "Beskriv dig själv..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Hemsida: (URL)"; +$a->strings["Religious Views:"] = "Religion:"; +$a->strings["Public Keywords:"] = "Offentliga nyckelord:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)"; +$a->strings["Private Keywords:"] = "Privata nyckelord:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)"; +$a->strings["Musical interests"] = "Musik"; +$a->strings["Books, literature"] = "Böcker, litteratur"; +$a->strings["Television"] = "TV"; +$a->strings["Film/dance/culture/entertainment"] = "Film/Dans/Kultur/Nöje"; +$a->strings["Hobbies/Interests"] = "Hobbys/Intressen"; +$a->strings["Love/romance"] = "Kärlek/Romantik"; +$a->strings["Work/employment"] = "Arbete"; +$a->strings["School/education"] = "Skola/Utbildning"; +$a->strings["Contact information and Social Networks"] = "Kontaktuppgifter och sociala nätverk"; +$a->strings["Edit/Manage Profiles"] = ""; +$a->strings["No friends to display."] = ""; +$a->strings["Access to this profile has been restricted."] = ""; +$a->strings["View"] = ""; +$a->strings["Previous"] = ""; +$a->strings["Next"] = ""; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = ""; +$a->strings["Common Friends"] = ""; +$a->strings["Not available."] = ""; +$a->strings["Global Directory"] = "Medlemskatalog för flera sajter (global)"; +$a->strings["Find on this site"] = ""; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Medlemskatalog"; +$a->strings["No entries (some entries may be hidden)."] = "Inget att visa. (Man kan välja att inte synas här)"; +$a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; +$a->strings["No matches"] = "Ingen träff"; +$a->strings["Item has been removed."] = "Har tagits bort."; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["Create New Event"] = ""; +$a->strings["Event details"] = ""; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = ""; +$a->strings["Finish date/time is not known or not relevant"] = ""; +$a->strings["Event Finishes:"] = ""; +$a->strings["Adjust for viewer timezone"] = ""; +$a->strings["Description:"] = ""; +$a->strings["Title:"] = ""; +$a->strings["Share this event"] = ""; +$a->strings["System down for maintenance"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; +$a->strings["is interested in:"] = ""; +$a->strings["Profile Match"] = "Matcha profiler"; +$a->strings["Tips for New Members"] = ""; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Ignore/Hide"] = ""; +$a->strings["[Embedded content - reload page to view]"] = ""; +$a->strings["Recent Photos"] = "Nyligen tillagda bilder"; +$a->strings["Upload New Photos"] = "Ladda upp bilder"; +$a->strings["everybody"] = ""; +$a->strings["Contact information unavailable"] = "Kommer inte åt kontaktuppgifter."; +$a->strings["Album not found."] = "Albumet finns inte."; +$a->strings["Delete Album"] = "Ta bort album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Delete Photo"] = "Ta bort bild"; +$a->strings["Do you really want to delete this photo?"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = ""; +$a->strings["Image file is empty."] = ""; +$a->strings["No photos selected"] = "Inga bilder har valts"; +$a->strings["Access to this item is restricted."] = ""; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Ladda upp bilder"; +$a->strings["New album name: "] = "Nytt album med namn: "; +$a->strings["or existing album name: "] = "eller befintligt album med namn: "; +$a->strings["Do not show a status post for this upload"] = ""; +$a->strings["Show to Groups"] = ""; +$a->strings["Show to Contacts"] = ""; +$a->strings["Private Photo"] = ""; +$a->strings["Public Photo"] = ""; +$a->strings["Edit Album"] = "Redigera album"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = "Visa bild"; +$a->strings["Permission denied. Access to this item may be restricted."] = ""; +$a->strings["Photo not available"] = "Bilden är inte tillgänglig"; +$a->strings["View photo"] = ""; +$a->strings["Edit photo"] = "Hantera bild"; +$a->strings["Use as profile photo"] = ""; +$a->strings["View Full Size"] = "Visa fullstor"; +$a->strings["Tags: "] = "Taggar: "; +$a->strings["[Remove any tag]"] = "[Remove any tag]"; +$a->strings["New album name"] = "Nytt album med namn"; +$a->strings["Caption"] = "Caption"; +$a->strings["Add a Tag"] = "Lägg till tagg"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["Private photo"] = ""; +$a->strings["Public photo"] = ""; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Titta i album"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrering klar. Kolla din e-post för vidare information."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Det går inte att behandla registreringen."; +$a->strings["Your registration is pending approval by the site owner."] = "Din registrering inväntar godkännande av webbplatsens ägare."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Om du vill kan du fylla i detta formulär via OpenID genom att ange ditt OpenID och klicka på Registrera."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten."; +$a->strings["Your OpenID (optional): "] = "OpenID (om du vill): "; +$a->strings["Include your profile in member directory?"] = "Ta med profilen i medlemskatalogen?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = ""; +$a->strings["Your invitation ID: "] = ""; +$a->strings["Registration"] = "Registrering"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "E-postadress: "; +$a->strings["New Password:"] = "Nytt lösenord"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Bekräfta (repetera):"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Välj ett användarnamn. Det måste inledas med en bokstav. Din profiladress på den här webbplatsen blir 'användarnamn@\$sitename'."; +$a->strings["Choose a nickname: "] = "Välj ett användarnamn: "; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Account"] = ""; +$a->strings["Additional features"] = ""; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Plugins"] = ""; +$a->strings["Connected apps"] = ""; +$a->strings["Remove account"] = ""; +$a->strings["Missing some important data!"] = ""; +$a->strings["Update"] = ""; +$a->strings["Failed to connect with email account using the settings provided."] = ""; +$a->strings["Email settings updated."] = ""; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lösenordet får inte vara blankt. Lösenordet ändras inte."; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = "Lösenordet har ändrats."; +$a->strings["Password update failed. Please try again."] = "Det blev fel när lösenordet skulle ändras. Försök igen."; +$a->strings[" Please use a shorter name."] = " Använd ett kortare namn."; +$a->strings[" Name too short."] = " Namnet är för kort."; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = " Ogiltig e-postadress."; +$a->strings[" Cannot change to that email."] = " Ändring till den e-postadressen görs inte."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Inställningarna har uppdaterats."; +$a->strings["Add application"] = ""; +$a->strings["Save Settings"] = ""; +$a->strings["Consumer Key"] = ""; +$a->strings["Consumer Secret"] = ""; +$a->strings["Redirect"] = ""; +$a->strings["Icon url"] = ""; +$a->strings["You can't edit this application."] = ""; +$a->strings["Connected Apps"] = ""; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = ""; +$a->strings["Remove authorization"] = ""; +$a->strings["No Plugin settings configured"] = "Det finns inga inställningar för insticksprogram"; +$a->strings["Plugin Settings"] = "Inställningar för insticksprogram"; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = ""; +$a->strings["enabled"] = ""; +$a->strings["disabled"] = ""; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = ""; +$a->strings["Email/Mailbox Setup"] = ""; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = ""; +$a->strings["Last successful email check:"] = ""; +$a->strings["IMAP server name:"] = ""; +$a->strings["IMAP port:"] = ""; +$a->strings["Security:"] = ""; +$a->strings["None"] = ""; +$a->strings["Email login name:"] = ""; +$a->strings["Email password:"] = ""; +$a->strings["Reply-to address:"] = ""; +$a->strings["Send public posts to all email contacts:"] = ""; +$a->strings["Action after import:"] = ""; +$a->strings["Move to folder"] = ""; +$a->strings["Move to folder:"] = ""; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = "Tema/utseende:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = ""; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = ""; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "Kontot är ett vanligt personligt konto"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktförfrågningar godkänns automatiskt som fans. De kan se vad du skriver men har inte samma rättigheter som vänner."; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktförfrågningar godkänns automatiskt som vänner."; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = ""; +$a->strings["(Optional) Allow this OpenID to login to this account."] = ""; +$a->strings["Publish your default profile in your local site directory?"] = ""; +$a->strings["Publish your default profile in the global social directory?"] = ""; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = ""; +$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?"] = ""; +$a->strings["Allow friends to tag your posts?"] = ""; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Profilen är inte publicerad."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = ""; +$a->strings["Advanced expiration settings"] = ""; +$a->strings["Advanced Expiration"] = ""; +$a->strings["Expire posts:"] = ""; +$a->strings["Expire personal notes:"] = ""; +$a->strings["Expire starred posts:"] = ""; +$a->strings["Expire photos:"] = ""; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Kontoinställningar"; +$a->strings["Password Settings"] = "Lösenordsinställningar"; +$a->strings["Leave password fields blank unless changing"] = "Lämna fältet tomt om du inte vill byta lösenord"; +$a->strings["Current Password:"] = ""; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Grundläggande inställningar"; +$a->strings["Email Address:"] = "E-postadress:"; +$a->strings["Your Timezone:"] = "Tidszon:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Default Post Location:"; +$a->strings["Use Browser Location:"] = "Använd webbläsarens positionering:"; +$a->strings["Security and Privacy Settings"] = "Inställningar för säkerhet och sekretess"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximalt antal kontaktförfrågningar per dygn:"; +$a->strings["(to prevent spam abuse)"] = "(för att motverka spam)"; +$a->strings["Default Post Permissions"] = "Standardåtkomst för inlägg"; +$a->strings["(click to open/close)"] = "(klicka för att öppna/stänga)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Aviseringsinställningar"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = ""; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Skicka ett aviseringsmail när:"; +$a->strings["You receive an introduction"] = "En kontaktförfrågan anländer"; +$a->strings["Your introductions are confirmed"] = "Dina förfrågningar godkänns"; +$a->strings["Someone writes on your profile wall"] = "Någon gör inlägg på din profilsida"; +$a->strings["Someone writes a followup comment"] = "Någon gör ett inlägg i samma tråd som du"; +$a->strings["You receive a private message"] = "Du får personliga meddelanden"; +$a->strings["You receive a friend suggestion"] = ""; +$a->strings["You are tagged in a post"] = ""; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = ""; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Invalid request."] = ""; +$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 %s"] = ""; +$a->strings["File upload failed."] = ""; +$a->strings["Theme settings updated."] = ""; +$a->strings["Site"] = ""; +$a->strings["Users"] = ""; +$a->strings["Themes"] = ""; +$a->strings["DB updates"] = ""; +$a->strings["Inspect Queue"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = ""; +$a->strings["View Logs"] = ""; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = ""; +$a->strings["diagnostics"] = ""; +$a->strings["User registrations waiting for confirmation"] = ""; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Administration"] = ""; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Vanligt konto"; +$a->strings["Soapbox Account"] = "Konto med envägskommunikation"; +$a->strings["Community/Celebrity Account"] = "Gemenskap eller kändiskonto."; +$a->strings["Automatic Friend Account"] = "Konto med automatiskt godkännande av vänner."; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Message queues"] = ""; +$a->strings["Summary"] = ""; +$a->strings["Registered users"] = ""; +$a->strings["Pending registrations"] = ""; +$a->strings["Version"] = ""; +$a->strings["Active plugins"] = ""; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["Site settings updated."] = ""; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["Never"] = "Aldrig"; +$a->strings["At post arrival"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = ""; +$a->strings["Three months"] = ""; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = ""; +$a->strings["Multi user instance"] = ""; +$a->strings["Closed"] = ""; +$a->strings["Requires approval"] = ""; +$a->strings["Open"] = ""; +$a->strings["No SSL policy, links will track page SSL state"] = ""; +$a->strings["Force all links to use SSL"] = ""; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; +$a->strings["File upload"] = ""; +$a->strings["Policies"] = ""; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = ""; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = ""; +$a->strings["Host name"] = ""; +$a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = ""; +$a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = ""; +$a->strings["System theme"] = ""; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = ""; +$a->strings["Determines whether generated links should be forced to use 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["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = ""; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; +$a->strings["Single user instance"] = ""; +$a->strings["Make this instance multi-user or single-user for the named user"] = ""; +$a->strings["Maximum image size"] = ""; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = ""; +$a->strings["Maximum Daily Registrations"] = ""; +$a->strings["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."] = ""; +$a->strings["Register text"] = ""; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = ""; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +$a->strings["Allowed friend domains"] = ""; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = ""; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Block public"] = ""; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = ""; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["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."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["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."] = ""; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["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."] = ""; +$a->strings["Block multiple registrations"] = ""; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = ""; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = ""; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["UTF-8 Regular expressions"] = ""; +$a->strings["Use PHP UTF8 regular expressions"] = ""; +$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["Enable OStatus support"] = ""; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = ""; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = ""; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = ""; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = ""; +$a->strings["Proxy URL"] = ""; +$a->strings["Network timeout"] = ""; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Use MySQL full text engine"] = ""; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; +$a->strings["Suppress Language"] = ""; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = ""; +$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."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Path for lock file"] = ""; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; +$a->strings["Temp path"] = ""; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$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["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = ""; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = ""; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$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["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "", + 1 => "", +); +$a->strings["User '%s' deleted"] = ""; +$a->strings["User '%s' unblocked"] = ""; +$a->strings["User '%s' blocked"] = ""; +$a->strings["Register date"] = ""; +$a->strings["Last login"] = ""; +$a->strings["Last item"] = ""; +$a->strings["Add User"] = ""; +$a->strings["select all"] = ""; +$a->strings["User registrations waiting for confirm"] = "Användare som registrerat sig och inväntar godkännande"; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = ""; +$a->strings["No registrations."] = "Inga registreringar."; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = "Avslå"; +$a->strings["Block"] = ""; +$a->strings["Unblock"] = ""; +$a->strings["Site admin"] = ""; +$a->strings["Account expired"] = ""; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$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?"] = ""; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = ""; +$a->strings["Plugin %s enabled."] = ""; +$a->strings["Disable"] = ""; +$a->strings["Enable"] = ""; +$a->strings["Toggle"] = ""; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = ""; +$a->strings["Screenshot"] = ""; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = ""; +$a->strings["[Unsupported]"] = ""; +$a->strings["Log settings updated."] = ""; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = ""; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = ""; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; +$a->strings["Log level"] = ""; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", +); +$a->strings["Could not access contact record."] = "Hittar inte information om kontakten."; +$a->strings["Could not locate selected profile."] = "Hittar inte vald profil."; +$a->strings["Contact updated."] = "Kontakten har uppdaterats."; +$a->strings["Failed to update contact record."] = "Det blev fel när kontakten skulle uppdateras."; +$a->strings["Contact has been blocked"] = "Kontakten har spärrats"; +$a->strings["Contact has been unblocked"] = "Kontakten är inte längre spärrad"; +$a->strings["Contact has been ignored"] = "Kontakten ignoreras"; +$a->strings["Contact has been unignored"] = "Kontakten ignoreras inte längre"; +$a->strings["Contact has been archived"] = ""; +$a->strings["Contact has been unarchived"] = ""; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Contact has been removed."] = "Kontakten har tagits bort."; +$a->strings["You are mutual friends with %s"] = ""; +$a->strings["You are sharing with %s"] = ""; +$a->strings["%s is sharing with you"] = ""; +$a->strings["Private communications are not available for this contact."] = "Det går inte att utbyta personliga meddelanden med den här kontakten."; +$a->strings["(Update was successful)"] = "(Uppdateringen lyckades)"; +$a->strings["(Update was not successful)"] = "(Uppdateringen lyckades inte)"; +$a->strings["Suggest friends"] = ""; +$a->strings["Network type: %s"] = ""; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Visning av profil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Välj vilken profil som ska visas för %s när han/hon besöker din sida."; +$a->strings["Contact Information / Notes"] = "Kontaktuppgifter/Anteckningar"; +$a->strings["Edit contact notes"] = ""; +$a->strings["Block/Unblock contact"] = "Spärra kontakt eller häv spärr"; +$a->strings["Ignore contact"] = "Ignorera kontakt"; +$a->strings["Repair URL settings"] = ""; +$a->strings["View conversations"] = ""; +$a->strings["Last update:"] = ""; +$a->strings["Update public posts"] = ""; +$a->strings["Update now"] = "Updatera nu"; +$a->strings["Unignore"] = ""; +$a->strings["Currently blocked"] = "Spärrad"; +$a->strings["Currently ignored"] = "Ignoreras"; +$a->strings["Currently archived"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = ""; +$a->strings["Suggest potential friends"] = ""; +$a->strings["Show all contacts"] = ""; +$a->strings["Unblocked"] = ""; +$a->strings["Only show unblocked contacts"] = ""; +$a->strings["Blocked"] = ""; +$a->strings["Only show blocked contacts"] = ""; +$a->strings["Ignored"] = ""; +$a->strings["Only show ignored contacts"] = ""; +$a->strings["Archived"] = ""; +$a->strings["Only show archived contacts"] = ""; +$a->strings["Hidden"] = ""; +$a->strings["Only show hidden contacts"] = ""; +$a->strings["Search your contacts"] = ""; +$a->strings["Archive"] = ""; +$a->strings["Unarchive"] = ""; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = ""; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Mutual Friendship"] = "Ömsesidig vänskap"; +$a->strings["is a fan of yours"] = "är ett fan till dig"; +$a->strings["you are a fan of"] = "du är fan till"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Delete contact"] = "Ta bort kontakt"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Kunde inte tolka svaret från fjärrsajten."; +$a->strings["Unexpected response from remote site: "] = "Oväntat svar från fjärrsajten: "; $a->strings["Confirmation completed successfully."] = "Bekräftat."; -$a->strings['Remote site reported: '] = 'Meddelande från fjärrsajten: '; +$a->strings["Remote site reported: "] = "Meddelande från fjärrsajten: "; $a->strings["Temporary failure. Please wait and try again."] = "Tillfälligt fel. Försök igen lite senare."; $a->strings["Introduction failed or was revoked."] = "Kontaktförfrågan gick inte fram eller har återkallats."; -$a->strings['Unable to set contact photo.'] = 'Det gick inte att byta profilbild.'; -$a->strings['is now friends with'] = 'är nu vän med'; -$a->strings['Our site encryption key is apparently messed up.'] = 'Det är något fel på webbplatsens krypteringsnyckel.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.'; -$a->strings['Contact record was not found for you on our site.'] = 'Det gick inte att hitta efterfrågad information på vår webbplats.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Det ID som angavs av ditt system är samma som på vårt system. Det borde fungera om du provar igen.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system'; -$a->strings["Connection accepted at %s"] = "Kontaktförfrågan beviljad - %s"; -$a->strings['Administrator'] = 'Admin'; -$a->strings['noreply'] = 'noreply'; -$a->strings["%s commented on an item at %s"] = "%s har kommenterat ett inlägg på %s"; +$a->strings["Unable to set contact photo."] = "Det gick inte att byta profilbild."; +$a->strings["No user record found for '%s' "] = ""; +$a->strings["Our site encryption key is apparently messed up."] = "Det är något fel på webbplatsens krypteringsnyckel."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Empty site URL was provided or URL could not be decrypted by us."; +$a->strings["Contact record was not found for you on our site."] = "Det gick inte att hitta efterfrågad information på vår webbplats."; +$a->strings["Site public key not available in contact record for URL %s."] = ""; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Det ID som angavs av ditt system är samma som på vårt system. Det borde fungera om du provar igen."; +$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; +$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; +$a->strings["%1\$s has joined %2\$s"] = ""; $a->strings["This introduction has already been accepted."] = "Den här förfrågan har redan beviljats."; -$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profiladressen är ogiltig eller innehåller ingen profilinformation.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Varning! Hittar inget namn som identifierar profilen.'; -$a->strings['Warning: profile location has no profile photo.'] = 'Varning! Profilen innehåller inte någon profilbild.'; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladressen är ogiltig eller innehåller ingen profilinformation."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Varning! Hittar inget namn som identifierar profilen."; +$a->strings["Warning: profile location has no profile photo."] = "Varning! Profilen innehåller inte någon profilbild."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d required parameter was not found at the given location", + 1 => "%d required parameters were not found at the given location", +); $a->strings["Introduction complete."] = "Kontaktförfrågan/Presentationen är klar."; -$a->strings['Unrecoverable protocol error.'] = 'Protokollfel.'; -$a->strings['Profile unavailable.'] = 'Profilen är inte tillgänglig.'; -$a->strings['%s has received too many connection requests today.'] = '%s har fått för många kontaktförfrågningar idag.'; -$a->strings['Spam protection measures have been invoked.'] = 'Åtgärder för spamskydd har vidtagits.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Dina vänner kan prova igen om ett dygn.'; +$a->strings["Unrecoverable protocol error."] = "Protokollfel."; +$a->strings["Profile unavailable."] = "Profilen är inte tillgänglig."; +$a->strings["%s has received too many connection requests today."] = "%s har fått för många kontaktförfrågningar idag."; +$a->strings["Spam protection measures have been invoked."] = "Åtgärder för spamskydd har vidtagits."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Dina vänner kan prova igen om ett dygn."; $a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location."; -$a->strings['You have already introduced yourself here.'] = 'Du har redan presenterat dig här.'; -$a->strings['Apparently you are already friends with %s.'] = 'Du och %s är redan kontakter.'; -$a->strings['Invalid profile URL.'] = 'Ogiltig profil-URL.'; -$a->strings['Disallowed profile URL.'] = 'Otillåten profil-URL.'; -$a->strings['Your introduction has been sent.'] = 'Kontaktförfrågan/Presentationen har skickats.'; +$a->strings["Invalid email address."] = ""; +$a->strings["This account has not been configured for email. Request failed."] = ""; +$a->strings["You have already introduced yourself here."] = "Du har redan presenterat dig här."; +$a->strings["Apparently you are already friends with %s."] = "Du och %s är redan kontakter."; +$a->strings["Invalid profile URL."] = "Ogiltig profil-URL."; +$a->strings["Your introduction has been sent."] = "Kontaktförfrågan/Presentationen har skickats."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; $a->strings["Please login to confirm introduction."] = "Logga in för att acceptera förfrågan."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Inloggad med fel identitet. Logga in med den här profilen."; -$a->strings['Welcome home %s.'] = 'Välkommen hem %s.'; -$a->strings['Please confirm your introduction/connection request to %s.'] = 'Bekräfta att du vill skicka kontaktförfrågan till %s.'; -$a->strings['Confirm'] = 'Bekräfta'; -$a->strings['[Name Withheld]'] = '[Namnet visas inte]'; -$a->strings["Introduction received at "] = "Inkommen kontaktförfrågan/presentation - "; -$a->strings['Friend/Connection Request'] = 'Vän- eller kontaktförfrågan'; -$a->strings['Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'] = 'Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'; -$a->strings['Please answer the following:'] = 'Var vänlig besvara följande:'; -$a->strings['Does $name know you?'] = 'Känner $name dig?'; -$a->strings['Yes'] = 'Ja'; -$a->strings['No'] = 'Nej'; -$a->strings['Add a personal note:'] = 'Lägg till ett personligt meddelande:'; -$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Ange din adress, ditt ID, på ett av följande sociala nätverk:"; -$a->strings['Friendica'] = 'Friendica'; -$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web'; -$a->strings["Private \x28secure\x29 network"] = "Privat (säkert) nätverk"; -$a->strings["Public \x28insecure\x29 network"] = "Offentligt (osäkert) nätverk"; -$a->strings['Your Identity Address:'] = 'Din adress (ditt ID):'; -$a->strings['Submit Request'] = 'Skicka förfrågan'; -$a->strings['Cancel'] = 'Avbryt'; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d required parameter was not found at the given location", - 1 => "%d required parameters were not found at the given location", +$a->strings["Confirm"] = "Bekräfta"; +$a->strings["Hide this contact"] = ""; +$a->strings["Welcome home %s."] = "Välkommen hem %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bekräfta att du vill skicka kontaktförfrågan till %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = ""; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Vän- eller kontaktförfrågan"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Var vänlig besvara följande:"; +$a->strings["Does %s know you?"] = ""; +$a->strings["Add a personal note:"] = "Lägg till ett personligt meddelande:"; +$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."] = ""; +$a->strings["Your Identity Address:"] = "Din adress (ditt ID):"; +$a->strings["Submit Request"] = "Skicka förfrågan"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = ""; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = ""; +$a->strings["Could not create table."] = ""; +$a->strings["Your Friendica site database has been installed."] = "Databasen för din friendicasajt har installerats."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du kanske måste importera filen \"database.sql\" manuellt med phpmyadmin eller mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Se filen \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = ""; +$a->strings["Check again"] = ""; +$a->strings["Database connection"] = ""; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = ""; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +$a->strings["Database Server Name"] = "Database Server Name"; +$a->strings["Database Login Name"] = "Database Login Name"; +$a->strings["Database Login Password"] = "Database Login Password"; +$a->strings["Database Name"] = "Database Name"; +$a->strings["Site administrator email address"] = ""; +$a->strings["Your account email address must match this in order to use the web admin panel."] = ""; +$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your website"; +$a->strings["Site settings"] = ""; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = ""; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = ""; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "Det krävs för att meddelanden ska kunna levereras."; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fel: funktionen \"openssl_pkey_new\" kan inte skapa krypteringsnycklar"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Läs mer på \"http://www.php.net/manual/en/openssl.installation.php\" om du kör Windows."; +$a->strings["Generate encryption keys"] = ""; +$a->strings["libCurl PHP module"] = ""; +$a->strings["GD graphics PHP module"] = ""; +$a->strings["OpenSSL PHP module"] = ""; +$a->strings["mysqli PHP module"] = ""; +$a->strings["mb_string PHP module"] = ""; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Error: mysqli PHP module required but not installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = ""; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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."] = "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."; +$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."] = "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."; +$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->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ""; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; +$a->strings["

                                              What next

                                              "] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["Unable to locate original post."] = "Hittar inte det ursprungliga inlägget."; +$a->strings["Empty post discarded."] = "Tomt inlägg. Inte sparat."; +$a->strings["System error. Post not saved."] = "Något gick fel. Inlägget sparades inte."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; +$a->strings["You may visit them online at %s"] = ""; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Kontakta avsändaren genom att svara på det här meddelandet om du inte vill ha sådana här meddelanden."; +$a->strings["%s posted an update."] = "%s har gjort ett inlägg."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", ); -$a->strings['Global Directory'] = 'Medlemskatalog för flera sajter (global)'; -$a->strings['Site Directory'] = 'Medlemskatalog'; -$a->strings['Age: '] = 'Ålder: '; -$a->strings['Gender: '] = 'Kön: '; -$a->strings["No entries \x28some entries may be hidden\x29."] = "Inget att visa. (Man kan välja att inte synas här)"; -$a->strings['Item not found.'] = 'Hittar inte.'; -$a->strings['Item has been removed.'] = 'Har tagits bort.'; -$a->strings['Item not found'] = 'Hittades inte'; -$a->strings['Edit post'] = 'Ändra inlägg'; -$a->strings['Edit'] = 'Ändra'; -$a->strings['The profile address specified does not provide adequate information.'] = 'Angiven profiladress ger inte tillräcklig information.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig.'; -$a->strings['Unable to retrieve contact information.'] = 'Det gick inte att komma åt kontaktinformationen.'; -$a->strings['following'] = 'följer'; -$a->strings['This is Friendica version'] = 'Det här är Friendica version'; -$a->strings['running at web location'] = 'som körs på'; -$a->strings['Shared content within the Friendica network is provided under the Creative Commons Attribution 3.0 license'] = 'Innehåll som publiceras inom Friendicanätverket omfattas av licensen Creative Commons Attribution 3.0 license'; -$a->strings['Please visit Project.Friendica.com to learn more about the Friendica project.'] = 'Gå till Project.Friendica.com om du vill läsa mer om friendicaprojektet.'; -$a->strings['Bug reports and issues: please visit'] = 'Anmäl buggar eller andra problem, gå till'; -$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com'] = 'Förslag, beröm, donationer, etc. - skicka e-post till "info at friendica punkt com" '; -$a->strings['Installed plugins/addons/apps'] = 'Installerade insticksprogram/applikationer'; -$a->strings['No installed plugins/addons/apps'] = 'Inga installerade insticksprogram/applikationer'; -$a->strings['Group created.'] = 'Gruppen har skapats.'; -$a->strings['Could not create group.'] = 'Det gick inte att skapa gruppen.'; -$a->strings['Group not found.'] = 'Gruppen hittades inte.'; -$a->strings['Group name changed.'] = 'Gruppens namn har ändrats.'; -$a->strings['Create a group of contacts/friends.'] = 'Skapa en grupp med kontakter/vänner.'; -$a->strings['Group Name: '] = 'Gruppens namn: '; -$a->strings['Group removed.'] = 'Gruppen har tagits bort.'; -$a->strings['Unable to remove group.'] = 'Det gick inte att ta bort gruppen.'; -$a->strings['Delete'] = 'Ta bort'; -$a->strings['Click on a contact to add or remove.'] = 'Klicka på en kontakt för att lägga till eller ta bort.'; -$a->strings['Group Editor'] = 'Ändra i grupper'; -$a->strings['Members'] = 'Medlemmar'; -$a->strings['All Contacts'] = 'Alla kontakter'; -$a->strings['Help:'] = 'Hjälp:'; -$a->strings['Help'] = 'Hjälp'; -$a->strings["Welcome to %s"] = "Välkommen till %s"; -$a->strings['Could not create/connect to database.'] = 'Det gick inte att skapa eller ansluta till databasen.'; -$a->strings['Connected to database.'] = 'Ansluten till databasen.'; -$a->strings['Proceed with Installation'] = 'Fortsätt med installationen'; -$a->strings['Your Friendica site database has been installed.'] = 'Databasen för din friendicasajt har installerats.'; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Se filen "INSTALL.txt".'; -$a->strings['Proceed to registration'] = 'Gå vidare till registreringen'; -$a->strings['Database import failed.'] = 'Det gick inte att importera databasen.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Du kanske måste importera filen "database.sql" manuellt med phpmyadmin eller mysql.'; -$a->strings['Welcome to Friendica.'] = 'Välkommen till Friendica.'; -$a->strings['Friendica Social Network'] = 'Det sociala nätverket Friendica'; -$a->strings['Installation'] = 'Installation'; -$a->strings['In order to install Friendica we need to know how to contact your database.'] = 'In order to install Friendica we need to know how to contact your database.'; -$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Please contact your hosting provider or site administrator if you have questions about these settings.'; -$a->strings['The database you specify below must already exist. If it does not, please create it before continuing.'] = 'The database you specify below must already exist. If it does not, please create it before continuing.'; -$a->strings['Database Server Name'] = 'Database Server Name'; -$a->strings['Database Login Name'] = 'Database Login Name'; -$a->strings['Database Login Password'] = 'Database Login Password'; -$a->strings['Database Name'] = 'Database Name'; -$a->strings['Please select a default timezone for your website'] = 'Please select a default timezone for your website'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.'; -$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.'; -$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.'; -$a->strings['This is required for message delivery to work.'] = 'Det krävs för att meddelanden ska kunna levereras.'; -$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Fel: funktionen "openssl_pkey_new" kan inte skapa krypteringsnycklar'; -$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Läs mer på "http://www.php.net/manual/en/openssl.installation.php" om du kör Windows.'; -$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: Apache webserver mod-rewrite module is required but not installed.'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: libCURL PHP module required but not installed.'; -$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: GD graphics PHP module with JPEG support required but not installed.'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: openssl PHP module required but not installed.'; -$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: mysqli PHP module required but not installed.'; -$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.'] = '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.'; -$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.'] = '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.'; -$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.'; -$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'; -$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.'] = '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.'; -$a->strings['Errors encountered creating database tables.'] = 'Fel vid skapandet av databastabeller.'; -$a->strings['%s : Not a valid email address.'] = '%s : Ogiltig e-postadress.'; -$a->strings['%s : Message delivery failed.'] = '%s : Meddelandet kom inte fram.'; -$a->strings['Send invitations'] = 'Skicka inbjudningar'; -$a->strings['Enter email addresses, one per line:'] = 'Ange e-postadresser, en per rad:'; -$a->strings['Your message:'] = 'Meddelande:'; -$a->strings['To accept this invitation, please visit:'] = 'Gå hit för att tacka ja till inbjudan:'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:'; -$a->strings["%d message sent."] = array( - 0 => "%d meddelande har skickats.", - 1 => "%d meddelanden har skickats.", -); -$a->strings['Unable to locate original post.'] = 'Hittar inte det ursprungliga inlägget.'; -$a->strings['Empty post discarded.'] = 'Tomt inlägg. Inte sparat.'; -$a->strings['Wall Photos'] = 'Loggbilder'; -$a->strings["%s commented on your item at %s"] = "%s har kommenterat ditt inlägg på %s"; -$a->strings["%s posted on your profile wall at %s"] = "%s har gjort ett inlägg på din logg på %s"; -$a->strings['System error. Post not saved.'] = 'Något gick fel. Inlägget sparades inte.'; -$a->strings['You may visit them online at'] = 'Besök online på'; -$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Kontakta avsändaren genom att svara på det här meddelandet om du inte vill ha sådana här meddelanden.'; -$a->strings['%s posted an update.'] = '%s har gjort ett inlägg.'; -$a->strings['photo'] = 'bild'; -$a->strings['status'] = 'status'; -$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s gillar %2$s\'s %3$s'; -$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s ogillar %2$s\'s %3$s'; -$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; -$a->strings['Visible to:'] = 'Synlig för:'; -$a->strings['Password reset request issued. Check your email.'] = 'Nytt lösenord har begärts. Kolla din mail.'; -$a->strings['Password reset requested at %s'] = 'Nytt lösenord på %s har begärts'; -$a->strings["Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."] = "Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord."; -$a->strings['Your password has been reset as requested.'] = 'Nu har du fått ett nytt lösenord.'; -$a->strings['Your new password is'] = 'Det nya lösenordet är'; -$a->strings['Save or copy your new password - and then'] = 'Spara eller kopiera lösenordet och'; -$a->strings['click here to login'] = 'klicka här för att logga in'; -$a->strings['Your password may be changed from the Settings page after successful login.'] = 'När du loggat in kan du byta lösenord på sidan Inställningar.'; -$a->strings['Forgot your Password?'] = 'Glömt lösenordet?'; -$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post.'; -$a->strings['Nickname or Email: '] = 'Användarnamn eller e-post:'; -$a->strings['Reset'] = 'Skicka'; -$a->strings["Welcome back %s"] = "Välkommen tillbaka %s"; -$a->strings['Manage Identities and/or Pages'] = 'Hantera identiteter eller sidor'; -$a->strings["\x28Toggle between different identities or community/group pages which share your account details.\x29"] = "(Växla mellan olika identiteter eller gemenskaper/gruppsidor som är kopplade till ditt konto.)"; -$a->strings['Select an identity to manage: '] = 'Välj vilken identitet du vill hantera: '; -$a->strings['Profile Match'] = 'Matcha profiler'; -$a->strings['No matches'] = 'Ingen träff'; -$a->strings['No recipient selected.'] = 'Ingen mottagare har valts.'; -$a->strings['[no subject]'] = '[ingen rubrik]'; -$a->strings['Unable to locate contact information.'] = 'Det gick inte att hitta kontaktuppgifterna.'; -$a->strings['Message sent.'] = 'Meddelandet har skickats.'; -$a->strings['Message could not be sent.'] = 'Det gick inte att skicka meddelandet.'; -$a->strings['Messages'] = 'Meddelanden'; -$a->strings['Inbox'] = 'Inkorg'; -$a->strings['Outbox'] = 'Utkorg'; -$a->strings['New Message'] = 'Nytt meddelande'; -$a->strings['Message deleted.'] = 'Meddelandet togs bort.'; -$a->strings['Conversation removed.'] = 'Konversationen togs bort.'; -$a->strings['Send Private Message'] = 'Skicka personligt meddelande'; -$a->strings['To:'] = 'Till:'; -$a->strings['Subject:'] = 'Rubrik:'; -$a->strings['No messages.'] = 'Inga meddelanden.'; -$a->strings['Delete conversation'] = 'Ta bort konversation'; -$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; -$a->strings['Message not available.'] = 'Meddelandet är inte tillgängligt.'; -$a->strings['Delete message'] = 'Ta bort meddelande'; -$a->strings['Send Reply'] = 'Skicka svar'; -$a->strings['Invalid request identifier.'] = 'Invalid request identifier.'; -$a->strings['Discard'] = 'Ta bort'; -$a->strings['Ignore'] = 'Ignorera'; -$a->strings['Pending Friend/Connect Notifications'] = 'Väntande kontaktförfrågningar'; -$a->strings['Show Ignored Requests'] = 'Visa förfrågningar du ignorerat'; -$a->strings['Hide Ignored Requests'] = 'Dölj förfrågningar du ignorerat'; -$a->strings['Claims to be known to you: '] = 'Hävdar att du vet vem han/hon är: '; -$a->strings['yes'] = 'ja'; -$a->strings['no'] = 'nej'; -$a->strings['Approve as: '] = 'Godkänn och lägg till som: '; -$a->strings['Friend'] = 'Vän'; -$a->strings['Fan/Admirer'] = 'Fan/Beundrare'; -$a->strings['Notification type: '] = 'Typ av avisering: '; -$a->strings['Friend/Connect Request'] = 'Vän- eller kontaktförfrågan'; -$a->strings['New Follower'] = 'En som vill följa dig'; -$a->strings['Approve'] = 'Godkänn'; -$a->strings['No notifications.'] = 'Inga aviseringar.'; -$a->strings['User registrations waiting for confirm'] = 'Användare som registrerat sig och inväntar godkännande'; -$a->strings['Deny'] = 'Avslå'; -$a->strings['No registrations.'] = 'Inga registreringar.'; -$a->strings['Post successful.'] = 'Inlagt.'; -$a->strings['Login failed.'] = 'Inloggningen misslyckades.'; -$a->strings["Welcome back "] = "Välkommen tillbaka "; -$a->strings['Photo Albums'] = 'Fotoalbum'; -$a->strings['Contact Photos'] = 'Dina kontakters bilder'; -$a->strings['Contact information unavailable'] = 'Kommer inte åt kontaktuppgifter.'; -$a->strings['Profile Photos'] = 'Profilbilder'; -$a->strings['Album not found.'] = 'Albumet finns inte.'; -$a->strings['Delete Album'] = 'Ta bort album'; -$a->strings['Delete Photo'] = 'Ta bort bild'; -$a->strings['was tagged in a'] = 'har taggats i'; -$a->strings['by'] = 'av'; -$a->strings['Image exceeds size limit of '] = 'Bilden överskrider den tillåtna storleken '; -$a->strings['Unable to process image.'] = 'Det gick inte att behandla bilden.'; -$a->strings['Image upload failed.'] = 'Fel vid bilduppladdning.'; -$a->strings['No photos selected'] = 'Inga bilder har valts'; -$a->strings['Upload Photos'] = 'Ladda upp bilder'; -$a->strings['New album name: '] = 'Nytt album med namn: '; -$a->strings['or existing album name: '] = 'eller befintligt album med namn: '; -$a->strings['Permissions'] = 'Åtkomst'; -$a->strings['Edit Album'] = 'Redigera album'; -$a->strings['View Photo'] = 'Visa bild'; -$a->strings['Photo not available'] = 'Bilden är inte tillgänglig'; -$a->strings['Edit photo'] = 'Hantera bild'; -$a->strings['Private Message'] = 'Personligt meddelande'; -$a->strings['<< Prev'] = '<< Föreg'; -$a->strings['View Full Size'] = 'Visa fullstor'; -$a->strings['Next >>'] = 'Nästa >>'; -$a->strings['Tags: '] = 'Taggar: '; -$a->strings['[Remove any tag]'] = '[Remove any tag]'; -$a->strings['New album name'] = 'Nytt album med namn'; -$a->strings['Caption'] = 'Caption'; -$a->strings['Add a Tag'] = 'Lägg till tagg'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping'; -$a->strings["I like this \x28toggle\x29"] = "Jag gillar det här (växla)"; -$a->strings["I don't like this \x28toggle\x29"] = "Jag ogillar det här (växla)"; -$a->strings['This is you'] = 'Det här är du'; -$a->strings['Recent Photos'] = 'Nyligen tillagda bilder'; -$a->strings['Upload New Photos'] = 'Ladda upp bilder'; -$a->strings['View Album'] = 'Titta i album'; -$a->strings['Status'] = 'Status'; -$a->strings['Profile'] = 'Profil'; -$a->strings['Photos'] = 'Bilder'; -$a->strings['Image uploaded but image cropping failed.'] = 'Bilden laddades upp men det blev fel när den skulle beskäras.'; -$a->strings['Unable to process image'] = 'Det gick inte att behandla bilden'; -$a->strings['Upload File:'] = 'Ladda upp fil:'; -$a->strings['Upload Profile Photo'] = 'Ladda upp profilbild'; -$a->strings['Upload'] = 'Ladda upp'; -$a->strings['or'] = 'eller'; -$a->strings['select a photo from your photo albums'] = 'välj en bild från ett album'; -$a->strings['Crop Image'] = 'Beskär bild'; -$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Välj hur bilden ska beskäras för att bli så bra som möjligt.'; -$a->strings['Done Editing'] = 'Spara'; -$a->strings['Image uploaded successfully.'] = 'Bilden har laddats upp.'; -$a->strings['Profile Name is required.'] = 'Profilen måste ha ett namn.'; -$a->strings['Profile updated.'] = 'Profilen har uppdaterats.'; -$a->strings['Profile deleted.'] = 'Profilen har tagits bort.'; -$a->strings['Profile-'] = 'Profil-'; -$a->strings['New profile created.'] = 'En ny profil har skapats.'; -$a->strings['Profile unavailable to clone.'] = 'Det gick inte att klona profilen.'; -$a->strings['Hide my contact/friend list from viewers of this profile?'] = 'Dölj min kontaktlista för personer som ser den här profilen?'; -$a->strings['Edit Profile Details'] = 'Ändra profilen'; -$a->strings['View this profile'] = 'Titta på profilen'; -$a->strings['Create a new profile using these settings'] = 'Skapa en ny profil med dessa inställningar'; -$a->strings['Clone this profile'] = 'Kopiera profil'; -$a->strings['Delete this profile'] = 'Ta bort profil'; -$a->strings['Profile Name:'] = 'Profilens namn:'; -$a->strings['Your Full Name:'] = 'Fullständigt namn:'; -$a->strings['Title/Description:'] = 'Titel/Beskrivning:'; -$a->strings['Your Gender:'] = 'Kön:'; -$a->strings["Birthday \x28y/m/d\x29:"] = "Födelsedag \x28y/m/d\x29:"; -$a->strings['Street Address:'] = 'Gatuadress:'; -$a->strings['Locality/City:'] = 'Plats/Stad:'; -$a->strings['Postal/Zip Code:'] = 'Postnummer:'; -$a->strings['Country:'] = 'Land:'; -$a->strings['Region/State:'] = 'Region:'; -$a->strings[' Marital Status:'] = ' Civilstånd:'; -$a->strings["Who: \x28if applicable\x29"] = "Vem: (om tillämpligt)"; -$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Exempel: kalle123, Johanna Johansson, pelle@exempel.com'; -$a->strings['Sexual Preference:'] = 'Sexualitet'; -$a->strings['Homepage URL:'] = 'Hemsida: (URL)'; -$a->strings['Political Views:'] = 'Politisk åskådning:'; -$a->strings['Religious Views:'] = 'Religion:'; -$a->strings['Public Keywords:'] = 'Offentliga nyckelord:'; -$a->strings['Private Keywords:'] = 'Privata nyckelord:'; -$a->strings['Example: fishing photography software'] = 'Exempel: fiske fotografering programmering'; -$a->strings["\x28Used for suggesting potential friends, can be seen by others\x29"] = "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)"; -$a->strings["\x28Used for searching profiles, never shown to others\x29"] = "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)"; -$a->strings['Tell us about yourself...'] = 'Beskriv dig själv...'; -$a->strings['Hobbies/Interests'] = 'Hobbys/Intressen'; -$a->strings['Contact information and Social Networks'] = 'Kontaktuppgifter och sociala nätverk'; -$a->strings['Musical interests'] = 'Musik'; -$a->strings['Books, literature'] = 'Böcker, litteratur'; -$a->strings['Television'] = 'TV'; -$a->strings['Film/dance/culture/entertainment'] = 'Film/Dans/Kultur/Nöje'; -$a->strings['Love/romance'] = 'Kärlek/Romantik'; -$a->strings['Work/employment'] = 'Arbete'; -$a->strings['School/education'] = 'Skola/Utbildning'; -$a->strings['This is your public profile.
                                              It may be visible to anybody using the internet.'] = 'Det här är din offentliga profil.
                                              Den kan vara synlig för vem som helst på internet.'; -$a->strings['Profiles'] = 'Profiler'; -$a->strings['Change profile photo'] = 'Byt profilbild'; -$a->strings['Create New Profile'] = 'Skapa ny profil'; -$a->strings['Profile Image'] = 'Profilbild'; -$a->strings['Visible to everybody'] = 'Synlig för alla'; -$a->strings['Edit visibility'] = 'Ända vilka som ska kunna se'; -$a->strings['Invalid profile identifier.'] = 'Ogiltigt profil-ID.'; -$a->strings['Profile Visibility Editor'] = 'Ända vilka som ska kunna se profil'; -$a->strings['Visible To'] = 'Synlig för'; -$a->strings["All Contacts \x28with secure profile access\x29"] = "Alla kontakter (med säker tillgång till din profil)"; -$a->strings['Invalid OpenID url'] = 'Ogiltig OpenID-URL'; -$a->strings['Please enter the required information.'] = 'Fyll i alla obligatoriska fält.'; -$a->strings['Please use a shorter name.'] = 'Välj ett kortare namn.'; -$a->strings['Name too short.'] = 'Namnet är för kort.'; -$a->strings["That doesn't appear to be your full \x28First Last\x29 name."] = 'Du verkar inte ha angett ditt fullständiga namn.'; -$a->strings['Your email domain is not among those allowed on this site.'] = 'Din e-postdomän är inte tillåten på den här webbplatsen.'; -$a->strings['Not a valid email address.'] = 'Ogiltig e-postadress.'; -$a->strings['Cannot use that email.'] = 'Otillåten e-postadress.'; -$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Ditt användarnamn får bara innehålla a-z, 0-9, - och _, och måste dessutom börja med en bokstav.'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Användarnamnet är upptaget. Välj ett annat.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.'; -$a->strings['An error occurred during registration. Please try again.'] = 'Något gick fel vid registreringen. Försök igen.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'Det blev fel när din standardprofil skulle skapas. Prova igen.'; -$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrering klar. Kolla din e-post för vidare information.'; -$a->strings['Failed to send email message. Here is the message that failed.'] = 'Det gick inte att skicka e-brevet. Här är meddelandet som inte kunde skickas.'; -$a->strings['Your registration can not be processed.'] = 'Det går inte att behandla registreringen.'; -$a->strings['Your registration is pending approval by the site owner.'] = 'Din registrering inväntar godkännande av webbplatsens ägare.'; -$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Om du vill kan du fylla i detta formulär via OpenID genom att ange ditt OpenID och klicka på Registrera."; -$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten.'; -$a->strings["Your OpenID \x28optional\x29: "] = "OpenID (om du vill): "; -$a->strings['Members of this network prefer to communicate with real people who use their real names.'] = 'Medlemmarna i det här nätverket föredrar att kommunicera med riktiga människor som använder sina riktiga namn.'; -$a->strings['Include your profile in member directory?'] = 'Ta med profilen i medlemskatalogen?'; -$a->strings['Registration'] = 'Registrering'; -$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Fullständigt namn ' . "\x28" . 't. ex. Karl Karlsson' . "\x29" . ': '; -$a->strings['Your Email Address: '] = 'E-postadress: '; -$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'] = 'Välj ett användarnamn. Det måste inledas med en bokstav. Din profiladress på den här webbplatsen blir \'användarnamn@$sitename\'.'; -$a->strings['Choose a nickname: '] = 'Välj ett användarnamn: '; -$a->strings['Please login.'] = 'Logga in.'; -$a->strings['Account approved.'] = 'Kontot har godkänts.'; -$a->strings['Remove My Account'] = 'Ta bort mitt konto'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa.'; -$a->strings['Please enter your password for verification:'] = 'Ange lösenordet igen för säkerhets skull:'; -$a->strings['No results.'] = 'Inga resultat.'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Lösenorden skiljer sig åt. Lösenordet ändras inte.'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Lösenordet får inte vara blankt. Lösenordet ändras inte.'; -$a->strings['Password changed.'] = 'Lösenordet har ändrats.'; -$a->strings['Password update failed. Please try again.'] = 'Det blev fel när lösenordet skulle ändras. Försök igen.'; -$a->strings[' Please use a shorter name.'] = ' Använd ett kortare namn.'; -$a->strings[' Name too short.'] = ' Namnet är för kort.'; -$a->strings[' Not valid email.'] = ' Ogiltig e-postadress.'; -$a->strings[' Cannot change to that email.'] = ' Ändring till den e-postadressen görs inte.'; -$a->strings['Settings updated.'] = 'Inställningarna har uppdaterats.'; -$a->strings['Plugin Settings'] = 'Inställningar för insticksprogram'; -$a->strings['Account Settings'] = 'Kontoinställningar'; -$a->strings['No Plugin settings configured'] = 'Det finns inga inställningar för insticksprogram'; -$a->strings['Normal Account'] = 'Vanligt konto'; -$a->strings['This account is a normal personal profile'] = 'Kontot är ett vanligt personligt konto'; -$a->strings['Soapbox Account'] = 'Konto med envägskommunikation'; -$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Kontaktförfrågningar godkänns automatiskt som fans. De kan se vad du skriver men har inte samma rättigheter som vänner.'; -$a->strings['Community/Celebrity Account'] = 'Gemenskap eller kändiskonto.'; -$a->strings['Automatically approve all connection/friend requests as read-write fans'] = 'Kontaktförfrågningar godkänns automatiskt som fans med fullständig tvåvägskommunikation.'; -$a->strings['Automatic Friend Account'] = 'Konto med automatiskt godkännande av vänner.'; -$a->strings['Automatically approve all connection/friend requests as friends'] = 'Kontaktförfrågningar godkänns automatiskt som vänner.'; -$a->strings['OpenID: '] = 'OpenID: '; -$a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Valfritt\x29 Tillåt inloggning med detta OpenID på det här kontot."; -$a->strings['Publish your default profile in site directory?'] = 'Vill du att din standardprofil ska synas i den här sajtens medlemskatalog?'; -$a->strings['Publish your default profile in global social directory?'] = 'Vill du att din standardprofil ska synas i den globala medlemskatalogen?'; -$a->strings['Profile is not published.'] = 'Profilen är inte publicerad.'; -$a->strings['Your Identity Address is'] = 'Din adress, ditt ID, är'; -$a->strings['Export Personal Data'] = 'Exportera personlig information'; -$a->strings['Basic Settings'] = 'Grundläggande inställningar'; -$a->strings['Full Name:'] = 'Fullständigt namn:'; -$a->strings['Email Address:'] = 'E-postadress:'; -$a->strings['Your Timezone:'] = 'Tidszon:'; -$a->strings['Default Post Location:'] = 'Default Post Location:'; -$a->strings['Use Browser Location:'] = 'Använd webbläsarens positionering:'; -$a->strings['Display Theme:'] = 'Tema/utseende:'; -$a->strings['Security and Privacy Settings'] = 'Inställningar för säkerhet och sekretess'; -$a->strings['Maximum Friend Requests/Day:'] = 'Maximalt antal kontaktförfrågningar per dygn:'; -$a->strings["\x28to prevent spam abuse\x29"] = "(för att motverka spam)"; -$a->strings['Allow friends to post to your profile page:'] = 'Låt kontakter göra inlägg på din profilsida:'; -$a->strings["Automatically expire \x28delete\x29 posts older than"] = "Ta automatiskt bort inlägg som är äldre än"; -$a->strings['days'] = 'dagar'; -$a->strings['Notification Settings'] = 'Aviseringsinställningar'; -$a->strings['Send a notification email when:'] = 'Skicka ett aviseringsmail när:'; -$a->strings['You receive an introduction'] = 'En kontaktförfrågan anländer'; -$a->strings['Your introductions are confirmed'] = 'Dina förfrågningar godkänns'; -$a->strings['Someone writes on your profile wall'] = 'Någon gör inlägg på din profilsida'; -$a->strings['Someone writes a followup comment'] = 'Någon gör ett inlägg i samma tråd som du'; -$a->strings['You receive a private message'] = 'Du får personliga meddelanden'; -$a->strings['Password Settings'] = 'Lösenordsinställningar'; -$a->strings['Leave password fields blank unless changing'] = 'Lämna fältet tomt om du inte vill byta lösenord'; -$a->strings['New Password:'] = 'Nytt lösenord'; -$a->strings['Confirm:'] = 'Bekräfta (repetera):'; -$a->strings['Advanced Page Settings'] = 'Avancerat'; -$a->strings['Default Post Permissions'] = 'Standardåtkomst för inlägg'; -$a->strings["\x28click to open/close\x29"] = "(klicka för att öppna/stänga)"; -$a->strings['Tag removed'] = 'Taggen har tagits bort'; -$a->strings['Remove Item Tag'] = 'Ta bort tagg'; -$a->strings['Select a tag to remove: '] = 'Välj vilken tagg som ska tas bort: '; -$a->strings['Remove'] = 'Ta bort'; -$a->strings['No contacts.'] = 'Inga kontakter.'; -$a->strings['Visible To:'] = 'Synlig för:'; -$a->strings['Groups'] = 'Grupper'; -$a->strings['Except For:'] = 'Utom för:'; -$a->strings['Logged out.'] = 'Utloggad.'; -$a->strings['Unknown | Not categorised'] = 'Okänd | Inte kategoriserad'; -$a->strings['Block immediately'] = 'Spärra omedelbart'; -$a->strings['Shady, spammer, self-marketer'] = 'Skum, spammare, reklamspridare'; -$a->strings['Known to me, but no opinion'] = 'Jag vet vem det är, men har ingen åsikt'; -$a->strings['OK, probably harmless'] = 'OK, antagligen harmlös'; -$a->strings['Reputable, has my trust'] = 'Pålitlig, jag litar på personen'; -$a->strings['Frequently'] = 'Ofta'; -$a->strings['Hourly'] = 'En gång i timmen'; -$a->strings['Twice daily'] = 'Två gånger om dagen'; -$a->strings['Daily'] = 'Dagligen'; -$a->strings['Weekly'] = 'Veckovis'; -$a->strings['Monthly'] = 'Månadsvis'; -$a->strings['View %s\'s profile'] = 'Gå till profilen som tillhör %s '; -$a->strings['View in context'] = 'Visa i sitt sammanhang'; -$a->strings['See more posts like this'] = 'Leta inlägg som liknar det här'; -$a->strings['See all %d comments'] = 'Visa alla %d kommentarer'; -$a->strings['to'] = 'till'; -$a->strings['Wall-to-Wall'] = 'Profil-till-profil'; -$a->strings['via Wall-To-Wall:'] = 'via profil-till-profil:'; -$a->strings['%s likes this.'] = '%s gillar det här.'; -$a->strings['%s doesn\'t like this.'] = '%s ogillar det här.'; -$a->strings['%2$d people like this.'] = '%2$d personer gillar det här.'; -$a->strings['%2$d people don\'t like this.'] = '%2$d personer ogillar det här.'; -$a->strings['and'] = 'och'; -$a->strings[', and %d other people'] = ', och ytterligare %d personer'; -$a->strings['%s like this.'] = '%s gillar det här.'; -$a->strings['%s don\'t like this.'] = '%s ogillar det här.'; -$a->strings['Miscellaneous'] = 'Blandat'; -$a->strings['less than a second ago'] = 'för mindre än en sekund sedan'; -$a->strings['year'] = 'år'; -$a->strings['years'] = 'år'; -$a->strings['month'] = 'månad'; -$a->strings['months'] = 'månader'; -$a->strings['week'] = 'vecka'; -$a->strings['weeks'] = 'veckor'; -$a->strings['day'] = 'dag'; -$a->strings['hour'] = 'timme'; -$a->strings['hours'] = 'timmar'; -$a->strings['minute'] = 'minut'; -$a->strings['minutes'] = 'minuter'; -$a->strings['second'] = 'sekund'; -$a->strings['seconds'] = 'sekunder'; -$a->strings[' ago'] = ' sedan'; -$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Cannot locate DNS info for database server \'%s\''; -$a->strings['Create a new group'] = 'Skapa ny grupp'; -$a->strings['Everybody'] = 'Alla'; -$a->strings['Birthday:'] = 'Födelsedatum:'; -$a->strings['Home'] = 'Hem'; -$a->strings['Apps'] = 'Apps'; -$a->strings['Directory'] = 'Medlemskatalog'; -$a->strings['Network'] = 'Nätverk'; -$a->strings['Manage'] = 'Hantera'; -$a->strings['Settings'] = 'Inställningar'; -$a->strings['Embedding disabled'] = 'Funktionen bädda in är avstängd'; -$a->strings['j F, Y'] = 'j F, Y'; -$a->strings['j F'] = 'j F'; -$a->strings['Age:'] = 'Ålder:'; -$a->strings[' Status:'] = ' Civilstånd:'; -$a->strings['Religion:'] = 'Religion:'; -$a->strings['About:'] = 'Om:'; -$a->strings['Hobbies/Interests:'] = 'Hobbys/Intressen:'; -$a->strings['Contact information and Social Networks:'] = 'Kontaktuppgifter och sociala nätverk:'; -$a->strings['Musical interests:'] = 'Musik:'; -$a->strings['Books, literature:'] = 'Böcker/Litteratur:'; -$a->strings['Television:'] = 'TV:'; -$a->strings['Film/dance/culture/entertainment:'] = 'Film/Dans/Kultur/Underhållning:'; -$a->strings['Love/Romance:'] = 'Kärlek/Romantik:'; -$a->strings['Work/employment:'] = 'Arbete:'; -$a->strings['School/education:'] = 'Skola/Utbildning:'; -$a->strings['Male'] = 'Man'; -$a->strings['Female'] = 'Kvinna'; -$a->strings['Currently Male'] = 'För närvarande man'; -$a->strings['Currently Female'] = 'För närvarande kvinna'; -$a->strings['Mostly Male'] = 'Mestadels man'; -$a->strings['Mostly Female'] = 'Mestadels kvinna'; -$a->strings['Transgender'] = 'Transgender'; -$a->strings['Intersex'] = 'Intersex'; -$a->strings['Transsexual'] = 'Transsexuell'; -$a->strings['Hermaphrodite'] = 'Hermafrodit'; -$a->strings['Neuter'] = 'Könslös'; -$a->strings['Non-specific'] = 'Oklart'; -$a->strings['Other'] = 'Annat'; -$a->strings['Undecided'] = 'Obestämt'; -$a->strings['Males'] = 'Män'; -$a->strings['Females'] = 'Kvinnor'; -$a->strings['Gay'] = 'Bög'; -$a->strings['Lesbian'] = 'Lesbisk'; -$a->strings['No Preference'] = 'No Preference'; -$a->strings['Bisexual'] = 'Bisexuell'; -$a->strings['Autosexual'] = 'Autosexual'; -$a->strings['Abstinent'] = 'Abstinent'; -$a->strings['Virgin'] = 'Oskuld'; -$a->strings['Deviant'] = 'Avvikande'; -$a->strings['Fetish'] = 'Fetisch'; -$a->strings['Oodles'] = 'Massor'; -$a->strings['Nonsexual'] = 'Asexuell'; -$a->strings['Single'] = 'Singel'; -$a->strings['Lonely'] = 'Ensam'; -$a->strings['Available'] = 'Tillgänglig'; -$a->strings['Unavailable'] = 'Upptagen'; -$a->strings['Dating'] = 'Dejtar'; -$a->strings['Unfaithful'] = 'Otrogen'; -$a->strings['Sex Addict'] = 'Sexmissbrukare'; -$a->strings['Friends'] = 'Vänner'; -$a->strings['Friends/Benefits'] = 'Friends/Benefits'; -$a->strings['Casual'] = 'Casual'; -$a->strings['Engaged'] = 'Förlovad'; -$a->strings['Married'] = 'Gift'; -$a->strings['Partners'] = 'I partnerskap'; -$a->strings['Cohabiting'] = 'Cohabiting'; -$a->strings['Happy'] = 'Nöjd'; -$a->strings['Not Looking'] = 'Letar inte'; -$a->strings['Swinger'] = 'Swinger'; -$a->strings['Betrayed'] = 'Bedragen'; -$a->strings['Separated'] = 'Separerat'; -$a->strings['Unstable'] = 'Instabilt'; -$a->strings['Divorced'] = 'Skiljd'; -$a->strings['Widowed'] = 'Änka/änkling'; -$a->strings['Uncertain'] = 'Oklart'; -$a->strings['Complicated'] = 'Komplicerat'; -$a->strings['Don\'t care'] = 'Bryr mig inte'; -$a->strings['Ask me'] = 'Fråga mig'; -$a->strings['Facebook disabled'] = 'Facebook inaktiverat'; -$a->strings['Facebook API key is missing.'] = 'Facebook API key is missing.'; -$a->strings['Facebook Connect'] = 'Facebook Connect'; -$a->strings['Install Facebook post connector'] = 'Install Facebook post connector'; -$a->strings['Remove Facebook post connector'] = 'Remove Facebook post connector'; -$a->strings['Post to Facebook by default'] = 'Lägg alltid in inläggen på Facebook'; -$a->strings['Facebook'] = 'Facebook'; -$a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings'; -$a->strings['Post to Facebook'] = 'Lägg in på Facebook'; -$a->strings['Image: '] = 'Bild: '; -$a->strings['Select files to upload: '] = 'Välj filer att ladda upp: '; -$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Använd följande bara om javauppladdaren ovanför inte startar.'; -$a->strings['Upload a file'] = 'Ladda upp en fil'; -$a->strings['Drop files here to upload'] = 'Dra filer som ska laddas upp hit'; -$a->strings['Failed'] = 'Misslyckades'; -$a->strings['No files were uploaded.'] = 'Inga filer laddades upp.'; -$a->strings['Uploaded file is empty'] = 'Den uppladdade filen är tom'; -$a->strings['Uploaded file is too large'] = 'Den uppladdade filen är för stor'; -$a->strings['File has an invalid extension, it should be one of '] = 'Otillåten filnamnsändelse, det ska vara '; -$a->strings['Upload was cancelled, or server error encountered'] = 'Serverfel eller avbruten uppladdning'; -$a->strings['Randplace Settings'] = 'Randplace Settings'; -$a->strings['Enable Randplace Plugin'] = 'Enable Randplace Plugin'; -$a->strings['Post to StatusNet'] = 'Lägg in på StatusNet'; -$a->strings['StatusNet Posting Settings'] = 'Inställningar för inlägg på StatusNet'; -$a->strings['No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
                                              Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation.'] = 'No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
                                              Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation.'; -$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key'; -$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret'; -$a->strings["Base API Path \x28remember the trailing /\x29"] = "Base API Path \x28remember the trailing /\x29"; -$a->strings['To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet.'] = 'To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet.'; -$a->strings['Log in with StatusNet'] = 'Logga in med StatusNet'; -$a->strings['Copy the security code from StatusNet here'] = 'Ange säkerhetskoden från StatusNet här'; -$a->strings['Currently connected to: '] = 'Ansluten till: '; -$a->strings['If enabled all your public postings will be posted to the associated StatusNet account as well.'] = 'If enabled all your public postings will be posted to the associated StatusNet account as well.'; -$a->strings['Send public postings to StatusNet'] = 'Send public postings to StatusNet'; -$a->strings['Clear OAuth configuration'] = 'Clear OAuth configuration'; -$a->strings['Three Dimensional Tic-Tac-Toe'] = 'Tredimensionellt luffarschack'; -$a->strings['3D Tic-Tac-Toe'] = '3D-luffarschack'; -$a->strings['New game'] = 'Ny spelomgång'; -$a->strings['New game with handicap'] = 'Ny spelomgång med handikapp'; -$a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Det tredimensionella luffarschacket är precis som vanligt luffarschack förutom att det spelas i flera nivåer samtidigt. '; -$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'Här är det tre nivåer. Man vinner om man får tre i rad på vilken nivå som helst, eller uppåt, nedåt eller diagonalt på flera nivåer.'; -$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'Om man spelar med handikapp så stängs mittenpositionen på mittennivån av eftersom spelare som väljer den positionen ofta får övertaget.'; -$a->strings['You go first...'] = 'Du börjar...'; -$a->strings['I\'m going first this time...'] = 'Jag börjar den här gången...'; -$a->strings['You won!'] = 'Du vann!'; -$a->strings['"Cat" game!'] = '"Cat" game!'; -$a->strings['I won!'] = 'Jag vann!'; -$a->strings['Post to Twitter'] = 'Lägg in på Twitter'; -$a->strings['Twitter Posting Settings'] = 'Inställningar för inlägg på Twitter'; -$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.'; -$a->strings['At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter.'] = 'At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter.'; -$a->strings['Copy the PIN from Twitter here'] = 'Ange PIN-koden från Twitter här'; -$a->strings['If enabled all your public postings will be posted to the associated Twitter account as well.'] = 'If enabled all your public postings will be posted to the associated Twitter account as well.'; -$a->strings['Send public postings to Twitter'] = 'Send public postings to Twitter'; -$a->strings['Africa/Abidjan'] = 'Afrika/Abidjan'; -$a->strings['Africa/Accra'] = 'Afrika/Accra'; -$a->strings['Africa/Addis_Ababa'] = 'Afrika/Addis_Ababa'; -$a->strings['Africa/Algiers'] = 'Afrika/Algiers'; -$a->strings['Africa/Asmara'] = 'Afrika/Asmara'; -$a->strings['Africa/Asmera'] = 'Afrika/Asmera'; -$a->strings['Africa/Bamako'] = 'Afrika/Bamako'; -$a->strings['Africa/Bangui'] = 'Afrika/Bangui'; -$a->strings['Africa/Banjul'] = 'Afrika/Banjul'; -$a->strings['Africa/Bissau'] = 'Afrika/Bissau'; -$a->strings['Africa/Blantyre'] = 'Afrika/Blantyre'; -$a->strings['Africa/Brazzaville'] = 'Afrika/Brazzaville'; -$a->strings['Africa/Bujumbura'] = 'Afrika/Bujumbura'; -$a->strings['Africa/Cairo'] = 'Afrika/Cairo'; -$a->strings['Africa/Casablanca'] = 'Afrika/Casablanca'; -$a->strings['Africa/Ceuta'] = 'Afrika/Ceuta'; -$a->strings['Africa/Conakry'] = 'Afrika/Conakry'; -$a->strings['Africa/Dakar'] = 'Afrika/Dakar'; -$a->strings['Africa/Dar_es_Salaam'] = 'Afrika/Dar_es_Salaam'; -$a->strings['Africa/Djibouti'] = 'Afrika/Djibouti'; -$a->strings['Africa/Douala'] = 'Afrika/Douala'; -$a->strings['Africa/El_Aaiun'] = 'Afrika/El_Aaiun'; -$a->strings['Africa/Freetown'] = 'Afrika/Freetown'; -$a->strings['Africa/Gaborone'] = 'Afrika/Gaborone'; -$a->strings['Africa/Harare'] = 'Afrika/Harare'; -$a->strings['Africa/Johannesburg'] = 'Afrika/Johannesburg'; -$a->strings['Africa/Kampala'] = 'Afrika/Kampala'; -$a->strings['Africa/Khartoum'] = 'Afrika/Khartoum'; -$a->strings['Africa/Kigali'] = 'Afrika/Kigali'; -$a->strings['Africa/Kinshasa'] = 'Afrika/Kinshasa'; -$a->strings['Africa/Lagos'] = 'Afrika/Lagos'; -$a->strings['Africa/Libreville'] = 'Afrika/Libreville'; -$a->strings['Africa/Lome'] = 'Afrika/Lome'; -$a->strings['Africa/Luanda'] = 'Afrika/Luanda'; -$a->strings['Africa/Lubumbashi'] = 'Afrika/Lubumbashi'; -$a->strings['Africa/Lusaka'] = 'Afrika/Lusaka'; -$a->strings['Africa/Malabo'] = 'Afrika/Malabo'; -$a->strings['Africa/Maputo'] = 'Afrika/Maputo'; -$a->strings['Africa/Maseru'] = 'Afrika/Maseru'; -$a->strings['Africa/Mbabane'] = 'Afrika/Mbabane'; -$a->strings['Africa/Mogadishu'] = 'Afrika/Mogadishu'; -$a->strings['Africa/Monrovia'] = 'Afrika/Monrovia'; -$a->strings['Africa/Nairobi'] = 'Afrika/Nairobi'; -$a->strings['Africa/Ndjamena'] = 'Afrika/Ndjamena'; -$a->strings['Africa/Niamey'] = 'Afrika/Niamey'; -$a->strings['Africa/Nouakchott'] = 'Afrika/Nouakchott'; -$a->strings['Africa/Ouagadougou'] = 'Afrika/Ouagadougou'; -$a->strings['Africa/Porto-Novo'] = 'Afrika/Porto-Novo'; -$a->strings['Africa/Sao_Tome'] = 'Afrika/Sao_Tome'; -$a->strings['Africa/Timbuktu'] = 'Afrika/Timbuktu'; -$a->strings['Africa/Tripoli'] = 'Afrika/Tripoli'; -$a->strings['Africa/Tunis'] = 'Afrika/Tunis'; -$a->strings['Africa/Windhoek'] = 'Afrika/Windhoek'; -$a->strings['America/Adak'] = 'Amerika/Adak'; -$a->strings['America/Anchorage'] = 'Amerika/Anchorage'; -$a->strings['America/Anguilla'] = 'Amerika/Anguilla'; -$a->strings['America/Antigua'] = 'Amerika/Antigua'; -$a->strings['America/Araguaina'] = 'Amerika/Araguaina'; -$a->strings['America/Argentina/Buenos_Aires'] = 'Amerika/Argentina/Buenos_Aires'; -$a->strings['America/Argentina/Catamarca'] = 'Amerika/Argentina/Catamarca'; -$a->strings['America/Argentina/ComodRivadavia'] = 'Amerika/Argentina/ComodRivadavia'; -$a->strings['America/Argentina/Cordoba'] = 'Amerika/Argentina/Cordoba'; -$a->strings['America/Argentina/Jujuy'] = 'Amerika/Argentina/Jujuy'; -$a->strings['America/Argentina/La_Rioja'] = 'Amerika/Argentina/La_Rioja'; -$a->strings['America/Argentina/Mendoza'] = 'Amerika/Argentina/Mendoza'; -$a->strings['America/Argentina/Rio_Gallegos'] = 'Amerika/Argentina/Rio_Gallegos'; -$a->strings['America/Argentina/Salta'] = 'Amerika/Argentina/Salta'; -$a->strings['America/Argentina/San_Juan'] = 'Amerika/Argentina/San_Juan'; -$a->strings['America/Argentina/San_Luis'] = 'Amerika/Argentina/San_Luis'; -$a->strings['America/Argentina/Tucuman'] = 'Amerika/Argentina/Tucuman'; -$a->strings['America/Argentina/Ushuaia'] = 'Amerika/Argentina/Ushuaia'; -$a->strings['America/Aruba'] = 'Amerika/Aruba'; -$a->strings['America/Asuncion'] = 'Amerika/Asuncion'; -$a->strings['America/Atikokan'] = 'Amerika/Atikokan'; -$a->strings['America/Atka'] = 'Amerika/Atka'; -$a->strings['America/Bahia'] = 'Amerika/Bahia'; -$a->strings['America/Barbados'] = 'Amerika/Barbados'; -$a->strings['America/Belem'] = 'Amerika/Belem'; -$a->strings['America/Belize'] = 'Amerika/Belize'; -$a->strings['America/Blanc-Sablon'] = 'Amerika/Blanc-Sablon'; -$a->strings['America/Boa_Vista'] = 'Amerika/Boa_Vista'; -$a->strings['America/Bogota'] = 'Amerika/Bogota'; -$a->strings['America/Boise'] = 'Amerika/Boise'; -$a->strings['America/Buenos_Aires'] = 'Amerika/Buenos_Aires'; -$a->strings['America/Cambridge_Bay'] = 'Amerika/Cambridge_Bay'; -$a->strings['America/Campo_Grande'] = 'Amerika/Campo_Grande'; -$a->strings['America/Cancun'] = 'Amerika/Cancun'; -$a->strings['America/Caracas'] = 'Amerika/Caracas'; -$a->strings['America/Catamarca'] = 'Amerika/Catamarca'; -$a->strings['America/Cayenne'] = 'Amerika/Cayenne'; -$a->strings['America/Cayman'] = 'Amerika/Cayman'; -$a->strings['America/Chicago'] = 'Amerika/Chicago'; -$a->strings['America/Chihuahua'] = 'Amerika/Chihuahua'; -$a->strings['America/Coral_Harbour'] = 'Amerika/Coral_Harbour'; -$a->strings['America/Cordoba'] = 'Amerika/Cordoba'; -$a->strings['America/Costa_Rica'] = 'Amerika/Costa_Rica'; -$a->strings['America/Cuiaba'] = 'Amerika/Cuiaba'; -$a->strings['America/Curacao'] = 'Amerika/Curacao'; -$a->strings['America/Danmarkshavn'] = 'Amerika/Danmarkshavn'; -$a->strings['America/Dawson'] = 'Amerika/Dawson'; -$a->strings['America/Dawson_Creek'] = 'Amerika/Dawson_Creek'; -$a->strings['America/Denver'] = 'Amerika/Denver'; -$a->strings['America/Detroit'] = 'Amerika/Detroit'; -$a->strings['America/Dominica'] = 'Amerika/Dominica'; -$a->strings['America/Edmonton'] = 'Amerika/Edmonton'; -$a->strings['America/Eirunepe'] = 'Amerika/Eirunepe'; -$a->strings['America/El_Salvador'] = 'Amerika/El_Salvador'; -$a->strings['America/Ensenada'] = 'Amerika/Ensenada'; -$a->strings['America/Fort_Wayne'] = 'Amerika/Fort_Wayne'; -$a->strings['America/Fortaleza'] = 'Amerika/Fortaleza'; -$a->strings['America/Glace_Bay'] = 'Amerika/Glace_Bay'; -$a->strings['America/Godthab'] = 'Amerika/Godthab'; -$a->strings['America/Goose_Bay'] = 'Amerika/Goose_Bay'; -$a->strings['America/Grand_Turk'] = 'Amerika/Grand_Turk'; -$a->strings['America/Grenada'] = 'Amerika/Grenada'; -$a->strings['America/Guadeloupe'] = 'Amerika/Guadeloupe'; -$a->strings['America/Guatemala'] = 'Amerika/Guatemala'; -$a->strings['America/Guayaquil'] = 'Amerika/Guayaquil'; -$a->strings['America/Guyana'] = 'Amerika/Guyana'; -$a->strings['America/Halifax'] = 'Amerika/Halifax'; -$a->strings['America/Havana'] = 'Amerika/Havana'; -$a->strings['America/Hermosillo'] = 'Amerika/Hermosillo'; -$a->strings['America/Indiana/Indianapolis'] = 'Amerika/Indiana/Indianapolis'; -$a->strings['America/Indiana/Knox'] = 'Amerika/Indiana/Knox'; -$a->strings['America/Indiana/Marengo'] = 'Amerika/Indiana/Marengo'; -$a->strings['America/Indiana/Petersburg'] = 'Amerika/Indiana/Petersburg'; -$a->strings['America/Indiana/Tell_City'] = 'Amerika/Indiana/Tell_City'; -$a->strings['America/Indiana/Vevay'] = 'Amerika/Indiana/Vevay'; -$a->strings['America/Indiana/Vincennes'] = 'Amerika/Indiana/Vincennes'; -$a->strings['America/Indiana/Winamac'] = 'Amerika/Indiana/Winamac'; -$a->strings['America/Indianapolis'] = 'Amerika/Indianapolis'; -$a->strings['America/Inuvik'] = 'Amerika/Inuvik'; -$a->strings['America/Iqaluit'] = 'Amerika/Iqaluit'; -$a->strings['America/Jamaica'] = 'Amerika/Jamaica'; -$a->strings['America/Jujuy'] = 'Amerika/Jujuy'; -$a->strings['America/Juneau'] = 'Amerika/Juneau'; -$a->strings['America/Kentucky/Louisville'] = 'Amerika/Kentucky/Louisville'; -$a->strings['America/Kentucky/Monticello'] = 'Amerika/Kentucky/Monticello'; -$a->strings['America/Knox_IN'] = 'Amerika/Knox_IN'; -$a->strings['America/La_Paz'] = 'Amerika/La_Paz'; -$a->strings['America/Lima'] = 'Amerika/Lima'; -$a->strings['America/Los_Angeles'] = 'Amerika/Los_Angeles'; -$a->strings['America/Louisville'] = 'Amerika/Louisville'; -$a->strings['America/Maceio'] = 'Amerika/Maceio'; -$a->strings['America/Managua'] = 'Amerika/Managua'; -$a->strings['America/Manaus'] = 'Amerika/Manaus'; -$a->strings['America/Marigot'] = 'Amerika/Marigot'; -$a->strings['America/Martinique'] = 'Amerika/Martinique'; -$a->strings['America/Matamoros'] = 'Amerika/Matamoros'; -$a->strings['America/Mazatlan'] = 'Amerika/Mazatlan'; -$a->strings['America/Mendoza'] = 'Amerika/Mendoza'; -$a->strings['America/Menominee'] = 'Amerika/Menominee'; -$a->strings['America/Merida'] = 'Amerika/Merida'; -$a->strings['America/Mexico_City'] = 'Amerika/Mexico_City'; -$a->strings['America/Miquelon'] = 'Amerika/Miquelon'; -$a->strings['America/Moncton'] = 'Amerika/Moncton'; -$a->strings['America/Monterrey'] = 'Amerika/Monterrey'; -$a->strings['America/Montevideo'] = 'Amerika/Montevideo'; -$a->strings['America/Montreal'] = 'Amerika/Montreal'; -$a->strings['America/Montserrat'] = 'Amerika/Montserrat'; -$a->strings['America/Nassau'] = 'Amerika/Nassau'; -$a->strings['America/New_York'] = 'Amerika/New_York'; -$a->strings['America/Nipigon'] = 'Amerika/Nipigon'; -$a->strings['America/Nome'] = 'Amerika/Nome'; -$a->strings['America/Noronha'] = 'Amerika/Noronha'; -$a->strings['America/North_Dakota/Center'] = 'Amerika/North_Dakota/Center'; -$a->strings['America/North_Dakota/New_Salem'] = 'Amerika/North_Dakota/New_Salem'; -$a->strings['America/Ojinaga'] = 'Amerika/Ojinaga'; -$a->strings['America/Panama'] = 'Amerika/Panama'; -$a->strings['America/Pangnirtung'] = 'Amerika/Pangnirtung'; -$a->strings['America/Paramaribo'] = 'Amerika/Paramaribo'; -$a->strings['America/Phoenix'] = 'Amerika/Phoenix'; -$a->strings['America/Port-au-Prince'] = 'Amerika/Port-au-Prince'; -$a->strings['America/Port_of_Spain'] = 'Amerika/Port_of_Spain'; -$a->strings['America/Porto_Acre'] = 'Amerika/Porto_Acre'; -$a->strings['America/Porto_Velho'] = 'Amerika/Porto_Velho'; -$a->strings['America/Puerto_Rico'] = 'Amerika/Puerto_Rico'; -$a->strings['America/Rainy_River'] = 'Amerika/Rainy_River'; -$a->strings['America/Rankin_Inlet'] = 'Amerika/Rankin_Inlet'; -$a->strings['America/Recife'] = 'Amerika/Recife'; -$a->strings['America/Regina'] = 'Amerika/Regina'; -$a->strings['America/Resolute'] = 'Amerika/Resolute'; -$a->strings['America/Rio_Branco'] = 'Amerika/Rio_Branco'; -$a->strings['America/Rosario'] = 'Amerika/Rosario'; -$a->strings['America/Santa_Isabel'] = 'Amerika/Santa_Isabel'; -$a->strings['America/Santarem'] = 'Amerika/Santarem'; -$a->strings['America/Santiago'] = 'Amerika/Santiago'; -$a->strings['America/Santo_Domingo'] = 'Amerika/Santo_Domingo'; -$a->strings['America/Sao_Paulo'] = 'Amerika/Sao_Paulo'; -$a->strings['America/Scoresbysund'] = 'Amerika/Scoresbysund'; -$a->strings['America/Shiprock'] = 'Amerika/Shiprock'; -$a->strings['America/St_Barthelemy'] = 'Amerika/St_Barthelemy'; -$a->strings['America/St_Johns'] = 'Amerika/St_Johns'; -$a->strings['America/St_Kitts'] = 'Amerika/St_Kitts'; -$a->strings['America/St_Lucia'] = 'Amerika/St_Lucia'; -$a->strings['America/St_Thomas'] = 'Amerika/St_Thomas'; -$a->strings['America/St_Vincent'] = 'Amerika/St_Vincent'; -$a->strings['America/Swift_Current'] = 'Amerika/Swift_Current'; -$a->strings['America/Tegucigalpa'] = 'Amerika/Tegucigalpa'; -$a->strings['America/Thule'] = 'Amerika/Thule'; -$a->strings['America/Thunder_Bay'] = 'Amerika/Thunder_Bay'; -$a->strings['America/Tijuana'] = 'Amerika/Tijuana'; -$a->strings['America/Toronto'] = 'Amerika/Toronto'; -$a->strings['America/Tortola'] = 'Amerika/Tortola'; -$a->strings['America/Vancouver'] = 'Amerika/Vancouver'; -$a->strings['America/Virgin'] = 'Amerika/Virgin'; -$a->strings['America/Whitehorse'] = 'Amerika/Whitehorse'; -$a->strings['America/Winnipeg'] = 'Amerika/Winnipeg'; -$a->strings['America/Yakutat'] = 'Amerika/Yakutat'; -$a->strings['America/Yellowknife'] = 'Amerika/Yellowknife'; -$a->strings['Antarctica/Casey'] = 'Antarctica/Casey'; -$a->strings['Antarctica/Davis'] = 'Antarctica/Davis'; -$a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville'; -$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie'; -$a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson'; -$a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo'; -$a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer'; -$a->strings['Antarctica/Rothera'] = 'Antarctica/Rothera'; -$a->strings['Antarctica/South_Pole'] = 'Antarctica/South_Pole'; -$a->strings['Antarctica/Syowa'] = 'Antarctica/Syowa'; -$a->strings['Antarctica/Vostok'] = 'Antarctica/Vostok'; -$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen'; -$a->strings['Asia/Aden'] = 'Asien/Aden'; -$a->strings['Asia/Almaty'] = 'Asien/Almaty'; -$a->strings['Asia/Amman'] = 'Asien/Amman'; -$a->strings['Asia/Anadyr'] = 'Asien/Anadyr'; -$a->strings['Asia/Aqtau'] = 'Asien/Aqtau'; -$a->strings['Asia/Aqtobe'] = 'Asien/Aqtobe'; -$a->strings['Asia/Ashgabat'] = 'Asien/Ashgabat'; -$a->strings['Asia/Ashkhabad'] = 'Asien/Ashkhabad'; -$a->strings['Asia/Baghdad'] = 'Asien/Baghdad'; -$a->strings['Asia/Bahrain'] = 'Asien/Bahrain'; -$a->strings['Asia/Baku'] = 'Asien/Baku'; -$a->strings['Asia/Bangkok'] = 'Asien/Bangkok'; -$a->strings['Asia/Beirut'] = 'Asien/Beirut'; -$a->strings['Asia/Bishkek'] = 'Asien/Bishkek'; -$a->strings['Asia/Brunei'] = 'Asien/Brunei'; -$a->strings['Asia/Calcutta'] = 'Asien/Calcutta'; -$a->strings['Asia/Choibalsan'] = 'Asien/Choibalsan'; -$a->strings['Asia/Chongqing'] = 'Asien/Chongqing'; -$a->strings['Asia/Chungking'] = 'Asien/Chungking'; -$a->strings['Asia/Colombo'] = 'Asien/Colombo'; -$a->strings['Asia/Dacca'] = 'Asien/Dacca'; -$a->strings['Asia/Damascus'] = 'Asien/Damascus'; -$a->strings['Asia/Dhaka'] = 'Asien/Dhaka'; -$a->strings['Asia/Dili'] = 'Asien/Dili'; -$a->strings['Asia/Dubai'] = 'Asien/Dubai'; -$a->strings['Asia/Dushanbe'] = 'Asien/Dushanbe'; -$a->strings['Asia/Gaza'] = 'Asien/Gaza'; -$a->strings['Asia/Harbin'] = 'Asien/Harbin'; -$a->strings['Asia/Ho_Chi_Minh'] = 'Asien/Ho_Chi_Minh'; -$a->strings['Asia/Hong_Kong'] = 'Asien/Hong_Kong'; -$a->strings['Asia/Hovd'] = 'Asien/Hovd'; -$a->strings['Asia/Irkutsk'] = 'Asien/Irkutsk'; -$a->strings['Asia/Istanbul'] = 'Asien/Istanbul'; -$a->strings['Asia/Jakarta'] = 'Asien/Jakarta'; -$a->strings['Asia/Jayapura'] = 'Asien/Jayapura'; -$a->strings['Asia/Jerusalem'] = 'Asien/Jerusalem'; -$a->strings['Asia/Kabul'] = 'Asien/Kabul'; -$a->strings['Asia/Kamchatka'] = 'Asien/Kamchatka'; -$a->strings['Asia/Karachi'] = 'Asien/Karachi'; -$a->strings['Asia/Kashgar'] = 'Asien/Kashgar'; -$a->strings['Asia/Kathmandu'] = 'Asien/Kathmandu'; -$a->strings['Asia/Katmandu'] = 'Asien/Katmandu'; -$a->strings['Asia/Kolkata'] = 'Asien/Kolkata'; -$a->strings['Asia/Krasnoyarsk'] = 'Asien/Krasnoyarsk'; -$a->strings['Asia/Kuala_Lumpur'] = 'Asien/Kuala_Lumpur'; -$a->strings['Asia/Kuching'] = 'Asien/Kuching'; -$a->strings['Asia/Kuwait'] = 'Asien/Kuwait'; -$a->strings['Asia/Macao'] = 'Asien/Macao'; -$a->strings['Asia/Macau'] = 'Asien/Macau'; -$a->strings['Asia/Magadan'] = 'Asien/Magadan'; -$a->strings['Asia/Makassar'] = 'Asien/Makassar'; -$a->strings['Asia/Manila'] = 'Asien/Manila'; -$a->strings['Asia/Muscat'] = 'Asien/Muscat'; -$a->strings['Asia/Nicosia'] = 'Asien/Nicosia'; -$a->strings['Asia/Novokuznetsk'] = 'Asien/Novokuznetsk'; -$a->strings['Asia/Novosibirsk'] = 'Asien/Novosibirsk'; -$a->strings['Asia/Omsk'] = 'Asien/Omsk'; -$a->strings['Asia/Oral'] = 'Asien/Oral'; -$a->strings['Asia/Phnom_Penh'] = 'Asien/Phnom_Penh'; -$a->strings['Asia/Pontianak'] = 'Asien/Pontianak'; -$a->strings['Asia/Pyongyang'] = 'Asien/Pyongyang'; -$a->strings['Asia/Qatar'] = 'Asien/Qatar'; -$a->strings['Asia/Qyzylorda'] = 'Asien/Qyzylorda'; -$a->strings['Asia/Rangoon'] = 'Asien/Rangoon'; -$a->strings['Asia/Riyadh'] = 'Asien/Riyadh'; -$a->strings['Asia/Saigon'] = 'Asien/Saigon'; -$a->strings['Asia/Sakhalin'] = 'Asien/Sakhalin'; -$a->strings['Asia/Samarkand'] = 'Asien/Samarkand'; -$a->strings['Asia/Seoul'] = 'Asien/Seoul'; -$a->strings['Asia/Shanghai'] = 'Asien/Shanghai'; -$a->strings['Asia/Singapore'] = 'Asien/Singapore'; -$a->strings['Asia/Taipei'] = 'Asien/Taipei'; -$a->strings['Asia/Tashkent'] = 'Asien/Tashkent'; -$a->strings['Asia/Tbilisi'] = 'Asien/Tbilisi'; -$a->strings['Asia/Tehran'] = 'Asien/Tehran'; -$a->strings['Asia/Tel_Aviv'] = 'Asien/Tel_Aviv'; -$a->strings['Asia/Thimbu'] = 'Asien/Thimbu'; -$a->strings['Asia/Thimphu'] = 'Asien/Thimphu'; -$a->strings['Asia/Tokyo'] = 'Asien/Tokyo'; -$a->strings['Asia/Ujung_Pandang'] = 'Asien/Ujung_Pandang'; -$a->strings['Asia/Ulaanbaatar'] = 'Asien/Ulaanbaatar'; -$a->strings['Asia/Ulan_Bator'] = 'Asien/Ulan_Bator'; -$a->strings['Asia/Urumqi'] = 'Asien/Urumqi'; -$a->strings['Asia/Vientiane'] = 'Asien/Vientiane'; -$a->strings['Asia/Vladivostok'] = 'Asien/Vladivostok'; -$a->strings['Asia/Yakutsk'] = 'Asien/Yakutsk'; -$a->strings['Asia/Yekaterinburg'] = 'Asien/Yekaterinburg'; -$a->strings['Asia/Yerevan'] = 'Asien/Yerevan'; -$a->strings['Atlantic/Azores'] = 'Atlantic/Azores'; -$a->strings['Atlantic/Bermuda'] = 'Atlantic/Bermuda'; -$a->strings['Atlantic/Canary'] = 'Atlantic/Canary'; -$a->strings['Atlantic/Cape_Verde'] = 'Atlantic/Cape_Verde'; -$a->strings['Atlantic/Faeroe'] = 'Atlantic/Faeroe'; -$a->strings['Atlantic/Faroe'] = 'Atlantic/Faroe'; -$a->strings['Atlantic/Jan_Mayen'] = 'Atlantic/Jan_Mayen'; -$a->strings['Atlantic/Madeira'] = 'Atlantic/Madeira'; -$a->strings['Atlantic/Reykjavik'] = 'Atlantic/Reykjavik'; -$a->strings['Atlantic/South_Georgia'] = 'Atlantic/South_Georgia'; -$a->strings['Atlantic/St_Helena'] = 'Atlantic/St_Helena'; -$a->strings['Atlantic/Stanley'] = 'Atlantic/Stanley'; -$a->strings['Australia/ACT'] = 'Australien/ACT'; -$a->strings['Australia/Adelaide'] = 'Australien/Adelaide'; -$a->strings['Australia/Brisbane'] = 'Australien/Brisbane'; -$a->strings['Australia/Broken_Hill'] = 'Australien/Broken_Hill'; -$a->strings['Australia/Canberra'] = 'Australien/Canberra'; -$a->strings['Australia/Currie'] = 'Australien/Currie'; -$a->strings['Australia/Darwin'] = 'Australien/Darwin'; -$a->strings['Australia/Eucla'] = 'Australien/Eucla'; -$a->strings['Australia/Hobart'] = 'Australien/Hobart'; -$a->strings['Australia/LHI'] = 'Australien/LHI'; -$a->strings['Australia/Lindeman'] = 'Australien/Lindeman'; -$a->strings['Australia/Lord_Howe'] = 'Australien/Lord_Howe'; -$a->strings['Australia/Melbourne'] = 'Australien/Melbourne'; -$a->strings['Australia/North'] = 'Australien/North'; -$a->strings['Australia/NSW'] = 'Australien/NSW'; -$a->strings['Australia/Perth'] = 'Australien/Perth'; -$a->strings['Australia/Queensland'] = 'Australien/Queensland'; -$a->strings['Australia/South'] = 'Australien/South'; -$a->strings['Australia/Sydney'] = 'Australien/Sydney'; -$a->strings['Australia/Tasmania'] = 'Australien/Tasmania'; -$a->strings['Australia/Victoria'] = 'Australien/Victoria'; -$a->strings['Australia/West'] = 'Australien/West'; -$a->strings['Australia/Yancowinna'] = 'Australien/Yancowinna'; -$a->strings['Brazil/Acre'] = 'Brasilien/Acre'; -$a->strings['Brazil/DeNoronha'] = 'Brasilien/DeNoronha'; -$a->strings['Brazil/East'] = 'Brasilien/East'; -$a->strings['Brazil/West'] = 'Brasilien/West'; -$a->strings['Canada/Atlantic'] = 'Kanada/Atlantic'; -$a->strings['Canada/Central'] = 'Kanada/Central'; -$a->strings['Canada/East-Saskatchewan'] = 'Kanada/East-Saskatchewan'; -$a->strings['Canada/Eastern'] = 'Kanada/Eastern'; -$a->strings['Canada/Mountain'] = 'Kanada/Mountain'; -$a->strings['Canada/Newfoundland'] = 'Kanada/Newfoundland'; -$a->strings['Canada/Pacific'] = 'Kanada/Pacific'; -$a->strings['Canada/Saskatchewan'] = 'Kanada/Saskatchewan'; -$a->strings['Canada/Yukon'] = 'Kanada/Yukon'; -$a->strings['CET'] = 'CET'; -$a->strings['Chile/Continental'] = 'Chile/Continental'; -$a->strings['Chile/EasterIsland'] = 'Chile/EasterIsland'; -$a->strings['CST6CDT'] = 'CST6CDT'; -$a->strings['Cuba'] = 'Cuba'; -$a->strings['EET'] = 'EET'; -$a->strings['Egypt'] = 'Egypten'; -$a->strings['Eire'] = 'Eire'; -$a->strings['EST'] = 'EST'; -$a->strings['EST5EDT'] = 'EST5EDT'; -$a->strings['Etc/GMT'] = 'Etc/GMT'; -$a->strings['Etc/GMT+0'] = 'Etc/GMT+0'; -$a->strings['Etc/GMT+1'] = 'Etc/GMT+1'; -$a->strings['Etc/GMT+10'] = 'Etc/GMT+10'; -$a->strings['Etc/GMT+11'] = 'Etc/GMT+11'; -$a->strings['Etc/GMT+12'] = 'Etc/GMT+12'; -$a->strings['Etc/GMT+2'] = 'Etc/GMT+2'; -$a->strings['Etc/GMT+3'] = 'Etc/GMT+3'; -$a->strings['Etc/GMT+4'] = 'Etc/GMT+4'; -$a->strings['Etc/GMT+5'] = 'Etc/GMT+5'; -$a->strings['Etc/GMT+6'] = 'Etc/GMT+6'; -$a->strings['Etc/GMT+7'] = 'Etc/GMT+7'; -$a->strings['Etc/GMT+8'] = 'Etc/GMT+8'; -$a->strings['Etc/GMT+9'] = 'Etc/GMT+9'; -$a->strings['Etc/GMT-0'] = 'Etc/GMT-0'; -$a->strings['Etc/GMT-1'] = 'Etc/GMT-1'; -$a->strings['Etc/GMT-10'] = 'Etc/GMT-10'; -$a->strings['Etc/GMT-11'] = 'Etc/GMT-11'; -$a->strings['Etc/GMT-12'] = 'Etc/GMT-12'; -$a->strings['Etc/GMT-13'] = 'Etc/GMT-13'; -$a->strings['Etc/GMT-14'] = 'Etc/GMT-14'; -$a->strings['Etc/GMT-2'] = 'Etc/GMT-2'; -$a->strings['Etc/GMT-3'] = 'Etc/GMT-3'; -$a->strings['Etc/GMT-4'] = 'Etc/GMT-4'; -$a->strings['Etc/GMT-5'] = 'Etc/GMT-5'; -$a->strings['Etc/GMT-6'] = 'Etc/GMT-6'; -$a->strings['Etc/GMT-7'] = 'Etc/GMT-7'; -$a->strings['Etc/GMT-8'] = 'Etc/GMT-8'; -$a->strings['Etc/GMT-9'] = 'Etc/GMT-9'; -$a->strings['Etc/GMT0'] = 'Etc/GMT0'; -$a->strings['Etc/Greenwich'] = 'Etc/Greenwich'; -$a->strings['Etc/UCT'] = 'Etc/UCT'; -$a->strings['Etc/Universal'] = 'Etc/Universal'; -$a->strings['Etc/UTC'] = 'Etc/UTC'; -$a->strings['Etc/Zulu'] = 'Etc/Zulu'; -$a->strings['Europe/Amsterdam'] = 'Europa/Amsterdam'; -$a->strings['Europe/Andorra'] = 'Europa/Andorra'; -$a->strings['Europe/Athens'] = 'Europa/Aten'; -$a->strings['Europe/Belfast'] = 'Europa/Belfast'; -$a->strings['Europe/Belgrade'] = 'Europa/Belgrad'; -$a->strings['Europe/Berlin'] = 'Europa/Berlin'; -$a->strings['Europe/Bratislava'] = 'Europa/Bratislava'; -$a->strings['Europe/Brussels'] = 'Europa/Bryssel'; -$a->strings['Europe/Bucharest'] = 'Europa/Bucharest'; -$a->strings['Europe/Budapest'] = 'Europa/Budapest'; -$a->strings['Europe/Chisinau'] = 'Europa/Chisinau'; -$a->strings['Europe/Copenhagen'] = 'Europa/Köpenhamn'; -$a->strings['Europe/Dublin'] = 'Europa/Dublin'; -$a->strings['Europe/Gibraltar'] = 'Europa/Gibraltar'; -$a->strings['Europe/Guernsey'] = 'Europa/Guernsey'; -$a->strings['Europe/Helsinki'] = 'Europa/Helsingfors'; -$a->strings['Europe/Isle_of_Man'] = 'Europa/Isle_of_Man'; -$a->strings['Europe/Istanbul'] = 'Europa/Istanbul'; -$a->strings['Europe/Jersey'] = 'Europa/Jersey'; -$a->strings['Europe/Kaliningrad'] = 'Europa/Kaliningrad'; -$a->strings['Europe/Kiev'] = 'Europa/Kiev'; -$a->strings['Europe/Lisbon'] = 'Europa/Lisabon'; -$a->strings['Europe/Ljubljana'] = 'Europa/Ljubljana'; -$a->strings['Europe/London'] = 'Europa/London'; -$a->strings['Europe/Luxembourg'] = 'Europa/Luxemburg'; -$a->strings['Europe/Madrid'] = 'Europa/Madrid'; -$a->strings['Europe/Malta'] = 'Europa/Malta'; -$a->strings['Europe/Mariehamn'] = 'Europa/Mariehamn'; -$a->strings['Europe/Minsk'] = 'Europa/Minsk'; -$a->strings['Europe/Monaco'] = 'Europa/Monaco'; -$a->strings['Europe/Moscow'] = 'Europa/Moskva'; -$a->strings['Europe/Nicosia'] = 'Europa/Nicosia'; -$a->strings['Europe/Oslo'] = 'Europa/Oslo'; -$a->strings['Europe/Paris'] = 'Europa/Paris'; -$a->strings['Europe/Podgorica'] = 'Europa/Podgorica'; -$a->strings['Europe/Prague'] = 'Europa/Prag'; -$a->strings['Europe/Riga'] = 'Europa/Riga'; -$a->strings['Europe/Rome'] = 'Europa/Rom'; -$a->strings['Europe/Samara'] = 'Europa/Samara'; -$a->strings['Europe/San_Marino'] = 'Europa/San_Marino'; -$a->strings['Europe/Sarajevo'] = 'Europa/Sarajevo'; -$a->strings['Europe/Simferopol'] = 'Europa/Simferopol'; -$a->strings['Europe/Skopje'] = 'Europa/Skopje'; -$a->strings['Europe/Sofia'] = 'Europa/Sofia'; -$a->strings['Europe/Stockholm'] = 'Europa/Stockholm'; -$a->strings['Europe/Tallinn'] = 'Europa/Tallinn'; -$a->strings['Europe/Tirane'] = 'Europa/Tirane'; -$a->strings['Europe/Tiraspol'] = 'Europa/Tiraspol'; -$a->strings['Europe/Uzhgorod'] = 'Europa/Uzhgorod'; -$a->strings['Europe/Vaduz'] = 'Europa/Vaduz'; -$a->strings['Europe/Vatican'] = 'Europa/Vatikanen'; -$a->strings['Europe/Vienna'] = 'Europa/Wien'; -$a->strings['Europe/Vilnius'] = 'Europa/Vilnius'; -$a->strings['Europe/Volgograd'] = 'Europa/Volgograd'; -$a->strings['Europe/Warsaw'] = 'Europa/Warsawa'; -$a->strings['Europe/Zagreb'] = 'Europa/Zagreb'; -$a->strings['Europe/Zaporozhye'] = 'Europa/Zaporozhye'; -$a->strings['Europe/Zurich'] = 'Europa/Zürich'; -$a->strings['Factory'] = 'Factory'; -$a->strings['GB'] = 'GB'; -$a->strings['GB-Eire'] = 'GB-Eire'; -$a->strings['GMT'] = 'GMT'; -$a->strings['GMT+0'] = 'GMT+0'; -$a->strings['GMT-0'] = 'GMT-0'; -$a->strings['GMT0'] = 'GMT0'; -$a->strings['Greenwich'] = 'Greenwich'; -$a->strings['Hongkong'] = 'Hongkong'; -$a->strings['HST'] = 'HST'; -$a->strings['Iceland'] = 'Iceland'; -$a->strings['Indian/Antananarivo'] = 'Indian/Antananarivo'; -$a->strings['Indian/Chagos'] = 'Indian/Chagos'; -$a->strings['Indian/Christmas'] = 'Indian/Christmas'; -$a->strings['Indian/Cocos'] = 'Indian/Cocos'; -$a->strings['Indian/Comoro'] = 'Indian/Comoro'; -$a->strings['Indian/Kerguelen'] = 'Indian/Kerguelen'; -$a->strings['Indian/Mahe'] = 'Indian/Mahe'; -$a->strings['Indian/Maldives'] = 'Indian/Maldives'; -$a->strings['Indian/Mauritius'] = 'Indian/Mauritius'; -$a->strings['Indian/Mayotte'] = 'Indian/Mayotte'; -$a->strings['Indian/Reunion'] = 'Indian/Reunion'; -$a->strings['Iran'] = 'Iran'; -$a->strings['Israel'] = 'Israel'; -$a->strings['Jamaica'] = 'Jamaica'; -$a->strings['Japan'] = 'Japan'; -$a->strings['Kwajalein'] = 'Kwajalein'; -$a->strings['Libya'] = 'Libyen'; -$a->strings['MET'] = 'MET'; -$a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte'; -$a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur'; -$a->strings['Mexico/General'] = 'Mexico/General'; -$a->strings['MST'] = 'MST'; -$a->strings['MST7MDT'] = 'MST7MDT'; -$a->strings['Navajo'] = 'Navajo'; -$a->strings['NZ'] = 'NZ'; -$a->strings['NZ-CHAT'] = 'NZ-CHAT'; -$a->strings['Pacific/Apia'] = 'Pacific/Apia'; -$a->strings['Pacific/Auckland'] = 'Pacific/Auckland'; -$a->strings['Pacific/Chatham'] = 'Pacific/Chatham'; -$a->strings['Pacific/Easter'] = 'Pacific/Easter'; -$a->strings['Pacific/Efate'] = 'Pacific/Efate'; -$a->strings['Pacific/Enderbury'] = 'Pacific/Enderbury'; -$a->strings['Pacific/Fakaofo'] = 'Pacific/Fakaofo'; -$a->strings['Pacific/Fiji'] = 'Pacific/Fiji'; -$a->strings['Pacific/Funafuti'] = 'Pacific/Funafuti'; -$a->strings['Pacific/Galapagos'] = 'Pacific/Galapagos'; -$a->strings['Pacific/Gambier'] = 'Pacific/Gambier'; -$a->strings['Pacific/Guadalcanal'] = 'Pacific/Guadalcanal'; -$a->strings['Pacific/Guam'] = 'Pacific/Guam'; -$a->strings['Pacific/Honolulu'] = 'Pacific/Honolulu'; -$a->strings['Pacific/Johnston'] = 'Pacific/Johnston'; -$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati'; -$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae'; -$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein'; -$a->strings['Pacific/Majuro'] = 'Pacific/Majuro'; -$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas'; -$a->strings['Pacific/Midway'] = 'Pacific/Midway'; -$a->strings['Pacific/Nauru'] = 'Pacific/Nauru'; -$a->strings['Pacific/Niue'] = 'Pacific/Niue'; -$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk'; -$a->strings['Pacific/Noumea'] = 'Pacific/Noumea'; -$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago'; -$a->strings['Pacific/Palau'] = 'Pacific/Palau'; -$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn'; -$a->strings['Pacific/Ponape'] = 'Pacific/Ponape'; -$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby'; -$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga'; -$a->strings['Pacific/Saipan'] = 'Pacific/Saipan'; -$a->strings['Pacific/Samoa'] = 'Pacific/Samoa'; -$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti'; -$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa'; -$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu'; -$a->strings['Pacific/Truk'] = 'Pacific/Truk'; -$a->strings['Pacific/Wake'] = 'Pacific/Wake'; -$a->strings['Pacific/Wallis'] = 'Pacific/Wallis'; -$a->strings['Pacific/Yap'] = 'Pacific/Yap'; -$a->strings['Poland'] = 'Polen'; -$a->strings['Portugal'] = 'Portugal'; -$a->strings['PRC'] = 'PRC'; -$a->strings['PST8PDT'] = 'PST8PDT'; -$a->strings['ROC'] = 'ROC'; -$a->strings['ROK'] = 'ROK'; -$a->strings['Singapore'] = 'Singapore'; -$a->strings['Turkey'] = 'Turkiet'; -$a->strings['UCT'] = 'UCT'; -$a->strings['Universal'] = 'Universal'; -$a->strings['US/Alaska'] = 'USA/Alaska'; -$a->strings['US/Aleutian'] = 'USA/Aleutian'; -$a->strings['US/Arizona'] = 'USA/Arizona'; -$a->strings['US/Central'] = 'USA/Central'; -$a->strings['US/East-Indiana'] = 'USA/East-Indiana'; -$a->strings['US/Eastern'] = 'USA/Eastern'; -$a->strings['US/Hawaii'] = 'USA/Hawaii'; -$a->strings['US/Indiana-Starke'] = 'USA/Indiana-Starke'; -$a->strings['US/Michigan'] = 'USA/Michigan'; -$a->strings['US/Mountain'] = 'USA/Mountain'; -$a->strings['US/Pacific'] = 'USA/Pacific'; -$a->strings['US/Pacific-New'] = 'USA/Pacific-New'; -$a->strings['US/Samoa'] = 'USA/Samoa'; -$a->strings['UTC'] = 'UTC'; -$a->strings['W-SU'] = 'W-SU'; -$a->strings['WET'] = 'WET'; -$a->strings['Zulu'] = 'Zulu'; \ No newline at end of file +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = ""; +$a->strings["Invalid contact."] = ""; +$a->strings["Commented Order"] = ""; +$a->strings["Sort by Comment Date"] = ""; +$a->strings["Posted Order"] = ""; +$a->strings["Sort by Post Date"] = ""; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = ""; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Shared Links"] = ""; +$a->strings["Interesting Links"] = ""; +$a->strings["Starred"] = ""; +$a->strings["Favourite Posts"] = ""; +$a->strings["{0} wants to be your friend"] = ""; +$a->strings["{0} sent you a message"] = ""; +$a->strings["{0} requested registration"] = ""; +$a->strings["No contacts."] = "Inga kontakter."; +$a->strings["via"] = ""; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; +$a->strings["Alignment"] = ""; +$a->strings["Left"] = ""; +$a->strings["Center"] = ""; +$a->strings["Color scheme"] = ""; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["Community Profiles"] = ""; +$a->strings["Last users"] = ""; +$a->strings["Find Friends"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = ""; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Community Pages"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; +$a->strings["Delete this item?"] = "Ta bort?"; +$a->strings["show fewer"] = ""; +$a->strings["Update %s failed. See error logs."] = ""; +$a->strings["Create a New Account"] = "Skapa nytt konto"; +$a->strings["Password: "] = "Lösenord: "; +$a->strings["Remember me"] = ""; +$a->strings["Or login using OpenID: "] = ""; +$a->strings["Forgot your password?"] = "Har du glömt lösenordet?"; +$a->strings["Website Terms of Service"] = ""; +$a->strings["terms of service"] = ""; +$a->strings["Website Privacy Policy"] = ""; +$a->strings["privacy policy"] = ""; +$a->strings["toggle mobile"] = ""; From e5f0ba34074b7561420388612b13408ea063bc43 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 27 Jan 2017 13:31:51 +0100 Subject: [PATCH 67/68] update to the translation --- view/lang/pl/messages.po | 16105 +++++++++++++++++++------------------ view/lang/pl/strings.php | 3117 +++---- 2 files changed, 10132 insertions(+), 9090 deletions(-) diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 2507352a9..e71259ac3 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -4,14 +4,14 @@ # # Translators: # Adam Jurkiewicz , 2012 -# julia.domagalska , 2013,2015 -# julia.domagalska , 2012-2013 +# julia.domagalska , 2013,2015 +# julia.domagalska , 2012-2013 # Daria Początek , 2012 # Cyryl Sochacki , 2013 # czarnystokrotek , 2012 # Daria Początek , 2013 # Radek , 2012 -# TORminator , 2014 +# TORminator , 2014 # Hubert Kościański , 2012 # Jakob , 2012 # Mateusz Mikos , 2012 @@ -23,7 +23,7 @@ # Mai Anh Nguyen , 2013 # Mariusz Pisz , 2013 # Lea1995polish , 2012 -# Magdalena Gazda , 2013 +# Magdalena Gazda , 2013 # mhnxo , 2012 # Michalina , 2012 # Marcin Klessa , 2012 @@ -36,9 +36,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 07:09+0200\n" -"PO-Revision-Date: 2015-09-24 16:15+0000\n" -"Last-Translator: julia.domagalska \n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-19 10:01+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,5838 +46,6 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: mod/contacts.php:114 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: mod/contacts.php:145 mod/contacts.php:340 -msgid "Could not access contact record." -msgstr "Nie można uzyskać dostępu do rejestru kontaktów." - -#: mod/contacts.php:159 -msgid "Could not locate selected profile." -msgstr "Nie można znaleźć wybranego profilu." - -#: mod/contacts.php:192 -msgid "Contact updated." -msgstr "Kontakt zaktualizowany" - -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Aktualizacja nagrania kontaktu nie powiodła się." - -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 -#: 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/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 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:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5023 index.php:382 -msgid "Permission denied." -msgstr "Brak uprawnień." - -#: mod/contacts.php:361 -msgid "Contact has been blocked" -msgstr "Kontakt został zablokowany" - -#: mod/contacts.php:361 -msgid "Contact has been unblocked" -msgstr "Kontakt został odblokowany" - -#: mod/contacts.php:372 -msgid "Contact has been ignored" -msgstr "Kontakt jest ignorowany" - -#: mod/contacts.php:372 -msgid "Contact has been unignored" -msgstr "Kontakt nie jest ignorowany" - -#: mod/contacts.php:384 -msgid "Contact has been archived" -msgstr "Kontakt został zarchiwizowany" - -#: mod/contacts.php:384 -msgid "Contact has been unarchived" -msgstr "" - -#: mod/contacts.php:411 mod/contacts.php:767 -msgid "Do you really want to delete this contact?" -msgstr "Czy na pewno chcesz usunąć ten kontakt?" - -#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 -#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 -#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 -#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 -#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 -#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4855 -msgid "Yes" -msgstr "Tak" - -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4858 -msgid "Cancel" -msgstr "Anuluj" - -#: mod/contacts.php:428 -msgid "Contact has been removed." -msgstr "Kontakt został usunięty." - -#: mod/contacts.php:466 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jesteś już znajomym z %s" - -#: mod/contacts.php:470 -#, php-format -msgid "You are sharing with %s" -msgstr "Współdzielisz z %s" - -#: mod/contacts.php:475 -#, php-format -msgid "%s is sharing with you" -msgstr "%s współdzieli z tobą" - -#: mod/contacts.php:495 -msgid "Private communications are not available for this contact." -msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" - -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Nigdy" - -#: mod/contacts.php:502 -msgid "(Update was successful)" -msgstr "(Aktualizacja przebiegła pomyślnie)" - -#: mod/contacts.php:502 -msgid "(Update was not successful)" -msgstr "(Aktualizacja nie powiodła się)" - -#: mod/contacts.php:504 -msgid "Suggest friends" -msgstr "Osoby, które możesz znać" - -#: mod/contacts.php:508 -#, php-format -msgid "Network type: %s" -msgstr "Typ sieci: %s" - -#: mod/contacts.php:511 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: mod/contacts.php:516 -msgid "View all contacts" -msgstr "Zobacz wszystkie kontakty" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Odblokuj" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Zablokuj" - -#: mod/contacts.php:524 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -msgid "Unignore" -msgstr "Odblokuj" - -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 -msgid "Ignore" -msgstr "Ignoruj" - -#: mod/contacts.php:531 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:536 mod/contacts.php:772 -msgid "Unarchive" -msgstr "Przywróć z archiwum" - -#: mod/contacts.php:536 mod/contacts.php:772 -msgid "Archive" -msgstr "Archiwum" - -#: mod/contacts.php:539 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:543 -msgid "Repair" -msgstr "Napraw" - -#: mod/contacts.php:546 -msgid "Advanced Contact Settings" -msgstr "Zaawansowane ustawienia kontaktów" - -#: mod/contacts.php:553 -msgid "Communications lost with this contact!" -msgstr "Komunikacja przerwana z tym kontaktem!" - -#: mod/contacts.php:556 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "" - -#: mod/contacts.php:557 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:557 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:566 -msgid "Contact Editor" -msgstr "Edytor kontaktów" - -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 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:56 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Potwierdź" - -#: mod/contacts.php:569 -msgid "Profile Visibility" -msgstr "Widoczność profilu" - -#: mod/contacts.php:570 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s" - -#: mod/contacts.php:571 -msgid "Contact Information / Notes" -msgstr "Informacja o kontakcie / Notka" - -#: mod/contacts.php:572 -msgid "Edit contact notes" -msgstr "Edytuj notatki kontaktu" - -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Obejrzyj %s's profil [%s]" - -#: mod/contacts.php:578 -msgid "Block/Unblock contact" -msgstr "Zablokuj/odblokuj kontakt" - -#: mod/contacts.php:579 -msgid "Ignore contact" -msgstr "Ignoruj kontakt" - -#: mod/contacts.php:580 -msgid "Repair URL settings" -msgstr "Napraw ustawienia adresu" - -#: mod/contacts.php:581 -msgid "View conversations" -msgstr "Zobacz rozmowę" - -#: mod/contacts.php:583 -msgid "Delete contact" -msgstr "Usuń kontakt" - -#: mod/contacts.php:587 -msgid "Last update:" -msgstr "Ostatnia aktualizacja:" - -#: mod/contacts.php:589 -msgid "Update public posts" -msgstr "Zaktualizuj publiczne posty" - -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Aktualizuj teraz" - -#: mod/contacts.php:598 -msgid "Currently blocked" -msgstr "Obecnie zablokowany" - -#: mod/contacts.php:599 -msgid "Currently ignored" -msgstr "Obecnie zignorowany" - -#: mod/contacts.php:600 -msgid "Currently archived" -msgstr "Obecnie zarchiwizowany" - -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Ukryj ten kontakt przed innymi" - -#: mod/contacts.php:601 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" - -#: mod/contacts.php:602 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:602 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:605 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:605 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:612 -msgid "Profile URL" -msgstr "" - -#: mod/contacts.php:658 -msgid "Suggestions" -msgstr "Sugestie" - -#: mod/contacts.php:661 -msgid "Suggest potential friends" -msgstr "Sugerowani znajomi" - -#: mod/contacts.php:665 mod/group.php:192 -msgid "All Contacts" -msgstr "Wszystkie kontakty" - -#: mod/contacts.php:668 -msgid "Show all contacts" -msgstr "Pokaż wszystkie kontakty" - -#: mod/contacts.php:672 -msgid "Unblocked" -msgstr "Odblokowany" - -#: mod/contacts.php:675 -msgid "Only show unblocked contacts" -msgstr "Pokaż tylko odblokowane kontakty" - -#: mod/contacts.php:680 -msgid "Blocked" -msgstr "Zablokowany" - -#: mod/contacts.php:683 -msgid "Only show blocked contacts" -msgstr "Pokaż tylko zablokowane kontakty" - -#: mod/contacts.php:688 -msgid "Ignored" -msgstr "Zignorowany" - -#: mod/contacts.php:691 -msgid "Only show ignored contacts" -msgstr "Pokaż tylko ignorowane kontakty" - -#: mod/contacts.php:696 -msgid "Archived" -msgstr "Zarchiwizowane" - -#: mod/contacts.php:699 -msgid "Only show archived contacts" -msgstr "Pokaż tylko zarchiwizowane kontakty" - -#: mod/contacts.php:704 -msgid "Hidden" -msgstr "Ukryty" - -#: mod/contacts.php:707 -msgid "Only show hidden contacts" -msgstr "Pokaż tylko ukryte kontakty" - -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Kontakty" - -#: mod/contacts.php:762 -msgid "Search your contacts" -msgstr "Wyszukaj w kontaktach" - -#: mod/contacts.php:763 mod/directory.php:63 -msgid "Finding: " -msgstr "Znalezione:" - -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 -msgid "Find" -msgstr "Znajdź" - -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 -msgid "Update" -msgstr "Zaktualizuj" - -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 -msgid "Delete" -msgstr "Usuń" - -#: mod/contacts.php:786 -msgid "Mutual Friendship" -msgstr "Wzajemna przyjaźń" - -#: mod/contacts.php:790 -msgid "is a fan of yours" -msgstr "jest twoim fanem" - -#: mod/contacts.php:794 -msgid "you are a fan of" -msgstr "jesteś fanem" - -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Edytuj kontakt" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Brak profilu" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Zarządzaj Tożsamościami i/lub Stronami." - -#: 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 "" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wybierz tożsamość do zarządzania:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Post dodany pomyślnie" - -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Odmowa dostępu" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Nieprawidłowa nazwa użytkownika." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Ustawienia widoczności profilu" - -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Kliknij na kontakt w celu dodania lub usunięcia." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Widoczne dla" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" - -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4814 -msgid "Item not found." -msgstr "Element nie znaleziony." - -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 -msgid "Public access denied." -msgstr "Publiczny dostęp zabroniony" - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Ograniczony dostęp do tego konta" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Przedmiot został usunięty" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Witamy na Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Lista nowych członków" - -#: 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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Pierwsze kroki" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: 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 "" - -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Ustawienia" - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Idź do swoich ustawień" - -#: 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 "" - -#: 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 "" - -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 -msgid "Upload Profile Photo" -msgstr "Wyślij zdjęcie profilowe" - -#: 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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Edytuj własny 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 "" - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Słowa kluczowe profilu" - -#: 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 "" - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Łączę się..." - -#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 -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 "" - -#: 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 "" - -#: mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importuję emaile..." - -#: 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 "" - -#: mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Idź do strony z Twoimi kontaktami" - -#: 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 "" - -#: mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Idż do twojej strony" - -#: 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 "" - -#: mod/newmember.php:62 -msgid "Finding New People" -msgstr "Poszukiwanie Nowych Ludzi" - -#: 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 "" - -#: mod/newmember.php:66 include/group.php:270 -msgid "Groups" -msgstr "Grupy" - -#: mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grupuj Swoje 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 "" - -#: mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Dlaczego moje posty nie są publiczne?" - -#: 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 "" - -#: mod/newmember.php:78 -msgid "Getting Help" -msgstr "Otrzymywanie pomocy" - -#: mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Idź do części o pomocy" - -#: mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "błąd OpenID . Brak zwróconego ID. " - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Niepowodzenie logowania" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Obrazek załadowany, ale oprawanie powiodła się." - -#: 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:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Zdjęcia profilowe" - -#: 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 "Redukcja rozmiaru obrazka [%s] nie powiodła się." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Nie udało się przetworzyć obrazu." - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -msgid "Unable to process image." -msgstr "Przetwarzanie obrazu nie powiodło się." - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Wyślij plik:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Wybierz profil:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Załaduj" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "lub" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "Pomiń ten krok" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wybierz zdjęcie z twojego albumu" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Przytnij zdjęcie" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Zakończ Edycję " - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Zdjęcie wczytano pomyślnie " - -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 -msgid "Image upload failed." -msgstr "Przesyłanie obrazu nie powiodło się" - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "zdjęcie" - -#: 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:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "status" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag usunięty" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Usuń pozycję Tag" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wybierz tag do usunięcia" - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Usuń" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Zapisz w folderze:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- wybierz -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Zapisz" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:58 mod/dfrn_request.php:847 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na poniższe:" - -#: mod/follow.php:59 mod/dfrn_request.php:848 -#, php-format -msgid "Does %s know you?" -msgstr "Czy %s Cię zna?" - -#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 -#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 -#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 -#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 -msgid "No" -msgstr "Nie" - -#: mod/follow.php:60 mod/dfrn_request.php:852 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: mod/follow.php:66 mod/dfrn_request.php:858 -msgid "Your Identity Address:" -msgstr "Twój zidentyfikowany adres:" - -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Kontakt dodany" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Nie można zlokalizować oryginalnej wiadomości." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Pusty wpis wyrzucony." - -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 -msgid "Wall Photos" -msgstr "Tablica zdjęć" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Błąd. Post niezapisany." - -#: mod/item.php:989 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Możesz ich odwiedzić online u %s" - -#: mod/item.php:992 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s zaktualizował wpis." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Grupa utworzona." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Nie mogę stworzyć grupy" - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Nie znaleziono grupy" - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Nazwa grupy zmieniona" - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Stwórz grupę znajomych." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Nazwa grupy: " - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Grupa usunięta." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nie można usunąć grupy." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Edytor grupy" - -#: mod/group.php:190 -msgid "Members" -msgstr "Członkowie" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Musisz się zalogować, aby móc używać dodatkowych wtyczek." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Aplikacje" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Brak zainstalowanych aplikacji." - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Nie znaleziono profilu." - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Kontakt nie znaleziony" - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Nieoczekiwana odpowiedź od strony zdalnej" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Potwierdzenie ukończone poprawnie" - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Zdalna strona zgłoszona:" - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Nieudane lub unieważnione wprowadzenie." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Nie można ustawić zdjęcia kontaktu." - -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s jest teraz znajomym z %2$s" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nie znaleziono użytkownika dla '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Klucz kodujący jest najwyraźniej zepsuty" - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Nie znaleziono kontaktu na naszej stronie" - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: 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 "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie" - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 -msgid "[Name Withheld]" -msgstr "[Nazwa wstrzymana]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s dołączył/a do %2$s" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Żądany profil jest niedostępny" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Wskazówki dla nowych użytkowników" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nie zaznaczono filmów" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Zobacz film" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Zobacz album" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Ostatnio dodane filmy" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Wstaw nowe filmy" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Propozycja znajomych wysłana." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Zaproponuj znajomych" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Zaproponuj znajomych dla %s" - -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nie znaleziono ważnego konta." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres 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 "" - -#: 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 "Prośba o reset hasła na %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Zresetuj hasło" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Twoje hasło zostało zresetowane na twoje życzenie." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Twoje nowe hasło to" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "Kliknij tutaj aby zalogować" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." - -#: 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 "Twoje hasło zostało zmienione na %s" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Zapomniałeś hasła?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Pseudonim lub Email:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Zresetuj" - -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s lubi %2$s's %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 nie lubi %2$s's %3$s" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} chce być Twoim znajomym" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} wysyła Ci wiadomość" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} żądana rejestracja" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "brak kontaktów" - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "widok kontaktów" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Niewłaściwy identyfikator wymagania." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Odrzuć" - -#: mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Sieć" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Osobiste" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Dom" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Wstępy" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Pokaż ignorowane żądania" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Ukryj ignorowane żądania" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Typ zawiadomień:" - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Propozycja znajomych" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "zaproponowane przez %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Pisz o nowej działalności przyjaciela" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "jeśli odpowiednie" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Zatwierdź" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Twierdzi, że go znasz:" - -#: mod/notifications.php:191 -msgid "yes" -msgstr "tak" - -#: mod/notifications.php:191 -msgid "no" -msgstr "nie" - -#: mod/notifications.php:192 -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:195 -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:203 -msgid "Friend" -msgstr "Znajomy" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Udostępniający/a" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Prośba o dodanie do przyjaciół/powiązanych" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Nowy obserwator" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Lokalizacja" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "O:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tagi:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Płeć:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Brak wstępu." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Powiadomienia" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "%s polubił wpis %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s przestał lubić post %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s jest teraz znajomym %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s dodał nowy wpis" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s skomentował wpis %s" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Nie ma więcej powiadomień sieciowych" - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Powiadomienia z sieci" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nie ma więcej powiadomień systemowych." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Powiadomienia systemowe" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Nie ma więcej powiadomień osobistych" - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Prywatne powiadomienia" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Nie ma więcej powiadomień domu" - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Powiadomienia z instancji" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Źródło - tekst (BBcode) :" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Źródło wejścia:" - -#: 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 "Źródło wejścia(format Diaspory):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Brak nowych zdarzeń" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Wyczyść powiadomienia" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nowa wiadomość" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nie wybrano odbiorcy." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Niezdolny do uzyskania informacji kontaktowych." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Wiadomość nie może zostać wysłana" - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "" - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Wysłano." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Wiadomości" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Czy na pewno chcesz usunąć tę wiadomość?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Wiadomość usunięta." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Rozmowa usunięta." - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Proszę wpisać adres URL:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Wyślij prywatną wiadomość" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "Do:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Temat:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Twoja wiadomość:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Wyślij zdjęcie" - -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Wstaw link" - -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Proszę czekać" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Brak wiadomości." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Nieznany wysyłający - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Ty i %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s i ty" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Usuń rozmowę" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d M R - g:m AM/PM" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] " %d wiadomość" -msgstr[1] " %d wiadomości" -msgstr[2] " %d wiadomości" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Wiadomość nie jest dostępna." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Usuń wiadomość" - -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Odpowiedz" - -#: 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 "[Dodatkowa zawartość - odśwież stronę by zobaczyć]" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Ustawienia kontaktu zaktualizowane." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Nie udało się zaktualizować kontaktu." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Napraw ustawienia kontaktów" - -#: mod/crepair.php:142 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać." - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Wróć do edytora kontaktów" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 -msgid "Name" -msgstr "Imię" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Nazwa konta" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL konta" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL żądajacy znajomości" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL potwierdzający znajomość" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "Zgłoszenie Punktu Końcowego URL" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Adres Ankiety / RSS" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nowe zdjęcie z tej ścieżki" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Login" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Brak dostępu" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 -msgid "Connect" -msgstr "Połącz" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "brak dopasowań" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Zdjęcia" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "Pliki" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty spoza członków grupy" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Ustawienia szablonu zmienione." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Strona" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Użytkownicy" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Wtyczki" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Temat" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aktualizacje DB" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Logi" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Administator" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Polecane wtyczki" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Rejestracje użytkownika czekają na potwierdzenie." - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 -msgid "Administration" -msgstr "Administracja" - -#: mod/admin.php:202 -msgid "ID" -msgstr "" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:206 -msgid "Created" -msgstr "" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:208 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Konto normalne" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Konto Soapbox" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Konto społeczności/gwiazdy" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Konto Bloga" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Forum Prywatne" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Wiadomości" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Skrót" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Zarejestrowani użytkownicy" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Rejestracje w toku." - -#: mod/admin.php:255 -msgid "Version" -msgstr "Wersja" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Aktywne pluginy" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Ustawienia strony zaktualizowane" - -#: mod/admin.php:594 mod/settings.php:883 -msgid "No special theme for mobile devices" -msgstr "Brak specialnego motywu dla urządzeń mobilnych" - -#: mod/admin.php:611 -msgid "No community page" -msgstr "" - -#: mod/admin.php:612 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:613 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Jak najczęściej" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Godzinowo" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dwa razy dziennie" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dziennie" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:634 -msgid "One month" -msgstr "Miesiąc" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "Trzy miesiące" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "Pół roku" - -#: mod/admin.php:637 -msgid "One year" -msgstr "Rok" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Tryb MultiUsera" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Zamknięty" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Wymagane zatwierdzenie." - -#: mod/admin.php:667 -msgid "Open" -msgstr "Otwórz" - -#: mod/admin.php:671 -msgid "No SSL policy, links will track page SSL state" -msgstr "Brak SSL , linki będą śledzić stan SSL ." - -#: mod/admin.php:672 -msgid "Force all links to use SSL" -msgstr "Wymuś by linki używały SSL." - -#: mod/admin.php:673 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . " - -#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 -#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 -msgid "Save Settings" -msgstr "Zapisz ustawienia" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Rejestracja" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Plik załadowano" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "zasady" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Zaawansowany" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Ustawienia" - -#: mod/admin.php:690 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:693 -msgid "Site name" -msgstr "Nazwa strony" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "" - -#: mod/admin.php:695 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:696 -msgid "Banner/Logo" -msgstr "Logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:697 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:698 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:699 -msgid "Additional Info" -msgstr "Dodatkowe informacje" - -#: mod/admin.php:699 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:700 -msgid "System language" -msgstr "Język systemu" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Motyw systemowy" - -#: mod/admin.php:701 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów" - -#: mod/admin.php:702 -msgid "Mobile system theme" -msgstr "Mobilny motyw systemowy" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Szablon dla mobilnych urządzeń" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "polityka SSL" - -#: mod/admin.php:703 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl." - -#: mod/admin.php:704 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:704 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:705 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "Wyłącz pomoc w menu nawigacyjnym " - -#: mod/admin.php:706 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." - -#: mod/admin.php:707 -msgid "Single user instance" -msgstr "Tryb SingleUsera" - -#: mod/admin.php:707 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Ustawia tryb multi lub single dla wybranych użytkowników." - -#: mod/admin.php:708 -msgid "Maximum image size" -msgstr "Maksymalny rozmiar zdjęcia" - -#: mod/admin.php:708 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." - -#: mod/admin.php:709 -msgid "Maximum image length" -msgstr "Maksymalna długość obrazu" - -#: mod/admin.php:709 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu." - -#: mod/admin.php:710 -msgid "JPEG image quality" -msgstr "jakość obrazu JPEG" - -#: mod/admin.php:710 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . " - -#: mod/admin.php:712 -msgid "Register policy" -msgstr "Zarejestruj polisę" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Maksymalnie dziennych rejestracji" - -#: mod/admin.php:713 -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:714 -msgid "Register text" -msgstr "Zarejestruj tekst" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Konto porzucone od x dni." - -#: mod/admin.php:715 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." - -#: mod/admin.php:716 -msgid "Allowed friend domains" -msgstr "Dozwolone domeny przyjaciół" - -#: mod/admin.php:716 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. " - -#: mod/admin.php:717 -msgid "Allowed email domains" -msgstr "Dozwolone domeny e-mailowe" - -#: mod/admin.php:717 -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:718 -msgid "Block public" -msgstr "Blokuj publicznie" - -#: mod/admin.php:718 -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:719 -msgid "Force publish" -msgstr "Wymuś publikację" - -#: mod/admin.php:719 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "" - -#: mod/admin.php:720 -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:721 -msgid "Allow threaded items" -msgstr "Zezwalaj na wątkowanie tematów" - -#: mod/admin.php:721 -msgid "Allow infinite level threading for items on this site." -msgstr "Zezwalaj na nieograniczoną liczbę wątków tematycznych na tej stronie." - -#: mod/admin.php:722 -msgid "Private posts by default for new users" -msgstr "Prywatne posty domyślnie dla nowych użytkowników" - -#: mod/admin.php:722 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:723 -msgid "Don't include post content in email notifications" -msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" - -#: mod/admin.php:723 -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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." - -#: mod/admin.php:724 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." - -#: mod/admin.php:724 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:725 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:725 -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:726 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:726 -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:727 -msgid "Block multiple registrations" -msgstr "Zablokuj wielokrotną rejestrację" - -#: mod/admin.php:727 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. " - -#: mod/admin.php:728 -msgid "OpenID support" -msgstr "Wsparcie OpenID" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "" - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "Sprawdzanie pełnej nazwy" - -#: mod/admin.php:729 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem." - -#: mod/admin.php:730 -msgid "UTF-8 Regular expressions" -msgstr "Wyrażenia regularne UTF-8" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "Użyj regularnych wyrażeń PHP UTF8" - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:731 -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:732 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:732 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:733 -msgid "Enable OStatus support" -msgstr "Włącz wsparcie OStatus" - -#: mod/admin.php:733 -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:734 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:734 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: mod/admin.php:735 -msgid "Enable Diaspora support" -msgstr "Włączyć obsługę Diaspory" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Dopuść tylko kontakty Friendrica" - -#: mod/admin.php:736 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: mod/admin.php:737 -msgid "Verify SSL" -msgstr "Weryfikacja SSL" - -#: mod/admin.php:737 -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:738 -msgid "Proxy user" -msgstr "Użytkownik proxy" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "Network timeout" - -#: mod/admin.php:740 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:741 -msgid "Delivery interval" -msgstr "" - -#: mod/admin.php:741 -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:742 -msgid "Poll interval" -msgstr "" - -#: mod/admin.php:742 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: mod/admin.php:743 -msgid "Maximum Load Average" -msgstr "" - -#: mod/admin.php:743 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: mod/admin.php:744 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:744 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:746 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:746 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:747 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:747 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:748 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:748 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:749 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:749 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:751 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:751 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:753 -msgid "Use MySQL full text engine" -msgstr "" - -#: mod/admin.php:753 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: mod/admin.php:754 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:754 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:755 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:755 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:756 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:756 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:757 -msgid "Cache duration in seconds" -msgstr "" - -#: mod/admin.php:757 -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:758 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:758 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:759 -msgid "Path for lock file" -msgstr "" - -#: mod/admin.php:759 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:760 -msgid "Temp path" -msgstr "Ścieżka do Temp" - -#: mod/admin.php:760 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:761 -msgid "Base path to installation" -msgstr "" - -#: mod/admin.php:761 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:762 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:762 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:763 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:763 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:764 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:764 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:766 -msgid "New base url" -msgstr "" - -#: mod/admin.php:766 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:768 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:769 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:787 -msgid "Update has been marked successful" -msgstr "" - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:798 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: mod/admin.php:817 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: mod/admin.php:819 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:838 -msgid "No failed updates." -msgstr "Brak błędów aktualizacji." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Błąd aktualizacji" - -#: mod/admin.php:845 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: mod/admin.php:846 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: mod/admin.php:879 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:882 -#, php-format -msgid "" -"\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." -msgstr "" - -#: mod/admin.php:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Szczegóły rejestracji dla %s" - -#: mod/admin.php:926 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: mod/admin.php:933 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] " %s użytkownik usunięty" -msgstr[1] " %s użytkownicy usunięci" -msgstr[2] " %s usuniętych użytkowników " - -#: mod/admin.php:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Użytkownik '%s' usunięty" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Użytkownik '%s' odblokowany" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Użytkownik '%s' zablokowany" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "Zaznacz wszystko" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "zarejestrowany użytkownik czeka na potwierdzenie" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Użytkownik czekający na trwałe usunięcie" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Data prośby" - -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: mod/admin.php:1078 -msgid "No registrations." -msgstr "brak rejestracji" - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Odmów" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Administracja stroną" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Konto wygasło." - -#: mod/admin.php:1088 -msgid "New User" -msgstr "" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Data rejestracji" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Ostatnie logowanie" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Ostatni element" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Skasowany od" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Konto" - -#: mod/admin.php:1092 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" - -#: mod/admin.php:1093 -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żytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" - -#: mod/admin.php:1103 -msgid "Name of the new user." -msgstr "Nazwa nowego użytkownika." - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Adres email nowego użytkownika." - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Wtyczka %s wyłączona." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Wtyczka %s właczona." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Wyłącz" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Zezwól" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Włącz" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autor: " - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "" - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Nie znaleziono tematu." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Zrzut ekranu" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Eksperymentalne]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Niewspieralne]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Zaktualizowano ustawienia logów." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "Wyczyść" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "Plik logów" - -#: mod/admin.php:1534 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: mod/admin.php:1535 -msgid "Log level" -msgstr "Poziom logów" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Zamknij" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "Założyciel FTP" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "Ścieżka FTP" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "Użytkownik FTP" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "FTP Hasło" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "" - -#: mod/network.php:187 mod/search.php:25 -msgid "Remove term" -msgstr "Usuń wpis" - -#: mod/network.php:196 mod/search.php:34 include/features.php:42 -msgid "Saved Searches" -msgstr "Zapisane wyszukiwania" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "dodaj" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Porządek wg komentarzy" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Sortuj po dacie komentarza" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Porządek wg wpisów" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Sortuj po dacie posta" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:385 -msgid "New" -msgstr "Nowy" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Współdzielone linki" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Interesujące linki" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Ulubione" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Ulubione posty" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci." -msgstr[1] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." -msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia" - -#: mod/network.php:532 mod/content.php:119 -msgid "No such group" -msgstr "Nie ma takiej grupy" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Grupa jest pusta" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Zły kontakt" - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Znajomy %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Brak znajomych do wyświetlenia" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "d, M d " - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Edytuj wydarzenie" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "link do źródła" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Wydarzenia" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Poprzedni" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Następny" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Wymagany" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Dopasuj dla strefy czasowej widza" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Opis:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Tytuł:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 -msgid "Preview" -msgstr "Podgląd" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Wybierz" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Pokaż %s's profil @ %s" - -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Zobacz w kontekście" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] " %d komentarz" -msgstr[1] " %d komentarzy" -msgstr[2] " %d komentarzy" - -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "komentarz" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 -msgid "show more" -msgstr "Pokaż więcej" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Wiadomość prywatna" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Lubię to (zmień)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "polub" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Nie lubię (zmień)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "Nie lubię" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Udostępnij to" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "udostępnij" - -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 -msgid "This is you" -msgstr "To jesteś ty" - -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 -msgid "Comment" -msgstr "Komentarz" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Pogrubienie" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Kursywa" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Podkreślenie" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Cytat" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Kod" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Obraz" - -#: mod/content.php:719 object/Item.php:687 -msgid "Link" -msgstr "Link" - -#: mod/content.php:720 object/Item.php:688 -msgid "Video" -msgstr "Video" - -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 -msgid "Edit" -msgstr "Edytuj" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "dodaj gwiazdkę" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "anuluj gwiazdkę" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "włącz status gwiazdy" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "gwiazdką" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "dodaj tag" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "zapisz w folderze" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "do" - -#: mod/content.php:857 object/Item.php:332 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: mod/content.php:858 object/Item.php:333 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Usuń konto" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji." - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "Nie można nawiązać połączenia z bazą danych" - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Nie mogę stworzyć tabeli." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:205 -msgid "System check" -msgstr "Sprawdzanie systemu" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Sprawdź ponownie" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Połączenie z bazą danych" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Baza danych - Nazwa serwera" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Baza danych - Nazwa loginu" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Baza danych - Hasło loginu" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Baza danych - Nazwa" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Adres e-mail administratora strony" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Ustawienia strony" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH" - -#: mod/install.php:324 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "Linia komend PHP" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Znaleziono wersje PHP:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "To jest wymagane do dostarczenia wiadomości do pracy." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego ." - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Generuj klucz kodowania" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "Moduł libCurl PHP" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "Moduł PHP-GD" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "Moduł PHP OpenSSL" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "Moduł mysql PHP" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "Moduł mb_string PHP" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Moduł Apache mod_rewrite" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany." - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany" - -#: mod/install.php:440 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić." - -#: mod/install.php:441 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php jest zapisywalny" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:489 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera." - -#: mod/install.php:528 -msgid "

                                              What next

                                              " -msgstr "

                                              Co dalej

                                              " - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller." - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Nie można sprawdzić twojej lokalizacji." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Brak odbiorcy." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: mod/help.php:31 -msgid "Help:" -msgstr "Pomoc:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Pomoc" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Strona nie znaleziona." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s witamy %2$s" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Witamy w %s" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profil zgodny " - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "interesuje się:" - -#: mod/share.php:38 -msgid "link" -msgstr "Link" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Niedostępne." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Społeczność" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 -msgid "No results." -msgstr "Brak wyników." - -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "wszyscy" - -#: mod/settings.php:47 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:53 -msgid "Display" -msgstr "" - -#: mod/settings.php:60 mod/settings.php:835 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "Powiązane aplikacje" - -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Eksportuje dane personalne" - -#: mod/settings.php:90 -msgid "Remove account" -msgstr "Usuń konto" - -#: mod/settings.php:143 -msgid "Missing some important data!" -msgstr "Brakuje ważnych danych!" - -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." -msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." - -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "Zaktualizowano ustawienia email." - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:339 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Hasło nie pasuje. Hasło nie zmienione." - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Brak hasła niedozwolony. Hasło nie zmienione." - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "Złe hasło." - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "Hasło zostało zmianione." - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr "Proszę użyć krótszej nazwy." - -#: mod/settings.php:448 -msgid " Name too short." -msgstr "Za krótka nazwa." - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "Złe hasło" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr "Zły email." - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "Nie mogę zmienić na ten email." - -#: mod/settings.php:524 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:528 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:558 -msgid "Settings updated." -msgstr "Zaktualizowano ustawienia." - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "Dodaj aplikacje" - -#: mod/settings.php:635 mod/settings.php:661 -msgid "Consumer Key" -msgstr "Klucz konsumenta" - -#: mod/settings.php:636 mod/settings.php:662 -msgid "Consumer Secret" -msgstr "Sekret konsumenta" - -#: mod/settings.php:637 mod/settings.php:663 -msgid "Redirect" -msgstr "Przekierowanie" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "Adres ikony" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "Nie możesz edytować tej aplikacji." - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "Klucz klienta zaczyna się od" - -#: mod/settings.php:697 -msgid "No name" -msgstr "Bez nazwy" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "Ustawienia wtyczki nieskonfigurowane" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "Ustawienia wtyczki" - -#: mod/settings.php:732 -msgid "Off" -msgstr "Wyłącz" - -#: mod/settings.php:732 -msgid "On" -msgstr "Włącz" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:762 -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:768 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:770 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:791 mod/settings.php:792 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:791 mod/dfrn_request.php:856 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:791 mod/settings.php:792 -msgid "enabled" -msgstr "włączony" - -#: mod/settings.php:791 mod/settings.php:792 -msgid "disabled" -msgstr "wyłączony" - -#: mod/settings.php:792 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:828 -msgid "Email access is disabled on this site." -msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" - -#: mod/settings.php:840 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: mod/settings.php:841 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email." - -#: mod/settings.php:842 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: mod/settings.php:844 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: mod/settings.php:845 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:846 -msgid "Security:" -msgstr "Ochrona:" - -#: mod/settings.php:846 mod/settings.php:851 -msgid "None" -msgstr "Brak" - -#: mod/settings.php:847 -msgid "Email login name:" -msgstr "Login emaila:" - -#: mod/settings.php:848 -msgid "Email password:" -msgstr "Hasło emaila:" - -#: mod/settings.php:849 -msgid "Reply-to address:" -msgstr "Odpowiedz na adres:" - -#: mod/settings.php:850 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" - -#: mod/settings.php:851 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: mod/settings.php:851 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: mod/settings.php:851 -msgid "Move to folder" -msgstr "Przenieś do folderu" - -#: mod/settings.php:852 -msgid "Move to folder:" -msgstr "Przenieś do folderu:" - -#: mod/settings.php:933 -msgid "Display Settings" -msgstr "Wyświetl ustawienia" - -#: mod/settings.php:939 mod/settings.php:955 -msgid "Display Theme:" -msgstr "Wyświetl motyw:" - -#: mod/settings.php:940 -msgid "Mobile Theme:" -msgstr "Mobilny motyw:" - -#: mod/settings.php:941 -msgid "Update browser every xx seconds" -msgstr "Odświeżaj stronę co xx sekund" - -#: mod/settings.php:941 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Dolny limit 10 sekund, brak górnego limitu" - -#: mod/settings.php:942 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:942 mod/settings.php:943 -msgid "Maximum of 100 items" -msgstr "Maksymalnie 100 elementów" - -#: mod/settings.php:943 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:944 -msgid "Don't show emoticons" -msgstr "Nie pokazuj emotikonek" - -#: mod/settings.php:945 -msgid "Don't show notices" -msgstr "Nie pokazuj powiadomień" - -#: mod/settings.php:946 -msgid "Infinite scroll" -msgstr "Nieskończone przewijanie" - -#: mod/settings.php:947 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:949 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:58 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Ustawienia motywu" - -#: mod/settings.php:1025 -msgid "User Types" -msgstr "Użytkownik pisze" - -#: mod/settings.php:1026 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:1027 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1028 -msgid "This account is a normal personal profile" -msgstr "To konto jest normalnym osobistym profilem" - -#: mod/settings.php:1031 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1032 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'" - -#: mod/settings.php:1035 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: mod/settings.php:1036 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu." - -#: mod/settings.php:1039 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1040 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół" - -#: mod/settings.php:1043 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1044 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1056 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1056 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "Przeznacz to OpenID do logowania się na to konto." - -#: mod/settings.php:1066 -msgid "Publish your default profile in your local site directory?" -msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?" - -#: mod/settings.php:1072 -msgid "Publish your default profile in the global social directory?" -msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?" - -#: mod/settings.php:1080 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" - -#: mod/settings.php:1084 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" - -#: mod/settings.php:1084 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1089 -msgid "Allow friends to post to your profile page?" -msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych" - -#: mod/settings.php:1095 -msgid "Allow friends to tag your posts?" -msgstr "Zezwól na oznaczanie twoich postów przez znajomych" - -#: mod/settings.php:1101 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1107 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1115 -msgid "Profile is not published." -msgstr "Profil nie jest opublikowany" - -#: mod/settings.php:1123 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1130 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1130 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." - -#: mod/settings.php:1131 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1132 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1133 -msgid "Expire posts:" -msgstr "Wygasające posty:" - -#: mod/settings.php:1134 -msgid "Expire personal notes:" -msgstr "Wygasające notatki osobiste:" - -#: mod/settings.php:1135 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1136 -msgid "Expire photos:" -msgstr "Wygasające zdjęcia:" - -#: mod/settings.php:1137 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1163 -msgid "Account Settings" -msgstr "Ustawienia konta" - -#: mod/settings.php:1171 -msgid "Password Settings" -msgstr "Ustawienia hasła" - -#: mod/settings.php:1172 mod/register.php:271 -msgid "New Password:" -msgstr "Nowe hasło:" - -#: mod/settings.php:1173 mod/register.php:272 -msgid "Confirm:" -msgstr "Potwierdź:" - -#: mod/settings.php:1173 -msgid "Leave password fields blank unless changing" -msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić." - -#: mod/settings.php:1174 -msgid "Current Password:" -msgstr "Obecne hasło:" - -#: mod/settings.php:1174 mod/settings.php:1175 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1175 -msgid "Password:" -msgstr "Hasło:" - -#: mod/settings.php:1179 -msgid "Basic Settings" -msgstr "Ustawienia podstawowe" - -#: mod/settings.php:1180 include/identity.php:538 -msgid "Full Name:" -msgstr "Imię i nazwisko:" - -#: mod/settings.php:1181 -msgid "Email Address:" -msgstr "Adres email:" - -#: mod/settings.php:1182 -msgid "Your Timezone:" -msgstr "Twoja strefa czasowa:" - -#: mod/settings.php:1183 -msgid "Default Post Location:" -msgstr "Standardowa lokalizacja wiadomości:" - -#: mod/settings.php:1184 -msgid "Use Browser Location:" -msgstr "Użyj położenia przeglądarki:" - -#: mod/settings.php:1187 -msgid "Security and Privacy Settings" -msgstr "Ustawienia bezpieczeństwa i prywatności" - -#: mod/settings.php:1189 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" - -#: mod/settings.php:1189 mod/settings.php:1219 -msgid "(to prevent spam abuse)" -msgstr "(aby zapobiec spamowaniu)" - -#: mod/settings.php:1190 -msgid "Default Post Permissions" -msgstr "Domyślne prawa dostępu wiadomości" - -#: mod/settings.php:1191 -msgid "(click to open/close)" -msgstr "(kliknij by otworzyć/zamknąć)" - -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Pokaż Grupy" - -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Pokaż kontakty" - -#: mod/settings.php:1202 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1203 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1207 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1219 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1222 -msgid "Notification Settings" -msgstr "Ustawienia powiadomień" - -#: mod/settings.php:1223 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1224 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1225 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1226 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1227 -msgid "Send a notification email when:" -msgstr "Wyślij powiadmonienia na email, kiedy:" - -#: mod/settings.php:1228 -msgid "You receive an introduction" -msgstr "Otrzymałeś zaproszenie" - -#: mod/settings.php:1229 -msgid "Your introductions are confirmed" -msgstr "Dane zatwierdzone" - -#: mod/settings.php:1230 -msgid "Someone writes on your profile wall" -msgstr "Ktoś pisze na twojej ścianie profilowej" - -#: mod/settings.php:1231 -msgid "Someone writes a followup comment" -msgstr "Ktoś pisze komentarz nawiązujący." - -#: mod/settings.php:1232 -msgid "You receive a private message" -msgstr "Otrzymałeś prywatną wiadomość" - -#: mod/settings.php:1233 -msgid "You receive a friend suggestion" -msgstr "Otrzymane propozycje znajomych" - -#: mod/settings.php:1234 -msgid "You are tagged in a post" -msgstr "Jesteś oznaczony w poście" - -#: mod/settings.php:1235 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1237 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1237 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1239 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1241 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1243 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1244 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1247 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1248 -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:1249 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "To wprowadzenie zostało już zaakceptowane." - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." - -#: 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 wymagany parametr nie został znaleziony w podanej lokacji" -msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" -msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "wprowadzanie zakończone." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nieodwracalny błąd protokołu." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil niedostępny." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Ochrona przed spamem została wywołana." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Przyjaciele namawiają do spróbowania za 24h." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Niewłaściwy lokalizator " - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Nieprawidłowy adres email." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Już się tu przedstawiłeś." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Widocznie jesteście już znajomymi z %s" - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Zły adres URL profilu." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Nie dozwolony adres URL profilu." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Twoje dane zostały wysłane." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Proszę zalogować się do potwierdzenia wstępu." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Potwierdź" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Ukryj kontakt" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Welcome home %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ." - -#: mod/dfrn_request.php:840 -#, php-format -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:845 -msgid "Friend/Connection Request" -msgstr "Przyjaciel/Prośba o połączenie" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Sieć społeczna" - -#: mod/dfrn_request.php:857 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." - -#: mod/register.php:97 -#, 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:107 -msgid "Your registration can not be processed." -msgstr "Twoja rejestracja nie może zostać przeprowadzona. " - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Twój OpenID (opcjonalnie):" - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Czy dołączyć twój profil do katalogu członków?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "Twoje zaproszenia ID:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Imię i nazwisko (np. Jan Kowalski):" - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Twój adres email:" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@$nazwastrony'." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Wybierz pseudonim:" - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Zarejestruj" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: mod/search.php:100 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Szukaj" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Globalne Położenie" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Znajdź na tej stronie" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Katalog Strony" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Wiek: " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Płeć: " - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Status" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Strona główna:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "" - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Dodaj" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Brak wpisów." - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Wspólni znajomi" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Brak wspólnych kontaktów." - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Eksportuj konto" - -#: 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 "" - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Eksportuj wszystko" - -#: 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 "" - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Nastrój" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Czy na pewno chcesz usunąć te sugestie ?" - -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Osoby, które możesz znać" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignoruj/Ukryj" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Konto usunięte." - -#: 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 "Utworzono nowy profil." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Nie można powileić profilu " - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Nazwa Profilu jest wymagana" - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Polubień" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Nie lubień" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Praca/Zatrudnienie" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religia" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Poglądy polityczne" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Płeć" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Orientacja seksualna" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Strona Główna" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "Zainteresowania" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adres" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "Położenie" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Konto zaktualizowane." - -#: mod/profiles.php:565 -msgid " and " -msgstr " i " - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "profil publiczny" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Odwiedźa %1$s's %2$s" - -#: mod/profiles.php:580 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:655 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" - -#: mod/profiles.php:682 -msgid "Edit Profile Details" -msgstr "Edytuj profil." - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "Zmień profilowe zdjęcie" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "Zobacz ten profil" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "Stwórz nowy profil wykorzystując te ustawienia" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "Sklonuj ten profil" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "Usuń ten profil" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "Nazwa profilu :" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "Twoje imię i nazwisko:" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "Tytuł/Opis :" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "Twoja płeć:" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "Ulica:" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "Miejscowość/Miasto :" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "Kod Pocztowy :" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "Kraj:" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "Region / Stan :" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr " Stan :" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "Kto: (jeśli dotyczy)" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: mod/profiles.php:711 include/identity.php:569 -msgid "Sexual Preference:" -msgstr "Interesują mnie:" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "Strona główna URL:" - -#: mod/profiles.php:713 include/identity.php:573 -msgid "Hometown:" -msgstr "Miasto rodzinne:" - -#: mod/profiles.php:714 include/identity.php:577 -msgid "Political Views:" -msgstr "Poglądy polityczne:" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "Poglądy religijne:" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "Publiczne słowa kluczowe :" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "Prywatne słowa kluczowe :" - -#: mod/profiles.php:718 include/identity.php:585 -msgid "Likes:" -msgstr "Lubi:" - -#: mod/profiles.php:719 include/identity.php:587 -msgid "Dislikes:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "Przykład: kończenie oprogramowania fotografii" - -#: mod/profiles.php:721 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" - -#: mod/profiles.php:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "Napisz o sobie..." - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "Zainteresowania" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "Informacje kontaktowe i Sieci Społeczne" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "Muzyka" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "Literatura" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "Telewizja" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "Film/taniec/kultura/rozrywka" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "Miłość/romans" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "Praca/zatrudnienie" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "Szkoła/edukacja" - -#: mod/profiles.php:737 -msgid "" -"This is your public profile.
                                              It may " -"be visible to anybody using the internet." -msgstr "To jest Twój publiczny profil.
                                              Może zostać wyświetlony przez każdego kto używa internetu." - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "Edytuj/Zarządzaj Profilami" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Zmień zdjęcie profilowe" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "Stwórz nowy profil" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "Obraz profilowy" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "widoczne dla wszystkich" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "Edytuj widoczność" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Artykuł nie znaleziony" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Edytuj post" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "dodaj zdjęcie" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Przyłącz plik" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "załącz plik" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "Adres www" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Wstaw link wideo" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link do filmu" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Wstaw link audio" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "Link audio" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Ustaw swoje położenie" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "wybierz lokalizację" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Wyczyść położenie przeglądarki" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: adresy e-mail" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Publiczny post" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Ustaw tytuł" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (lista słów oddzielonych przecinkiem)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Przykład: bob@example.com, mary@example.com" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "To jest Friendica, wersja" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "otwierane na serwerze" - -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Reportowanie błędów i problemów: proszę odwiedź" - -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Zainstalowane pluginy/dodatki/aplikacje:" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoryzacja połączenia aplikacji" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Zaloguj się aby kontynuować." - -#: 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 "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Dane prywatne nie są dostępne zdalnie " - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Widoczne dla:" - -#: mod/notes.php:44 include/identity.php:675 -msgid "Personal Notes" -msgstr "Osobiste notatki" - -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zmiana czasu" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Czas UTC %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Obecna strefa czasowa: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zmień strefę czasową: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Wybierz swoją strefę czasową:" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Zrób ten post prywatnym" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Niepoprawny adres email." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Dołącz do nas na Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Dostarczenie wiadomości nieudane." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d wiadomość wysłana." -msgstr[1] "%d wiadomości wysłane." -msgstr[2] "%d wysłano ." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nie masz więcej zaproszeń" - -#: mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "" - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Wyślij zaproszenia" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Wprowadź adresy email, jeden na linijkę:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Zdjęcia kontaktu" - -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Albumy zdjęć" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Ostatnio dodane zdjęcia" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Wyślij nowe zdjęcie" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Informacje o kontakcie nie dostępne." - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nie znaleziony" - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Usuń album" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Usuń zdjęcie" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "zdjęcie" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nie zaznaczono zdjęć" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Prześlij zdjęcia" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nazwa nowego albumu:" - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "lub istniejąca nazwa albumu:" - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Nie pokazuj postów statusu dla tego wysłania" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Uprawnienia" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Zdjęcie prywatne" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Zdjęcie publiczne" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Edytuj album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Najpierw pokaż najnowsze" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Najpierw pokaż najstarsze" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Zobacz zdjęcie" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Zdjęcie niedostępne" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Zobacz zdjęcie" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Edytuj zdjęcie" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Ustaw jako zdjęcie profilowe" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Zobacz w pełnym rozmiarze" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tagi:" - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Usunąć znacznik]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nazwa nowego albumu" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Zawartość" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Dodaj tag" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Obróć CW (w prawo)" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Obróć CCW (w lewo)" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Prywatne zdjęcie." - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Zdjęcie publiczne" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Podziel się" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Rejestracja dla %s odwołana" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Proszę się zalogować." - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Przenieś konto" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: 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 "" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Element nie dostępny." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Element nie znaleziony." - -#: boot.php:763 -msgid "Delete this item?" -msgstr "Usunąć ten element?" - -#: boot.php:766 -msgid "show fewer" -msgstr "Pokaż mniej" - -#: boot.php:1140 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: boot.php:1247 -msgid "Create a New Account" -msgstr "Załóż nowe konto" - -#: boot.php:1272 include/nav.php:73 -msgid "Logout" -msgstr "Wyloguj się" - -#: boot.php:1275 -msgid "Nickname or Email address: " -msgstr "Nick lub adres email:" - -#: boot.php:1276 -msgid "Password: " -msgstr "Hasło:" - -#: boot.php:1277 -msgid "Remember me" -msgstr "Zapamiętaj mnie" - -#: boot.php:1280 -msgid "Or login using OpenID: " -msgstr "Lub zaloguj się korzystając z OpenID:" - -#: boot.php:1286 -msgid "Forgot your password?" -msgstr "Zapomniałeś swojego hasła?" - -#: boot.php:1289 -msgid "Website Terms of Service" -msgstr "" - -#: boot.php:1290 -msgid "terms of service" -msgstr "warunki użytkowania" - -#: boot.php:1292 -msgid "Website Privacy Policy" -msgstr "" - -#: boot.php:1293 -msgid "privacy policy" -msgstr "polityka prywatności" - -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Ten wpis został zedytowany" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "" - -#: object/Item.php:214 -msgid "ignored" -msgstr "" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Kategorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Zapisano pod:" - -#: object/Item.php:331 -msgid "via" -msgstr "przez" - -#: 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:152 -msgid "Errors encountered creating database tables." -msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Wyloguj" - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:128 include/user.php:75 -msgid "The error message was:" -msgstr "Komunikat o błędzie:" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Dodaj nowy kontakt" @@ -5890,6 +58,12 @@ msgstr "Wpisz adres lub lokalizację sieciową" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 +msgid "Connect" +msgstr "Połącz" + #: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" @@ -5906,7 +80,9 @@ msgstr "Znajdź ludzi" msgid "Enter name or interest" msgstr "Wpisz nazwę lub zainteresowanie" -#: include/contact_widgets.php:32 +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 msgid "Connect/Follow" msgstr "Połącz/Obserwuj" @@ -5914,7 +90,16 @@ msgstr "Połącz/Obserwuj" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykładowo: Jan Kowalski, Wędkarstwo" -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 +msgid "Find" +msgstr "Znajdź" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Osoby, które możesz znać" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 msgid "Similar Interests" msgstr "Podobne zainteresowania" @@ -5922,1466 +107,53 @@ msgstr "Podobne zainteresowania" msgid "Random Profile" msgstr "Domyślny profil" -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 msgid "Invite Friends" msgstr "Zaproś znajomych" -#: include/contact_widgets.php:71 +#: include/contact_widgets.php:108 msgid "Networks" msgstr "Sieci" -#: include/contact_widgets.php:74 +#: include/contact_widgets.php:111 msgid "All Networks" msgstr "Wszystkie Sieci" -#: include/contact_widgets.php:104 include/features.php:60 +#: include/contact_widgets.php:141 include/features.php:110 msgid "Saved Folders" msgstr "Zapisane foldery" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 +#: include/contact_widgets.php:144 include/contact_widgets.php:176 msgid "Everything" msgstr "Wszystko" -#: include/contact_widgets.php:136 +#: include/contact_widgets.php:173 msgid "Categories" msgstr "Kategorie" -#: include/features.php:23 -msgid "General Features" -msgstr "" - -#: include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: include/features.php:30 -msgid "Post Composition Features" -msgstr "" - -#: include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: include/features.php:32 -msgid "Post Preview" -msgstr "Podgląd posta" - -#: 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 "" - -#: include/features.php:39 -msgid "Search by Date" -msgstr "Szukanie wg daty" - -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "Filtrowanie grupowe" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: include/features.php:41 -msgid "Network Filter" -msgstr "" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "" - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: 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 "" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: include/features.php:58 -msgid "Tagging" -msgstr "Oznaczanie" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "Kategorie postów" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "Dodaj kategorie do twoich postów" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "Oznacz posty gwiazdką" - -#: 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:75 -msgid "Connect URL missing." -msgstr "Brak adresu URL połączenia." - -#: include/follow.php:102 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" - -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." - -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Autor lub nazwa nie zostało znalezione." - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "Nie można otrzymać informacji kontaktowych" - -#: include/follow.php:302 -msgid "following" -msgstr "następujący" - -#: 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 "" - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Wszyscy" - -#: include/group.php:249 -msgid "edit" -msgstr "edytuj" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Edytuj grupy" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Stwórz nową grupę" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Kontakt nie jest w żadnej grupie" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Różny" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:256 -msgid "never" -msgstr "nigdy" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "mniej niż sekundę temu" - -#: include/datetime.php:272 -msgid "year" -msgstr "rok" - -#: include/datetime.php:272 -msgid "years" -msgstr "lata" - -#: include/datetime.php:273 -msgid "month" -msgstr "miesiąc" - -#: include/datetime.php:273 -msgid "months" -msgstr "miesiące" - -#: include/datetime.php:274 -msgid "week" -msgstr "tydzień" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "tygodnie" - -#: include/datetime.php:275 -msgid "day" -msgstr "dzień" - -#: include/datetime.php:275 -msgid "days" -msgstr "dni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "godzina" - -#: include/datetime.php:276 -msgid "hours" -msgstr "godziny" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuta" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuty" - -#: include/datetime.php:278 -msgid "second" -msgstr "sekunda" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "sekundy" - -#: include/datetime.php:287 +#: include/contact_widgets.php:237 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s temu" - -#: include/datetime.php:459 include/items.php:2432 -#, php-format -msgid "%s's birthday" -msgstr "Urodziny %s" - -#: include/datetime.php:460 include/items.php:2433 -#, php-format -msgid "Happy Birthday %s" -msgstr "Urodziny %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "" - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Edytuj profil" - -#: include/identity.php:220 -msgid "Message" -msgstr "Wiadomość" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profile" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Zarządzaj profilami" - -#: include/identity.php:341 -msgid "Network:" -msgstr "" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "g A I F d" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[dziś]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Przypomnienia o urodzinach" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Urodziny w tym tygodniu:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[Brak opisu]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Przypominacze wydarzeń" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Wydarzenia w tym tygodniu:" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "d M, R" - -#: include/identity.php:546 -msgid "j F" -msgstr "d M" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Urodziny:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Wiek:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "od %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religia:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobby/Zainteresowania:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Informacje kontaktowe i sieci społeczne" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Zainteresowania muzyczne:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Książki, literatura:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Telewizja:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/taniec/kultura/rozrywka" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Miłość/Romans:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Praca/zatrudnienie:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Szkoła/edukacja:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Status wiadomości i postów" - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Szczegóły profilu" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Filmy" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Tylko ty możesz to zobaczyć" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Wyślij poprzez email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Widoczny dla wszystkich" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "pokaż" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "nie pokazuj" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[bez tematu]" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "przestań obserwować" - -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Zaczepka" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Zobacz status" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Zobacz profil" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Zobacz zdjęcia" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Edytuj kontakt" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Wyślij prywatną wiadomość" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Witaj " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Proszę dodać zdjęcie profilowe." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Witaj ponownie " - -#: 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/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "wydarzenie" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:771 -msgid "remove" -msgstr "usuń" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Usuń zaznaczone elementy" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Śledź wątek" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s lubi to." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nie lubi tego." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:965 -msgid "and" -msgstr "i" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", i %d innych ludzi" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s lubi to." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s nie lubi tego." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Widoczne dla wszystkich" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Podaj link do filmu" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Podaj link do muzyki" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Gdzie teraz jesteś?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Usunąć pozycję (pozycje)?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "zezwolenia" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Wstaw na strony grup" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Wstaw do kontaktów" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Prywatne posty" - -#: include/network.php:959 -msgid "view full size" -msgstr "Zobacz w pełnym wymiarze" - -#: include/text.php:299 -msgid "newer" -msgstr "nowsze" - -#: include/text.php:301 -msgid "older" -msgstr "starsze" - -#: include/text.php:306 -msgid "prev" -msgstr "poprzedni" - -#: include/text.php:308 -msgid "first" -msgstr "pierwszy" - -#: include/text.php:340 -msgid "last" -msgstr "ostatni" - -#: include/text.php:343 -msgid "next" -msgstr "następny" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "" - -#: include/text.php:399 -msgid "The end" -msgstr "" - -#: include/text.php:890 -msgid "No contacts" -msgstr "Brak kontaktów" - -#: include/text.php:905 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktów" -msgstr[2] "%d kontakty" - -#: include/text.php:1003 include/nav.php:122 -msgid "Full Text" -msgstr "" - -#: include/text.php:1004 include/nav.php:123 -msgid "Tags" -msgstr "" - -#: include/text.php:1008 include/nav.php:127 +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "Pokaż więcej" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 msgid "Forums" msgstr "" -#: include/text.php:1058 -msgid "poke" -msgstr "zaczep" - -#: include/text.php:1058 -msgid "poked" -msgstr "zaczepiony" - -#: include/text.php:1059 -msgid "ping" -msgstr "ping" - -#: include/text.php:1059 -msgid "pinged" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" msgstr "" -#: include/text.php:1060 -msgid "prod" -msgstr "" - -#: include/text.php:1060 -msgid "prodded" -msgstr "" - -#: include/text.php:1061 -msgid "slap" -msgstr "spoliczkuj" - -#: include/text.php:1061 -msgid "slapped" -msgstr "spoliczkowany" - -#: include/text.php:1062 -msgid "finger" -msgstr "dotknąć" - -#: include/text.php:1062 -msgid "fingered" -msgstr "dotknięty" - -#: include/text.php:1063 -msgid "rebuff" -msgstr "odprawiać" - -#: include/text.php:1063 -msgid "rebuffed" -msgstr "odprawiony" - -#: include/text.php:1077 -msgid "happy" -msgstr "szczęśliwy" - -#: include/text.php:1078 -msgid "sad" -msgstr "smutny" - -#: include/text.php:1079 -msgid "mellow" -msgstr "spokojny" - -#: include/text.php:1080 -msgid "tired" -msgstr "zmęczony" - -#: include/text.php:1081 -msgid "perky" -msgstr "pewny siebie" - -#: include/text.php:1082 -msgid "angry" -msgstr "wściekły" - -#: include/text.php:1083 -msgid "stupified" -msgstr "odurzony" - -#: include/text.php:1084 -msgid "puzzled" -msgstr "zdziwiony" - -#: include/text.php:1085 -msgid "interested" -msgstr "interesujący" - -#: include/text.php:1086 -msgid "bitter" -msgstr "zajadły" - -#: include/text.php:1087 -msgid "cheerful" -msgstr "wesoły" - -#: include/text.php:1088 -msgid "alive" -msgstr "żywy" - -#: include/text.php:1089 -msgid "annoyed" -msgstr "irytujący" - -#: include/text.php:1090 -msgid "anxious" -msgstr "zazdrosny" - -#: include/text.php:1091 -msgid "cranky" -msgstr "zepsuty" - -#: include/text.php:1092 -msgid "disturbed" -msgstr "przeszkadzający" - -#: include/text.php:1093 -msgid "frustrated" -msgstr "rozbity" - -#: include/text.php:1094 -msgid "motivated" -msgstr "zmotywowany" - -#: include/text.php:1095 -msgid "relaxed" -msgstr "zrelaksowany" - -#: include/text.php:1096 -msgid "surprised" -msgstr "zaskoczony" - -#: include/text.php:1266 -msgid "Monday" -msgstr "Poniedziałek" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Wtorek" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Środa" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Czwartek" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Piątek" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Sobota" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Niedziela" - -#: include/text.php:1270 -msgid "January" -msgstr "Styczeń" - -#: include/text.php:1270 -msgid "February" -msgstr "Luty" - -#: include/text.php:1270 -msgid "March" -msgstr "Marzec" - -#: include/text.php:1270 -msgid "April" -msgstr "Kwiecień" - -#: include/text.php:1270 -msgid "May" -msgstr "Maj" - -#: include/text.php:1270 -msgid "June" -msgstr "Czerwiec" - -#: include/text.php:1270 -msgid "July" -msgstr "Lipiec" - -#: include/text.php:1270 -msgid "August" -msgstr "Sierpień" - -#: include/text.php:1270 -msgid "September" -msgstr "Wrzesień" - -#: include/text.php:1270 -msgid "October" -msgstr "Październik" - -#: include/text.php:1270 -msgid "November" -msgstr "Listopad" - -#: include/text.php:1270 -msgid "December" -msgstr "Grudzień" - -#: include/text.php:1492 -msgid "bytes" -msgstr "bajty" - -#: include/text.php:1524 include/text.php:1536 -msgid "Click to open/close" -msgstr "Kliknij aby otworzyć/zamknąć" - -#: include/text.php:1710 -msgid "View on separate page" -msgstr "" - -#: include/text.php:1711 -msgid "view on separate page" -msgstr "" - -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "standardowe" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Wybierz alternatywny język" - -#: include/text.php:2036 -msgid "activity" -msgstr "aktywność" - -#: include/text.php:2039 -msgid "post" -msgstr "post" - -#: include/text.php:2207 -msgid "Item filed" -msgstr "" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Obrazek/zdjęcie" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 napisał:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Szyfrowana treść" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(bez tematu)" - -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 -msgid "noreply" -msgstr "brak odpowiedzi" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Nieznany | Bez kategori" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Zablokować natychmiast " - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znam, ale nie mam zdania" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Ok, bez problemów" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Zaufane, ma moje poparcie" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Tygodniowo" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Miesięcznie" - -#: 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 "" - -#: 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 "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "na Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Start:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Wykończenia:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Kliknij tu, aby zaktualizować." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Zakończ sesję" - -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Twoje posty i rozmowy" - -#: include/nav.php:77 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Twoja strona profilowa" - -#: include/nav.php:78 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Twoje zdjęcia" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: include/nav.php:80 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Twoje wydarzenia" - -#: include/nav.php:81 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Osobiste notatki" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Zaloguj się" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Strona startowa" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Załóż konto" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Pomoc i dokumentacja" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Aplikacje" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Wtyczki, aplikacje, narzędzia, gry" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Przeszukaj zawartość strony" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Rozmowy na tej stronie" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Katalog" - -#: include/nav.php:141 -msgid "People directory" -msgstr "" - -#: include/nav.php:143 -msgid "Information" -msgstr "" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Rozmowy Twoich przyjaciół" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Podania o przyjęcie do grona znajomych" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Zobacz wszystkie powiadomienia" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Prywatne maile" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "Odebrane" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Wysłane" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Zarządzaj" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Zarządzaj innymi stronami" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Ustawienia konta" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Zarządzaj/Edytuj profile" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Zarządzaj listą przyjaciół i kontaktami" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Konfiguracja i ustawienia instancji" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Nawigacja" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mapa strony" - -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 -msgid "User not found." -msgstr "" - -#: include/api.php:795 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:814 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:833 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1350 -msgid "There is no status with this id." -msgstr "" - -#: include/api.php:1424 -msgid "There is no conversation with this id." -msgstr "" - -#: include/api.php:1703 -msgid "Invalid item." -msgstr "" - -#: include/api.php:1713 -msgid "Invalid action. " -msgstr "" - -#: include/api.php:1721 -msgid "DB error" -msgstr "" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Wymagane zaproszenie." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Zaproszenie niezweryfikowane." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Nieprawidłowy adres url OpenID" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Wprowadź wymagane informacje" - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Użyj dłuższej nazwy." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Nazwa jest za krótka." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Niepoprawny adres e mail.." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Nie możesz użyć tego e-maila. " - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Ten login jest zajęty. Wybierz inny." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." - -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Przyjaciele" - -#: include/user.php:385 -#, 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:389 -#, 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:717 -msgid "Sharing notification from Diaspora network" -msgstr "Wspólne powiadomienie z sieci Diaspora" - -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Załączniki:" - -#: include/items.php:4853 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:5128 -msgid "Archives" -msgstr "Archiwum" - #: include/profile_selectors.php:6 msgid "Male" msgstr "Mężczyzna" @@ -7434,9 +206,12 @@ msgstr "Niespecyficzne" msgid "Other" msgstr "Inne" -#: include/profile_selectors.php:6 +#: include/profile_selectors.php:6 include/conversation.php:1487 msgid "Undecided" -msgstr "Niezdecydowany" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: include/profile_selectors.php:23 msgid "Males" @@ -7526,6 +301,10 @@ msgstr "Niewierny" msgid "Sex Addict" msgstr "Uzależniony od seksu" +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Przyjaciele" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Przyjaciele/Korzyści" @@ -7610,296 +389,299 @@ msgstr "Nie obchodzi mnie to" msgid "Ask me" msgstr "Zapytaj mnie " -#: include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Powiadomienia Friendica" - -#: include/enotify.php:21 -msgid "Thank You," -msgstr "Dziękuję," - -#: include/enotify.php:23 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "%s Administrator" -msgstr "%s administrator" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" -#: include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "" +#: include/auth.php:45 +msgid "Logged out." +msgstr "Wyloguj" -#: include/enotify.php:78 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s" +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Niepowodzenie logowania" -#: include/enotify.php:80 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: include/enotify.php:81 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s wysyła ci %2$s" - -#: include/enotify.php:81 -msgid "a private message" -msgstr "prywatna wiadomość" - -#: include/enotify.php:82 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości" - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s skomentował [url=%2$s]a %3$s[/url]" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: include/enotify.php:160 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s skomentował rozmowę którą śledzisz" - -#: 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 "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę" - -#: include/enotify.php:170 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s napisał na twoim profilu" - -#: include/enotify.php:172 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s oznaczył cię" - -#: include/enotify.php:186 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s oznaczył/a cię w %2$s" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: include/enotify.php:198 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:199 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:200 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:212 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: include/enotify.php:214 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:229 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: include/enotify.php:231 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: include/enotify.php:242 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: include/enotify.php:243 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:244 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: include/enotify.php:247 include/enotify.php:289 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Możesz obejrzeć ich profile na %s" - -#: include/enotify.php:249 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." - -#: include/enotify.php:257 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:258 include/enotify.php:259 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:265 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: 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:280 -msgid "[Friendica:Notify] Friend suggestion received" -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 +#: include/auth.php:132 include/user.php:75 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: include/enotify.php:287 -msgid "Name:" -msgstr "Imię:" +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "Komunikat o błędzie:" -#: include/enotify.php:288 -msgid "Photo:" -msgstr "Zdjęcie:" - -#: include/enotify.php:291 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: include/enotify.php:299 include/enotify.php:312 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:300 include/enotify.php:313 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: 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:304 +#: include/group.php:25 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." +"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 "" -#: include/enotify.php:307 include/enotify.php:321 +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Wszyscy" + +#: include/group.php:265 +msgid "edit" +msgstr "edytuj" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Grupy" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Edytuj grupy" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Stwórz nową grupę" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nazwa grupy: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Kontakt nie jest w żadnej grupie" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "dodaj" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Nieznany | Bez kategori" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Zablokować natychmiast " + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znam, ale nie mam zdania" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Ok, bez problemów" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Zaufane, ma moje poparcie" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Jak najczęściej" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Godzinowo" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Dwa razy dziennie" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Dziennie" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Tygodniowo" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Miesięcznie" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "E-mail" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: 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 "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Wyślij poprzez email" + +#: include/acl_selectors.php:332 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/enotify.php:317 +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Widoczny dla wszystkich" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "pokaż" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "nie pokazuj" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: adresy e-mail" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Przykład: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Uprawnienia" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Zamknij" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "zdjęcie" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "status" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "wydarzenie" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, 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 "" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s lubi %2$s's %3$s" -#: include/enotify.php:319 +#: include/like.php:184 include/conversation.php:144 #, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nie lubi %2$s's %3$s" -#: include/enotify.php:332 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: include/enotify.php:333 +#: include/like.php:186 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: include/enotify.php:334 +#: include/like.php:188 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: include/enotify.php:337 +#: include/like.php:190 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: include/enotify.php:340 -#, php-format -msgid "Please visit %s to approve or reject the request." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[bez tematu]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Tablica zdjęć" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Kliknij tu, aby zaktualizować." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: include/oembed.php:220 -msgid "Embedded content" -msgstr "Osadzona zawartość" - -#: include/oembed.php:229 -msgid "Embedding disabled" -msgstr "Osadzanie wyłączone" +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "" #: include/uimport.php:94 msgid "Error decoding account file" @@ -7938,34 +720,8085 @@ msgstr[2] "Nie zaimportowano %d kontaktów." msgid "Done. You can now login with your username and password" msgstr "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła." -#: index.php:441 -msgid "toggle mobile" -msgstr "przełącz na mobilny" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Różny" -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Urodziny:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Wiek: " + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" 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 "Ustaw rozmiar fontów dla postów i komentarzy" +#: include/datetime.php:341 +msgid "never" +msgstr "nigdy" -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Ustaw szerokość motywu" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "mniej niż sekundę temu" -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Zestaw kolorów" +#: include/datetime.php:350 +msgid "year" +msgstr "rok" -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" +#: include/datetime.php:350 +msgid "years" +msgstr "lata" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "miesiąc" + +#: include/datetime.php:351 +msgid "months" +msgstr "miesiące" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "tydzień" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "tygodnie" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "dzień" + +#: include/datetime.php:353 +msgid "days" +msgstr "dni" + +#: include/datetime.php:354 +msgid "hour" +msgstr "godzina" + +#: include/datetime.php:354 +msgid "hours" +msgstr "godziny" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minuta" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minuty" + +#: include/datetime.php:356 +msgid "second" +msgstr "sekunda" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "sekundy" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s temu" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "Urodziny %s" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Urodziny %s" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Powiadomienia Friendica" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Dziękuję," + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s administrator" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" msgstr "" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Zestaw kolorów" +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" +msgstr "brak odpowiedzi" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "" + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s wysyła ci %2$s" + +#: include/enotify.php:86 +msgid "a private message" +msgstr "prywatna wiadomość" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości" + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s skomentował [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s skomentował rozmowę którą śledzisz" + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę" + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s napisał na twoim profilu" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s oznaczył cię" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s oznaczył/a cię w %2$s" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Możesz obejrzeć ich profile na %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Imię:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Zdjęcie:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:326 +#, 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:328 +#, 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:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" +msgstr "Start:" + +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" +msgstr "Wykończenia:" + +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" +msgstr "Lokalizacja" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" +msgstr "Niedziela" + +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" +msgstr "Poniedziałek" + +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" +msgstr "Wtorek" + +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" +msgstr "Środa" + +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" +msgstr "Czwartek" + +#: include/event.php:453 include/text.php:1130 +msgid "Friday" +msgstr "Piątek" + +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" +msgstr "Sobota" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" +msgstr "Maj" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:467 include/text.php:1134 +msgid "January" +msgstr "Styczeń" + +#: include/event.php:468 include/text.php:1134 +msgid "February" +msgstr "Luty" + +#: include/event.php:469 include/text.php:1134 +msgid "March" +msgstr "Marzec" + +#: include/event.php:470 include/text.php:1134 +msgid "April" +msgstr "Kwiecień" + +#: include/event.php:472 include/text.php:1134 +msgid "June" +msgstr "Czerwiec" + +#: include/event.php:473 include/text.php:1134 +msgid "July" +msgstr "Lipiec" + +#: include/event.php:474 include/text.php:1134 +msgid "August" +msgstr "Sierpień" + +#: include/event.php:475 include/text.php:1134 +msgid "September" +msgstr "Wrzesień" + +#: include/event.php:476 include/text.php:1134 +msgid "October" +msgstr "Październik" + +#: include/event.php:477 include/text.php:1134 +msgid "November" +msgstr "Listopad" + +#: include/event.php:478 include/text.php:1134 +msgid "December" +msgstr "Grudzień" + +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:483 +msgid "all-day" +msgstr "" + +#: include/event.php:485 +msgid "No events to display" +msgstr "" + +#: include/event.php:574 +msgid "l, F j" +msgstr "d, M d " + +#: include/event.php:593 +msgid "Edit event" +msgstr "Edytuj wydarzenie" + +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" +msgstr "link do źródła" + +#: include/event.php:850 +msgid "Export" +msgstr "" + +#: include/event.php:851 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:852 +msgid "Export calendar as csv" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Brak nowych zdarzeń" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Wyczyść powiadomienia" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Wyloguj się" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Zakończ sesję" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Status" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Twoje posty i rozmowy" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Profil" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Twoja strona profilowa" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Zdjęcia" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Twoje zdjęcia" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Filmy" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Wydarzenia" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Twoje wydarzenia" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Osobiste notatki" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Login" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Zaloguj się" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Dom" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Strona startowa" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Zarejestruj" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Załóż konto" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Pomoc" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Pomoc i dokumentacja" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Aplikacje" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Wtyczki, aplikacje, narzędzia, gry" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Szukaj" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Przeszukaj zawartość strony" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Kontakty" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Społeczność" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Rozmowy na tej stronie" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Wydarzenia i kalendarz" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Katalog" + +#: include/nav.php:152 +msgid "People directory" +msgstr "" + +#: include/nav.php:154 +msgid "Information" +msgstr "" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Sieć" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Rozmowy Twoich przyjaciół" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Wstępy" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Podania o przyjęcie do grona znajomych" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Powiadomienia" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Zobacz wszystkie powiadomienia" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Wiadomości" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Prywatne maile" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Odebrane" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Wysłane" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nowa wiadomość" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Zarządzaj" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Zarządzaj innymi stronami" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Ustawienia" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Ustawienia konta" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Profile" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Zarządzaj/Edytuj profile" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Zarządzaj listą przyjaciół i kontaktami" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Administator" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Konfiguracja i ustawienia instancji" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Nawigacja" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mapa strony" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Zdjęcia kontaktu" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Witaj " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Proszę dodać zdjęcie profilowe." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Witaj ponownie " + +#: include/security.php:373 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "System" + +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Osobiste" + +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s skomentował wpis %s" + +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" +msgstr "%s dodał nowy wpis" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "%s polubił wpis %s" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s przestał lubić post %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s jest teraz znajomym %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Propozycja znajomych" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Prośba o dodanie do przyjaciół/powiązanych" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nowy obserwator" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(bez tematu)" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Wspólne powiadomienie z sieci Diaspora" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Załączniki:" + +#: include/network.php:595 +msgid "view full size" +msgstr "Zobacz w pełnym wymiarze" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Zobacz profil" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Zobacz status" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Zobacz zdjęcia" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Wyślij prywatną wiadomość" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Zaczepka" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:778 +msgid "News" +msgstr "" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Obrazek/zdjęcie" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 napisał:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Szyfrowana treść" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s jest teraz znajomym z %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" +msgstr "Polubień" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" +msgstr "Nie lubień" + +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" +msgstr "Wybierz" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" +msgstr "Usuń" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Pokaż %s's profil @ %s" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Kategorie:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Zapisano pod:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Zobacz w kontekście" + +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" +msgstr "Proszę czekać" + +#: include/conversation.php:870 +msgid "remove" +msgstr "usuń" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Usuń zaznaczone elementy" + +#: include/conversation.php:966 +msgid "Follow Thread" +msgstr "Śledź wątek" + +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." +msgstr "%s lubi to." + +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nie lubi tego." + +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1119 +msgid "and" +msgstr "i" + +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" +msgstr ", i %d innych ludzi" + +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" +msgstr "Widoczne dla wszystkich" + +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Proszę wpisać adres URL:" + +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" +msgstr "Podaj link do filmu" + +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" +msgstr "Podaj link do muzyki" + +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Zapisz w folderze:" + +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" +msgstr "Gdzie teraz jesteś?" + +#: include/conversation.php:1197 +msgid "Delete item(s)?" +msgstr "Usunąć pozycję (pozycje)?" + +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" +msgstr "Podziel się" + +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Wyślij zdjęcie" + +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" +msgstr "dodaj zdjęcie" + +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" +msgstr "Przyłącz plik" + +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" +msgstr "załącz plik" + +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Wstaw link" + +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" +msgstr "Adres www" + +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Wstaw link wideo" + +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" +msgstr "link do filmu" + +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Wstaw link audio" + +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" +msgstr "Link audio" + +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" +msgstr "Ustaw swoje położenie" + +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" +msgstr "wybierz lokalizację" + +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Wyczyść położenie przeglądarki" + +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" +msgstr "Ustaw tytuł" + +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (lista słów oddzielonych przecinkiem)" + +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" + +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" +msgstr "zezwolenia" + +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" +msgstr "Publiczny post" + +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" +msgstr "Podgląd" + +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Anuluj" + +#: include/conversation.php:1289 +msgid "Post to Groups" +msgstr "Wstaw na strony grup" + +#: include/conversation.php:1290 +msgid "Post to Contacts" +msgstr "Wstaw do kontaktów" + +#: include/conversation.php:1291 +msgid "Private post" +msgstr "Prywatne posty" + +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" +msgstr "Wiadomość" + +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1453 +msgid "View all" +msgstr "" + +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/features.php:70 +msgid "General Features" +msgstr "" + +#: include/features.php:72 +msgid "Multiple Profiles" +msgstr "" + +#: include/features.php:72 +msgid "Ability to create multiple profiles" +msgstr "" + +#: include/features.php:73 +msgid "Photo Location" +msgstr "" + +#: include/features.php:73 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:74 +msgid "Export Public Calendar" +msgstr "" + +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" +msgstr "" + +#: include/features.php:79 +msgid "Post Composition Features" +msgstr "" + +#: include/features.php:80 +msgid "Richtext Editor" +msgstr "" + +#: include/features.php:80 +msgid "Enable richtext editor" +msgstr "" + +#: include/features.php:81 +msgid "Post Preview" +msgstr "Podgląd posta" + +#: include/features.php:81 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:82 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:82 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:87 +msgid "Network Sidebar Widgets" +msgstr "" + +#: include/features.php:88 +msgid "Search by Date" +msgstr "Szukanie wg daty" + +#: include/features.php:88 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: include/features.php:89 include/features.php:119 +msgid "List Forums" +msgstr "" + +#: include/features.php:89 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:90 +msgid "Group Filter" +msgstr "Filtrowanie grupowe" + +#: include/features.php:90 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: include/features.php:91 +msgid "Network Filter" +msgstr "" + +#: include/features.php:91 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: include/features.php:92 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Zapisane wyszukiwania" + +#: include/features.php:92 +msgid "Save search terms for re-use" +msgstr "" + +#: include/features.php:97 +msgid "Network Tabs" +msgstr "" + +#: include/features.php:98 +msgid "Network Personal Tab" +msgstr "" + +#: include/features.php:98 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: include/features.php:99 +msgid "Network New Tab" +msgstr "" + +#: include/features.php:99 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: include/features.php:100 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:100 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:105 +msgid "Post/Comment Tools" +msgstr "" + +#: include/features.php:106 +msgid "Multiple Deletion" +msgstr "" + +#: include/features.php:106 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: include/features.php:107 +msgid "Edit Sent Posts" +msgstr "" + +#: include/features.php:107 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: include/features.php:108 +msgid "Tagging" +msgstr "Oznaczanie" + +#: include/features.php:108 +msgid "Ability to tag existing posts" +msgstr "" + +#: include/features.php:109 +msgid "Post Categories" +msgstr "Kategorie postów" + +#: include/features.php:109 +msgid "Add categories to your posts" +msgstr "Dodaj kategorie do twoich postów" + +#: include/features.php:110 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:111 +msgid "Dislike Posts" +msgstr "" + +#: include/features.php:111 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: include/features.php:112 +msgid "Star Posts" +msgstr "Oznacz posty gwiazdką" + +#: include/features.php:112 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:113 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:113 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/features.php:118 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:119 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Nie dozwolony adres URL profilu." + +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "Brak adresu URL połączenia." + +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" + +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." + +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "Autor lub nazwa nie zostało znalezione." + +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" + +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:141 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." + +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." + +#: include/follow.php:258 +msgid "Unable to retrieve contact information." +msgstr "Nie można otrzymać informacji kontaktowych" + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Żądany profil jest niedostępny" + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Edytuj profil" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Zarządzaj profilami" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Zmień zdjęcie profilowe" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Stwórz nowy profil" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Obraz profilowy" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "widoczne dla wszystkich" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Edytuj widoczność" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Płeć:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Status" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Strona główna:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "O:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A I F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[dziś]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Przypomnienia o urodzinach" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Urodziny w tym tygodniu:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Brak opisu]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Przypominacze wydarzeń" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Wydarzenia w tym tygodniu:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Imię i nazwisko:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "d M, R" + +#: include/identity.php:622 +msgid "j F" +msgstr "d M" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Wiek:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "od %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Interesują mnie:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Miasto rodzinne:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Tagi:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Poglądy polityczne:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religia:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Hobby/Zainteresowania:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Lubi:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Informacje kontaktowe i sieci społeczne" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Zainteresowania muzyczne:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Książki, literatura:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Telewizja:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/taniec/kultura/rozrywka" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Miłość/Romans:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Praca/zatrudnienie:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Szkoła/edukacja:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Zaawansowany" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Status wiadomości i postów" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Szczegóły profilu" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Albumy zdjęć" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Osobiste notatki" + +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Tylko ty możesz to zobaczyć" + +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Nazwa wstrzymana]" + +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Element nie znaleziony." + +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Tak" + +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Brak uprawnień." + +#: include/items.php:2239 +msgid "Archives" +msgstr "Archiwum" + +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Osadzona zawartość" + +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Osadzanie wyłączone" + +#: include/ostatus.php:1825 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: include/ostatus.php:1826 +msgid "following" +msgstr "następujący" + +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "przestań obserwować" + +#: include/text.php:304 +msgid "newer" +msgstr "nowsze" + +#: include/text.php:306 +msgid "older" +msgstr "starsze" + +#: include/text.php:311 +msgid "prev" +msgstr "poprzedni" + +#: include/text.php:313 +msgid "first" +msgstr "pierwszy" + +#: include/text.php:345 +msgid "last" +msgstr "ostatni" + +#: include/text.php:348 +msgid "next" +msgstr "następny" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:404 +msgid "The end" +msgstr "" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Brak kontaktów" + +#: include/text.php:912 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktów" +msgstr[2] "%d kontakty" + +#: include/text.php:925 +msgid "View Contacts" +msgstr "widok kontaktów" + +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Zapisz" + +#: include/text.php:1076 +msgid "poke" +msgstr "zaczep" + +#: include/text.php:1076 +msgid "poked" +msgstr "zaczepiony" + +#: include/text.php:1077 +msgid "ping" +msgstr "ping" + +#: include/text.php:1077 +msgid "pinged" +msgstr "" + +#: include/text.php:1078 +msgid "prod" +msgstr "" + +#: include/text.php:1078 +msgid "prodded" +msgstr "" + +#: include/text.php:1079 +msgid "slap" +msgstr "spoliczkuj" + +#: include/text.php:1079 +msgid "slapped" +msgstr "spoliczkowany" + +#: include/text.php:1080 +msgid "finger" +msgstr "dotknąć" + +#: include/text.php:1080 +msgid "fingered" +msgstr "dotknięty" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "odprawiać" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "odprawiony" + +#: include/text.php:1095 +msgid "happy" +msgstr "szczęśliwy" + +#: include/text.php:1096 +msgid "sad" +msgstr "smutny" + +#: include/text.php:1097 +msgid "mellow" +msgstr "spokojny" + +#: include/text.php:1098 +msgid "tired" +msgstr "zmęczony" + +#: include/text.php:1099 +msgid "perky" +msgstr "pewny siebie" + +#: include/text.php:1100 +msgid "angry" +msgstr "wściekły" + +#: include/text.php:1101 +msgid "stupified" +msgstr "odurzony" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "zdziwiony" + +#: include/text.php:1103 +msgid "interested" +msgstr "interesujący" + +#: include/text.php:1104 +msgid "bitter" +msgstr "zajadły" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "wesoły" + +#: include/text.php:1106 +msgid "alive" +msgstr "żywy" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "irytujący" + +#: include/text.php:1108 +msgid "anxious" +msgstr "zazdrosny" + +#: include/text.php:1109 +msgid "cranky" +msgstr "zepsuty" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "przeszkadzający" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "rozbity" + +#: include/text.php:1112 +msgid "motivated" +msgstr "zmotywowany" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "zrelaksowany" + +#: include/text.php:1114 +msgid "surprised" +msgstr "zaskoczony" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Zobacz film" + +#: include/text.php:1356 +msgid "bytes" +msgstr "bajty" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "Kliknij aby otworzyć/zamknąć" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1806 +msgid "activity" +msgstr "aktywność" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "komentarz" + +#: include/text.php:1809 +msgid "post" +msgstr "post" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Hasło nie pasuje. Hasło nie zmienione." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Wymagane zaproszenie." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Zaproszenie niezweryfikowane." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Nieprawidłowy adres url OpenID" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Wprowadź wymagane informacje" + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Użyj dłuższej nazwy." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Nazwa jest za krótka." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Niepoprawny adres e mail.." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Nie możesz użyć tego e-maila. " + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Ten login jest zajęty. Wybierz inny." + +#: include/user.php:157 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie." + +#: include/user.php:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "standardowe" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." + +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Zdjęcia profilowe" + +#: include/user.php:414 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 +#, 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:438 +#, 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:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Szczegóły rejestracji dla %s" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Post dodany pomyślnie" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Brak dostępu" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Witamy w %s" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "Nie ma więcej powiadomień systemowych." + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Powiadomienia systemowe" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Usuń wpis" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "Publiczny dostęp zabroniony" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Brak wyników." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "To jest Friendica, wersja" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "otwierane na serwerze" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." + +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Reportowanie błędów i problemów: proszę odwiedź" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "Zainstalowane pluginy/dodatki/aplikacje:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nie znaleziono ważnego konta." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres 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 "" + +#: 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 "Prośba o reset hasła na %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się." + +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Zresetuj hasło" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Twoje hasło zostało zresetowane na twoje życzenie." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Twoje nowe hasło to" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "Kliknij tutaj aby zalogować" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." + +#: 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 "Twoje hasło zostało zmienione na %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Zapomniałeś hasła?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." + +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Pseudonim lub Email:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Zresetuj" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Brak profilu" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Pomoc:" + +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "Nie znaleziono" + +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Strona nie znaleziona." + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Dane prywatne nie są dostępne zdalnie " + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Widoczne dla:" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "błąd OpenID . Brak zwróconego ID. " + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie." + +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." + +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" +msgstr "Import" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Przenieś konto" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" + +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Obejrzyj %s's profil [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:931 +msgid "Edit contact" +msgstr "Edytuj kontakt" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Kontakty spoza członków grupy" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "Eksportuj konto" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "Eksportuj wszystko" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Eksportuje dane personalne" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Niepoprawny adres email." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Dołącz do nas na Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Dostarczenie wiadomości nieudane." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d wiadomość wysłana." +msgstr[1] "%d wiadomości wysłane." +msgstr[2] "%d wysłano ." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nie masz więcej zaproszeń" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Wyślij zaproszenia" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Wprowadź adresy email, jeden na linijkę:" + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Twoja wiadomość:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Potwierdź" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Pliki" + +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Odmowa dostępu" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Nieprawidłowa nazwa użytkownika." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Ustawienia widoczności profilu" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Kliknij na kontakt w celu dodania lub usunięcia." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Widoczne dla" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag usunięty" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Usuń pozycję Tag" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wybierz tag do usunięcia" + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Usuń" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Dodaj" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Brak wpisów." + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- wybierz -" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Element nie dostępny." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Element nie znaleziony." + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Musisz się zalogować, aby móc używać dodatkowych wtyczek." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Aplikacje" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Brak zainstalowanych aplikacji." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Witamy na Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Lista nowych członków" + +#: 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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Pierwsze kroki" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: 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 "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Idź do swoich ustawień" + +#: 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 "" + +#: 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 "" + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Wyślij zdjęcie profilowe" + +#: 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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Edytuj własny 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 "" + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Słowa kluczowe profilu" + +#: 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 "" + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Łączę się..." + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Importuję emaile..." + +#: mod/newmember.php:51 +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 "" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Idź do strony z Twoimi kontaktami" + +#: mod/newmember.php:53 +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 "" + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "Idż do twojej strony" + +#: mod/newmember.php:55 +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 "" + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Poszukiwanie Nowych Ludzi" + +#: mod/newmember.php:57 +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 "" + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "Grupuj Swoje kontakty" + +#: mod/newmember.php:65 +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 "" + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "Dlaczego moje posty nie są publiczne?" + +#: mod/newmember.php:68 +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 "" + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "Otrzymywanie pomocy" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Idź do części o pomocy" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Usuń konto" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Artykuł nie znaleziony" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Edytuj post" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zmiana czasu" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Czas UTC %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Obecna strefa czasowa: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Zmień strefę czasową: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Wybierz swoją strefę czasową:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Grupa utworzona." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Nie mogę stworzyć grupy" + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Nie znaleziono grupy" + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Nazwa grupy zmieniona" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Stwórz grupę znajomych." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Grupa usunięta." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nie można usunąć grupy." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Edytor grupy" + +#: mod/group.php:190 +msgid "Members" +msgstr "Członkowie" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Wszystkie kontakty" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "Grupa jest pusta" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona." + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Nie wybrano odbiorcy." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Nie można sprawdzić twojej lokalizacji." + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Wiadomość nie może zostać wysłana" + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "" + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Wysłano." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Brak odbiorcy." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Wyślij prywatną wiadomość" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Do:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Temat:" + +#: mod/share.php:38 +msgid "link" +msgstr "Link" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoryzacja połączenia aplikacji" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Zaloguj się aby kontynuować." + +#: 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 "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "Nie" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Źródło - tekst (BBcode) :" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Źródło wejścia:" + +#: 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 "Źródło wejścia(format Diaspory):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s witamy %2$s" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Niezdolny do uzyskania informacji kontaktowych." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Czy na pewno chcesz usunąć tę wiadomość?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Wiadomość usunięta." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Rozmowa usunięta." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Brak wiadomości." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Wiadomość nie jest dostępna." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Usuń wiadomość" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Usuń rozmowę" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Odpowiedz" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Nieznany wysyłający - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Ty i %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s i ty" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M R - g:m AM/PM" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] " %d wiadomość" +msgstr[1] " %d wiadomości" +msgstr[2] " %d wiadomości" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Zarządzaj Tożsamościami i/lub Stronami." + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Wybierz tożsamość do zarządzania:" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Ustawienia kontaktu zaktualizowane." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Nie udało się zaktualizować kontaktu." + +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Kontakt nie znaleziony" + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Wróć do edytora kontaktów" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" +msgstr "Imię" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Nazwa konta" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "URL konta" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL żądajacy znajomości" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL potwierdzający znajomość" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Zgłoszenie Punktu Końcowego URL" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Adres Ankiety / RSS" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nowe zdjęcie z tej ścieżki" + +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Nie ma takiej grupy" + +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Ten wpis został zedytowany" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] " %d komentarz" +msgstr[1] " %d komentarzy" +msgstr[2] " %d komentarzy" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Wiadomość prywatna" + +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Lubię to (zmień)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "polub" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Nie lubię (zmień)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "Nie lubię" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Udostępnij to" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "udostępnij" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "To jesteś ty" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Komentarz" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Pogrubienie" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Kursywa" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Podkreślenie" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Cytat" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Kod" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Obraz" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Edytuj" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "dodaj gwiazdkę" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "anuluj gwiazdkę" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "włącz status gwiazdy" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "gwiazdką" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "dodaj tag" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "zapisz w folderze" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "do" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Propozycja znajomych wysłana." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Zaproponuj znajomych" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Zaproponuj znajomych dla %s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Nastrój" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Zrób ten post prywatnym" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Obrazek załadowany, ale oprawanie powiodła się." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Nie udało się przetworzyć obrazu." + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Przetwarzanie obrazu nie powiodło się." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Wyślij plik:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Wybierz profil:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Załaduj" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "lub" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "Pomiń ten krok" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "wybierz zdjęcie z twojego albumu" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Przytnij zdjęcie" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Zakończ Edycję " + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Zdjęcie wczytano pomyślnie " + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Przesyłanie obrazu nie powiodło się" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Rejestracja dla %s odwołana" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Proszę się zalogować." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Niewłaściwy identyfikator wymagania." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Odrzuć" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignoruj" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Powiadomienia z sieci" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Prywatne powiadomienia" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Powiadomienia z instancji" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Pokaż ignorowane żądania" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Ukryj ignorowane żądania" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Typ zawiadomień:" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "zaproponowane przez %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Ukryj ten kontakt przed innymi" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Pisz o nowej działalności przyjaciela" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "jeśli odpowiednie" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Zatwierdź" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Twierdzi, że go znasz:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "tak" + +#: mod/notifications.php:196 +msgid "no" +msgstr "nie" + +#: mod/notifications.php:197 +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:200 +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:209 +msgid "Friend" +msgstr "Znajomy" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Udostępniający/a" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Brak wstępu." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Nie znaleziono profilu." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Konto usunięte." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Utworzono nowy profil." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Nie można powileić profilu " + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Nazwa Profilu jest wymagana" + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Praca/Zatrudnienie" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Religia" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Poglądy polityczne" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Płeć" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Orientacja seksualna" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Strona Główna" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Zainteresowania" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Adres" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Położenie" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Konto zaktualizowane." + +#: mod/profiles.php:564 +msgid " and " +msgstr " i " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "profil publiczny" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Odwiedźa %1$s's %2$s" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Edytuj profil." + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Zmień profilowe zdjęcie" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Zobacz ten profil" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "Stwórz nowy profil wykorzystując te ustawienia" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Sklonuj ten profil" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Usuń ten profil" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Twoja płeć:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Stan :" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Przykład: kończenie oprogramowania fotografii" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Nazwa profilu :" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Wymagany" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
                                              It may " +"be visible to anybody using the internet." +msgstr "To jest Twój publiczny profil.
                                              Może zostać wyświetlony przez każdego kto używa internetu." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Twoje imię i nazwisko:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Tytuł/Opis :" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Ulica:" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Miejscowość/Miasto :" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Region / Stan :" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Kod Pocztowy :" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "Kraj:" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "Kto: (jeśli dotyczy)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Napisz o sobie..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Strona główna URL:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Poglądy religijne:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Publiczne słowa kluczowe :" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Prywatne słowa kluczowe :" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Muzyka" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Literatura" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Telewizja" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Film/taniec/kultura/rozrywka" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Zainteresowania" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Miłość/romans" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Praca/zatrudnienie" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Szkoła/edukacja" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Informacje kontaktowe i Sieci Społeczne" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Edytuj/Zarządzaj Profilami" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Brak znajomych do wyświetlenia" + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Ograniczony dostęp do tego konta" + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Poprzedni" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Następny" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Brak wspólnych kontaktów." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Wspólni znajomi" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Niedostępne." + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Globalne Położenie" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Znajdź na tej stronie" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Katalog Strony" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "brak dopasowań" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "Przedmiot został usunięty" + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Rozpoczęcie wydarzenia:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Dopasuj dla strefy czasowej widza" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Opis:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Tytuł:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "interesuje się:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Profil zgodny " + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Wskazówki dla nowych użytkowników" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Czy na pewno chcesz usunąć te sugestie ?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignoruj/Ukryj" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Dodatkowa zawartość - odśwież stronę by zobaczyć]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Ostatnio dodane zdjęcia" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Wyślij nowe zdjęcie" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "wszyscy" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Informacje o kontakcie nie dostępne." + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Album nie znaleziony" + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Usuń album" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Usuń zdjęcie" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "zdjęcie" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Nie zaznaczono zdjęć" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "Dostęp do tego obiektu jest ograniczony." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Prześlij zdjęcia" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nazwa nowego albumu:" + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "lub istniejąca nazwa albumu:" + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "Nie pokazuj postów statusu dla tego wysłania" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Pokaż Grupy" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Pokaż kontakty" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Zdjęcie prywatne" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Zdjęcie publiczne" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Edytuj album" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Najpierw pokaż najnowsze" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Najpierw pokaż najstarsze" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Zobacz zdjęcie" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Zdjęcie niedostępne" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Zobacz zdjęcie" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Edytuj zdjęcie" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Ustaw jako zdjęcie profilowe" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Zobacz w pełnym rozmiarze" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Tagi:" + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Usunąć znacznik]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nazwa nowego albumu" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Zawartość" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Dodaj tag" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Obróć CW (w prawo)" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Obróć CCW (w lewo)" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Prywatne zdjęcie." + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Zdjęcie publiczne" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Zobacz album" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." + +#: mod/register.php:98 +#, 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 "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Twoja rejestracja nie może zostać przeprowadzona. " + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "Twój OpenID (opcjonalnie):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "Czy dołączyć twój profil do katalogu członków?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "Twoje zaproszenia ID:" + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Rejestracja" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Twój adres email:" + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Nowe hasło:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Potwierdź:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@$nazwastrony'." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Wybierz pseudonim:" + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Konto" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Wtyczki" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Powiązane aplikacje" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Usuń konto" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Brakuje ważnych danych!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Zaktualizuj" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Zaktualizowano ustawienia email." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Brak hasła niedozwolony. Hasło nie zmienione." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Złe hasło." + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Hasło zostało zmianione." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr "Proszę użyć krótszej nazwy." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr "Za krótka nazwa." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Złe hasło" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr "Zły email." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr "Nie mogę zmienić na ten email." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Zaktualizowano ustawienia." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Dodaj aplikacje" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Zapisz ustawienia" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Klucz konsumenta" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Sekret konsumenta" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Przekierowanie" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "Adres ikony" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "Nie możesz edytować tej aplikacji." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Klucz klienta zaczyna się od" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Bez nazwy" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "Ustawienia wtyczki nieskonfigurowane" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Ustawienia wtyczki" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Wyłącz" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Włącz" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "włączony" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "wyłączony" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Ochrona:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Brak" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Login emaila:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Hasło emaila:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Odpowiedz na adres:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Przenieś do folderu" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Przenieś do folderu:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "Brak specialnego motywu dla urządzeń mobilnych" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Wyświetl ustawienia" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Wyświetl motyw:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Mobilny motyw:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Odświeżaj stronę co xx sekund" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Maksymalnie 100 elementów" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "Nie pokazuj emotikonek" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "Nie pokazuj powiadomień" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "Nieskończone przewijanie" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Ustawienia motywu" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "To konto jest normalnym osobistym profilem" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'" + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "Przeznacz to OpenID do logowania się na to konto." + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "Zezwól na oznaczanie twoich postów przez znajomych" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "Profil nie jest opublikowany" + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "Wygasające posty:" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "Wygasające notatki osobiste:" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "Wygasające zdjęcia:" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Ustawienia konta" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Ustawienia hasła" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić." + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Obecne hasło:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Hasło:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Ustawienia podstawowe" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Adres email:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Twoja strefa czasowa:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Standardowa lokalizacja wiadomości:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Użyj położenia przeglądarki:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Ustawienia bezpieczeństwa i prywatności" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(aby zapobiec spamowaniu)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Domyślne prawa dostępu wiadomości" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(kliknij by otworzyć/zamknąć)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Ustawienia powiadomień" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Wyślij powiadmonienia na email, kiedy:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Otrzymałeś zaproszenie" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Dane zatwierdzone" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Ktoś pisze na twojej ścianie profilowej" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Ktoś pisze komentarz nawiązujący." + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Otrzymałeś prywatną wiadomość" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Otrzymane propozycje znajomych" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Jesteś oznaczony w poście" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Nie zaznaczono filmów" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Ostatnio dodane filmy" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Wstaw nowe filmy" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Ustawienia szablonu zmienione." + +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" +msgstr "Strona" + +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" +msgstr "Użytkownicy" + +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" +msgstr "Temat" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Aktualizacje DB" + +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" +msgstr "Logi" + +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Polecane wtyczki" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Rejestracje użytkownika czekają na potwierdzenie." + +#: mod/admin.php:306 +msgid "unknown" +msgstr "" + +#: mod/admin.php:365 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" +msgstr "Administracja" + +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:408 +msgid "ID" +msgstr "" + +#: mod/admin.php:409 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:410 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:412 +msgid "Created" +msgstr "" + +#: mod/admin.php:413 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the " +"convert_innodb.sql in the /util directory of your " +"Friendica installation.
                                              " +msgstr "" + +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" +msgstr "Konto normalne" + +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" +msgstr "Konto Soapbox" + +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" +msgstr "Konto społeczności/gwiazdy" + +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: mod/admin.php:452 +msgid "Blog Account" +msgstr "Konto Bloga" + +#: mod/admin.php:453 +msgid "Private Forum" +msgstr "Forum Prywatne" + +#: mod/admin.php:479 +msgid "Message queues" +msgstr "Wiadomości" + +#: mod/admin.php:485 +msgid "Summary" +msgstr "Skrót" + +#: mod/admin.php:488 +msgid "Registered users" +msgstr "Zarejestrowani użytkownicy" + +#: mod/admin.php:490 +msgid "Pending registrations" +msgstr "Rejestracje w toku." + +#: mod/admin.php:491 +msgid "Version" +msgstr "Wersja" + +#: mod/admin.php:496 +msgid "Active plugins" +msgstr "Aktywne pluginy" + +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:834 +msgid "Site settings updated." +msgstr "Ustawienia strony zaktualizowane" + +#: mod/admin.php:881 +msgid "No community page" +msgstr "" + +#: mod/admin.php:882 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:883 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" +msgstr "Nigdy" + +#: mod/admin.php:889 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" +msgstr "" + +#: mod/admin.php:899 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:904 +msgid "One month" +msgstr "Miesiąc" + +#: mod/admin.php:905 +msgid "Three months" +msgstr "Trzy miesiące" + +#: mod/admin.php:906 +msgid "Half a year" +msgstr "Pół roku" + +#: mod/admin.php:907 +msgid "One year" +msgstr "Rok" + +#: mod/admin.php:912 +msgid "Multi user instance" +msgstr "Tryb MultiUsera" + +#: mod/admin.php:935 +msgid "Closed" +msgstr "Zamknięty" + +#: mod/admin.php:936 +msgid "Requires approval" +msgstr "Wymagane zatwierdzenie." + +#: mod/admin.php:937 +msgid "Open" +msgstr "Otwórz" + +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" +msgstr "Brak SSL , linki będą śledzić stan SSL ." + +#: mod/admin.php:942 +msgid "Force all links to use SSL" +msgstr "Wymuś by linki używały SSL." + +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . " + +#: mod/admin.php:957 +msgid "File upload" +msgstr "Plik załadowano" + +#: mod/admin.php:958 +msgid "Policies" +msgstr "zasady" + +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:961 +msgid "Performance" +msgstr "Ustawienia" + +#: mod/admin.php:962 +msgid "Worker" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:966 +msgid "Site name" +msgstr "Nazwa strony" + +#: mod/admin.php:967 +msgid "Host name" +msgstr "" + +#: mod/admin.php:968 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:969 +msgid "Banner/Logo" +msgstr "Logo" + +#: mod/admin.php:970 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:971 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:972 +msgid "Additional Info" +msgstr "Dodatkowe informacje" + +#: mod/admin.php:972 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:973 +msgid "System language" +msgstr "Język systemu" + +#: mod/admin.php:974 +msgid "System theme" +msgstr "Motyw systemowy" + +#: mod/admin.php:974 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów" + +#: mod/admin.php:975 +msgid "Mobile system theme" +msgstr "Mobilny motyw systemowy" + +#: mod/admin.php:975 +msgid "Theme for mobile devices" +msgstr "Szablon dla mobilnych urządzeń" + +#: mod/admin.php:976 +msgid "SSL link policy" +msgstr "polityka SSL" + +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl." + +#: mod/admin.php:977 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:978 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" +msgstr "Wyłącz pomoc w menu nawigacyjnym " + +#: mod/admin.php:979 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." + +#: mod/admin.php:980 +msgid "Single user instance" +msgstr "Tryb SingleUsera" + +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Ustawia tryb multi lub single dla wybranych użytkowników." + +#: mod/admin.php:981 +msgid "Maximum image size" +msgstr "Maksymalny rozmiar zdjęcia" + +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." + +#: mod/admin.php:982 +msgid "Maximum image length" +msgstr "Maksymalna długość obrazu" + +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu." + +#: mod/admin.php:983 +msgid "JPEG image quality" +msgstr "jakość obrazu JPEG" + +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . " + +#: mod/admin.php:985 +msgid "Register policy" +msgstr "Zarejestruj polisę" + +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" +msgstr "Maksymalnie dziennych rejestracji" + +#: mod/admin.php:986 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: mod/admin.php:987 +msgid "Register text" +msgstr "Zarejestruj tekst" + +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" +msgstr "Konto porzucone od x dni." + +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." + +#: mod/admin.php:989 +msgid "Allowed friend domains" +msgstr "Dozwolone domeny przyjaciół" + +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. " + +#: mod/admin.php:990 +msgid "Allowed email domains" +msgstr "Dozwolone domeny e-mailowe" + +#: mod/admin.php:990 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:991 +msgid "Block public" +msgstr "Blokuj publicznie" + +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:992 +msgid "Force publish" +msgstr "Wymuś publikację" + +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:993 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:994 +msgid "Allow threaded items" +msgstr "Zezwalaj na wątkowanie tematów" + +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "Zezwalaj na nieograniczoną liczbę wątków tematycznych na tej stronie." + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "Prywatne posty domyślnie dla nowych użytkowników" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" + +#: mod/admin.php:996 +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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "Zablokuj wielokrotną rejestrację" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. " + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "Wsparcie OpenID" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "Sprawdzanie pełnej nazwy" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem." + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "Wyrażenia regularne UTF-8" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "Użyj regularnych wyrażeń PHP UTF8" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "Włącz wsparcie OStatus" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "Włączyć obsługę Diaspory" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "Dopuść tylko kontakty Friendrica" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "Weryfikacja SSL" + +#: mod/admin.php:1014 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "Użytkownik proxy" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "Network timeout" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:1018 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "Ścieżka do Temp" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1052 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1054 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1084 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1135 +msgid "No failed updates." +msgstr "Brak błędów aktualizacji." + +#: mod/admin.php:1136 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1141 +msgid "Failed Updates" +msgstr "Błąd aktualizacji" + +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:1178 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\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." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] " %s użytkownik usunięty" +msgstr[1] " %s użytkownicy usunięci" +msgstr[2] " %s usuniętych użytkowników " + +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" +msgstr "Użytkownik '%s' usunięty" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" +msgstr "Użytkownik '%s' odblokowany" + +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' blocked" +msgstr "Użytkownik '%s' zablokowany" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" +msgstr "Data rejestracji" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" +msgstr "Ostatnie logowanie" + +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" +msgstr "Ostatni element" + +#: mod/admin.php:1405 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1406 +msgid "select all" +msgstr "Zaznacz wszystko" + +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" +msgstr "zarejestrowany użytkownik czeka na potwierdzenie" + +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" +msgstr "Użytkownik czekający na trwałe usunięcie" + +#: mod/admin.php:1409 +msgid "Request date" +msgstr "Data prośby" + +#: mod/admin.php:1410 +msgid "No registrations." +msgstr "brak rejestracji" + +#: mod/admin.php:1411 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1413 +msgid "Deny" +msgstr "Odmów" + +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" +msgstr "Zablokuj" + +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" +msgstr "Odblokuj" + +#: mod/admin.php:1417 +msgid "Site admin" +msgstr "Administracja stroną" + +#: mod/admin.php:1418 +msgid "Account expired" +msgstr "Konto wygasło." + +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "Skasowany od" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" + +#: mod/admin.php:1428 +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żytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" + +#: mod/admin.php:1438 +msgid "Name of the new user." +msgstr "Nazwa nowego użytkownika." + +#: mod/admin.php:1439 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1439 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1440 +msgid "Email address of the new user." +msgstr "Adres email nowego użytkownika." + +#: mod/admin.php:1483 +#, php-format +msgid "Plugin %s disabled." +msgstr "Wtyczka %s wyłączona." + +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." +msgstr "Wtyczka %s właczona." + +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" +msgstr "Wyłącz" + +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" +msgstr "Zezwól" + +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" +msgstr "Włącz" + +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " +msgstr "Autor: " + +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1584 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1694 +msgid "No themes found." +msgstr "Nie znaleziono tematu." + +#: mod/admin.php:1772 +msgid "Screenshot" +msgstr "Zrzut ekranu" + +#: mod/admin.php:1832 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1838 +msgid "[Experimental]" +msgstr "[Eksperymentalne]" + +#: mod/admin.php:1839 +msgid "[Unsupported]" +msgstr "[Niewspieralne]" + +#: mod/admin.php:1863 +msgid "Log settings updated." +msgstr "Zaktualizowano ustawienia logów." + +#: mod/admin.php:1895 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1897 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1906 +msgid "Clear" +msgstr "Wyczyść" + +#: mod/admin.php:1911 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1912 +msgid "Log file" +msgstr "Plik logów" + +#: mod/admin.php:1912 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:1913 +msgid "Log level" +msgstr "Poziom logów" + +#: mod/admin.php:1916 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2053 +msgid "Manage Additional Features" +msgstr "" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Nie można uzyskać dostępu do rejestru kontaktów." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Nie można znaleźć wybranego profilu." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Kontakt zaktualizowany" + +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Aktualizacja nagrania kontaktu nie powiodła się." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Kontakt został zablokowany" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Kontakt został odblokowany" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Kontakt jest ignorowany" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Kontakt nie jest ignorowany" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Kontakt został zarchiwizowany" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Czy na pewno chcesz usunąć ten kontakt?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Kontakt został usunięty." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jesteś już znajomym z %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Współdzielisz z %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s współdzieli z tobą" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Aktualizacja przebiegła pomyślnie)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Aktualizacja nie powiodła się)" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Osoby, które możesz znać" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Typ sieci: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Komunikacja przerwana z tym kontaktem!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Widoczność profilu" + +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s" + +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Informacja o kontakcie / Notka" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Edytuj notatki kontaktu" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Zablokuj/odblokuj kontakt" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignoruj kontakt" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Napraw ustawienia adresu" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Zobacz rozmowę" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Ostatnia aktualizacja:" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Zaktualizuj publiczne posty" + +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Aktualizuj teraz" + +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Odblokuj" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Obecnie zablokowany" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Obecnie zignorowany" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Obecnie zarchiwizowany" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:617 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:635 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Sugestie" + +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Sugerowani znajomi" + +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Pokaż wszystkie kontakty" + +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Odblokowany" + +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Pokaż tylko odblokowane kontakty" + +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Zablokowany" + +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Pokaż tylko zablokowane kontakty" + +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Zignorowany" + +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Pokaż tylko ignorowane kontakty" + +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Zarchiwizowane" + +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Pokaż tylko zarchiwizowane kontakty" + +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Ukryty" + +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Pokaż tylko ukryte kontakty" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Wyszukaj w kontaktach" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Archiwum" + +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Przywróć z archiwum" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Zobacz wszystkie kontakty" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Zaawansowane ustawienia kontaktów" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Wzajemna przyjaźń" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "jest twoim fanem" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "jesteś fanem" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Usuń kontakt" + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Nieoczekiwana odpowiedź od strony zdalnej" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Potwierdzenie ukończone poprawnie" + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Zdalna strona zgłoszona:" + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Nieudane lub unieważnione wprowadzenie." + +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Nie można ustawić zdjęcia kontaktu." + +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nie znaleziono użytkownika dla '%s'" + +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Klucz kodujący jest najwyraźniej zepsuty" + +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas." + +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "Nie znaleziono kontaktu na naszej stronie" + +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:633 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie." + +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie" + +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie" + +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s dołączył/a do %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "To wprowadzenie zostało już zaakceptowane." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d wymagany parametr nie został znaleziony w podanej lokacji" +msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" +msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "wprowadzanie zakończone." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Nieodwracalny błąd protokołu." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Profil niedostępny." + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Ochrona przed spamem została wywołana." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Przyjaciele namawiają do spróbowania za 24h." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Niewłaściwy lokalizator " + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Nieprawidłowy adres email." + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ." + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Już się tu przedstawiłeś." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Widocznie jesteście już znajomymi z %s" + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Zły adres URL profilu." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Twoje dane zostały wysłane." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Proszę zalogować się do potwierdzenia wstępu." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Potwierdź" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Ukryj kontakt" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Welcome home %s." + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ." + +#: mod/dfrn_request.php:854 +#, php-format +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:859 +msgid "Friend/Connection Request" +msgstr "Przyjaciel/Prośba o połączenie" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na poniższe:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "Czy %s Cię zna?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Sieć społeczna" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki." + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Twój zidentyfikowany adres:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Kontakt dodany" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Nie można nawiązać połączenia z bazą danych" + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Nie mogę stworzyć tabeli." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Sprawdzanie systemu" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Sprawdź ponownie" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Połączenie z bazą danych" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Baza danych - Nazwa serwera" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Baza danych - Nazwa loginu" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Baza danych - Hasło loginu" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Baza danych - Nazwa" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Adres e-mail administratora strony" + +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Ustawienia strony" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH" + +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "Linia komend PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "Znaleziono wersje PHP:" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "To jest wymagane do dostarczenia wiadomości do pracy." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego ." + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Generuj klucz kodowania" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "Moduł libCurl PHP" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "Moduł PHP-GD" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "Moduł PHP OpenSSL" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "Moduł mysql PHP" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "Moduł mb_string PHP" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Moduł Apache mod_rewrite" + +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." + +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." + +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." + +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." +msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." + +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany." + +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany" + +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić." + +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:500 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php jest zapisywalny" + +#: mod/install.php:510 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:516 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:534 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:557 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera." + +#: mod/install.php:605 +msgid "

                                              What next

                                              " +msgstr "

                                              Co dalej

                                              " + +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Nie można zlokalizować oryginalnej wiadomości." + +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Pusty wpis wyrzucony." + +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Błąd. Post niezapisany." + +#: mod/item.php:992 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" + +#: mod/item.php:994 +#, php-format +msgid "You may visit them online at %s" +msgstr "Możesz ich odwiedzić online u %s" + +#: mod/item.php:995 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." + +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s zaktualizował wpis." + +#: mod/network.php:398 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " + +#: mod/network.php:534 +msgid "Invalid contact." +msgstr "Zły kontakt" + +#: mod/network.php:826 +msgid "Commented Order" +msgstr "Porządek wg komentarzy" + +#: mod/network.php:829 +msgid "Sort by Comment Date" +msgstr "Sortuj po dacie komentarza" + +#: mod/network.php:834 +msgid "Posted Order" +msgstr "Porządek wg wpisów" + +#: mod/network.php:837 +msgid "Sort by Post Date" +msgstr "Sortuj po dacie posta" + +#: mod/network.php:848 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:856 +msgid "New" +msgstr "Nowy" + +#: mod/network.php:859 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:867 +msgid "Shared Links" +msgstr "Współdzielone linki" + +#: mod/network.php:870 +msgid "Interesting Links" +msgstr "Interesujące linki" + +#: mod/network.php:878 +msgid "Starred" +msgstr "Ulubione" + +#: mod/network.php:881 +msgid "Favourite Posts" +msgstr "Ulubione posty" + +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} chce być Twoim znajomym" + +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} wysyła Ci wiadomość" + +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} żądana rejestracja" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "brak kontaktów" + +#: object/Item.php:370 +msgid "via" +msgstr "przez" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" #: view/theme/quattro/config.php:67 msgid "Alignment" @@ -7979,6 +8812,10 @@ msgstr "Lewo" msgid "Center" msgstr "Środek" +#: view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Zestaw kolorów" + #: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "" @@ -7987,95 +8824,46 @@ msgstr "" msgid "Textareas font size" msgstr "" -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Zestaw kolorów" - -#: 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 "Strony społecznościowe" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 msgid "Community Profiles" msgstr "" -#: 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 "Połączone serwisy" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Znajdź znajomych" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 msgid "Last users" msgstr "Ostatni użytkownicy" -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ostatnie zdjęcia" +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +msgid "Find Friends" +msgstr "Znajdź znajomych" -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ostatnie polubienia" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Twoje kontakty" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Twoje osobiste zdjęcia" - -#: view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" msgstr "" -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +msgid "Connect Services" +msgstr "Połączone serwisy" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" msgstr "" -#: view/theme/vier/config.php:59 +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "" +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Strony społecznościowe" + +#: view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "" + #: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" @@ -8103,3 +8891,56 @@ msgstr "" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "Usunąć ten element?" + +#: boot.php:973 +msgid "show fewer" +msgstr "Pokaż mniej" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Załóż nowe konto" + +#: boot.php:1796 +msgid "Password: " +msgstr "Hasło:" + +#: boot.php:1797 +msgid "Remember me" +msgstr "Zapamiętaj mnie" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "Lub zaloguj się korzystając z OpenID:" + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "Zapomniałeś swojego hasła?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "" + +#: boot.php:1810 +msgid "terms of service" +msgstr "warunki użytkowania" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "polityka prywatności" + +#: index.php:451 +msgid "toggle mobile" +msgstr "przełącz na mobilny" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index 90cec9965..ff8d8f015 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -5,255 +5,757 @@ function string_plural_select_pl($n){ return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", - 2 => "", +$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; +$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; +$a->strings["Connect"] = "Połącz"; +$a->strings["%d invitation available"] = array( + 0 => "%d zaproszenie dostępne", + 1 => "%d zaproszeń dostępnych", + 2 => "%d zaproszenia dostępne", ); -$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; -$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu."; -$a->strings["Contact updated."] = "Kontakt zaktualizowany"; -$a->strings["Failed to update contact record."] = "Aktualizacja nagrania kontaktu nie powiodła się."; -$a->strings["Permission denied."] = "Brak uprawnień."; -$a->strings["Contact has been blocked"] = "Kontakt został zablokowany"; -$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany"; -$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; -$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; -$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; -$a->strings["Contact has been unarchived"] = ""; -$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; -$a->strings["Yes"] = "Tak"; -$a->strings["Cancel"] = "Anuluj"; -$a->strings["Contact has been removed."] = "Kontakt został usunięty."; -$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; -$a->strings["You are sharing with %s"] = "Współdzielisz z %s"; -$a->strings["%s is sharing with you"] = "%s współdzieli z tobą"; -$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu"; -$a->strings["Never"] = "Nigdy"; -$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)"; -$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; -$a->strings["Suggest friends"] = "Osoby, które możesz znać"; -$a->strings["Network type: %s"] = "Typ sieci: %s"; +$a->strings["Find People"] = "Znajdź ludzi"; +$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; +$a->strings["Connect/Follow"] = "Połącz/Obserwuj"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo: Jan Kowalski, Wędkarstwo"; +$a->strings["Find"] = "Znajdź"; +$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; +$a->strings["Similar Interests"] = "Podobne zainteresowania"; +$a->strings["Random Profile"] = "Domyślny profil"; +$a->strings["Invite Friends"] = "Zaproś znajomych"; +$a->strings["Networks"] = "Sieci"; +$a->strings["All Networks"] = "Wszystkie Sieci"; +$a->strings["Saved Folders"] = "Zapisane foldery"; +$a->strings["Everything"] = "Wszystko"; +$a->strings["Categories"] = "Kategorie"; $a->strings["%d contact in common"] = array( 0 => "", 1 => "", 2 => "", ); -$a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; -$a->strings["Unblock"] = "Odblokuj"; -$a->strings["Block"] = "Zablokuj"; -$a->strings["Toggle Blocked status"] = ""; -$a->strings["Unignore"] = "Odblokuj"; -$a->strings["Ignore"] = "Ignoruj"; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Unarchive"] = "Przywróć z archiwum"; -$a->strings["Archive"] = "Archiwum"; -$a->strings["Toggle Archive status"] = ""; -$a->strings["Repair"] = "Napraw"; -$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; -$a->strings["Communications lost with this contact!"] = "Komunikacja przerwana z tym kontaktem!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Contact Editor"] = "Edytor kontaktów"; -$a->strings["Submit"] = "Potwierdź"; -$a->strings["Profile Visibility"] = "Widoczność profilu"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"; -$a->strings["Contact Information / Notes"] = "Informacja o kontakcie / Notka"; -$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; -$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; -$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; -$a->strings["Ignore contact"] = "Ignoruj kontakt"; -$a->strings["Repair URL settings"] = "Napraw ustawienia adresu"; -$a->strings["View conversations"] = "Zobacz rozmowę"; -$a->strings["Delete contact"] = "Usuń kontakt"; -$a->strings["Last update:"] = "Ostatnia aktualizacja:"; -$a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; -$a->strings["Update now"] = "Aktualizuj teraz"; -$a->strings["Currently blocked"] = "Obecnie zablokowany"; -$a->strings["Currently ignored"] = "Obecnie zignorowany"; -$a->strings["Currently archived"] = "Obecnie zarchiwizowany"; -$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; -$a->strings["Notification for new posts"] = ""; -$a->strings["Send a notification of every new post of this contact"] = ""; -$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["Profile URL"] = ""; -$a->strings["Suggestions"] = "Sugestie"; -$a->strings["Suggest potential friends"] = "Sugerowani znajomi"; -$a->strings["All Contacts"] = "Wszystkie kontakty"; -$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; -$a->strings["Unblocked"] = "Odblokowany"; -$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty"; -$a->strings["Blocked"] = "Zablokowany"; -$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty"; -$a->strings["Ignored"] = "Zignorowany"; -$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty"; -$a->strings["Archived"] = "Zarchiwizowane"; -$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; -$a->strings["Hidden"] = "Ukryty"; -$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; -$a->strings["Contacts"] = "Kontakty"; -$a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; -$a->strings["Finding: "] = "Znalezione:"; -$a->strings["Find"] = "Znajdź"; -$a->strings["Update"] = "Zaktualizuj"; -$a->strings["Delete"] = "Usuń"; -$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; -$a->strings["is a fan of yours"] = "jest twoim fanem"; -$a->strings["you are a fan of"] = "jesteś fanem"; -$a->strings["Edit contact"] = "Edytuj kontakt"; -$a->strings["No profile"] = "Brak profilu"; -$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; -$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:"; -$a->strings["Post successful."] = "Post dodany pomyślnie"; -$a->strings["Permission denied"] = "Odmowa dostępu"; -$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika."; -$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu"; -$a->strings["Profile"] = "Profil"; -$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; -$a->strings["Visible To"] = "Widoczne dla"; -$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"; -$a->strings["Item not found."] = "Element nie znaleziony."; -$a->strings["Public access denied."] = "Publiczny dostęp zabroniony"; -$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta"; -$a->strings["Item has been removed."] = "Przedmiot został usunięty"; -$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; -$a->strings["New Member Checklist"] = "Lista nowych członków"; -$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; -$a->strings["Getting Started"] = "Pierwsze kroki"; -$a->strings["Friendica Walk-Through"] = ""; -$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."] = ""; -$a->strings["Settings"] = "Ustawienia"; -$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; -$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."] = ""; -$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."] = ""; -$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; -$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; -$a->strings["Edit Your Profile"] = "Edytuj własny 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."] = ""; -$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; -$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."] = ""; -$a->strings["Connecting"] = "Łączę się..."; -$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."] = ""; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; -$a->strings["Importing Emails"] = "Importuję emaile..."; -$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"] = ""; -$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; -$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."] = ""; -$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; -$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."] = ""; -$a->strings["Finding New People"] = "Poszukiwanie Nowych Ludzi"; -$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."] = ""; -$a->strings["Groups"] = "Grupy"; -$a->strings["Group Your Contacts"] = "Grupuj Swoje 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."] = ""; -$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; -$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."] = ""; -$a->strings["Getting Help"] = "Otrzymywanie pomocy"; -$a->strings["Go to the Help Section"] = "Idź do części o pomocy"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; -$a->strings["OpenID protocol error. No ID returned."] = "błąd OpenID . Brak zwróconego ID. "; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie."; +$a->strings["show more"] = "Pokaż więcej"; +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; +$a->strings["Male"] = "Mężczyzna"; +$a->strings["Female"] = "Kobieta"; +$a->strings["Currently Male"] = "Aktualnie Mężczyzna"; +$a->strings["Currently Female"] = "Aktualnie Kobieta"; +$a->strings["Mostly Male"] = "Bardziej Mężczyzna"; +$a->strings["Mostly Female"] = "Bardziej Kobieta"; +$a->strings["Transgender"] = "Transpłciowy"; +$a->strings["Intersex"] = "Międzypłciowy"; +$a->strings["Transsexual"] = "Transseksualista"; +$a->strings["Hermaphrodite"] = "Hermafrodyta"; +$a->strings["Neuter"] = "Bezpłciowy"; +$a->strings["Non-specific"] = "Niespecyficzne"; +$a->strings["Other"] = "Inne"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Males"] = "Mężczyźni"; +$a->strings["Females"] = "Kobiety"; +$a->strings["Gay"] = "Gej"; +$a->strings["Lesbian"] = "Lesbijka"; +$a->strings["No Preference"] = "Brak preferencji"; +$a->strings["Bisexual"] = "Biseksualny"; +$a->strings["Autosexual"] = "Niezidentyfikowany"; +$a->strings["Abstinent"] = "Abstynent"; +$a->strings["Virgin"] = "Dziewica"; +$a->strings["Deviant"] = "Zboczeniec"; +$a->strings["Fetish"] = "Fetysz"; +$a->strings["Oodles"] = "Nadmiar"; +$a->strings["Nonsexual"] = "Nieseksualny"; +$a->strings["Single"] = "Singiel"; +$a->strings["Lonely"] = "Samotny"; +$a->strings["Available"] = "Dostępny"; +$a->strings["Unavailable"] = "Niedostępny"; +$a->strings["Has crush"] = ""; +$a->strings["Infatuated"] = "zakochany"; +$a->strings["Dating"] = "Randki"; +$a->strings["Unfaithful"] = "Niewierny"; +$a->strings["Sex Addict"] = "Uzależniony od seksu"; +$a->strings["Friends"] = "Przyjaciele"; +$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; +$a->strings["Casual"] = "Przypadkowy"; +$a->strings["Engaged"] = "Zaręczeni"; +$a->strings["Married"] = "Małżeństwo"; +$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim"; +$a->strings["Partners"] = "Partnerzy"; +$a->strings["Cohabiting"] = "Konkubinat"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "Szczęśliwy"; +$a->strings["Not looking"] = ""; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Zdradzony"; +$a->strings["Separated"] = "W separacji"; +$a->strings["Unstable"] = "Niestabilny"; +$a->strings["Divorced"] = "Rozwiedzeni"; +$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a"; +$a->strings["Widowed"] = "Wdowiec"; +$a->strings["Uncertain"] = "Nieokreślony"; +$a->strings["It's complicated"] = "To skomplikowane"; +$a->strings["Don't care"] = "Nie obchodzi mnie to"; +$a->strings["Ask me"] = "Zapytaj mnie "; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'"; +$a->strings["Logged out."] = "Wyloguj"; $a->strings["Login failed."] = "Niepowodzenie logowania"; -$a->strings["Image uploaded but image cropping failed."] = "Obrazek załadowany, ale oprawanie powiodła się."; -$a->strings["Profile Photos"] = "Zdjęcia profilowe"; -$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu."; -$a->strings["Image exceeds size limit of %s"] = ""; -$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; -$a->strings["Upload File:"] = "Wyślij plik:"; -$a->strings["Select a profile:"] = "Wybierz profil:"; -$a->strings["Upload"] = "Załaduj"; -$a->strings["or"] = "lub"; -$a->strings["skip this step"] = "Pomiń ten krok"; -$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu"; -$a->strings["Crop Image"] = "Przytnij zdjęcie"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."; -$a->strings["Done Editing"] = "Zakończ Edycję "; -$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie "; -$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się"; +$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:"] = "Komunikat o błędzie:"; +$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."] = ""; +$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; +$a->strings["Everybody"] = "Wszyscy"; +$a->strings["edit"] = "edytuj"; +$a->strings["Groups"] = "Grupy"; +$a->strings["Edit groups"] = ""; +$a->strings["Edit group"] = "Edytuj grupy"; +$a->strings["Create a new group"] = "Stwórz nową grupę"; +$a->strings["Group Name: "] = "Nazwa grupy: "; +$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; +$a->strings["add"] = "dodaj"; +$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori"; +$a->strings["Block immediately"] = "Zablokować natychmiast "; +$a->strings["Shady, spammer, self-marketer"] = ""; +$a->strings["Known to me, but no opinion"] = "Znam, ale nie mam zdania"; +$a->strings["OK, probably harmless"] = "Ok, bez problemów"; +$a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie"; +$a->strings["Frequently"] = "Jak najczęściej"; +$a->strings["Hourly"] = "Godzinowo"; +$a->strings["Twice daily"] = "Dwa razy dziennie"; +$a->strings["Daily"] = "Dziennie"; +$a->strings["Weekly"] = "Tygodniowo"; +$a->strings["Monthly"] = "Miesięcznie"; +$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!"] = ""; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Hubzilla/Redmatrix"] = ""; +$a->strings["Post to Email"] = "Wyślij poprzez email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?"; +$a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; +$a->strings["show"] = "pokaż"; +$a->strings["don't show"] = "nie pokazuj"; +$a->strings["CC: email addresses"] = "CC: adresy e-mail"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Uprawnienia"; +$a->strings["Close"] = "Zamknij"; $a->strings["photo"] = "zdjęcie"; $a->strings["status"] = "status"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Tag removed"] = "Tag usunięty"; -$a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; -$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia"; -$a->strings["Remove"] = "Usuń"; -$a->strings["Save to Folder:"] = "Zapisz w folderze:"; -$a->strings["- select -"] = "- wybierz -"; -$a->strings["Save"] = "Zapisz"; -$a->strings["You already added this contact."] = ""; -$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:"; -$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; -$a->strings["No"] = "Nie"; -$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; -$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; -$a->strings["Submit Request"] = "Wyślij zgłoszenie"; -$a->strings["Contact added"] = "Kontakt dodany"; -$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; -$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony."; +$a->strings["event"] = "wydarzenie"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["[no subject]"] = "[bez tematu]"; $a->strings["Wall Photos"] = "Tablica zdjęć"; -$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"; -$a->strings["You may visit them online at %s"] = "Możesz ich odwiedzić online u %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; -$a->strings["%s posted an update."] = "%s zaktualizował wpis."; -$a->strings["Group created."] = "Grupa utworzona."; -$a->strings["Could not create group."] = "Nie mogę stworzyć grupy"; -$a->strings["Group not found."] = "Nie znaleziono grupy"; -$a->strings["Group name changed."] = "Nazwa grupy zmieniona"; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; -$a->strings["Group Name: "] = "Nazwa grupy: "; -$a->strings["Group removed."] = "Grupa usunięta."; -$a->strings["Unable to remove group."] = "Nie można usunąć grupy."; -$a->strings["Group Editor"] = "Edytor grupy"; -$a->strings["Members"] = "Członkowie"; -$a->strings["You must be logged in to use addons. "] = "Musisz się zalogować, aby móc używać dodatkowych wtyczek."; -$a->strings["Applications"] = "Aplikacje"; -$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; -$a->strings["Profile not found."] = "Nie znaleziono profilu."; -$a->strings["Contact not found."] = "Kontakt nie znaleziony"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana"; -$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej"; -$a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie"; -$a->strings["Remote site reported: "] = "Zdalna strona zgłoszona:"; -$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."; -$a->strings["Introduction failed or was revoked."] = "Nieudane lub unieważnione wprowadzenie."; -$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu."; +$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować."; +$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["Error decoding account file"] = "Błąd podczas odczytu pliku konta"; +$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!"] = "Użytkownik '%s' już istnieje na tym serwerze!"; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "Nie zaimportowano %d kontaktu.", + 1 => "Nie zaimportowano %d kontaktów.", + 2 => "Nie zaimportowano %d kontaktów.", +); +$a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."; +$a->strings["Miscellaneous"] = "Różny"; +$a->strings["Birthday:"] = "Urodziny:"; +$a->strings["Age: "] = "Wiek: "; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nigdy"; +$a->strings["less than a second ago"] = "mniej niż sekundę temu"; +$a->strings["year"] = "rok"; +$a->strings["years"] = "lata"; +$a->strings["month"] = "miesiąc"; +$a->strings["months"] = "miesiące"; +$a->strings["week"] = "tydzień"; +$a->strings["weeks"] = "tygodnie"; +$a->strings["day"] = "dzień"; +$a->strings["days"] = "dni"; +$a->strings["hour"] = "godzina"; +$a->strings["hours"] = "godziny"; +$a->strings["minute"] = "minuta"; +$a->strings["minutes"] = "minuty"; +$a->strings["second"] = "sekunda"; +$a->strings["seconds"] = "sekundy"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; +$a->strings["%s's birthday"] = "Urodziny %s"; +$a->strings["Happy Birthday %s"] = "Urodziny %s"; +$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; +$a->strings["Thank You,"] = "Dziękuję,"; +$a->strings["%s Administrator"] = "%s administrator"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; +$a->strings["noreply"] = "brak odpowiedzi"; +$a->strings["%s "] = ""; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s"; +$a->strings["a private message"] = "prywatna wiadomość"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %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 skomentował rozmowę którą śledzisz"; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu"; +$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:Notify] %s oznaczył cię"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczył/a cię w %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/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"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."; +$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:"] = "Imię:"; +$a->strings["Photo:"] = "Zdjęcie:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has accepted 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 without 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["Please visit %s if you wish to make any changes to this relationship."] = ""; +$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["l F d, Y \\@ g:i A"] = ""; +$a->strings["Starts:"] = "Start:"; +$a->strings["Finishes:"] = "Wykończenia:"; +$a->strings["Location:"] = "Lokalizacja"; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Niedziela"; +$a->strings["Monday"] = "Poniedziałek"; +$a->strings["Tuesday"] = "Wtorek"; +$a->strings["Wednesday"] = "Środa"; +$a->strings["Thursday"] = "Czwartek"; +$a->strings["Friday"] = "Piątek"; +$a->strings["Saturday"] = "Sobota"; +$a->strings["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Maj"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "Styczeń"; +$a->strings["February"] = "Luty"; +$a->strings["March"] = "Marzec"; +$a->strings["April"] = "Kwiecień"; +$a->strings["June"] = "Czerwiec"; +$a->strings["July"] = "Lipiec"; +$a->strings["August"] = "Sierpień"; +$a->strings["September"] = "Wrzesień"; +$a->strings["October"] = "Październik"; +$a->strings["November"] = "Listopad"; +$a->strings["December"] = "Grudzień"; +$a->strings["today"] = ""; +$a->strings["all-day"] = ""; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "d, M d "; +$a->strings["Edit event"] = "Edytuj wydarzenie"; +$a->strings["link to source"] = "link do źródła"; +$a->strings["Export"] = ""; +$a->strings["Export calendar as ical"] = ""; +$a->strings["Export calendar as csv"] = ""; +$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; +$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Wyloguj się"; +$a->strings["End this session"] = "Zakończ sesję"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Twoja strona profilowa"; +$a->strings["Photos"] = "Zdjęcia"; +$a->strings["Your photos"] = "Twoje zdjęcia"; +$a->strings["Videos"] = "Filmy"; +$a->strings["Your videos"] = ""; +$a->strings["Events"] = "Wydarzenia"; +$a->strings["Your events"] = "Twoje wydarzenia"; +$a->strings["Personal notes"] = "Osobiste notatki"; +$a->strings["Your personal notes"] = ""; +$a->strings["Login"] = "Login"; +$a->strings["Sign in"] = "Zaloguj się"; +$a->strings["Home"] = "Dom"; +$a->strings["Home Page"] = "Strona startowa"; +$a->strings["Register"] = "Zarejestruj"; +$a->strings["Create an account"] = "Załóż konto"; +$a->strings["Help"] = "Pomoc"; +$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; +$a->strings["Apps"] = "Aplikacje"; +$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; +$a->strings["Search"] = "Szukaj"; +$a->strings["Search site content"] = "Przeszukaj zawartość strony"; +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Kontakty"; +$a->strings["Community"] = "Społeczność"; +$a->strings["Conversations on this site"] = "Rozmowy na tej stronie"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; +$a->strings["Directory"] = "Katalog"; +$a->strings["People directory"] = ""; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Sieć"; +$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Wstępy"; +$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych"; +$a->strings["Notifications"] = "Powiadomienia"; +$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; +$a->strings["Mark as seen"] = "Oznacz jako przeczytane"; +$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; +$a->strings["Messages"] = "Wiadomości"; +$a->strings["Private mail"] = "Prywatne maile"; +$a->strings["Inbox"] = "Odebrane"; +$a->strings["Outbox"] = "Wysłane"; +$a->strings["New Message"] = "Nowa wiadomość"; +$a->strings["Manage"] = "Zarządzaj"; +$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Settings"] = "Ustawienia"; +$a->strings["Account settings"] = "Ustawienia konta"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile"; +$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; +$a->strings["Admin"] = "Administator"; +$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; +$a->strings["Navigation"] = "Nawigacja"; +$a->strings["Site map"] = "Mapa strony"; +$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; +$a->strings["Welcome "] = "Witaj "; +$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe."; +$a->strings["Welcome back "] = "Witaj ponownie "; +$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["System"] = "System"; +$a->strings["Personal"] = "Osobiste"; +$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s"; +$a->strings["%s created a new post"] = "%s dodał nowy wpis"; +$a->strings["%s liked %s's post"] = "%s polubił wpis %s"; +$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s"; +$a->strings["%s is attending %s's event"] = ""; +$a->strings["%s is not attending %s's event"] = ""; +$a->strings["%s may attend %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; +$a->strings["Friend Suggestion"] = "Propozycja znajomych"; +$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; +$a->strings["New Follower"] = "Nowy obserwator"; +$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."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(bez tematu)"; +$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora"; +$a->strings["Attachments:"] = "Załączniki:"; +$a->strings["view full size"] = "Zobacz w pełnym wymiarze"; +$a->strings["View Profile"] = "Zobacz profil"; +$a->strings["View Status"] = "Zobacz status"; +$a->strings["View Photos"] = "Zobacz zdjęcia"; +$a->strings["Network Posts"] = ""; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = ""; +$a->strings["Send PM"] = "Wyślij prywatną wiadomość"; +$a->strings["Poke"] = "Zaczepka"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = ""; +$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["Image/photo"] = "Obrazek/zdjęcie"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 napisał:"; +$a->strings["Encrypted content"] = "Szyfrowana treść"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s"; -$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej zepsuty"; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."; -$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie"; -$a->strings["Site public key not available in contact record for URL %s."] = ""; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."; -$a->strings["Unable to set your contact credentials on our system."] = "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"; -$a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"; -$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s"; -$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; -$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; -$a->strings["Do you really want to delete this video?"] = ""; -$a->strings["Delete Video"] = ""; -$a->strings["No videos selected"] = "Nie zaznaczono filmów"; -$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; -$a->strings["View Video"] = "Zobacz film"; -$a->strings["View Album"] = "Zobacz album"; -$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; -$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'go %3\$s przy użyciu %4\$s"; -$a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana."; -$a->strings["Suggest Friends"] = "Zaproponuj znajomych"; -$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; -$a->strings["Invalid request."] = ""; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Likes"] = "Polubień"; +$a->strings["Dislikes"] = "Nie lubień"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Select"] = "Wybierz"; +$a->strings["Delete"] = "Usuń"; +$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s"; +$a->strings["Categories:"] = "Kategorie:"; +$a->strings["Filed under:"] = "Zapisano pod:"; +$a->strings["%s from %s"] = "%s od %s"; +$a->strings["View in context"] = "Zobacz w kontekście"; +$a->strings["Please wait"] = "Proszę czekać"; +$a->strings["remove"] = "usuń"; +$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy"; +$a->strings["Follow Thread"] = "Śledź wątek"; +$a->strings["%s likes this."] = "%s lubi to."; +$a->strings["%s doesn't like this."] = "%s nie lubi tego."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "i"; +$a->strings[", and %d other people"] = ", i %d innych ludzi"; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people attend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Widoczne dla wszystkich"; +$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:"; +$a->strings["Please enter a video link/URL:"] = "Podaj link do filmu"; +$a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki"; +$a->strings["Tag term:"] = ""; +$a->strings["Save to Folder:"] = "Zapisz w folderze:"; +$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?"; +$a->strings["Delete item(s)?"] = "Usunąć pozycję (pozycje)?"; +$a->strings["Share"] = "Podziel się"; +$a->strings["Upload photo"] = "Wyślij zdjęcie"; +$a->strings["upload photo"] = "dodaj zdjęcie"; +$a->strings["Attach file"] = "Przyłącz plik"; +$a->strings["attach file"] = "załącz plik"; +$a->strings["Insert web link"] = "Wstaw link"; +$a->strings["web link"] = "Adres www"; +$a->strings["Insert video link"] = "Wstaw link wideo"; +$a->strings["video link"] = "link do filmu"; +$a->strings["Insert audio link"] = "Wstaw link audio"; +$a->strings["audio link"] = "Link audio"; +$a->strings["Set your location"] = "Ustaw swoje położenie"; +$a->strings["set location"] = "wybierz lokalizację"; +$a->strings["Clear browser location"] = "Wyczyść położenie przeglądarki"; +$a->strings["clear location"] = "wyczyść lokalizację"; +$a->strings["Set title"] = "Ustaw tytuł"; +$a->strings["Categories (comma-separated list)"] = "Kategorie (lista słów oddzielonych przecinkiem)"; +$a->strings["Permission settings"] = "Ustawienia uprawnień"; +$a->strings["permissions"] = "zezwolenia"; +$a->strings["Public post"] = "Publiczny post"; +$a->strings["Preview"] = "Podgląd"; +$a->strings["Cancel"] = "Anuluj"; +$a->strings["Post to Groups"] = "Wstaw na strony grup"; +$a->strings["Post to Contacts"] = "Wstaw do kontaktów"; +$a->strings["Private post"] = "Prywatne posty"; +$a->strings["Message"] = "Wiadomość"; +$a->strings["Browser"] = ""; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["%s\\'s birthday"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = ""; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = "Podgląd posta"; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = "Szukanie wg daty"; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = "Filtrowanie grupowe"; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Zapisane wyszukiwania"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = "Oznaczanie"; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = "Kategorie postów"; +$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = "Oznacz posty gwiazdką"; +$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["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; +$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; +$a->strings["No compatible communication protocols or feeds were discovered."] = ""; +$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; +$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; +$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; +$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; +$a->strings["Requested account is not available."] = ""; +$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; +$a->strings["Edit profile"] = "Edytuj profil"; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; +$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; +$a->strings["Create New Profile"] = "Stwórz nowy profil"; +$a->strings["Profile Image"] = "Obraz profilowy"; +$a->strings["visible to everybody"] = "widoczne dla wszystkich"; +$a->strings["Edit visibility"] = "Edytuj widoczność"; +$a->strings["Gender:"] = "Płeć:"; +$a->strings["Status:"] = "Status"; +$a->strings["Homepage:"] = "Strona główna:"; +$a->strings["About:"] = "O:"; +$a->strings["XMPP:"] = ""; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "g A I F d"; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[dziś]"; +$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; +$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; +$a->strings["[No description]"] = "[Brak opisu]"; +$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; +$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; +$a->strings["Full Name:"] = "Imię i nazwisko:"; +$a->strings["j F, Y"] = "d M, R"; +$a->strings["j F"] = "d M"; +$a->strings["Age:"] = "Wiek:"; +$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Interesują mnie:"; +$a->strings["Hometown:"] = "Miasto rodzinne:"; +$a->strings["Tags:"] = "Tagi:"; +$a->strings["Political Views:"] = "Poglądy polityczne:"; +$a->strings["Religion:"] = "Religia:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; +$a->strings["Likes:"] = "Lubi:"; +$a->strings["Dislikes:"] = ""; +$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; +$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; +$a->strings["Books, literature:"] = "Książki, literatura:"; +$a->strings["Television:"] = "Telewizja:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Love/Romance:"] = "Miłość/Romans:"; +$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; +$a->strings["School/education:"] = "Szkoła/edukacja:"; +$a->strings["Forums:"] = ""; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Zaawansowany"; +$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; +$a->strings["Profile Details"] = "Szczegóły profilu"; +$a->strings["Photo Albums"] = "Albumy zdjęć"; +$a->strings["Personal Notes"] = "Osobiste notatki"; +$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; +$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]"; +$a->strings["Item not found."] = "Element nie znaleziony."; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Yes"] = "Tak"; +$a->strings["Permission denied."] = "Brak uprawnień."; +$a->strings["Archives"] = "Archiwum"; +$a->strings["Embedded content"] = "Osadzona zawartość"; +$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "następujący"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "przestań obserwować"; +$a->strings["newer"] = "nowsze"; +$a->strings["older"] = "starsze"; +$a->strings["prev"] = "poprzedni"; +$a->strings["first"] = "pierwszy"; +$a->strings["last"] = "ostatni"; +$a->strings["next"] = "następny"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Brak kontaktów"; +$a->strings["%d Contact"] = array( + 0 => "%d kontakt", + 1 => "%d kontaktów", + 2 => "%d kontakty", +); +$a->strings["View Contacts"] = "widok kontaktów"; +$a->strings["Save"] = "Zapisz"; +$a->strings["poke"] = "zaczep"; +$a->strings["poked"] = "zaczepiony"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = "spoliczkuj"; +$a->strings["slapped"] = "spoliczkowany"; +$a->strings["finger"] = "dotknąć"; +$a->strings["fingered"] = "dotknięty"; +$a->strings["rebuff"] = "odprawiać"; +$a->strings["rebuffed"] = "odprawiony"; +$a->strings["happy"] = "szczęśliwy"; +$a->strings["sad"] = "smutny"; +$a->strings["mellow"] = "spokojny"; +$a->strings["tired"] = "zmęczony"; +$a->strings["perky"] = "pewny siebie"; +$a->strings["angry"] = "wściekły"; +$a->strings["stupified"] = "odurzony"; +$a->strings["puzzled"] = "zdziwiony"; +$a->strings["interested"] = "interesujący"; +$a->strings["bitter"] = "zajadły"; +$a->strings["cheerful"] = "wesoły"; +$a->strings["alive"] = "żywy"; +$a->strings["annoyed"] = "irytujący"; +$a->strings["anxious"] = "zazdrosny"; +$a->strings["cranky"] = "zepsuty"; +$a->strings["disturbed"] = "przeszkadzający"; +$a->strings["frustrated"] = "rozbity"; +$a->strings["motivated"] = "zmotywowany"; +$a->strings["relaxed"] = "zrelaksowany"; +$a->strings["surprised"] = "zaskoczony"; +$a->strings["View Video"] = "Zobacz film"; +$a->strings["bytes"] = "bajty"; +$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "aktywność"; +$a->strings["comment"] = array( + 0 => "", + 1 => "", + 2 => "komentarz", +); +$a->strings["post"] = "post"; +$a->strings["Item filed"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione."; +$a->strings["An invitation is required."] = "Wymagane zaproszenie."; +$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; +$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; +$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje"; +$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy."; +$a->strings["Name too short."] = "Nazwa jest za krótka."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; +$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; +$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; +$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; +$a->strings["default"] = "standardowe"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; +$a->strings["Profile Photos"] = "Zdjęcia profilowe"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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"] = "Szczegóły rejestracji dla %s"; +$a->strings["Post successful."] = "Post dodany pomyślnie"; +$a->strings["Access denied."] = "Brak dostępu"; +$a->strings["Welcome to %s"] = "Witamy w %s"; +$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych."; +$a->strings["System Notifications"] = "Powiadomienia systemowe"; +$a->strings["Remove term"] = "Usuń wpis"; +$a->strings["Public access denied."] = "Publiczny dostęp zabroniony"; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Brak wyników."; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Results for: %s"] = ""; +$a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; +$a->strings["running at web location"] = "otwierane na serwerze"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; +$a->strings["Installed plugins/addons/apps:"] = "Zainstalowane pluginy/dodatki/aplikacje:"; +$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji"; $a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; $a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres 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."] = ""; @@ -273,57 +775,157 @@ $a->strings["Forgot your Password?"] = "Zapomniałeś hasła?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; $a->strings["Nickname or Email: "] = "Pseudonim lub Email:"; $a->strings["Reset"] = "Zresetuj"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s"; -$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; -$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość"; -$a->strings["{0} requested registration"] = "{0} żądana rejestracja"; -$a->strings["No contacts."] = "brak kontaktów"; -$a->strings["View Contacts"] = "widok kontaktów"; -$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania."; -$a->strings["Discard"] = "Odrzuć"; -$a->strings["System"] = "System"; -$a->strings["Network"] = "Sieć"; -$a->strings["Personal"] = "Osobiste"; -$a->strings["Home"] = "Dom"; -$a->strings["Introductions"] = "Wstępy"; -$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; -$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania"; -$a->strings["Notification type: "] = "Typ zawiadomień:"; -$a->strings["Friend Suggestion"] = "Propozycja znajomych"; -$a->strings["suggested by %s"] = "zaproponowane przez %s"; -$a->strings["Post a new friend activity"] = "Pisz o nowej działalności przyjaciela"; -$a->strings["if applicable"] = "jeśli odpowiednie"; -$a->strings["Approve"] = "Zatwierdź"; -$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; -$a->strings["yes"] = "tak"; -$a->strings["no"] = "nie"; -$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"] = "Znajomy"; -$a->strings["Sharer"] = "Udostępniający/a"; -$a->strings["Fan/Admirer"] = "Fan"; -$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; -$a->strings["New Follower"] = "Nowy obserwator"; -$a->strings["Location:"] = "Lokalizacja"; -$a->strings["About:"] = "O:"; -$a->strings["Tags:"] = "Tagi:"; -$a->strings["Gender:"] = "Płeć:"; -$a->strings["No introductions."] = "Brak wstępu."; -$a->strings["Notifications"] = "Powiadomienia"; -$a->strings["%s liked %s's post"] = "%s polubił wpis %s"; -$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s"; -$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; -$a->strings["%s created a new post"] = "%s dodał nowy wpis"; -$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s"; -$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych"; -$a->strings["Network Notifications"] = "Powiadomienia z sieci"; -$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych."; -$a->strings["System Notifications"] = "Powiadomienia systemowe"; -$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych"; -$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; -$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu"; -$a->strings["Home Notifications"] = "Powiadomienia z instancji"; +$a->strings["No profile"] = "Brak profilu"; +$a->strings["Help:"] = "Pomoc:"; +$a->strings["Not Found"] = "Nie znaleziono"; +$a->strings["Page not found."] = "Strona nie znaleziona."; +$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie "; +$a->strings["Visible to:"] = "Widoczne dla:"; +$a->strings["OpenID protocol error. No ID returned."] = "błąd OpenID . Brak zwróconego ID. "; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."; +$a->strings["Import"] = "Import"; +$a->strings["Move account"] = "Przenieś konto"; +$a->strings["You can import an account from another Friendica server."] = ""; +$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."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""; +$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; +$a->strings["Edit contact"] = "Edytuj kontakt"; +$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy"; +$a->strings["Export account"] = "Eksportuj konto"; +$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."] = ""; +$a->strings["Export all"] = "Eksportuj wszystko"; +$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)"] = ""; +$a->strings["Export personal data"] = "Eksportuje dane personalne"; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email."; +$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane."; +$a->strings["%d message sent."] = array( + 0 => "%d wiadomość wysłana.", + 1 => "%d wiadomości wysłane.", + 2 => "%d wysłano .", +); +$a->strings["You have no more invitations available"] = "Nie masz więcej zaproszeń"; +$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."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public 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."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Send invitations"] = "Wyślij zaproszenia"; +$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy email, jeden na linijkę:"; +$a->strings["Your message:"] = "Twoja wiadomość:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["Submit"] = "Potwierdź"; +$a->strings["Files"] = "Pliki"; +$a->strings["Permission denied"] = "Odmowa dostępu"; +$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika."; +$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu"; +$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; +$a->strings["Visible To"] = "Widoczne dla"; +$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"; +$a->strings["Tag removed"] = "Tag usunięty"; +$a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; +$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia"; +$a->strings["Remove"] = "Usuń"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = ""; +$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."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Dodaj"; +$a->strings["No entries."] = "Brak wpisów."; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["- select -"] = "- wybierz -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = "Element nie dostępny."; +$a->strings["Item was not found."] = "Element nie znaleziony."; +$a->strings["You must be logged in to use addons. "] = "Musisz się zalogować, aby móc używać dodatkowych wtyczek."; +$a->strings["Applications"] = "Aplikacje"; +$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; +$a->strings["Not Extended"] = ""; +$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; +$a->strings["New Member Checklist"] = "Lista nowych członków"; +$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; +$a->strings["Getting Started"] = "Pierwsze kroki"; +$a->strings["Friendica Walk-Through"] = ""; +$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."] = ""; +$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; +$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."] = ""; +$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."] = ""; +$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; +$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; +$a->strings["Edit Your Profile"] = "Edytuj własny 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."] = ""; +$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; +$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."] = ""; +$a->strings["Connecting"] = "Łączę się..."; +$a->strings["Importing Emails"] = "Importuję emaile..."; +$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"] = ""; +$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; +$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."] = ""; +$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; +$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."] = ""; +$a->strings["Finding New People"] = "Poszukiwanie Nowych Ludzi"; +$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."] = ""; +$a->strings["Group Your Contacts"] = "Grupuj Swoje 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."] = ""; +$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; +$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."] = ""; +$a->strings["Getting Help"] = "Otrzymywanie pomocy"; +$a->strings["Go to the Help Section"] = "Idź do części o pomocy"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; +$a->strings["Remove My Account"] = "Usuń konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane."; +$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji."; +$a->strings["Item not found"] = "Artykuł nie znaleziony"; +$a->strings["Edit post"] = "Edytuj post"; +$a->strings["Time Conversion"] = "Zmiana czasu"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = "Czas UTC %s"; +$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; +$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; +$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Grupa utworzona."; +$a->strings["Could not create group."] = "Nie mogę stworzyć grupy"; +$a->strings["Group not found."] = "Nie znaleziono grupy"; +$a->strings["Group name changed."] = "Nazwa grupy zmieniona"; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; +$a->strings["Group removed."] = "Grupa usunięta."; +$a->strings["Unable to remove group."] = "Nie można usunąć grupy."; +$a->strings["Group Editor"] = "Edytor grupy"; +$a->strings["Members"] = "Członkowie"; +$a->strings["All Contacts"] = "Wszystkie kontakty"; +$a->strings["Group is empty"] = "Grupa jest pusta"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona."; +$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; +$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; +$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana"; +$a->strings["Message collection failure."] = ""; +$a->strings["Message sent."] = "Wysłano."; +$a->strings["No recipient."] = "Brak odbiorcy."; +$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Do:"; +$a->strings["Subject:"] = "Temat:"; +$a->strings["link"] = "Link"; +$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; +$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; +$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"; +$a->strings["No"] = "Nie"; $a->strings["Source (bbcode) text:"] = "Źródło - tekst (BBcode) :"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Źródło tekst (Diaspora) by przekonwerterować na BBcode :"; $a->strings["Source input: "] = "Źródło wejścia:"; @@ -336,52 +938,49 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Źródło wejścia(format Diaspory):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; -$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; -$a->strings["New Message"] = "Nowa wiadomość"; -$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; $a->strings["Unable to locate contact information."] = "Niezdolny do uzyskania informacji kontaktowych."; -$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana"; -$a->strings["Message collection failure."] = ""; -$a->strings["Message sent."] = "Wysłano."; -$a->strings["Messages"] = "Wiadomości"; $a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?"; $a->strings["Message deleted."] = "Wiadomość usunięta."; $a->strings["Conversation removed."] = "Rozmowa usunięta."; -$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:"; -$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; -$a->strings["To:"] = "Do:"; -$a->strings["Subject:"] = "Temat:"; -$a->strings["Your message:"] = "Twoja wiadomość:"; -$a->strings["Upload photo"] = "Wyślij zdjęcie"; -$a->strings["Insert web link"] = "Wstaw link"; -$a->strings["Please wait"] = "Proszę czekać"; $a->strings["No messages."] = "Brak wiadomości."; +$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; +$a->strings["Delete message"] = "Usuń wiadomość"; +$a->strings["Delete conversation"] = "Usuń rozmowę"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Odpowiedz"; $a->strings["Unknown sender - %s"] = "Nieznany wysyłający - %s"; $a->strings["You and %s"] = "Ty i %s"; $a->strings["%s and You"] = "%s i ty"; -$a->strings["Delete conversation"] = "Usuń rozmowę"; $a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM"; $a->strings["%d message"] = array( 0 => " %d wiadomość", 1 => " %d wiadomości", 2 => " %d wiadomości", ); -$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; -$a->strings["Delete message"] = "Usuń wiadomość"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Odpowiedz"; -$a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"; +$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:"; $a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane."; $a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu."; -$a->strings["Repair Contact Settings"] = "Napraw ustawienia kontaktów"; +$a->strings["Contact not found."] = "Kontakt nie znaleziony"; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."; -$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; $a->strings["No mirroring"] = ""; $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; $a->strings["Refetch contact data"] = ""; +$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["Name"] = "Imię"; $a->strings["Account Nickname"] = "Nazwa konta"; $a->strings["@Tagname - overrides Name/Nickname"] = ""; @@ -391,39 +990,506 @@ $a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość"; $a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL"; $a->strings["Poll/Feed URL"] = "Adres Ankiety / RSS"; $a->strings["New photo from this URL"] = "Nowe zdjęcie z tej ścieżki"; -$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."] = "Brak dostępu"; +$a->strings["No such group"] = "Nie ma takiej grupy"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; +$a->strings["%d comment"] = array( + 0 => " %d komentarz", + 1 => " %d komentarzy", + 2 => " %d komentarzy", +); +$a->strings["Private Message"] = "Wiadomość prywatna"; +$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; +$a->strings["like"] = "polub"; +$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)"; +$a->strings["dislike"] = "Nie lubię"; +$a->strings["Share this"] = "Udostępnij to"; +$a->strings["share"] = "udostępnij"; +$a->strings["This is you"] = "To jesteś ty"; +$a->strings["Comment"] = "Komentarz"; +$a->strings["Bold"] = "Pogrubienie"; +$a->strings["Italic"] = "Kursywa"; +$a->strings["Underline"] = "Podkreślenie"; +$a->strings["Quote"] = "Cytat"; +$a->strings["Code"] = "Kod"; +$a->strings["Image"] = "Obraz"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Edytuj"; +$a->strings["add star"] = "dodaj gwiazdkę"; +$a->strings["remove star"] = "anuluj gwiazdkę"; +$a->strings["toggle star status"] = "włącz status gwiazdy"; +$a->strings["starred"] = "gwiazdką"; +$a->strings["add tag"] = "dodaj tag"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["save to folder"] = "zapisz w folderze"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "do"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana."; +$a->strings["Suggest Friends"] = "Zaproponuj znajomych"; +$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; +$a->strings["Mood"] = "Nastrój"; +$a->strings["Set your current mood and tell your friends"] = "Wskaż swój obecny nastrój i powiedz o tym znajomym"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = "Zrób ten post prywatnym"; +$a->strings["Image uploaded but image cropping failed."] = "Obrazek załadowany, ale oprawanie powiodła się."; +$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu."; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; +$a->strings["Upload File:"] = "Wyślij plik:"; +$a->strings["Select a profile:"] = "Wybierz profil:"; +$a->strings["Upload"] = "Załaduj"; +$a->strings["or"] = "lub"; +$a->strings["skip this step"] = "Pomiń ten krok"; +$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu"; +$a->strings["Crop Image"] = "Przytnij zdjęcie"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."; +$a->strings["Done Editing"] = "Zakończ Edycję "; +$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie "; +$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się"; +$a->strings["Account approved."] = "Konto zatwierdzone."; +$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana"; +$a->strings["Please login."] = "Proszę się zalogować."; +$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania."; +$a->strings["Discard"] = "Odrzuć"; +$a->strings["Ignore"] = "Ignoruj"; +$a->strings["Network Notifications"] = "Powiadomienia z sieci"; +$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; +$a->strings["Home Notifications"] = "Powiadomienia z instancji"; +$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; +$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania"; +$a->strings["Notification type: "] = "Typ zawiadomień:"; +$a->strings["suggested by %s"] = "zaproponowane przez %s"; +$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; +$a->strings["Post a new friend activity"] = "Pisz o nowej działalności przyjaciela"; +$a->strings["if applicable"] = "jeśli odpowiednie"; +$a->strings["Approve"] = "Zatwierdź"; +$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; +$a->strings["yes"] = "tak"; +$a->strings["no"] = "nie"; +$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"] = "Znajomy"; +$a->strings["Sharer"] = "Udostępniający/a"; +$a->strings["Fan/Admirer"] = "Fan"; +$a->strings["Profile URL"] = ""; +$a->strings["No introductions."] = "Brak wstępu."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["Profile not found."] = "Nie znaleziono profilu."; +$a->strings["Profile deleted."] = "Konto usunięte."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Utworzono nowy profil."; +$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu "; +$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana"; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = "Praca/Zatrudnienie"; +$a->strings["Religion"] = "Religia"; +$a->strings["Political Views"] = "Poglądy polityczne"; +$a->strings["Gender"] = "Płeć"; +$a->strings["Sexual Preference"] = "Orientacja seksualna"; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = "Strona Główna"; +$a->strings["Interests"] = "Zainteresowania"; +$a->strings["Address"] = "Adres"; +$a->strings["Location"] = "Położenie"; +$a->strings["Profile updated."] = "Konto zaktualizowane."; +$a->strings[" and "] = " i "; +$a->strings["public profile"] = "profil publiczny"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Edytuj profil."; +$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie"; +$a->strings["View this profile"] = "Zobacz ten profil"; +$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia"; +$a->strings["Clone this profile"] = "Sklonuj ten profil"; +$a->strings["Delete this profile"] = "Usuń ten profil"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Twoja płeć:"; +$a->strings[" Marital Status:"] = " Stan :"; +$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii"; +$a->strings["Profile Name:"] = "Nazwa profilu :"; +$a->strings["Required"] = "Wymagany"; +$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
                                              Może zostać wyświetlony przez każdego kto używa internetu."; +$a->strings["Your Full Name:"] = "Twoje imię i nazwisko:"; +$a->strings["Title/Description:"] = "Tytuł/Opis :"; +$a->strings["Street Address:"] = "Ulica:"; +$a->strings["Locality/City:"] = "Miejscowość/Miasto :"; +$a->strings["Region/State:"] = "Region / Stan :"; +$a->strings["Postal/Zip Code:"] = "Kod Pocztowy :"; +$a->strings["Country:"] = "Kraj:"; +$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady : cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Od [data]:"; +$a->strings["Tell us about yourself..."] = "Napisz o sobie..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Strona główna URL:"; +$a->strings["Religious Views:"] = "Poglądy religijne:"; +$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"; +$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)"; +$a->strings["Musical interests"] = "Muzyka"; +$a->strings["Books, literature"] = "Literatura"; +$a->strings["Television"] = "Telewizja"; +$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Hobbies/Interests"] = "Zainteresowania"; +$a->strings["Love/romance"] = "Miłość/romans"; +$a->strings["Work/employment"] = "Praca/zatrudnienie"; +$a->strings["School/education"] = "Szkoła/edukacja"; +$a->strings["Contact information and Social Networks"] = "Informacje kontaktowe i Sieci Społeczne"; +$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami"; +$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; +$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta"; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Poprzedni"; +$a->strings["Next"] = "Następny"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; +$a->strings["Common Friends"] = "Wspólni znajomi"; +$a->strings["Not available."] = "Niedostępne."; +$a->strings["Global Directory"] = "Globalne Położenie"; +$a->strings["Find on this site"] = "Znajdź na tej stronie"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Katalog Strony"; +$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; $a->strings["People Search - %s"] = ""; -$a->strings["Connect"] = "Połącz"; +$a->strings["Forum Search - %s"] = ""; $a->strings["No matches"] = "brak dopasowań"; -$a->strings["Photos"] = "Zdjęcia"; -$a->strings["Files"] = "Pliki"; -$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy"; +$a->strings["Item has been removed."] = "Przedmiot został usunięty"; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; +$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; +$a->strings["Event details"] = "Szczegóły wydarzenia"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; +$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; +$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; +$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; +$a->strings["Description:"] = "Opis:"; +$a->strings["Title:"] = "Tytuł:"; +$a->strings["Share this event"] = "Udostępnij te wydarzenie"; +$a->strings["System down for maintenance"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."; +$a->strings["is interested in:"] = "interesuje się:"; +$a->strings["Profile Match"] = "Profil zgodny "; +$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; +$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj"; +$a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"; +$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; +$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; +$a->strings["everybody"] = "wszyscy"; +$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne."; +$a->strings["Album not found."] = "Album nie znaleziony"; +$a->strings["Delete Album"] = "Usuń album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; +$a->strings["Delete Photo"] = "Usuń zdjęcie"; +$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = "zdjęcie"; +$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; +$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; +$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Prześlij zdjęcia"; +$a->strings["New album name: "] = "Nazwa nowego albumu:"; +$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:"; +$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania"; +$a->strings["Show to Groups"] = "Pokaż Grupy"; +$a->strings["Show to Contacts"] = "Pokaż kontakty"; +$a->strings["Private Photo"] = "Zdjęcie prywatne"; +$a->strings["Public Photo"] = "Zdjęcie publiczne"; +$a->strings["Edit Album"] = "Edytuj album"; +$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze"; +$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze"; +$a->strings["View Photo"] = "Zobacz zdjęcie"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; +$a->strings["Photo not available"] = "Zdjęcie niedostępne"; +$a->strings["View photo"] = "Zobacz zdjęcie"; +$a->strings["Edit photo"] = "Edytuj zdjęcie"; +$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; +$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; +$a->strings["Tags: "] = "Tagi:"; +$a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; +$a->strings["New album name"] = "Nazwa nowego albumu"; +$a->strings["Caption"] = "Zawartość"; +$a->strings["Add a Tag"] = "Dodaj tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; +$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; +$a->strings["Private photo"] = "Prywatne zdjęcie."; +$a->strings["Public photo"] = "Zdjęcie publiczne"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Zobacz album"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; +$a->strings["Failed to send email message. Here your accout details:
                                              login: %s
                                              password: %s

                                              You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. "; +$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."; +$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):"; +$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."; +$a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:"; +$a->strings["Registration"] = "Rejestracja"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Twój adres email:"; +$a->strings["New Password:"] = "Nowe hasło:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Potwierdź:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@\$nazwastrony'."; +$a->strings["Choose a nickname: "] = "Wybierz pseudonim:"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Account"] = "Konto"; +$a->strings["Additional features"] = ""; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Plugins"] = "Wtyczki"; +$a->strings["Connected apps"] = "Powiązane aplikacje"; +$a->strings["Remove account"] = "Usuń konto"; +$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; +$a->strings["Update"] = "Zaktualizuj"; +$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; +$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione."; +$a->strings["Wrong password."] = "Złe hasło."; +$a->strings["Password changed."] = "Hasło zostało zmianione."; +$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."; +$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy."; +$a->strings[" Name too short."] = "Za krótka nazwa."; +$a->strings["Wrong Password"] = "Złe hasło"; +$a->strings[" Not valid email."] = "Zły email."; +$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; +$a->strings["Add application"] = "Dodaj aplikacje"; +$a->strings["Save Settings"] = "Zapisz ustawienia"; +$a->strings["Consumer Key"] = "Klucz konsumenta"; +$a->strings["Consumer Secret"] = "Sekret konsumenta"; +$a->strings["Redirect"] = "Przekierowanie"; +$a->strings["Icon url"] = "Adres ikony"; +$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji."; +$a->strings["Connected Apps"] = "Powiązane aplikacje"; +$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od"; +$a->strings["No name"] = "Bez nazwy"; +$a->strings["Remove authorization"] = "Odwołaj upoważnienie"; +$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane"; +$a->strings["Plugin Settings"] = "Ustawienia wtyczki"; +$a->strings["Off"] = "Wyłącz"; +$a->strings["On"] = "Włącz"; +$a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$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."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = ""; +$a->strings["enabled"] = "włączony"; +$a->strings["disabled"] = "wyłączony"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; +$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."; +$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:"; +$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Ochrona:"; +$a->strings["None"] = "Brak"; +$a->strings["Email login name:"] = "Login emaila:"; +$a->strings["Email password:"] = "Hasło emaila:"; +$a->strings["Reply-to address:"] = "Odpowiedz na adres:"; +$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail"; +$a->strings["Action after import:"] = "Akcja po zaimportowaniu:"; +$a->strings["Move to folder"] = "Przenieś do folderu"; +$a->strings["Move to folder:"] = "Przenieś do folderu:"; +$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; +$a->strings["Display Settings"] = "Wyświetl ustawienia"; +$a->strings["Display Theme:"] = "Wyświetl motyw:"; +$a->strings["Mobile Theme:"] = "Mobilny motyw:"; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = "Nie pokazuj powiadomień"; +$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = "Ustawienia motywu"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "Przeznacz to OpenID do logowania się na to konto."; +$a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?"; +$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; +$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?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych"; +$a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich postów przez znajomych"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Profil nie jest opublikowany"; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; +$a->strings["Advanced expiration settings"] = ""; +$a->strings["Advanced Expiration"] = ""; +$a->strings["Expire posts:"] = "Wygasające posty:"; +$a->strings["Expire personal notes:"] = "Wygasające notatki osobiste:"; +$a->strings["Expire starred posts:"] = ""; +$a->strings["Expire photos:"] = "Wygasające zdjęcia:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Ustawienia konta"; +$a->strings["Password Settings"] = "Ustawienia hasła"; +$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić."; +$a->strings["Current Password:"] = "Obecne hasło:"; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = "Hasło:"; +$a->strings["Basic Settings"] = "Ustawienia podstawowe"; +$a->strings["Email Address:"] = "Adres email:"; +$a->strings["Your Timezone:"] = "Twoja strefa czasowa:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:"; +$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:"; +$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; +$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"; +$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)"; +$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości"; +$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Ustawienia powiadomień"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = ""; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:"; +$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie"; +$a->strings["Your introductions are confirmed"] = "Dane zatwierdzone"; +$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ścianie profilowej"; +$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący."; +$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość"; +$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych"; +$a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$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["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = "Nie zaznaczono filmów"; +$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; +$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; +$a->strings["Invalid request."] = ""; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; $a->strings["Theme settings updated."] = "Ustawienia szablonu zmienione."; $a->strings["Site"] = "Strona"; $a->strings["Users"] = "Użytkownicy"; -$a->strings["Plugins"] = "Wtyczki"; $a->strings["Themes"] = "Temat"; $a->strings["DB updates"] = "Aktualizacje DB"; $a->strings["Inspect Queue"] = ""; +$a->strings["Federation Statistics"] = ""; $a->strings["Logs"] = "Logi"; +$a->strings["View Logs"] = ""; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Administator"; $a->strings["Plugin Features"] = "Polecane wtyczki"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie."; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; $a->strings["Administration"] = "Administracja"; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; $a->strings["ID"] = ""; $a->strings["Recipient Name"] = ""; $a->strings["Recipient Profile"] = ""; $a->strings["Created"] = ""; $a->strings["Last Tried"] = ""; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
                                              "] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; $a->strings["Normal Account"] = "Konto normalne"; $a->strings["Soapbox Account"] = "Konto Soapbox"; $a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy"; @@ -437,16 +1503,14 @@ $a->strings["Pending registrations"] = "Rejestracje w toku."; $a->strings["Version"] = "Wersja"; $a->strings["Active plugins"] = "Aktywne pluginy"; $a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; $a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane"; -$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; +$a->strings["Never"] = "Nigdy"; $a->strings["At post arrival"] = ""; -$a->strings["Frequently"] = "Jak najczęściej"; -$a->strings["Hourly"] = "Godzinowo"; -$a->strings["Twice daily"] = "Dwa razy dziennie"; -$a->strings["Daily"] = "Dziennie"; +$a->strings["Disabled"] = ""; $a->strings["Users, Global Contacts"] = ""; $a->strings["Users, Global Contacts/fallback"] = ""; $a->strings["One month"] = "Miesiąc"; @@ -460,13 +1524,11 @@ $a->strings["Open"] = "Otwórz"; $a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL , linki będą śledzić stan SSL ."; $a->strings["Force all links to use SSL"] = "Wymuś by linki używały SSL."; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "; -$a->strings["Save Settings"] = "Zapisz ustawienia"; -$a->strings["Registration"] = "Rejestracja"; $a->strings["File upload"] = "Plik załadowano"; $a->strings["Policies"] = "zasady"; -$a->strings["Advanced"] = "Zaawansowany"; $a->strings["Auto Discovered Contact Directory"] = ""; $a->strings["Performance"] = "Ustawienia"; +$a->strings["Worker"] = ""; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = "Nazwa strony"; $a->strings["Host name"] = ""; @@ -515,8 +1577,8 @@ $a->strings["Block public"] = "Blokuj publicznie"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; $a->strings["Force publish"] = "Wymuś publikację"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Global directory update URL"] = ""; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; $a->strings["Allow threaded items"] = "Zezwalaj na wątkowanie tematów"; $a->strings["Allow infinite level threading for items on this site."] = "Zezwalaj na nieograniczoną liczbę wątków tematycznych na tej stronie."; $a->strings["Private posts by default for new users"] = "Prywatne posty domyślnie dla nowych użytkowników"; @@ -545,6 +1607,10 @@ $a->strings["Enable OStatus support"] = "Włącz wsparcie 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."] = ""; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; $a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory"; $a->strings["Provide built-in Diaspora network compatibility."] = ""; $a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica"; @@ -563,8 +1629,14 @@ $a->strings["Maximum Load Average"] = ""; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; $a->strings["Maximum Load Average (Frontend)"] = ""; $a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; $a->strings["Periodical check of global contacts"] = ""; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; $a->strings["Discover contacts from other servers"] = ""; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; $a->strings["Timeframe for fetching global contacts"] = ""; @@ -603,6 +1675,16 @@ $a->strings["RINO Encryption"] = ""; $a->strings["Encryption layer between nodes."] = ""; $a->strings["Embedly API key"] = ""; $a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; $a->strings["Update has been marked successful"] = ""; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -618,7 +1700,6 @@ $a->strings["Mark success (if update was manually applied)"] = ""; $a->strings["Attempt to execute this update step automatically"] = ""; $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"] = "Szczegóły rejestracji dla %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "", 1 => "", @@ -632,22 +1713,23 @@ $a->strings["%s user deleted"] = array( $a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty"; $a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany"; $a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany"; +$a->strings["Register date"] = "Data rejestracji"; +$a->strings["Last login"] = "Ostatnie logowanie"; +$a->strings["Last item"] = "Ostatni element"; $a->strings["Add User"] = ""; $a->strings["select all"] = "Zaznacz wszystko"; $a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie"; $a->strings["User waiting for permanent deletion"] = "Użytkownik czekający na trwałe usunięcie"; $a->strings["Request date"] = "Data prośby"; -$a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "brak rejestracji"; +$a->strings["Note from the user"] = ""; $a->strings["Deny"] = "Odmów"; +$a->strings["Block"] = "Zablokuj"; +$a->strings["Unblock"] = "Odblokuj"; $a->strings["Site admin"] = "Administracja stroną"; $a->strings["Account expired"] = "Konto wygasło."; $a->strings["New User"] = ""; -$a->strings["Register date"] = "Data rejestracji"; -$a->strings["Last login"] = "Ostatnie logowanie"; -$a->strings["Last item"] = "Ostatni element"; $a->strings["Deleted since"] = "Skasowany od"; -$a->strings["Account"] = "Konto"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"; $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żytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"; $a->strings["Name of the new user."] = "Nazwa nowego użytkownika."; @@ -661,115 +1743,168 @@ $a->strings["Enable"] = "Zezwól"; $a->strings["Toggle"] = "Włącz"; $a->strings["Author: "] = "Autor: "; $a->strings["Maintainer: "] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; $a->strings["No themes found."] = "Nie znaleziono tematu."; $a->strings["Screenshot"] = "Zrzut ekranu"; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; $a->strings["[Experimental]"] = "[Eksperymentalne]"; $a->strings["[Unsupported]"] = "[Niewspieralne]"; $a->strings["Log settings updated."] = "Zaktualizowano ustawienia logów."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; $a->strings["Clear"] = "Wyczyść"; $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Plik logów"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; $a->strings["Log level"] = "Poziom logów"; -$a->strings["Close"] = "Zamknij"; -$a->strings["FTP Host"] = "Założyciel FTP"; -$a->strings["FTP Path"] = "Ścieżka FTP"; -$a->strings["FTP User"] = "Użytkownik FTP"; -$a->strings["FTP Password"] = "FTP Hasło"; -$a->strings["Search Results For: %s"] = ""; -$a->strings["Remove term"] = "Usuń wpis"; -$a->strings["Saved Searches"] = "Zapisane wyszukiwania"; -$a->strings["add"] = "dodaj"; -$a->strings["Commented Order"] = "Porządek wg komentarzy"; -$a->strings["Sort by Comment Date"] = "Sortuj po dacie komentarza"; -$a->strings["Posted Order"] = "Porządek wg wpisów"; -$a->strings["Sort by Post Date"] = "Sortuj po dacie posta"; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = "Nowy"; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Shared Links"] = "Współdzielone linki"; -$a->strings["Interesting Links"] = "Interesujące linki"; -$a->strings["Starred"] = "Ulubione"; -$a->strings["Favourite Posts"] = "Ulubione posty"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.", - 1 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.", - 2 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia"; -$a->strings["No such group"] = "Nie ma takiej grupy"; -$a->strings["Group is empty"] = "Grupa jest pusta"; -$a->strings["Group: %s"] = ""; -$a->strings["Contact: %s"] = ""; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "; -$a->strings["Invalid contact."] = "Zły kontakt"; -$a->strings["Friends of %s"] = "Znajomy %s"; -$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; -$a->strings["l, F j"] = "d, M d "; -$a->strings["Edit event"] = "Edytuj wydarzenie"; -$a->strings["link to source"] = "link do źródła"; -$a->strings["Events"] = "Wydarzenia"; -$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; -$a->strings["Previous"] = "Poprzedni"; -$a->strings["Next"] = "Następny"; -$a->strings["Event details"] = "Szczegóły wydarzenia"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; -$a->strings["Required"] = "Wymagany"; -$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; -$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; -$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; -$a->strings["Description:"] = "Opis:"; -$a->strings["Title:"] = "Tytuł:"; -$a->strings["Share this event"] = "Udostępnij te wydarzenie"; -$a->strings["Preview"] = "Podgląd"; -$a->strings["Select"] = "Wybierz"; -$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s"; -$a->strings["%s from %s"] = "%s od %s"; -$a->strings["View in context"] = "Zobacz w kontekście"; -$a->strings["%d comment"] = array( - 0 => " %d komentarz", - 1 => " %d komentarzy", - 2 => " %d komentarzy", -); -$a->strings["comment"] = array( +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( 0 => "", 1 => "", - 2 => "komentarz", + 2 => "", ); -$a->strings["show more"] = "Pokaż więcej"; -$a->strings["Private Message"] = "Wiadomość prywatna"; -$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; -$a->strings["like"] = "polub"; -$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)"; -$a->strings["dislike"] = "Nie lubię"; -$a->strings["Share this"] = "Udostępnij to"; -$a->strings["share"] = "udostępnij"; -$a->strings["This is you"] = "To jesteś ty"; -$a->strings["Comment"] = "Komentarz"; -$a->strings["Bold"] = "Pogrubienie"; -$a->strings["Italic"] = "Kursywa"; -$a->strings["Underline"] = "Podkreślenie"; -$a->strings["Quote"] = "Cytat"; -$a->strings["Code"] = "Kod"; -$a->strings["Image"] = "Obraz"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Edit"] = "Edytuj"; -$a->strings["add star"] = "dodaj gwiazdkę"; -$a->strings["remove star"] = "anuluj gwiazdkę"; -$a->strings["toggle star status"] = "włącz status gwiazdy"; -$a->strings["starred"] = "gwiazdką"; -$a->strings["add tag"] = "dodaj tag"; -$a->strings["save to folder"] = "zapisz w folderze"; -$a->strings["to"] = "do"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["Remove My Account"] = "Usuń konto"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane."; -$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji."; +$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; +$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu."; +$a->strings["Contact updated."] = "Kontakt zaktualizowany"; +$a->strings["Failed to update contact record."] = "Aktualizacja nagrania kontaktu nie powiodła się."; +$a->strings["Contact has been blocked"] = "Kontakt został zablokowany"; +$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany"; +$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; +$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; +$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; +$a->strings["Contact has been unarchived"] = ""; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; +$a->strings["Contact has been removed."] = "Kontakt został usunięty."; +$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; +$a->strings["You are sharing with %s"] = "Współdzielisz z %s"; +$a->strings["%s is sharing with you"] = "%s współdzieli z tobą"; +$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu"; +$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)"; +$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; +$a->strings["Suggest friends"] = "Osoby, które możesz znać"; +$a->strings["Network type: %s"] = "Typ sieci: %s"; +$a->strings["Communications lost with this contact!"] = "Komunikacja przerwana z tym kontaktem!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact"] = ""; +$a->strings["Profile Visibility"] = "Widoczność profilu"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"; +$a->strings["Contact Information / Notes"] = "Informacja o kontakcie / Notka"; +$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; +$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; +$a->strings["Ignore contact"] = "Ignoruj kontakt"; +$a->strings["Repair URL settings"] = "Napraw ustawienia adresu"; +$a->strings["View conversations"] = "Zobacz rozmowę"; +$a->strings["Last update:"] = "Ostatnia aktualizacja:"; +$a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; +$a->strings["Update now"] = "Aktualizuj teraz"; +$a->strings["Unignore"] = "Odblokuj"; +$a->strings["Currently blocked"] = "Obecnie zablokowany"; +$a->strings["Currently ignored"] = "Obecnie zignorowany"; +$a->strings["Currently archived"] = "Obecnie zarchiwizowany"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Sugestie"; +$a->strings["Suggest potential friends"] = "Sugerowani znajomi"; +$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; +$a->strings["Unblocked"] = "Odblokowany"; +$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty"; +$a->strings["Blocked"] = "Zablokowany"; +$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty"; +$a->strings["Ignored"] = "Zignorowany"; +$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty"; +$a->strings["Archived"] = "Zarchiwizowane"; +$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; +$a->strings["Hidden"] = "Ukryty"; +$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; +$a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; +$a->strings["Archive"] = "Archiwum"; +$a->strings["Unarchive"] = "Przywróć z archiwum"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; +$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; +$a->strings["is a fan of yours"] = "jest twoim fanem"; +$a->strings["you are a fan of"] = "jesteś fanem"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Delete contact"] = "Usuń kontakt"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana"; +$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej"; +$a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie"; +$a->strings["Remote site reported: "] = "Zdalna strona zgłoszona:"; +$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."; +$a->strings["Introduction failed or was revoked."] = "Nieudane lub unieważnione wprowadzenie."; +$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu."; +$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej zepsuty"; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."; +$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie"; +$a->strings["Site public key not available in contact record for URL %s."] = ""; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."; +$a->strings["Unable to set your contact credentials on our system."] = "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"; +$a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s"; +$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; +$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", + 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", + 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", +); +$a->strings["Introduction complete."] = "wprowadzanie zakończone."; +$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; +$a->strings["Profile unavailable."] = "Profil niedostępny."; +$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; +$a->strings["Spam protection measures have been invoked."] = "Ochrona przed spamem została wywołana."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; +$a->strings["Invalid locator"] = "Niewłaściwy lokalizator "; +$a->strings["Invalid email address."] = "Nieprawidłowy adres email."; +$a->strings["This account has not been configured for email. Request failed."] = "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ."; +$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; +$a->strings["Apparently you are already friends with %s."] = "Widocznie jesteście już znajomymi z %s"; +$a->strings["Invalid profile URL."] = "Zły adres URL profilu."; +$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; +$a->strings["Confirm"] = "Potwierdź"; +$a->strings["Hide this contact"] = "Ukryj kontakt"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ."; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:"; +$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; +$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Sieć społeczna"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki."; +$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; +$a->strings["Submit Request"] = "Wyślij zgłoszenie"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "Kontakt dodany"; $a->strings["Friendica Communications Server - Setup"] = ""; $a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych"; $a->strings["Could not create table."] = "Nie mogę stworzyć tabeli."; @@ -791,8 +1926,10 @@ $a->strings["Site administrator email address"] = "Adres e-mail administratora s $a->strings["Your account email address must match this in order to use the web admin panel."] = ""; $a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony"; $a->strings["Site settings"] = "Ustawienia strony"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH"; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; $a->strings["PHP executable path"] = ""; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; $a->strings["Command line PHP"] = "Linia komend PHP"; @@ -810,6 +1947,9 @@ $a->strings["GD graphics PHP module"] = "Moduł PHP-GD"; $a->strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL"; $a->strings["mysqli PHP module"] = "Moduł mysql PHP"; $a->strings["mb_string PHP module"] = "Moduł mb_string PHP"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; $a->strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."; $a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."; @@ -817,6 +1957,12 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in $a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."; $a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."; $a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; $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."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."; $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."] = ""; $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."] = ""; @@ -829,491 +1975,90 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = ""; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; $a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."; $a->strings["

                                              What next

                                              "] = "

                                              Co dalej

                                              "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona."; -$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; -$a->strings["No recipient."] = "Brak odbiorcy."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; -$a->strings["Help:"] = "Pomoc:"; -$a->strings["Help"] = "Pomoc"; -$a->strings["Not Found"] = "Nie znaleziono"; -$a->strings["Page not found."] = "Strona nie znaleziona."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; -$a->strings["Welcome to %s"] = "Witamy w %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 %s"] = ""; -$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; -$a->strings["Profile Match"] = "Profil zgodny "; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."; -$a->strings["is interested in:"] = "interesuje się:"; -$a->strings["link"] = "Link"; -$a->strings["Not available."] = "Niedostępne."; -$a->strings["Community"] = "Społeczność"; -$a->strings["No results."] = "Brak wyników."; -$a->strings["everybody"] = "wszyscy"; -$a->strings["Additional features"] = ""; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Delegations"] = ""; -$a->strings["Connected apps"] = "Powiązane aplikacje"; -$a->strings["Export personal data"] = "Eksportuje dane personalne"; -$a->strings["Remove account"] = "Usuń konto"; -$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; -$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; -$a->strings["Features updated"] = ""; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione."; -$a->strings["Wrong password."] = "Złe hasło."; -$a->strings["Password changed."] = "Hasło zostało zmianione."; -$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."; -$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy."; -$a->strings[" Name too short."] = "Za krótka nazwa."; -$a->strings["Wrong Password"] = "Złe hasło"; -$a->strings[" Not valid email."] = "Zły email."; -$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; -$a->strings["Add application"] = "Dodaj aplikacje"; -$a->strings["Consumer Key"] = "Klucz konsumenta"; -$a->strings["Consumer Secret"] = "Sekret konsumenta"; -$a->strings["Redirect"] = "Przekierowanie"; -$a->strings["Icon url"] = "Adres ikony"; -$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji."; -$a->strings["Connected Apps"] = "Powiązane aplikacje"; -$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od"; -$a->strings["No name"] = "Bez nazwy"; -$a->strings["Remove authorization"] = "Odwołaj upoważnienie"; -$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane"; -$a->strings["Plugin Settings"] = "Ustawienia wtyczki"; -$a->strings["Off"] = "Wyłącz"; -$a->strings["On"] = "Włącz"; -$a->strings["Additional Features"] = ""; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$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."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = ""; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "włączony"; -$a->strings["disabled"] = "wyłączony"; -$a->strings["GNU Social (OStatus)"] = ""; -$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; -$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."; -$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:"; -$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Ochrona:"; -$a->strings["None"] = "Brak"; -$a->strings["Email login name:"] = "Login emaila:"; -$a->strings["Email password:"] = "Hasło emaila:"; -$a->strings["Reply-to address:"] = "Odpowiedz na adres:"; -$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail"; -$a->strings["Action after import:"] = "Akcja po zaimportowaniu:"; -$a->strings["Mark as seen"] = "Oznacz jako przeczytane"; -$a->strings["Move to folder"] = "Przenieś do folderu"; -$a->strings["Move to folder:"] = "Przenieś do folderu:"; -$a->strings["Display Settings"] = "Wyświetl ustawienia"; -$a->strings["Display Theme:"] = "Wyświetl motyw:"; -$a->strings["Mobile Theme:"] = "Mobilny motyw:"; -$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Dolny limit 10 sekund, brak górnego limitu"; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; -$a->strings["Don't show notices"] = "Nie pokazuj powiadomień"; -$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["Theme settings"] = "Ustawienia motywu"; -$a->strings["User Types"] = "Użytkownik pisze"; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = ""; -$a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"; -$a->strings["Community Forum/Celebrity Account"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu."; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "Przeznacz to OpenID do logowania się na to konto."; -$a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?"; -$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?"; -$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?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych"; -$a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich postów przez znajomych"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["Permit unknown people to send you private mail?"] = ""; -$a->strings["Profile is not published."] = "Profil nie jest opublikowany"; -$a->strings["Your Identity Address is '%s' or '%s'."] = ""; -$a->strings["Automatically expire posts after this many days:"] = ""; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; -$a->strings["Advanced expiration settings"] = ""; -$a->strings["Advanced Expiration"] = ""; -$a->strings["Expire posts:"] = "Wygasające posty:"; -$a->strings["Expire personal notes:"] = "Wygasające notatki osobiste:"; -$a->strings["Expire starred posts:"] = ""; -$a->strings["Expire photos:"] = "Wygasające zdjęcia:"; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Ustawienia konta"; -$a->strings["Password Settings"] = "Ustawienia hasła"; -$a->strings["New Password:"] = "Nowe hasło:"; -$a->strings["Confirm:"] = "Potwierdź:"; -$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić."; -$a->strings["Current Password:"] = "Obecne hasło:"; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = "Hasło:"; -$a->strings["Basic Settings"] = "Ustawienia podstawowe"; -$a->strings["Full Name:"] = "Imię i nazwisko:"; -$a->strings["Email Address:"] = "Adres email:"; -$a->strings["Your Timezone:"] = "Twoja strefa czasowa:"; -$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:"; -$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:"; -$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; -$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"; -$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)"; -$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości"; -$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)"; -$a->strings["Show to Groups"] = "Pokaż Grupy"; -$a->strings["Show to Contacts"] = "Pokaż kontakty"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Notification Settings"] = "Ustawienia powiadomień"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = ""; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:"; -$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie"; -$a->strings["Your introductions are confirmed"] = "Dane zatwierdzone"; -$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ścianie profilowej"; -$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący."; -$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość"; -$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych"; -$a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$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."] = "To wprowadzenie zostało już zaakceptowane."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; -$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", - 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", - 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", +$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; +$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony."; +$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"; +$a->strings["You may visit them online at %s"] = "Możesz ich odwiedzić online u %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; +$a->strings["%s posted an update."] = "%s zaktualizował wpis."; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", + 2 => "", ); -$a->strings["Introduction complete."] = "wprowadzanie zakończone."; -$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; -$a->strings["Profile unavailable."] = "Profil niedostępny."; -$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; -$a->strings["Spam protection measures have been invoked."] = "Ochrona przed spamem została wywołana."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; -$a->strings["Invalid locator"] = "Niewłaściwy lokalizator "; -$a->strings["Invalid email address."] = "Nieprawidłowy adres email."; -$a->strings["This account has not been configured for email. Request failed."] = "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ."; -$a->strings["Unable to resolve your name at the provided location."] = "Nie można rozpoznać twojej nazwy w przewidzianym miejscu."; -$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; -$a->strings["Apparently you are already friends with %s."] = "Widocznie jesteście już znajomymi z %s"; -$a->strings["Invalid profile URL."] = "Zły adres URL profilu."; -$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; -$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; -$a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; -$a->strings["Confirm"] = "Potwierdź"; -$a->strings["Hide this contact"] = "Ukryj kontakt"; -$a->strings["Welcome home %s."] = "Welcome home %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ."; -$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."] = ""; -$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Sieć społeczna"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; -$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."] = "Twoja rejestracja nie może zostać przeprowadzona. "; -$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."; -$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):"; -$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?"; -$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."; -$a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):"; -$a->strings["Your Email Address: "] = "Twój adres email:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@\$nazwastrony'."; -$a->strings["Choose a nickname: "] = "Wybierz pseudonim:"; -$a->strings["Register"] = "Zarejestruj"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["System down for maintenance"] = ""; -$a->strings["Search"] = "Szukaj"; -$a->strings["Items tagged with: %s"] = ""; -$a->strings["Search results for: %s"] = ""; -$a->strings["Global Directory"] = "Globalne Położenie"; -$a->strings["Find on this site"] = "Znajdź na tej stronie"; -$a->strings["Site Directory"] = "Katalog Strony"; -$a->strings["Age: "] = "Wiek: "; -$a->strings["Gender: "] = "Płeć: "; -$a->strings["Status:"] = "Status"; -$a->strings["Homepage:"] = "Strona główna:"; -$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; -$a->strings["No potential page delegates located."] = ""; -$a->strings["Delegate Page Management"] = ""; -$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."] = ""; -$a->strings["Existing Page Managers"] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = "Dodaj"; -$a->strings["No entries."] = "Brak wpisów."; -$a->strings["Common Friends"] = "Wspólni znajomi"; -$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; -$a->strings["Export account"] = "Eksportuj konto"; -$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."] = ""; -$a->strings["Export all"] = "Eksportuj wszystko"; -$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)"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = "Nastrój"; -$a->strings["Set your current mood and tell your friends"] = "Wskaż swój obecny nastrój i powiedz o tym znajomym"; -$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?"; -$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj"; -$a->strings["Profile deleted."] = "Konto usunięte."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Utworzono nowy profil."; -$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu "; -$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana"; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Likes"] = "Polubień"; -$a->strings["Dislikes"] = "Nie lubień"; -$a->strings["Work/Employment"] = "Praca/Zatrudnienie"; -$a->strings["Religion"] = "Religia"; -$a->strings["Political Views"] = "Poglądy polityczne"; -$a->strings["Gender"] = "Płeć"; -$a->strings["Sexual Preference"] = "Orientacja seksualna"; -$a->strings["Homepage"] = "Strona Główna"; -$a->strings["Interests"] = "Zainteresowania"; -$a->strings["Address"] = "Adres"; -$a->strings["Location"] = "Położenie"; -$a->strings["Profile updated."] = "Konto zaktualizowane."; -$a->strings[" and "] = " i "; -$a->strings["public profile"] = "profil publiczny"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"; -$a->strings["Edit Profile Details"] = "Edytuj profil."; -$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie"; -$a->strings["View this profile"] = "Zobacz ten profil"; -$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia"; -$a->strings["Clone this profile"] = "Sklonuj ten profil"; -$a->strings["Delete this profile"] = "Usuń ten profil"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Nazwa profilu :"; -$a->strings["Your Full Name:"] = "Twoje imię i nazwisko:"; -$a->strings["Title/Description:"] = "Tytuł/Opis :"; -$a->strings["Your Gender:"] = "Twoja płeć:"; -$a->strings["Birthday :"] = ""; -$a->strings["Street Address:"] = "Ulica:"; -$a->strings["Locality/City:"] = "Miejscowość/Miasto :"; -$a->strings["Postal/Zip Code:"] = "Kod Pocztowy :"; -$a->strings["Country:"] = "Kraj:"; -$a->strings["Region/State:"] = "Region / Stan :"; -$a->strings[" Marital Status:"] = " Stan :"; -$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady : cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Od [data]:"; -$a->strings["Sexual Preference:"] = "Interesują mnie:"; -$a->strings["Homepage URL:"] = "Strona główna URL:"; -$a->strings["Hometown:"] = "Miasto rodzinne:"; -$a->strings["Political Views:"] = "Poglądy polityczne:"; -$a->strings["Religious Views:"] = "Poglądy religijne:"; -$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :"; -$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :"; -$a->strings["Likes:"] = "Lubi:"; -$a->strings["Dislikes:"] = ""; -$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)"; -$a->strings["Tell us about yourself..."] = "Napisz o sobie..."; -$a->strings["Hobbies/Interests"] = "Zainteresowania"; -$a->strings["Contact information and Social Networks"] = "Informacje kontaktowe i Sieci Społeczne"; -$a->strings["Musical interests"] = "Muzyka"; -$a->strings["Books, literature"] = "Literatura"; -$a->strings["Television"] = "Telewizja"; -$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Love/romance"] = "Miłość/romans"; -$a->strings["Work/employment"] = "Praca/zatrudnienie"; -$a->strings["School/education"] = "Szkoła/edukacja"; -$a->strings["This is your public profile.
                                              It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
                                              Może zostać wyświetlony przez każdego kto używa internetu."; -$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami"; -$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; -$a->strings["Create New Profile"] = "Stwórz nowy profil"; -$a->strings["Profile Image"] = "Obraz profilowy"; -$a->strings["visible to everybody"] = "widoczne dla wszystkich"; -$a->strings["Edit visibility"] = "Edytuj widoczność"; -$a->strings["Item not found"] = "Artykuł nie znaleziony"; -$a->strings["Edit post"] = "Edytuj post"; -$a->strings["upload photo"] = "dodaj zdjęcie"; -$a->strings["Attach file"] = "Przyłącz plik"; -$a->strings["attach file"] = "załącz plik"; -$a->strings["web link"] = "Adres www"; -$a->strings["Insert video link"] = "Wstaw link wideo"; -$a->strings["video link"] = "link do filmu"; -$a->strings["Insert audio link"] = "Wstaw link audio"; -$a->strings["audio link"] = "Link audio"; -$a->strings["Set your location"] = "Ustaw swoje położenie"; -$a->strings["set location"] = "wybierz lokalizację"; -$a->strings["Clear browser location"] = "Wyczyść położenie przeglądarki"; -$a->strings["clear location"] = "wyczyść lokalizację"; -$a->strings["Permission settings"] = "Ustawienia uprawnień"; -$a->strings["CC: email addresses"] = "CC: adresy e-mail"; -$a->strings["Public post"] = "Publiczny post"; -$a->strings["Set title"] = "Ustaw tytuł"; -$a->strings["Categories (comma-separated list)"] = "Kategorie (lista słów oddzielonych przecinkiem)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; -$a->strings["running at web location"] = "otwierane na serwerze"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź"; -$a->strings["the bugtracker at github"] = ""; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; -$a->strings["Installed plugins/addons/apps:"] = "Zainstalowane pluginy/dodatki/aplikacje:"; -$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji"; -$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; -$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; -$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"; -$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie "; -$a->strings["Visible to:"] = "Widoczne dla:"; -$a->strings["Personal Notes"] = "Osobiste notatki"; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Time Conversion"] = "Zmiana czasu"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; -$a->strings["UTC time: %s"] = "Czas UTC %s"; -$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; -$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; -$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = "Zrób ten post prywatnym"; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email."; -$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane."; -$a->strings["%d message sent."] = array( - 0 => "%d wiadomość wysłana.", - 1 => "%d wiadomości wysłane.", - 2 => "%d wysłano .", -); -$a->strings["You have no more invitations available"] = "Nie masz więcej zaproszeń"; -$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."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public 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."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; -$a->strings["Send invitations"] = "Wyślij zaproszenia"; -$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy email, jeden na linijkę:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; -$a->strings["Photo Albums"] = "Albumy zdjęć"; -$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; -$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; -$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne."; -$a->strings["Album not found."] = "Album nie znaleziony"; -$a->strings["Delete Album"] = "Usuń album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; -$a->strings["Delete Photo"] = "Usuń zdjęcie"; -$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = "zdjęcie"; -$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; -$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["Upload Photos"] = "Prześlij zdjęcia"; -$a->strings["New album name: "] = "Nazwa nowego albumu:"; -$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:"; -$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania"; -$a->strings["Permissions"] = "Uprawnienia"; -$a->strings["Private Photo"] = "Zdjęcie prywatne"; -$a->strings["Public Photo"] = "Zdjęcie publiczne"; -$a->strings["Edit Album"] = "Edytuj album"; -$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze"; -$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze"; -$a->strings["View Photo"] = "Zobacz zdjęcie"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; -$a->strings["Photo not available"] = "Zdjęcie niedostępne"; -$a->strings["View photo"] = "Zobacz zdjęcie"; -$a->strings["Edit photo"] = "Edytuj zdjęcie"; -$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; -$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; -$a->strings["Tags: "] = "Tagi:"; -$a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; -$a->strings["New album name"] = "Nazwa nowego albumu"; -$a->strings["Caption"] = "Zawartość"; -$a->strings["Add a Tag"] = "Dodaj tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; -$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; -$a->strings["Private photo"] = "Prywatne zdjęcie."; -$a->strings["Public photo"] = "Zdjęcie publiczne"; -$a->strings["Share"] = "Podziel się"; -$a->strings["Not Extended"] = ""; -$a->strings["Account approved."] = "Konto zatwierdzone."; -$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana"; -$a->strings["Please login."] = "Proszę się zalogować."; -$a->strings["Move account"] = "Przenieś konto"; -$a->strings["You can import an account from another Friendica server."] = ""; -$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."] = ""; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""; -$a->strings["Item not available."] = "Element nie dostępny."; -$a->strings["Item was not found."] = "Element nie znaleziony."; +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "; +$a->strings["Invalid contact."] = "Zły kontakt"; +$a->strings["Commented Order"] = "Porządek wg komentarzy"; +$a->strings["Sort by Comment Date"] = "Sortuj po dacie komentarza"; +$a->strings["Posted Order"] = "Porządek wg wpisów"; +$a->strings["Sort by Post Date"] = "Sortuj po dacie posta"; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = "Nowy"; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Shared Links"] = "Współdzielone linki"; +$a->strings["Interesting Links"] = "Interesujące linki"; +$a->strings["Starred"] = "Ulubione"; +$a->strings["Favourite Posts"] = "Ulubione posty"; +$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; +$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość"; +$a->strings["{0} requested registration"] = "{0} żądana rejestracja"; +$a->strings["No contacts."] = "brak kontaktów"; +$a->strings["via"] = "przez"; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; +$a->strings["Alignment"] = "Wyrównanie"; +$a->strings["Left"] = "Lewo"; +$a->strings["Center"] = "Środek"; +$a->strings["Color scheme"] = "Zestaw kolorów"; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["Community Profiles"] = ""; +$a->strings["Last users"] = "Ostatni użytkownicy"; +$a->strings["Find Friends"] = "Znajdź znajomych"; +$a->strings["Local Directory"] = ""; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = "Połączone serwisy"; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Community Pages"] = "Strony społecznościowe"; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; $a->strings["Delete this item?"] = "Usunąć ten element?"; $a->strings["show fewer"] = "Pokaż mniej"; $a->strings["Update %s failed. See error logs."] = ""; $a->strings["Create a New Account"] = "Załóż nowe konto"; -$a->strings["Logout"] = "Wyloguj się"; -$a->strings["Nickname or Email address: "] = "Nick lub adres email:"; $a->strings["Password: "] = "Hasło:"; $a->strings["Remember me"] = "Zapamiętaj mnie"; $a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:"; @@ -1322,548 +2067,4 @@ $a->strings["Website Terms of Service"] = ""; $a->strings["terms of service"] = "warunki użytkowania"; $a->strings["Website Privacy Policy"] = ""; $a->strings["privacy policy"] = "polityka prywatności"; -$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["Categories:"] = "Kategorie:"; -$a->strings["Filed under:"] = "Zapisano pod:"; -$a->strings["via"] = "przez"; -$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."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Wyloguj"; -$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:"] = "Komunikat o błędzie:"; -$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; -$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d zaproszenie dostępne", - 1 => "%d zaproszeń dostępnych", - 2 => "%d zaproszenia dostępne", -); -$a->strings["Find People"] = "Znajdź ludzi"; -$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; -$a->strings["Connect/Follow"] = "Połącz/Obserwuj"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo: Jan Kowalski, Wędkarstwo"; -$a->strings["Similar Interests"] = "Podobne zainteresowania"; -$a->strings["Random Profile"] = "Domyślny profil"; -$a->strings["Invite Friends"] = "Zaproś znajomych"; -$a->strings["Networks"] = "Sieci"; -$a->strings["All Networks"] = "Wszystkie Sieci"; -$a->strings["Saved Folders"] = "Zapisane foldery"; -$a->strings["Everything"] = "Wszystko"; -$a->strings["Categories"] = "Kategorie"; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = "Podgląd posta"; -$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"] = ""; -$a->strings["Search by Date"] = "Szukanie wg daty"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = "Filtrowanie grupowe"; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = "Oznaczanie"; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = "Kategorie postów"; -$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = "Oznacz posty gwiazdką"; -$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."] = "Brak adresu URL połączenia."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; -$a->strings["No compatible communication protocols or feeds were discovered."] = ""; -$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; -$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; -$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; -$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; -$a->strings["following"] = "następujący"; -$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."] = ""; -$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; -$a->strings["Everybody"] = "Wszyscy"; -$a->strings["edit"] = "edytuj"; -$a->strings["Edit group"] = "Edytuj grupy"; -$a->strings["Create a new group"] = "Stwórz nową grupę"; -$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; -$a->strings["Miscellaneous"] = "Różny"; -$a->strings["YYYY-MM-DD or MM-DD"] = ""; -$a->strings["never"] = "nigdy"; -$a->strings["less than a second ago"] = "mniej niż sekundę temu"; -$a->strings["year"] = "rok"; -$a->strings["years"] = "lata"; -$a->strings["month"] = "miesiąc"; -$a->strings["months"] = "miesiące"; -$a->strings["week"] = "tydzień"; -$a->strings["weeks"] = "tygodnie"; -$a->strings["day"] = "dzień"; -$a->strings["days"] = "dni"; -$a->strings["hour"] = "godzina"; -$a->strings["hours"] = "godziny"; -$a->strings["minute"] = "minuta"; -$a->strings["minutes"] = "minuty"; -$a->strings["second"] = "sekunda"; -$a->strings["seconds"] = "sekundy"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; -$a->strings["%s's birthday"] = "Urodziny %s"; -$a->strings["Happy Birthday %s"] = "Urodziny %s"; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Edytuj profil"; -$a->strings["Message"] = "Wiadomość"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "g A I F d"; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[dziś]"; -$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; -$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; -$a->strings["[No description]"] = "[Brak opisu]"; -$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; -$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; -$a->strings["j F, Y"] = "d M, R"; -$a->strings["j F"] = "d M"; -$a->strings["Birthday:"] = "Urodziny:"; -$a->strings["Age:"] = "Wiek:"; -$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; -$a->strings["Religion:"] = "Religia:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; -$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; -$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; -$a->strings["Books, literature:"] = "Książki, literatura:"; -$a->strings["Television:"] = "Telewizja:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Love/Romance:"] = "Miłość/Romans:"; -$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; -$a->strings["School/education:"] = "Szkoła/edukacja:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; -$a->strings["Profile Details"] = "Szczegóły profilu"; -$a->strings["Videos"] = "Filmy"; -$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; -$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; -$a->strings["Post to Email"] = "Wyślij poprzez email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; -$a->strings["show"] = "pokaż"; -$a->strings["don't show"] = "nie pokazuj"; -$a->strings["[no subject]"] = "[bez tematu]"; -$a->strings["stopped following"] = "przestań obserwować"; -$a->strings["Poke"] = "Zaczepka"; -$a->strings["View Status"] = "Zobacz status"; -$a->strings["View Profile"] = "Zobacz profil"; -$a->strings["View Photos"] = "Zobacz zdjęcia"; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = "Edytuj kontakt"; -$a->strings["Drop Contact"] = ""; -$a->strings["Send PM"] = "Wyślij prywatną wiadomość"; -$a->strings["Welcome "] = "Witaj "; -$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe."; -$a->strings["Welcome back "] = "Witaj ponownie "; -$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"] = "wydarzenie"; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; -$a->strings["remove"] = "usuń"; -$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy"; -$a->strings["Follow Thread"] = "Śledź wątek"; -$a->strings["%s likes this."] = "%s lubi to."; -$a->strings["%s doesn't like this."] = "%s nie lubi tego."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["and"] = "i"; -$a->strings[", and %d other people"] = ", i %d innych ludzi"; -$a->strings["%s like this."] = "%s lubi to."; -$a->strings["%s don't like this."] = "%s nie lubi tego."; -$a->strings["Visible to everybody"] = "Widoczne dla wszystkich"; -$a->strings["Please enter a video link/URL:"] = "Podaj link do filmu"; -$a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki"; -$a->strings["Tag term:"] = ""; -$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?"; -$a->strings["Delete item(s)?"] = "Usunąć pozycję (pozycje)?"; -$a->strings["permissions"] = "zezwolenia"; -$a->strings["Post to Groups"] = "Wstaw na strony grup"; -$a->strings["Post to Contacts"] = "Wstaw do kontaktów"; -$a->strings["Private post"] = "Prywatne posty"; -$a->strings["view full size"] = "Zobacz w pełnym wymiarze"; -$a->strings["newer"] = "nowsze"; -$a->strings["older"] = "starsze"; -$a->strings["prev"] = "poprzedni"; -$a->strings["first"] = "pierwszy"; -$a->strings["last"] = "ostatni"; -$a->strings["next"] = "następny"; -$a->strings["Loading more entries..."] = ""; -$a->strings["The end"] = ""; -$a->strings["No contacts"] = "Brak kontaktów"; -$a->strings["%d Contact"] = array( - 0 => "%d kontakt", - 1 => "%d kontaktów", - 2 => "%d kontakty", -); -$a->strings["Full Text"] = ""; -$a->strings["Tags"] = ""; -$a->strings["Forums"] = ""; -$a->strings["poke"] = "zaczep"; -$a->strings["poked"] = "zaczepiony"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = "spoliczkuj"; -$a->strings["slapped"] = "spoliczkowany"; -$a->strings["finger"] = "dotknąć"; -$a->strings["fingered"] = "dotknięty"; -$a->strings["rebuff"] = "odprawiać"; -$a->strings["rebuffed"] = "odprawiony"; -$a->strings["happy"] = "szczęśliwy"; -$a->strings["sad"] = "smutny"; -$a->strings["mellow"] = "spokojny"; -$a->strings["tired"] = "zmęczony"; -$a->strings["perky"] = "pewny siebie"; -$a->strings["angry"] = "wściekły"; -$a->strings["stupified"] = "odurzony"; -$a->strings["puzzled"] = "zdziwiony"; -$a->strings["interested"] = "interesujący"; -$a->strings["bitter"] = "zajadły"; -$a->strings["cheerful"] = "wesoły"; -$a->strings["alive"] = "żywy"; -$a->strings["annoyed"] = "irytujący"; -$a->strings["anxious"] = "zazdrosny"; -$a->strings["cranky"] = "zepsuty"; -$a->strings["disturbed"] = "przeszkadzający"; -$a->strings["frustrated"] = "rozbity"; -$a->strings["motivated"] = "zmotywowany"; -$a->strings["relaxed"] = "zrelaksowany"; -$a->strings["surprised"] = "zaskoczony"; -$a->strings["Monday"] = "Poniedziałek"; -$a->strings["Tuesday"] = "Wtorek"; -$a->strings["Wednesday"] = "Środa"; -$a->strings["Thursday"] = "Czwartek"; -$a->strings["Friday"] = "Piątek"; -$a->strings["Saturday"] = "Sobota"; -$a->strings["Sunday"] = "Niedziela"; -$a->strings["January"] = "Styczeń"; -$a->strings["February"] = "Luty"; -$a->strings["March"] = "Marzec"; -$a->strings["April"] = "Kwiecień"; -$a->strings["May"] = "Maj"; -$a->strings["June"] = "Czerwiec"; -$a->strings["July"] = "Lipiec"; -$a->strings["August"] = "Sierpień"; -$a->strings["September"] = "Wrzesień"; -$a->strings["October"] = "Październik"; -$a->strings["November"] = "Listopad"; -$a->strings["December"] = "Grudzień"; -$a->strings["bytes"] = "bajty"; -$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; -$a->strings["View on separate page"] = ""; -$a->strings["view on separate page"] = ""; -$a->strings["default"] = "standardowe"; -$a->strings["Select an alternate language"] = "Wybierz alternatywny język"; -$a->strings["activity"] = "aktywność"; -$a->strings["post"] = "post"; -$a->strings["Item filed"] = ""; -$a->strings["Image/photo"] = "Obrazek/zdjęcie"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 napisał:"; -$a->strings["Encrypted content"] = "Szyfrowana treść"; -$a->strings["(no subject)"] = "(bez tematu)"; -$a->strings["noreply"] = "brak odpowiedzi"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'"; -$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori"; -$a->strings["Block immediately"] = "Zablokować natychmiast "; -$a->strings["Shady, spammer, self-marketer"] = ""; -$a->strings["Known to me, but no opinion"] = "Znam, ale nie mam zdania"; -$a->strings["OK, probably harmless"] = "Ok, bez problemów"; -$a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie"; -$a->strings["Weekly"] = "Tygodniowo"; -$a->strings["Monthly"] = "Miesięcznie"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; -$a->strings["App.net"] = ""; -$a->strings["Redmatrix"] = ""; -$a->strings[" on Last.fm"] = "na Last.fm"; -$a->strings["Starts:"] = "Start:"; -$a->strings["Finishes:"] = "Wykończenia:"; -$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować."; -$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"] = "Zakończ sesję"; -$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; -$a->strings["Your profile page"] = "Twoja strona profilowa"; -$a->strings["Your photos"] = "Twoje zdjęcia"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Twoje wydarzenia"; -$a->strings["Personal notes"] = "Osobiste notatki"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Zaloguj się"; -$a->strings["Home Page"] = "Strona startowa"; -$a->strings["Create an account"] = "Załóż konto"; -$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; -$a->strings["Apps"] = "Aplikacje"; -$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; -$a->strings["Search site content"] = "Przeszukaj zawartość strony"; -$a->strings["Conversations on this site"] = "Rozmowy na tej stronie"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Katalog"; -$a->strings["People directory"] = ""; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych"; -$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; -$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; -$a->strings["Private mail"] = "Prywatne maile"; -$a->strings["Inbox"] = "Odebrane"; -$a->strings["Outbox"] = "Wysłane"; -$a->strings["Manage"] = "Zarządzaj"; -$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; -$a->strings["Account settings"] = "Ustawienia konta"; -$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile"; -$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; -$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; -$a->strings["Navigation"] = "Nawigacja"; -$a->strings["Site map"] = "Mapa strony"; -$a->strings["User not found."] = ""; -$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."] = ""; -$a->strings["There is no conversation with this id."] = ""; -$a->strings["Invalid item."] = ""; -$a->strings["Invalid action. "] = ""; -$a->strings["DB error"] = ""; -$a->strings["An invitation is required."] = "Wymagane zaproszenie."; -$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; -$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; -$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje"; -$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy."; -$a->strings["Name too short."] = "Nazwa jest za krótka."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; -$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; -$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; -$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; -$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; -$a->strings["Friends"] = "Przyjaciele"; -$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"] = "Wspólne powiadomienie z sieci Diaspora"; -$a->strings["Attachments:"] = "Załączniki:"; -$a->strings["Do you really want to delete this item?"] = ""; -$a->strings["Archives"] = "Archiwum"; -$a->strings["Male"] = "Mężczyzna"; -$a->strings["Female"] = "Kobieta"; -$a->strings["Currently Male"] = "Aktualnie Mężczyzna"; -$a->strings["Currently Female"] = "Aktualnie Kobieta"; -$a->strings["Mostly Male"] = "Bardziej Mężczyzna"; -$a->strings["Mostly Female"] = "Bardziej Kobieta"; -$a->strings["Transgender"] = "Transpłciowy"; -$a->strings["Intersex"] = "Międzypłciowy"; -$a->strings["Transsexual"] = "Transseksualista"; -$a->strings["Hermaphrodite"] = "Hermafrodyta"; -$a->strings["Neuter"] = "Bezpłciowy"; -$a->strings["Non-specific"] = "Niespecyficzne"; -$a->strings["Other"] = "Inne"; -$a->strings["Undecided"] = "Niezdecydowany"; -$a->strings["Males"] = "Mężczyźni"; -$a->strings["Females"] = "Kobiety"; -$a->strings["Gay"] = "Gej"; -$a->strings["Lesbian"] = "Lesbijka"; -$a->strings["No Preference"] = "Brak preferencji"; -$a->strings["Bisexual"] = "Biseksualny"; -$a->strings["Autosexual"] = "Niezidentyfikowany"; -$a->strings["Abstinent"] = "Abstynent"; -$a->strings["Virgin"] = "Dziewica"; -$a->strings["Deviant"] = "Zboczeniec"; -$a->strings["Fetish"] = "Fetysz"; -$a->strings["Oodles"] = "Nadmiar"; -$a->strings["Nonsexual"] = "Nieseksualny"; -$a->strings["Single"] = "Singiel"; -$a->strings["Lonely"] = "Samotny"; -$a->strings["Available"] = "Dostępny"; -$a->strings["Unavailable"] = "Niedostępny"; -$a->strings["Has crush"] = ""; -$a->strings["Infatuated"] = "zakochany"; -$a->strings["Dating"] = "Randki"; -$a->strings["Unfaithful"] = "Niewierny"; -$a->strings["Sex Addict"] = "Uzależniony od seksu"; -$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; -$a->strings["Casual"] = "Przypadkowy"; -$a->strings["Engaged"] = "Zaręczeni"; -$a->strings["Married"] = "Małżeństwo"; -$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim"; -$a->strings["Partners"] = "Partnerzy"; -$a->strings["Cohabiting"] = "Konkubinat"; -$a->strings["Common law"] = ""; -$a->strings["Happy"] = "Szczęśliwy"; -$a->strings["Not looking"] = ""; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Zdradzony"; -$a->strings["Separated"] = "W separacji"; -$a->strings["Unstable"] = "Niestabilny"; -$a->strings["Divorced"] = "Rozwiedzeni"; -$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a"; -$a->strings["Widowed"] = "Wdowiec"; -$a->strings["Uncertain"] = "Nieokreślony"; -$a->strings["It's complicated"] = "To skomplikowane"; -$a->strings["Don't care"] = "Nie obchodzi mnie to"; -$a->strings["Ask me"] = "Zapytaj mnie "; -$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; -$a->strings["Thank You,"] = "Dziękuję,"; -$a->strings["%s Administrator"] = "%s administrator"; -$a->strings["%s "] = ""; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s"; -$a->strings["a private message"] = "prywatna wiadomość"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %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 skomentował rozmowę którą śledzisz"; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu"; -$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:Notify] %s oznaczył cię"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczył/a cię w %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/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"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."; -$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:"] = "Imię:"; -$a->strings["Photo:"] = "Zdjęcie:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has accepted 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"] = "Osadzona zawartość"; -$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; -$a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta"; -$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!"] = "Użytkownik '%s' już istnieje na tym serwerze!"; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( - 0 => "Nie zaimportowano %d kontaktu.", - 1 => "Nie zaimportowano %d kontaktów.", - 2 => "Nie zaimportowano %d kontaktów.", -); -$a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."; $a->strings["toggle mobile"] = "przełącz na mobilny"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy"; -$a->strings["Set theme width"] = "Ustaw szerokość motywu"; -$a->strings["Color scheme"] = "Zestaw kolorów"; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set colour scheme"] = "Zestaw kolorów"; -$a->strings["Alignment"] = "Wyrównanie"; -$a->strings["Left"] = "Lewo"; -$a->strings["Center"] = "Środek"; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = "Zestaw kolorów"; -$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"] = "Strony społecznościowe"; -$a->strings["Earth Layers"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = "Połączone serwisy"; -$a->strings["Find Friends"] = "Znajdź znajomych"; -$a->strings["Last users"] = "Ostatni użytkownicy"; -$a->strings["Last photos"] = "Ostatnie zdjęcia"; -$a->strings["Last likes"] = "Ostatnie polubienia"; -$a->strings["Your contacts"] = "Twoje kontakty"; -$a->strings["Your personal photos"] = "Twoje osobiste zdjęcia"; -$a->strings["Local Directory"] = ""; -$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 64d06b98b2c2910ecc133c01510ccf1cab131dab Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 27 Jan 2017 15:13:37 +0000 Subject: [PATCH 68/68] Added documentation --- include/poller.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/poller.php b/include/poller.php index 10bc70aae..e8bfb8838 100644 --- a/include/poller.php +++ b/include/poller.php @@ -166,6 +166,7 @@ function poller_execute($queue) { * * @param array $queue Workerqueue entry * @param string $funcname name of the function + * @param array $argv Array of values to be passed to the function */ function poller_exec_function($queue, $funcname, $argv) {